Version Description
Download this release
Release Info
Developer | businessdirectoryplugin |
Plugin | Business Directory Plugin |
Version | 6.0 |
Comparing to | |
See all releases |
Code changes from version 5.18 to 6.0
- README.TXT +12 -14
- assets/css/admin-csv-import.min.css +1 -1
- assets/css/admin-listing-metabox.min.css +1 -1
- assets/css/admin.min.css +1 -1
- assets/css/jquery-ui.css +418 -0
- assets/css/wpbdp.min.css +1 -1
- assets/images/icons/archive.svg +1 -0
- assets/images/icons/caret-left.svg +1 -0
- assets/images/icons/caret-right.svg +1 -0
- assets/images/icons/clipboard.svg +1 -0
- assets/images/icons/cog.svg +1 -0
- assets/images/icons/email.svg +1 -0
- assets/images/icons/folder.svg +1 -0
- assets/images/icons/import.svg +1 -0
- assets/images/icons/key.svg +1 -0
- assets/images/icons/layout.svg +1 -0
- assets/images/icons/list.svg +1 -0
- assets/images/icons/misc.svg +1 -0
- assets/images/icons/money.svg +1 -0
- assets/images/icons/package.svg +1 -0
- assets/images/icons/tag.svg +1 -0
- assets/images/modules/authorize-net-payment-module.svg +1 -0
- assets/images/modules/payfast-payment-module.svg +1 -0
- assets/images/modules/paypal-gateway-module.svg +1 -0
- assets/images/modules/stripe-payment-module.svg +1 -0
- assets/images/percie-round.svg +1 -0
- assets/images/premium-layout.svg +1 -0
- assets/js/admin-listing-metabox.js +19 -28
- assets/js/admin-listing-metabox.min.js +1 -1
- assets/js/admin.js +241 -46
- assets/js/admin.min.js +1 -1
- assets/js/wpbdp.js +4 -1
- assets/js/wpbdp.min.js +1 -1
- business-directory-plugin.php +1 -1
- includes/admin/admin-pages.php +567 -39
- includes/admin/class-admin.php +175 -57
- includes/admin/class-education.php +24 -7
- includes/admin/controllers/class-admin-csv.php +28 -17
- includes/admin/controllers/class-admin-fees.php +43 -5
- includes/admin/controllers/class-admin-listings.php +23 -13
- includes/admin/controllers/class-admin-payments.php +1 -2
- includes/admin/controllers/class-form-fields-admin.php +4 -4
- includes/admin/controllers/class-settings-admin.php +209 -74
- includes/admin/controllers/class-themes-admin.php +3 -2
- includes/admin/helpers/class-notices.php +60 -0
- includes/admin/helpers/tables/class-form-fields-table.php +1 -6
- includes/admin/settings/class-settings-bootstrap.php +85 -49
- includes/admin/settings/class-settings.php +6 -2
- includes/admin/upgrades/class-themes-updater.php +1 -1
- includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php +7 -3
- includes/admin/views/review.php +4 -4
- includes/class-assets.php +44 -11
- includes/class-payment-gateways.php +3 -3
- includes/class-shortcodes.php +63 -32
- includes/class-wpbdp.php +1 -1
- includes/controllers/pages/class-all-listings.php +2 -2
- includes/controllers/pages/class-submit-listing.php +0 -4
- includes/fields/class-fieldtypes-date.php +1 -4
- includes/helpers/class-app.php +33 -11
- includes/helpers/class-field-display-list.php +1 -1
- includes/licensing.php +5 -5
- includes/payment.php +26 -117
- includes/utils.php +37 -20
- languages/business-directory-plugin-ar.mo +0 -0
- languages/business-directory-plugin-ar.po +1973 -1892
- languages/business-directory-plugin-de_DE.mo +0 -0
- languages/business-directory-plugin-de_DE.po +1858 -1776
- languages/business-directory-plugin-en_US.po +1136 -1117
- languages/business-directory-plugin-fr_FR.mo +0 -0
- languages/{business-directory-plugin-fr_FR.po → business-directory-plugin-fr_FR.p} +0 -0
README.TXT
CHANGED
@@ -4,7 +4,7 @@ Tags: business directory, listings, directory plugin, staff directory, member di
|
|
4 |
Requires at least: 4.8
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.9
|
7 |
-
Stable tag:
|
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,17 @@ Yes it is. However, you cannot "network activate" the plugin (as this will share
|
|
158 |
This can be done under Plugins -> Add New as the Administrator user. Do not "network activate" as the "super admin".
|
159 |
|
160 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
= 5.18 =
|
162 |
* New: Allow setting category in the [businessdirectory-featured-listings] shortcode.
|
163 |
* Rename "Fee Plan" to "Plan" since they can be free.
|
@@ -188,17 +199,4 @@ This can be done under Plugins -> Add New as the Administrator user. Do not "net
|
|
188 |
* Fix: Images can now be removed from a listing if it is used in another listing too.
|
189 |
* Add more helpful info if a BD theme is missing an Activate button.
|
190 |
|
191 |
-
= 5.16.1 =
|
192 |
-
* Fix: The message to create a page on install wasn't updating when it was successful.
|
193 |
-
* Fix: Exclude admin test fees in the stats for the plan total amount collected.
|
194 |
-
* Fix: Show '0.00' for free listings rather than 'Free'.
|
195 |
-
* Fix: The Divi page builder was showing errors when editing listing pages.
|
196 |
-
* Remove colons and use space instead after a label in a listing. Colons can be added manually using the wpbdp_display_field_label hook if desired.
|
197 |
-
* Added wpbdp_display_field_wrapper_classes hook to add extra classes to a field wrapper.
|
198 |
-
* Fix: Get rid of button styling on delete link so it shows as a red link instead of a button.
|
199 |
-
* Fix: Make the featured banner work better by not pushing content around. Now it overlaps the image.
|
200 |
-
* Add a bit more caching and a performance lift.
|
201 |
-
* Fix: If a second page is added with the businessdirectory shortcode, use the most recent page. Also, ignore a page with the shortcode if it's in the trash.
|
202 |
-
* Fix: The database upgrade wasn't always getting marked as complete, and was running multiple times.
|
203 |
-
|
204 |
<a href="https://businessdirectoryplugin.com/plugins/business-directory/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">See changelog for all versions</a>
|
4 |
Requires at least: 4.8
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.9
|
7 |
+
Stable tag: 6.0
|
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.0 =
|
162 |
+
* New: Updated the admin area for a more enjoyable experience. This also shortens the main nav to make it easier to find links.
|
163 |
+
* New: Add toggles in admin settings for a more visual UI.
|
164 |
+
* New: Allow businessdirectory-listings shortcode without setting a category, and remove the directory header when the shortcode is used directly in a page.
|
165 |
+
* New: Update the datepicker styling for a more modern look.
|
166 |
+
* New: Added a notification center to keep all notifications in one spot instead of filling the top of the page.
|
167 |
+
* Include datepicker CSS in plugin instead of loading it from the jQuery CDN.
|
168 |
+
* Fix: When creating a listing from the admin area, the expiration was not getting automatically set.
|
169 |
+
* Fix: Don't use removed settings when checking conditional logic in admin area. This was causing some settings to never show.
|
170 |
+
* Fix: When validating file mime type, check the file extension too.
|
171 |
+
|
172 |
= 5.18 =
|
173 |
* New: Allow setting category in the [businessdirectory-featured-listings] shortcode.
|
174 |
* Rename "Fee Plan" to "Plan" since they can be free.
|
199 |
* Fix: Images can now be removed from a listing if it is used in another listing too.
|
200 |
* Add more helpful info if a BD theme is missing an Activate button.
|
201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
<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-csv-import.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#wpbdp-csv-import-fatal-error{display:none}#wpbdp-csv-import-fatal-error .last-imported-line .placeholder{font-weight:bold}.wpbdp-page-csv-import .canceled-import{display:none}.wpbdp-page-csv-import a.cancel-import{margin-left:35px;color:red}.wpbdp-page-csv-import dl{margin-left:10px}.wpbdp-page-csv-import .status-msg{margin:5px 0 0 0;font-style:italic}.wpbdp-page-csv-import #wpbdp-csv-import-summary,.wpbdp-page-csv-import #wpbdp-csv-import-summary .no-warnings,.wpbdp-page-csv-import #wpbdp-csv-import-summary .with-warnings,.wpbdp-page-csv-import #wpbdp-csv-import-summary .wpbdp-csv-import-warnings{display:none}.wpbdp-page-csv-import .wpbdp-csv-import-warnings .col-line-no{width:40px}.wpbdp-page-csv-import .wpbdp-csv-import-warnings tbody .col-line-content{font-family:monospace;font-size:90%;width:350px;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.file-local-selection{margin:10px 0 0 0}.file-local-selection ul{margin-left:5px;border-left:solid 3px #ddd;padding-left:10px;display:none}.file-local-selection ul li{margin:0;padding:0}.wpbdp-csv-import-example{width:100%;padding:10px;display:block;background:#fff;border:solid 1px #ddd;font-size:90%;font-family:monospace;height:100%;white-space:pre}#wpbdp-csv-import-form
|
1 |
+
#wpbdp-csv-import-fatal-error{display:none}#wpbdp-csv-import-fatal-error .last-imported-line .placeholder{font-weight:bold}.wpbdp-page-csv-import .canceled-import{display:none}.wpbdp-page-csv-import a.cancel-import{margin-left:35px;color:red}.wpbdp-page-csv-import dl{margin-left:10px}.wpbdp-page-csv-import .status-msg{margin:5px 0 0 0;font-style:italic}.wpbdp-page-csv-import #wpbdp-csv-import-summary,.wpbdp-page-csv-import #wpbdp-csv-import-summary .no-warnings,.wpbdp-page-csv-import #wpbdp-csv-import-summary .with-warnings,.wpbdp-page-csv-import #wpbdp-csv-import-summary .wpbdp-csv-import-warnings{display:none}.wpbdp-page-csv-import .wpbdp-csv-import-warnings .col-line-no{width:40px}.wpbdp-page-csv-import .wpbdp-csv-import-warnings tbody .col-line-content{font-family:monospace;font-size:90%;width:350px;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.file-local-selection{margin:10px 0 0 0}.file-local-selection ul{margin-left:5px;border-left:solid 3px #ddd;padding-left:10px;display:none}.file-local-selection ul li{margin:0;padding:0}.wpbdp-csv-import-example{width:100%;padding:10px;display:block;background:#fff;border:solid 1px #ddd;font-size:90%;font-family:monospace;height:100%;white-space:pre}#wpbdp-csv-import-form input[type="file"]{border:none}#wpbdp-csv-import-form span.description{display:block}table.wpbdp-csv-import-results,table.wpbdp-csv-import-warnings{width:100%}table.wpbdp-csv-import-results .line-no,table.wpbdp-csv-import-warnings .line-no{width:50px}table.wpbdp-csv-import-results td.line,table.wpbdp-csv-import-warnings td.line{font-family:monospace;font-size:90%}table.wpbdp-csv-import-results .error,table.wpbdp-csv-import-warnings .error{width:200px}.wpbdp-csv-import-top-buttons{float:right}
|
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%}#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-plan-info h4{margin:0 0 5px 0;font-size:85%;text-transform:uppercase}#wpbdp-listing-metabox-plan-info dl{margin:0 0 20px 10px}#wpbdp-listing-metabox-plan-info dl dd{margin-left:
|
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-plan-info h4{margin:0 0 5px 0;font-size:85%;text-transform:uppercase}#wpbdp-listing-metabox-plan-info dl{margin:0 0 20px 10px}#wpbdp-listing-metabox-plan-info dl dd{margin-left:5px}#wpbdp-listing-metabox-plan-info .value-editor{display:none}#wpbdp-listing-metabox-plan-info .value-editor .update-value,#wpbdp-listing-metabox-plan-info .value-editor .cancel-edit{font-size:85%}#wpbdp-listing-metabox-plan-info a.edit-value-toggle{margin:0 0 0 10px;font-size:85%}#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 #postimagediv{display:none}
|
assets/css/admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wpdbp-wrap{--darkest-grey:#282f36;--dark-grey:rgba(40,47,54,0.85);--medium-grey:rgba(40,47,54,0.65);--grey:rgba(40,47,54,0.45);--grey-border:rgba(40,47,54,0.2);--lightest-grey:#fafafa;--green:#3fac25;--orange:#F15A24}.wpbdp-tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}.wpbdp-display-block{display:block}.wpbdp-smaller{font-size:90%}.wpbdp-no-bold{font-weight:normal}.wpbdp-wait{margin:20px;width:20px;height:20px;position:relative;display:inline-block}.wpbdp-wait:before{content:'';display:inline-block;position:absolute;background:transparent;border:1px solid #fff;border-top-color:transparent;border-left-color:transparent;border-bottom-color:#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{text-shadow:none;box-shadow:none;border-radius:30px;border:1px solid #7E92BC !important;font-size:1em;transition:all .2s ease;height:28px;min-height:28px;outline:none;line-height:26px;min-width:100px;display:inline-block;text-align:center;padding:2px 10px;text-decoration:none}.wpbdp-admin-page .page-title-action,.wpbdp-admin-page .wpbdp-button-primary,.wpbdp-admin-page .button-primary{background-color:#7E92BC !important;border-color:#7E92BC !important;color:#fff !important}.wpbdp-admin-page .page-title-action:hover,.wpbdp-admin-page .wpbdp-button-primary:hover,.wpbdp-admin-page .button-primary:hover,.wpbdp-admin-page .page-title-action:focus,.wpbdp-admin-page .wpbdp-button-primary:focus,.wpbdp-admin-page .button-primary:focus{background:#6278A5 !important;border-color:#6278A5 !important}.wpbdp-admin-page .add-new-h2,.wpbdp-admin-page .wpbdp-button-secondary,.wpbdp-admin-page .button-secondary,.wpbdp-admin-page .button{background-color:#fff;border-color:#7E92BC !important;color:#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,.wpbdp-admin-page .add-new-h2:focus,.wpbdp-admin-page .wpbdp-button-secondary:focus,.wpbdp-admin-page .button-secondary:focus,.wpbdp-admin-page .button:focus{border-color:#6278A5 !important;background:#6278A5 !important;color:#fff;box-shadow:none}#wpbdp-admin-smtp *,#wpbdp-admin-smtp *::before,#wpbdp-admin-smtp *::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wpbdp-admin-smtp{width:700px;margin:0 auto}#wpbdp-admin-smtp p{font-size:15px}#wpbdp-admin-smtp section{margin:50px 0;text-align:left;clear:both}#wpbdp-admin-smtp .top{text-align:center}#wpbdp-admin-smtp .top h1{font-size:26px;font-weight:600;margin-bottom:0;padding:0}#wpbdp-admin-smtp .top p{font-size:17px;color:#777;margin-top:.5em}#wpbdp-admin-smtp .top .error,#wpbdp-admin-smtp .top .notice{display:none}#wpbdp-admin-smtp .screenshot ul{display:inline-block;margin:0 0 0 30px;list-style-type:none;max-width:calc(100% - 350px)}#wpbdp-admin-smtp .screenshot li{margin:16px 0;padding:0;font-size:15px;color:#777}#wpbdp-admin-smtp .screenshot .cont img{max-width:100%;display:block}#wpbdp-admin-smtp .screenshot .cont{display:inline-block;position:relative;width:315px;padding:5px;background-color:#fff;border-radius:3px}#wpbdp-admin-smtp .step,#wpbdp-admin-smtp .screenshot .cont{-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,0.05);-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,0.05);box-shadow:0 2px 5px 0 rgba(0,0,0,0.05)}#wpbdp-admin-smtp .step{background-color:#F9F9F9;border:1px solid #E5E5E5;margin:0 0 25px}#wpbdp-admin-smtp .step p{font-size:16px;color:#777777}#wpbdp-admin-smtp .step .num{display:inline-block;position:relative;width:100px;height:50px;text-align:center}#wpbdp-admin-smtp .step div{display:inline-block;width:calc( 100% - 104px );background-color:#fff;padding:30px;border-left:1px solid #eee}#wpbdp-admin-smtp .step h2{font-size:24px;line-height:22px;margin-top:0;margin-bottom:15px}#wpbdp-admin-smtp .screenshot>*,#wpbdp-admin-smtp .step>*{vertical-align:middle}#wpbdp-admin-smtp .grey{opacity:.5;background:#F6F6F6 !important;border-color:#ddd !important;color:#9FA5AA !important}#wpbdp-admin-smtp .button.disabled{cursor:default}.wpbdp-smtp-logos{margin-bottom:38px}.wpbdp-smtp-logos img,.wpbdp-smtp-logos svg{vertical-align:middle}.wpbdp-addons{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:25px}.wpbdp-addons,.wpbdp-addons h2,.wpbdp-addons h3{color:var(--dark-grey)}.wpbdp-addons h2{font-size:17px}.wpbdp-addons h3{margin-top:0}.wpbdp-card{width:100%;border-radius:10px;border:1px solid #C5CCDB;opacity:1;transition:opacity 1s;background:#fff;box-sizing:border-box}.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 var(--orange);position:absolute;top:-31px;right:-74px;padding:0 10px;width:30px;color:white;font-family:sans-serif;size:11px}.wpbdp-ribbon span{position:absolute;left:25px;font-size:15px;top:4px}.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{border:1px solid #ddd;text-align:center;position:fixed !important;z-index:999;bottom:0;right:0;width:400px;margin-bottom:0;padding-bottom:15px}.wpbdp-review-notice.notice form,.wpbdp-review-notice.notice p{font-size:14px;max-width:600px;margin-left:auto;margin-right:auto}.wpbdp-review-notice a{margin:5px}.wpbdp-review-notice p>span{font-size:13px;opacity:.75}.wpbdp-review-notice .wpbdp_error,.wpbdp-review-notice label{color:#444;text-align:left}.wpbdp-review-notice label{font-size:14px}.wpbdp-admin-dialog{background-color:#fff;z-index:100;padding:0 !important;border-radius:12px;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 h2{margin:0}.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(52,61,81,0.7) !important;position:fixed;width:100%;height:100%;top:0;left:0;right:0;bottom:0}.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(227,230,243,0.64)}.wpbdp-pro-tip a,.wpbdp-upgrade-bar a{color:#6D87B9;font-weight:600;text-decoration:none}.wpbdp-pro-tip{display:flex;align-items:center;border-radius:6px;padding:11px 22px}.wpbdp-pro-tip svg{color:#6D87B9;margin-right:13px}.wpbdp-pro-tip a{margin-left:5px}.wpbdp-upgrade-bar{background-color:rgba(227,230,243,0.4);text-align:center;margin-left:-20px;border-bottom:2px solid #6D87B9;padding:8px 22px}.wpbdp-admin-content .wpbdp-upgrade-bar{display:none}.wpbdp-admin h1 img{vertical-align:middle}.wpbdp-admin-content.with-sidebar{margin-top:20px;clear:left;float:left;width:78%}.wpbdp-admin .sidebar{margin-top:20px;float:right;clear:right;width:20%}.wpbdp-admin .sidebar .postbox{min-width:0 !important}.wp-list-table tr.wpbdp-item-message-tr td{padding-top:0}.wp-list-table tr.wpbdp-item-message-tr td div{margin:0 15px;padding:6px 12px 8px 12px;background-color:#fef7f1;font-size:12px}.wpbdp-admin-page-fees .tablenav{display:none}#wpbdp-admin-admin-page-fees .column-attributes .wpbdp-tag{background:green;color:#fff}.wpbdp-admin-page-fees .wp-list-table .column-order{width:55px}.wpbdp-admin-page-fees .wp-list-table .wpbdp-drag-handle{margin-right:15px}.wpbdp-admin-page-fees .purchase-gateways{text-align:center}.wpbdp-admin-page-fees .purchase-gateways .gateway{float:left;width:45%;margin:30px 2% 20px 0}.wpbdp-admin-page-fees .purchase-gateways .gateway.installed{opacity:.5}.wpbdp-admin-page-fees .purchase-gateways .gateway a img.gateway-logo{height:40px;margin:0;padding:0;border:none}.wpbdp-admin-page-fees .purchase-gateways .gateway a.price{margin-top:10px;display:block;color:green;font-size:22px;font-weight:bold}.wpbdp-admin-page-fees .purchase-gateways .gateway .check-mark{font-size:150%;font-weight:bold;color:green}#wpbdp-fee-form #limit-categories-list{font-size:90%}#wpbdp-fee-form #limit-categories-list p{margin:10px 0}#wpbdp-fee-form #limit-categories-list select{width:100%}#wpbdp-fee-form #limit-categories-list .select2-selection{padding:0 0 2px 0;margin:0;border-radius:5px;border-color:#ddd;min-height:26px}#wpbdp-fee-form #limit-categories-list .select2-selection__choice{border:none;padding:0;margin:2px 4px 0 0;background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-completed{background:green}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-canceled,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-failed{background:red}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-admin-posted,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-on-hold,#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-payment-refunded{background:orange}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice.wpbdp-listing-attr-reported{background:#d64226;color:#fff}#wpbdp-fee-form #limit-categories-list .select2-selection__choice .select2-selection__choice__remove{color:#fff}#wpbdp-fee-form #limit-categories-list .select2-search{margin-bottom:0}#wpbdp-fee-form #limit-categories-list .wpbdp-category-item{width:33.33%;float:left;padding:2px 0}#wpbdp-fee-form .pricing-details-variable>td{padding-top:0}#wpbdp-fee-form .pricing-details-variable table th{font-weight:normal}#wpbdp-fee-form .pricing-details-variable table td:last-child{width:100%}#wpbdp-fee-form .pricing-details-variable table td{font-size:90%;padding:0}#wpbdp-fee-form .pricing-details-variable table td.category-name-col{padding-right:20px;text-align:right}#wpbdp-fee-form .pricing-details-variable .wpbdp-variable-pricing-configurator-row input{width:100px}#wpbdp-fee-form .pricing-options label{display:block}#wpbdp-fee-form .fee-pricing-details input[type="text"]{width:100px}#wpbdp-admin-page-settings .nav-tab.tab-error{border-top:solid 1px red}#wpbdp-admin-page-settings .nav-tab.tab-warning{border-top:solid 1px yellow}#wpbdp-admin-page-settings .form-table tr>th{min-width:250px}#wpbdp-admin-page-settings .form-table tr>th>h3{font-size:1.2em;margin:0 auto}#wpbdp-admin-page-settings .wpbdp-setting-description{color:#666;font-style:italic;display:block}#wpbdp-admin-page-settings input[type="text"],#wpbdp-admin-page-settings input[type="url"],#wpbdp-admin-page-settings textarea{width:85%}#wpbdp-admin-page-settings textarea{min-height:150px}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activate-btn,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-deactivate-btn{margin-left:10px;display:none}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activate-btn{display:inline-block}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .howto,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .wpbdp-license-key-activate-btn{display:none}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-valid .wpbdp-license-key-deactivate-btn{display:inline-block}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui.wpbdp-license-status-not-verified input[type=text]{border-color:#d64226}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg,#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-input{width:70%}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg{font-size:90%;border-radius:4px;padding:8px;margin:3px 0;box-sizing:border-box}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg.status-success{border-color:#27a533}#wpbdp-admin-page-settings .wpbdp-license-key-activation-ui .wpbdp-license-key-activation-status-msg.status-error{border-color:#d64226}#wpbdp-admin-page-settings tr.wpbdp-setting-disabled{display:none}#wpbdp-admin-page-settings .wpbdp_upgrade_to_pro{text-align:center;margin-top:80px}.form-table .wpbdp-collapse-row-last td,.form-table .wpbdp-collapse-row-last th,.form-table .wpbdp-collapse-row th,.form-table .wpbdp-collapse-row td{padding-bottom:0;padding-top:0}.form-table .wpbdp-collapse-row-first td,.form-table .wpbdp-collapse-row-first th{padding-bottom:0}.wpbdp-tooltip-msg{background:#333 !important;border-width:1px !important;border-radius:3px !important;box-shadow:1px 1px 2px 1px rgba(214,214,214,0.5) !important;color:#dedede !important;max-width:300px !important;padding:7px !important;text-rendering:optimizeLegibility;text-shadow:none !important;z-index:9999 !important}#wpbdp-admin-page-settings select{display:block}#wpbdp-admin-page-settings .wpbdp-settings-choice-radio{margin:0 0 5px 0}#wpbdp-admin-page-settings tr.disabled{opacity:.7}#wpbdp-admin-page-settings .text-fields-warning{font-size:90%;display:block;margin-bottom:2px}#wpbdp-admin-page-settings .wpbdp-expiration-notice-email-schedule-summary{background:#d2d2d2;font-size:85%;padding:5px}#wpbdp-admin-page-settings .wpbdp-settings-email{margin:10px 0 0 0;border:solid 1px #d2d2d2;padding:5px;background:#fff}#wpbdp-admin-page-settings .wpbdp-settings-email.wpbdp-expiration-notice-email{border-bottom:none}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview{color:#999;font-size:90%;height:45px;cursor:pointer;overflow:hidden}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview h4,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview h4{margin:0 0 10px 0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview a.wpbdp-settings-email-edit-btn,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview a.wpbdp-settings-email-edit-btn,#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview .edit-toggle,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview .edit-toggle{float:right;color:#fff}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl{margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl dt,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl dt{font-weight:bold;margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .short-preview dl dd,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-preview dl dd{margin:0;padding:0 0 0 10px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor{display:none;margin-left:10px;font-size:90%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor table.form-table,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor table.form-table{margin:0;padding:0}#wpbdp-admin-page-settings .wpbdp-settings-email .editor table.form-table th,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor table.form-table th{padding-left:4px;padding-right:0;min-width:0;width:20%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor input[type="text"],#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor input[type="text"]{width:100%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor textarea,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor textarea{width:100%;min-height:150px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholders,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholders{margin:10px 0 0 0}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder{font-size:90%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder .placeholder-code,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder .placeholder-code{font-family:monospace;font-weight:bold}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder .placeholder-description,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder .placeholder-description{font-style:italic}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder-separator,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder-separator{margin-top:10px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons{margin:30px 0 0 0;text-align:right}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons .preview-email,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons .preview-email{float:left}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons .cancel,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons .cancel{margin-right:10px}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices #wpbdp-settings-expiration-notices-add-btn{margin:0 0 5px 0}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices #wpbdp-settings-expiration-notices-add .wpbdp-expiration-notice-email{display:none;border-bottom:1px solid #d2d2d2}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices .buttons .delete{color:#a00;float:left;font-size:13px}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices .buttons .delete:hover{color:red}#wpbdp-admin-page-settings .wpbdp-settings-type-checkbox input[type="checkbox"]{vertical-align:bottom}#wpbdp-admin-page-settings .wpbdp-settings-radio-options,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options{grid-gap:0}#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option,#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option{margin:0 0 5px 0}#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="radio"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-radio-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-radio-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-radio-options .wpbdp-settings-multicheck-option input[type="checkbox"],#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options .wpbdp-settings-multicheck-option input[type="checkbox"]{vertical-align:bottom}#wpbdp-admin-page-settings .wpbdp-settings-radio-options+.wpbdp-setting-description,#wpbdp-admin-page-settings .wpbdp-settings-multicheck-options+.wpbdp-setting-description{margin:10px 0 0 0}.wpbdp-settings-radio-option .wpbdp-img-opt{display:block;margin:0 auto 10px}#wpbdp-settings-list-layout .wpbdp-settings-radio-option{float:left;text-align:center;margin-right:1% !important;width:32%;min-width:173px}#wpbdp-settings-list-layout input{display:none}#wpbdp-settings-list-layout label span{border:2px solid transparent;display:inline-block;padding-bottom:10px;border-radius:3px}#wpbdp-settings-list-layout input:checked+label span{border-color:#4199FD}td.column-payment_status .status,td.column-sticky_status .status{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:90%}td.column-payment_status .status.ok{background:green}td.column-payment_status .paymentdata{font-size:85%}td.column-payment_status .paymentdata b{font-weight:normal}td.column-payment_status .paymentdata span{font-style:italic}td.column-sticky_status .status.notpaid{background:orange}td.column-sticky_status .status.pending{background:red;font-weight:bold}td.column-sticky_status .status.sticky{background:green}table.wp-list-table td .tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:90%;margin-right:2px;display:inline-block}table.wp-list-table.formfields th.column-label{width:40%}table.wp-list-table.formfields th.column-tags,table.wp-list-table.formfields td.column-tags{width:200px}table.wp-list-table.formfields th.column-order,table.wp-list-table.formfields td.column-order{width:55px}table.wp-list-table.formfields td.column-order .wpbdp-drag-handle{visibility:hidden}table.wp-list-table.formfields tr:hover .wpbdp-drag-handle{visibility:visible}table.wp-list-table.formfields .tag.private{background:red}table.wp-list-table.formfields .tag.privacy{background:blue}table.wp-list-table.formfields .tag.required{background:orange}table.wp-list-table.formfields .tag.in-excerpt{background:green}table.wp-list-table.formfields .tag.in-listing{background:green}table.wp-list-table.formfields tr.wpbdp-draggable-highlight{height:54px}table.wp-list-table.formfields tr.ui-sortable-helper{background:#fff;border:1px dashed #c1c1c1}#wpbdp-admin-page-field-form .iframe-confirm{display:none}#wpbdp-admin-page-field-form .iframe-confirm p{font-size:90%}#wpbdp-admin-page-field-form .wpbdp-setting-description{color:#666;font-style:italic;display:block}#wpbdp-settings-currency .wpbdp-setting-description{display:none}.wpbdp-settings-type-file .preview img{margin-right:10px}.wpbdp-settings-type-file .preview,.wpbdp-form-field-type-social-network .preview,.wpbdp-form-field-type-image .preview{float:none}.wpbdp-form-field-type-social-network .wpbdp-social-type-field .sublabel{display:block}table.wpbdp-debug-section{width:90%}table.wpbdp-debug-section tbody tr{background:#efefef}table.wpbdp-debug-section tbody tr td{padding:3px 8px}table.wpbdp-debug-section tbody tr:nth-child(2n){background:#f5f5f5}.wpbdp-page-admin-transactions .tag{font-size:95%}.wpbdp-page-admin-transactions .tag.approved{background:green}.wpbdp-page-admin-transactions .tag.pending{background:red}.wpbdp-page-admin-transactions .column-actions a.delete{color:#bc0b0b}.wpbdp-page-admin-transactions tr.more-details-row{background:#fff}.wpbdp-page-admin-transactions tr.more-details-row td{padding-left:40px;font-size:95%}.wpbdp-page-admin-transactions tr.more-details-row td dl dt{font-weight:bold}body.taxonomy-wpbdp_category .column-id{width:35px}.transaction-status-container{text-align:right;padding:5px}.wpbdp-progress-bar .progress-bar{margin-left:10px;display:inline-block;vertical-align:middle}.wpbdp-progress-bar .progress-bar-outer{min-width:200px;height:12px;border:solid 1px #3366CC;padding:0}.wpbdp-progress-bar .progress-bar-inner{height:100%;background:#99CCFF}.wpbdp-note{padding:5px 10px;background:#d7f5ff;margin:5px 0 20px 0;border:solid 1px #bad5df;border-radius:4px}.wpbdp-note p{margin:0}.wpbdp-note h1,.wpbdp-note h2,.wpbdp-note h3,.wpbdp-note h4{margin:0 0 8px 0}.wpbdp-note.error,.wpbdp-note.warning{background-color:#FFEBE8;border-color:#C00}.wpbdp-notice.dismissible{position:relative}.tag.paymentstatus{text-transform:capitalize}.tag.paymentstatus.ok{background:green}.tag.paymentstatus.completed{background:green}.tag.paymentstatus.pending,.tag.paymentstatus.pending-abandonment{background:red}.wpbdp-listing-metabox-tab dl{margin:0}.wpbdp-payment-details .tag{float:right}.wpbdp-payment-details .details,.wpbdp-payment-details .invoice,.wpbdp-payment-details .actions{clear:both;margin:20px 0}.wpbdp-payment-details .details dl dt{font-weight:bold}.wpbdp-payment-details table.wpbdp-payment-items-table{width:100%}.wpbdp-payment-details table.wpbdp-payment-items-table th{text-transform:uppercase}.wpbdp-payment-details table.wpbdp-payment-items-table td{border-top:1px solid #bbb;padding:6px 10px 6px 0}.wpbdp-payment-details .actions a.button-primary{color:#fff !important}.wp-core-ui .wpbdp-loading-button.button-primary,.wpbdp-loading-button{position:relative !important;opacity:.8;color:transparent !important;text-shadow:none !important}.wpbdp-loading-button:hover,.wpbdp-loading-button:active,.wpbdp-loading-button:focus{cursor:not-allowed;color:transparent !important;outline:none !important;box-shadow:none}.wpbdp-loading-button:before{content:'';display:inline-block;position:absolute;background:transparent;border:1px solid #fff;border-top-color:transparent;border-left-color:transparent;border-radius:50%;box-sizing:border-box;top:50%;left:50%;margin-top:-10px;margin-left:-10px;width:20px;height:20px;-webkit-animation:spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.listing-fee-change .fee-selection .fee{padding-bottom:5px;margin-bottom:10px;border-bottom:dotted 1px #d2d2d2;opacity:.85}.listing-fee-change .fee-selection .fee:hover{opacity:1}.listing-fee-change .fee-selection .fee .details{margin-left:10px}.listing-fee-change .fee-selection .fee .tag{float:right}.listing-fee-change .fee-selection .fee .choose-this{float:right}.wpbdp-draggable-highlight{background:#bbb}.wpbdp-module-compat-check .module-info{margin-bottom:3px}.wpbdp-module-compat-check .module-info .module-version,.wpbdp-module-compat-check .module-info .module-required{color:#666}.wpbdp-module-compat-check .module-info .module-version{margin-left:15px}.wpbdp-module-compat-check .module-info .module-version b{color:#333}.wpbdp-module-compat-check .module-info .module-required b{color:#900000}#wpbdp-admin-page-admin .welcome-message{padding:10px;font-size:105%}#wpbdp-admin-page-admin .welcome-message p{font-size:inherit}#wpbdp-admin-page-admin .welcome-message h4{font-size:120%}#wpbdp-admin-page-admin .welcome-message ul{list-style-position:inside;list-style-type:disc}#wpbdp-admin-page-admin .shortcuts{margin:auto}#wpbdp-admin-page-admin .shortcuts li{float:left;margin-right:10px}#wpbdp-admin-page-admin .shortcuts li.clear{margin:0}#wpbdp-admin-page-uninstall .wpbdp-admin-content{box-sizing:border-box;margin:20px 0 0 0;padding:16px;background:#fff;border-radius:4px}#wpbdp-admin-page-uninstall .wpbdp-validation-error{font-size:80%;color:#d64226;margin:0 0 10px 0}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion{float:left;box-sizing:border-box}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning ul,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion ul{margin-left:10px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning ul li,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion ul li{list-style-type:disc;list-style-position:inside}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning{width:60%;padding-right:20px;color:#d64226}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-margin{float:left}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-margin .dashicons{width:30px;height:30px;font-size:30px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .wpbdp-warning-content{margin-left:50px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion{width:40%;padding-left:20px;border-left:1px solid #efefef}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form{display:none}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .reasons{margin-left:15px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .reasons .reason{margin-bottom:5px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .custom-reason{display:none}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form textarea{margin:10px 0 0 0;width:50%;min-height:100px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form textarea.invalid{border-color:#d64226}#wpbdp-admin-page-uninstall #wpbdp-uninstall-proceed-btn{margin-top:20px;color:#d64226}#wpbdp-licensing-issues-warning ul li{list-style-position:inside;list-style-type:disc}#wpbdp-licensing-issues-warning span.item-name{background:#fff9aa;padding:2px 5px;margin:0 0 0 4px;border-radius:4px}.wp-admin.widgets-php .widget-content span.help{color:#666}.wpbdp-admin-tab-nav{float:none;margin:0 0 .5em 0}.wpbdp-admin-tab-content{padding:5px 0 0 0;display:none}.wpbdp-admin-tab-content .wpbdp-form-field{margin:0}.wpbdp-admin-tab-content .wpbdp-form-field .wpbdp-form-field-inner{padding:0}.wpbdp-admin-box label{vertical-align:top}a.wpbdp-admin-delete-link{color:#a00;text-decoration:none}a.wpbdp-admin-delete-link:hover{color:red}#wpbdp-admin-payment-info-box .inside{margin:0;padding:0}#wpbdp-admin-payment-info-box .wpbdp-admin-box-row{border-bottom:1px solid #eee;clear:both;padding:6px 12px;margin:0;line-height:1.5}#wpbdp-admin-payment-info-box label{font-weight:bold}#wpbdp-admin-payment-items-box .payment-item,#wpbdp-admin-payment-items-box .payment-item-header{margin:0 12px;padding:6px 0}#wpbdp-admin-payment-items-box .payment-item .payment-item-type,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-type{display:block;width:20%;float:left}#wpbdp-admin-payment-items-box .payment-item .payment-item-description,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-description{display:block;width:60%;float:left}#wpbdp-admin-payment-items-box .payment-item .payment-item-amount,#wpbdp-admin-payment-items-box .payment-item-header .payment-item-amount{display:block;width:20%;float:left}#wpbdp-admin-payment-items-box .payment-item.payment-totals,#wpbdp-admin-payment-items-box .payment-item-header.payment-totals{border-top:1px solid #eee;font-weight:bold}#wpbdp-admin-payment-items-box .payment-item-header{font-weight:bold}#wpbdp-admin-payment-details-box *{box-sizing:border-box}#wpbdp-admin-payment-details-box .wpbdp-admin-box-row>div{padding:6px 0}#wpbdp-admin-payment-details-box label{display:block}#wpbdp-admin-payment-details-box .customer-email,#wpbdp-admin-payment-details-box .customer-address-line1,#wpbdp-admin-payment-details-box .customer-address-line2{clear:both;width:100%}#wpbdp-admin-payment-details-box .customer-email input,#wpbdp-admin-payment-details-box .customer-address-line1 input,#wpbdp-admin-payment-details-box .customer-address-line2 input{width:100%}#wpbdp-admin-payment-details-box .customer-first-name,#wpbdp-admin-payment-details-box .customer-address-country,#wpbdp-admin-payment-details-box .customer-address-city{padding-right:3px !important}#wpbdp-admin-payment-details-box .customer-last-name,#wpbdp-admin-payment-details-box .customer-address-state,#wpbdp-admin-payment-details-box .customer-address-zipcode{padding-left:3px !important}#wpbdp-admin-payment-details-box .customer-first-name,#wpbdp-admin-payment-details-box .customer-last-name,#wpbdp-admin-payment-details-box .customer-address-country,#wpbdp-admin-payment-details-box .customer-address-state,#wpbdp-admin-payment-details-box .customer-address-city,#wpbdp-admin-payment-details-box .customer-address-zipcode{float:left;width:50%}#wpbdp-admin-payment-details-box .customer-first-name input,#wpbdp-admin-payment-details-box .customer-last-name input,#wpbdp-admin-payment-details-box .customer-address-country input,#wpbdp-admin-payment-details-box .customer-address-state input,#wpbdp-admin-payment-details-box .customer-address-city input,#wpbdp-admin-payment-details-box .customer-address-zipcode input{width:100%}#wpbdp-payment-notes .wpbdp-payment-note{margin-bottom:12px;line-height:1.5}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-payment-note-meta-user{font-weight:bold}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-payment-note-meta-date{color:#666}#wpbdp-payment-notes .wpbdp-payment-note .wpbdp-admin-delete-link{float:right;display:none}#wpbdp-payment-notes .wpbdp-payment-note:hover .wpbdp-admin-delete-link{display:block}span.tag{background:#444;border-radius:2px;padding:2px 5px;color:#fff;font-size:10px !important;margin-right:2px;text-decoration:none !important;line-height:1.5 !important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}span.tag.wpbdp-listing-attr-payment-completed{background:green}span.tag.wpbdp-listing-attr-payment-canceled,span.tag.wpbdp-listing-attr-payment-failed{background:red}span.tag.wpbdp-listing-attr-admin-posted,span.tag.wpbdp-listing-attr-payment-on-hold,span.tag.wpbdp-listing-attr-payment-refunded{background:orange}span.tag.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}span.tag.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}span.tag.wpbdp-listing-attr-reported{background:#d64226;color:#fff}.wpbdp-tag.wpbdp-listing-attr-payment-completed,span.tag.wpbdp-listing-attr-payment-completed{background:green}.wpbdp-tag.wpbdp-listing-attr-payment-canceled,span.tag.wpbdp-listing-attr-payment-canceled,.wpbdp-tag.wpbdp-listing-attr-payment-failed,span.tag.wpbdp-listing-attr-payment-failed{background:red}.wpbdp-tag.wpbdp-listing-attr-admin-posted,span.tag.wpbdp-listing-attr-admin-posted,.wpbdp-tag.wpbdp-listing-attr-payment-on-hold,span.tag.wpbdp-listing-attr-payment-on-hold,.wpbdp-tag.wpbdp-listing-attr-payment-refunded,span.tag.wpbdp-listing-attr-payment-refunded{background:orange}.wpbdp-tag.wpbdp-listing-attr-post-status-pending,span.tag.wpbdp-listing-attr-post-status-pending{background:blue;color:#fff}.wpbdp-tag.wpbdp-listing-attr-no-fee-plan,span.tag.wpbdp-listing-attr-no-fee-plan{background:#d64226;color:#fff}.wpbdp-tag.wpbdp-listing-attr-reported,span.tag.wpbdp-listing-attr-reported{background:#d64226;color:#fff}.wp-list-table td .wpbdp-tag{display:inline-block}body.post-type-wpbdp_listing .wp-list-table .wpbdp-tag{font-size:10px !important;text-transform:none !important}#wpbdp-listing-form-preview{padding:25px;border:1px solid #d2d2d2;background:#fff}.wpbdp-user-select .select2.select2-container{max-width:84.9%}.select2-container,.select2-search--inline,.select2-search__field{width:100% !important}.wpbdp-scrollbox{max-height:170px;overflow:auto;border:1px solid #c3c4c7;margin-bottom:1em;padding:0 10px}.wpbdp-plain-list{list-style-type:none !important;margin-left:0 !important;margin-right:0 !important;padding:0 !important}.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-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;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);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-bottom:40px}@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-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:rgba(109,135,185,0.25);outline-color:rgba(109,135,185,0.25)}.wpbd-toggle-cont input:checked+.wpbd-toggle-slider:before{transform:translateX(17px);background-color:#6d87b9;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:transparent;outline:1px solid #3C4B5D}.wpbd-toggle-slider:before{border-radius:50%;position:absolute;content:"";height:22px;width:22px;left:0;top:0;transition:.3s;background-color:transparent;box-shadow:0 2px 6px rgba(41,58,82,0.3);outline:1px solid #3C4B5D}.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-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 tr.wpbdp-setting-disabled{display:none}.wpbdp-admin-page-settings .wpbdp_upgrade_to_pro{text-align:center;margin-top:80px}.form-table .wpbdp-collapse-row-last td,.form-table .wpbdp-collapse-row-last th,.form-table .wpbdp-collapse-row th,.form-table .wpbdp-collapse-row td{padding-bottom:0;padding-top:0}.form-table .wpbdp-collapse-row-first td,.form-table .wpbdp-collapse-row-first th{padding-bottom:0}.wpbdp-tooltip-msg{background:#333 !important;border-width:1px !important;border-radius:3px !important;box-shadow:1px 1px 2px 1px rgba(214,214,214,0.5) !important;color:#dedede !important;max-width:300px !important;padding:7px !important;text-rendering:optimizeLegibility;text-shadow:none !important;z-index:9999 !important}#wpbdp-admin-page-settings select{display:block}#wpbdp-admin-page-settings .wpbdp-settings-choice-radio{margin:0 0 5px 0}#wpbdp-admin-page-settings tr.disabled{opacity:.7}#wpbdp-admin-page-settings .text-fields-warning{font-size:90%;display:block;margin-bottom:2px}#wpbdp-admin-page-settings .wpbdp-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 .placeholders,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholders{margin:10px 0 0 0}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder{font-size:90%}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder .placeholder-code,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder .placeholder-code{font-family:monospace;font-weight:bold}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder .placeholder-description,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder .placeholder-description{font-style:italic}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .placeholder-separator,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .placeholder-separator{margin-top:10px}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons{margin:30px 0 0 0;text-align:right}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons .preview-email,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons .preview-email{float:left}#wpbdp-admin-page-settings .wpbdp-settings-email .editor .buttons .cancel,#wpbdp-admin-page-settings .wpbdp-settings-email .wpbdp-settings-email-editor .buttons .cancel{margin-right:10px}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices #wpbdp-settings-expiration-notices-add-btn{margin:0 0 5px 0}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices #wpbdp-settings-expiration-notices-add .wpbdp-expiration-notice-email{display:none;border-bottom:1px solid #d2d2d2}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices .buttons .delete{color:#a00;float:left;font-size:13px}#wpbdp-admin-page-settings .wpbdp-settings-expiration-notices .buttons .delete:hover{color:red}.wpbdp-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.2);margin:5px 0 20px 0;border:solid 1px #C5CCDB;border-radius:4px}.wpbdp-note p{margin:0}.wpbdp-note h1,.wpbdp-note h2,.wpbdp-note h3,.wpbdp-note h4{margin:0 0 8px 0}.wpbdp-note.error,.wpbdp-note.warning{background-color:#FFEBE8;border-color:#C00}.wpbdp-notice.dismissible{position:relative}.tag.paymentstatus.ok{background:green}.tag.paymentstatus.completed{background:green}.tag.paymentstatus.pending,.tag.paymentstatus.pending-abandonment{background:red}.wpbdp-listing-metabox-tab dl{margin:0}.wpbdp-payment-details .tag{float:right}.wpbdp-payment-details .details,.wpbdp-payment-details .invoice,.wpbdp-payment-details .actions{clear:both;margin:20px 0}.wpbdp-payment-details .details dl dt{font-weight:bold}.wpbdp-payment-details table.wpbdp-payment-items-table{width:100%}.wpbdp-payment-details table.wpbdp-payment-items-table th{text-transform:uppercase}.wpbdp-payment-details table.wpbdp-payment-items-table td{border-top:1px solid #bbb;padding:6px 10px 6px 0}.wpbdp-payment-details .actions a.button-primary{color:#fff !important}.wp-core-ui .wpbdp-loading-button.button-primary,.wpbdp-loading-button{position:relative !important;opacity:.8;color:transparent !important;text-shadow:none !important}.wpbdp-loading-button:hover,.wpbdp-loading-button:active,.wpbdp-loading-button:focus{cursor:not-allowed;color:transparent !important;outline:none !important;box-shadow:none}.wpbdp-loading-button:before{content:'';display:inline-block;position:absolute;background:transparent;border:1px solid #fff;border-top-color:transparent;border-left-color:transparent;border-radius:50%;box-sizing:border-box;top:50%;left:50%;margin-top:-10px;margin-left:-10px;width:20px;height:20px;-webkit-animation:spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.listing-fee-change .fee-selection .fee{padding-bottom:5px;margin-bottom:10px;border-bottom:dotted 1px #d2d2d2;opacity:.85}.listing-fee-change .fee-selection .fee:hover{opacity:1}.listing-fee-change .fee-selection .fee .details{margin-left:10px}.listing-fee-change .fee-selection .fee .tag{float:right}.listing-fee-change .fee-selection .fee .choose-this{float:right}.wpbdp-draggable-highlight{background:#bbb}.wpbdp-module-compat-check .module-info{margin-bottom:3px}.wpbdp-module-compat-check .module-info .module-version,.wpbdp-module-compat-check .module-info .module-required{color:#666}.wpbdp-module-compat-check .module-info .module-version{margin-left:15px}.wpbdp-module-compat-check .module-info .module-version b{color:#333}.wpbdp-module-compat-check .module-info .module-required b{color:#900000}#wpbdp-admin-page-admin .welcome-message{padding:10px;font-size:105%}#wpbdp-admin-page-admin .welcome-message p{font-size:inherit}#wpbdp-admin-page-admin .welcome-message h4{font-size:120%}#wpbdp-admin-page-admin .welcome-message ul{list-style-position:inside;list-style-type:disc}#wpbdp-admin-page-admin .shortcuts{margin:auto}#wpbdp-admin-page-admin .shortcuts li{float:left;margin-right:10px}#wpbdp-admin-page-admin .shortcuts li.clear{margin:0}#wpbdp-admin-page-uninstall .wpbdp-admin-content{box-sizing:border-box;margin:20px 0 0 0;padding:16px;background:#fff;border-radius:4px}#wpbdp-admin-page-uninstall .wpbdp-validation-error{font-size:80%;color:#d64226;margin:0 0 10px 0}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion{float:left;box-sizing:border-box}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning ul,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion ul{margin-left:10px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning ul li,#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-reinstall-suggestion ul li{list-style-type:disc;list-style-position:inside}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning{width:60%;padding-right:20px;color:#d64226}#wpbdp-admin-page-uninstall #wpbdp-uninstall-messages #wpbdp-uninstall-warning .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 .reasons{margin-left:15px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .reasons .reason{margin-bottom:5px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form .custom-reason{display:none}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form textarea{margin:10px 0 0 0;width:50%;min-height:100px}#wpbdp-admin-page-uninstall #wpbdp-uninstall-capture-form textarea.invalid{border-color:#d64226}#wpbdp-admin-page-uninstall #wpbdp-uninstall-proceed-btn{margin-top:20px;color:#d64226}#wpbdp-licensing-issues-warning ul li{list-style-position:inside;list-style-type:disc}#wpbdp-licensing-issues-warning span.item-name{background:#fff9aa;padding:2px 5px;margin:0 0 0 4px;border-radius:4px}.wp-admin.widgets-php .widget-content span.help{color:#666}.wpbdp-admin-tab-nav{float:none;margin:0 0 .5em 0}.wpbdp-admin-tab-content{padding:5px 0 0 0;display:none}.wpbdp-admin-tab-content .wpbdp-form-field{margin:0}.wpbdp-admin-tab-content .wpbdp-form-field .wpbdp-form-field-inner{padding:0}.wpbdp-admin-box label{vertical-align:top}a.wpbdp-admin-delete-link{color:#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/css/jquery-ui.css
ADDED
@@ -0,0 +1,418 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*! jQuery UI - v1.13.1 - 2022-03-21
|
2 |
+
* http://jqueryui.com
|
3 |
+
* Includes: core.css, datepicker.css, theme.css
|
4 |
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=ui-lightness&cornerRadiusShadow=5px&offsetLeftShadow=-5px&offsetTopShadow=-5px&thicknessShadow=5px&opacityShadow=20&bgImgOpacityShadow=10&bgTextureShadow=flat&bgColorShadow=000000&opacityOverlay=50&bgImgOpacityOverlay=20&bgTextureOverlay=diagonals_thick&bgColorOverlay=666666&iconColorError=ffd27a&fcError=ffffff&borderColorError=cd0a0a&bgImgOpacityError=18&bgTextureError=diagonals_thick&bgColorError=b81900&iconColorHighlight=228ef1&fcHighlight=363636&borderColorHighlight=fed22f&bgImgOpacityHighlight=75&bgTextureHighlight=highlight_soft&bgColorHighlight=ffe45c&iconColorActive=ef8c08&fcActive=eb8f00&borderColorActive=fbd850&bgImgOpacityActive=65&bgTextureActive=glass&bgColorActive=ffffff&iconColorHover=ef8c08&fcHover=c77405&borderColorHover=fbcb09&bgImgOpacityHover=100&bgTextureHover=glass&bgColorHover=fdf5ce&iconColorDefault=ef8c08&fcDefault=1c94c4&borderColorDefault=cccccc&bgImgOpacityDefault=100&bgTextureDefault=glass&bgColorDefault=f6f6f6&iconColorContent=222222&fcContent=333333&borderColorContent=dddddd&bgImgOpacityContent=100&bgTextureContent=highlight_soft&bgColorContent=eeeeee&iconColorHeader=ffffff&fcHeader=ffffff&borderColorHeader=e78f08&bgImgOpacityHeader=35&bgTextureHeader=gloss_wave&bgColorHeader=f6a828&cornerRadius=4px&fsDefault=1.1em&fwDefault=bold&ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif
|
5 |
+
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
6 |
+
|
7 |
+
/* Layout helpers
|
8 |
+
----------------------------------*/
|
9 |
+
.ui-helper-hidden {
|
10 |
+
display: none;
|
11 |
+
}
|
12 |
+
.ui-helper-hidden-accessible {
|
13 |
+
border: 0;
|
14 |
+
clip: rect(0 0 0 0);
|
15 |
+
height: 1px;
|
16 |
+
margin: -1px;
|
17 |
+
overflow: hidden;
|
18 |
+
padding: 0;
|
19 |
+
position: absolute;
|
20 |
+
width: 1px;
|
21 |
+
}
|
22 |
+
.ui-helper-reset {
|
23 |
+
margin: 0;
|
24 |
+
padding: 0;
|
25 |
+
border: 0;
|
26 |
+
outline: 0;
|
27 |
+
line-height: 1.3;
|
28 |
+
text-decoration: none;
|
29 |
+
font-size: 100%;
|
30 |
+
list-style: none;
|
31 |
+
}
|
32 |
+
.ui-helper-clearfix:before,
|
33 |
+
.ui-helper-clearfix:after {
|
34 |
+
content: "";
|
35 |
+
display: table;
|
36 |
+
border-collapse: collapse;
|
37 |
+
}
|
38 |
+
.ui-helper-clearfix:after {
|
39 |
+
clear: both;
|
40 |
+
}
|
41 |
+
.ui-helper-zfix {
|
42 |
+
width: 100%;
|
43 |
+
height: 100%;
|
44 |
+
top: 0;
|
45 |
+
left: 0;
|
46 |
+
position: absolute;
|
47 |
+
opacity: 0;
|
48 |
+
-ms-filter: "alpha(opacity=0)"; /* support: IE8 */
|
49 |
+
}
|
50 |
+
|
51 |
+
.ui-front {
|
52 |
+
z-index: 100;
|
53 |
+
}
|
54 |
+
|
55 |
+
|
56 |
+
/* Interaction Cues
|
57 |
+
----------------------------------*/
|
58 |
+
.ui-state-disabled {
|
59 |
+
cursor: default !important;
|
60 |
+
pointer-events: none;
|
61 |
+
}
|
62 |
+
|
63 |
+
|
64 |
+
/* Icons
|
65 |
+
----------------------------------*/
|
66 |
+
.ui-icon {
|
67 |
+
display: inline-block;
|
68 |
+
vertical-align: middle;
|
69 |
+
margin-top: -.25em;
|
70 |
+
position: relative;
|
71 |
+
text-indent: -99999px;
|
72 |
+
overflow: hidden;
|
73 |
+
background-repeat: no-repeat;
|
74 |
+
}
|
75 |
+
|
76 |
+
.ui-widget-icon-block {
|
77 |
+
left: 50%;
|
78 |
+
margin-left: -8px;
|
79 |
+
display: block;
|
80 |
+
}
|
81 |
+
|
82 |
+
/* Misc visuals
|
83 |
+
----------------------------------*/
|
84 |
+
|
85 |
+
/* Overlays */
|
86 |
+
.ui-widget-overlay {
|
87 |
+
position: fixed;
|
88 |
+
top: 0;
|
89 |
+
left: 0;
|
90 |
+
width: 100%;
|
91 |
+
height: 100%;
|
92 |
+
}
|
93 |
+
.ui-datepicker {
|
94 |
+
width: 17em;
|
95 |
+
padding: .2em .2em 0;
|
96 |
+
display: none;
|
97 |
+
}
|
98 |
+
.ui-datepicker .ui-datepicker-header {
|
99 |
+
position: relative;
|
100 |
+
padding: .2em 0;
|
101 |
+
}
|
102 |
+
.ui-datepicker .ui-datepicker-prev,
|
103 |
+
.ui-datepicker .ui-datepicker-next {
|
104 |
+
position: absolute;
|
105 |
+
top: 2px;
|
106 |
+
width: 1.8em;
|
107 |
+
height: 1.8em;
|
108 |
+
}
|
109 |
+
.ui-datepicker .ui-datepicker-prev-hover,
|
110 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
111 |
+
top: 1px;
|
112 |
+
}
|
113 |
+
.ui-datepicker .ui-datepicker-prev {
|
114 |
+
left: 2px;
|
115 |
+
}
|
116 |
+
.ui-datepicker .ui-datepicker-next {
|
117 |
+
right: 2px;
|
118 |
+
}
|
119 |
+
.ui-datepicker .ui-datepicker-prev-hover {
|
120 |
+
left: 1px;
|
121 |
+
}
|
122 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
123 |
+
right: 1px;
|
124 |
+
}
|
125 |
+
.ui-datepicker .ui-datepicker-prev span,
|
126 |
+
.ui-datepicker .ui-datepicker-next span {
|
127 |
+
display: block;
|
128 |
+
position: absolute;
|
129 |
+
left: 50%;
|
130 |
+
margin-left: -8px;
|
131 |
+
top: 50%;
|
132 |
+
margin-top: -8px;
|
133 |
+
}
|
134 |
+
.ui-datepicker .ui-datepicker-title {
|
135 |
+
margin: 0 2.3em;
|
136 |
+
line-height: 1.8em;
|
137 |
+
text-align: center;
|
138 |
+
}
|
139 |
+
.ui-datepicker .ui-datepicker-title select {
|
140 |
+
font-size: 1em;
|
141 |
+
margin: 1px 0;
|
142 |
+
}
|
143 |
+
.ui-datepicker select.ui-datepicker-month,
|
144 |
+
.ui-datepicker select.ui-datepicker-year {
|
145 |
+
width: 45%;
|
146 |
+
}
|
147 |
+
.ui-datepicker table {
|
148 |
+
width: 100%;
|
149 |
+
font-size: .9em;
|
150 |
+
border-collapse: collapse;
|
151 |
+
margin: 0 0 .4em;
|
152 |
+
}
|
153 |
+
.ui-datepicker th {
|
154 |
+
padding: .7em .3em;
|
155 |
+
text-align: center;
|
156 |
+
font-weight: bold;
|
157 |
+
border: 0;
|
158 |
+
}
|
159 |
+
.ui-datepicker td {
|
160 |
+
border: 0;
|
161 |
+
padding: 1px;
|
162 |
+
}
|
163 |
+
.ui-datepicker td span,
|
164 |
+
.ui-datepicker td a {
|
165 |
+
display: block;
|
166 |
+
padding: .2em;
|
167 |
+
text-align: right;
|
168 |
+
text-decoration: none;
|
169 |
+
}
|
170 |
+
.ui-datepicker .ui-datepicker-buttonpane {
|
171 |
+
background-image: none;
|
172 |
+
margin: .7em 0 0 0;
|
173 |
+
padding: 0 .2em;
|
174 |
+
border-left: 0;
|
175 |
+
border-right: 0;
|
176 |
+
border-bottom: 0;
|
177 |
+
}
|
178 |
+
.ui-datepicker .ui-datepicker-buttonpane button {
|
179 |
+
float: right;
|
180 |
+
margin: .5em .2em .4em;
|
181 |
+
cursor: pointer;
|
182 |
+
padding: .2em .6em .3em .6em;
|
183 |
+
width: auto;
|
184 |
+
overflow: visible;
|
185 |
+
}
|
186 |
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
187 |
+
float: left;
|
188 |
+
}
|
189 |
+
|
190 |
+
/* with multiple calendars */
|
191 |
+
.ui-datepicker.ui-datepicker-multi {
|
192 |
+
width: auto;
|
193 |
+
}
|
194 |
+
.ui-datepicker-multi .ui-datepicker-group {
|
195 |
+
float: left;
|
196 |
+
}
|
197 |
+
.ui-datepicker-multi .ui-datepicker-group table {
|
198 |
+
width: 95%;
|
199 |
+
margin: 0 auto .4em;
|
200 |
+
}
|
201 |
+
.ui-datepicker-multi-2 .ui-datepicker-group {
|
202 |
+
width: 50%;
|
203 |
+
}
|
204 |
+
.ui-datepicker-multi-3 .ui-datepicker-group {
|
205 |
+
width: 33.3%;
|
206 |
+
}
|
207 |
+
.ui-datepicker-multi-4 .ui-datepicker-group {
|
208 |
+
width: 25%;
|
209 |
+
}
|
210 |
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
211 |
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
212 |
+
border-left-width: 0;
|
213 |
+
}
|
214 |
+
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
215 |
+
clear: left;
|
216 |
+
}
|
217 |
+
.ui-datepicker-row-break {
|
218 |
+
clear: both;
|
219 |
+
width: 100%;
|
220 |
+
font-size: 0;
|
221 |
+
}
|
222 |
+
|
223 |
+
/* RTL support */
|
224 |
+
.ui-datepicker-rtl {
|
225 |
+
direction: rtl;
|
226 |
+
}
|
227 |
+
.ui-datepicker-rtl .ui-datepicker-prev {
|
228 |
+
right: 2px;
|
229 |
+
left: auto;
|
230 |
+
}
|
231 |
+
.ui-datepicker-rtl .ui-datepicker-next {
|
232 |
+
left: 2px;
|
233 |
+
right: auto;
|
234 |
+
}
|
235 |
+
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
236 |
+
right: 1px;
|
237 |
+
left: auto;
|
238 |
+
}
|
239 |
+
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
240 |
+
left: 1px;
|
241 |
+
right: auto;
|
242 |
+
}
|
243 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
244 |
+
clear: right;
|
245 |
+
}
|
246 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
247 |
+
float: left;
|
248 |
+
}
|
249 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
250 |
+
.ui-datepicker-rtl .ui-datepicker-group {
|
251 |
+
float: right;
|
252 |
+
}
|
253 |
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
254 |
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
255 |
+
border-right-width: 0;
|
256 |
+
border-left-width: 1px;
|
257 |
+
}
|
258 |
+
|
259 |
+
/* Icons */
|
260 |
+
.ui-datepicker .ui-icon {
|
261 |
+
display: block;
|
262 |
+
text-indent: -99999px;
|
263 |
+
overflow: hidden;
|
264 |
+
background-repeat: no-repeat;
|
265 |
+
left: .5em;
|
266 |
+
top: .3em;
|
267 |
+
}
|
268 |
+
|
269 |
+
/* Interaction states
|
270 |
+
----------------------------------*/
|
271 |
+
.ui-state-default,
|
272 |
+
.ui-widget-content .ui-state-default,
|
273 |
+
.ui-widget-header .ui-state-default,
|
274 |
+
.ui-button,
|
275 |
+
|
276 |
+
/* We use html here because we need a greater specificity to make sure disabled
|
277 |
+
works properly when clicked or hovered */
|
278 |
+
html .ui-button.ui-state-disabled:hover,
|
279 |
+
html .ui-button.ui-state-disabled:active {
|
280 |
+
border: 1px solid #cccccc;
|
281 |
+
background: #f6f6f6;
|
282 |
+
font-weight: bold;
|
283 |
+
color: #1c94c4;
|
284 |
+
}
|
285 |
+
.ui-state-default a,
|
286 |
+
.ui-state-default a:link,
|
287 |
+
.ui-state-default a:visited,
|
288 |
+
a.ui-button,
|
289 |
+
a:link.ui-button,
|
290 |
+
a:visited.ui-button,
|
291 |
+
.ui-button {
|
292 |
+
color: #1c94c4;
|
293 |
+
text-decoration: none;
|
294 |
+
}
|
295 |
+
.ui-state-hover,
|
296 |
+
.ui-widget-content .ui-state-hover,
|
297 |
+
.ui-widget-header .ui-state-hover,
|
298 |
+
.ui-state-focus,
|
299 |
+
.ui-widget-content .ui-state-focus,
|
300 |
+
.ui-widget-header .ui-state-focus,
|
301 |
+
.ui-button:hover,
|
302 |
+
.ui-button:focus {
|
303 |
+
border: 1px solid #fbcb09;
|
304 |
+
background: #fdf5ce;
|
305 |
+
font-weight: bold;
|
306 |
+
color: #c77405;
|
307 |
+
}
|
308 |
+
.ui-state-hover a,
|
309 |
+
.ui-state-hover a:hover,
|
310 |
+
.ui-state-hover a:link,
|
311 |
+
.ui-state-hover a:visited,
|
312 |
+
.ui-state-focus a,
|
313 |
+
.ui-state-focus a:hover,
|
314 |
+
.ui-state-focus a:link,
|
315 |
+
.ui-state-focus a:visited,
|
316 |
+
a.ui-button:hover,
|
317 |
+
a.ui-button:focus {
|
318 |
+
color: #c77405;
|
319 |
+
text-decoration: none;
|
320 |
+
}
|
321 |
+
|
322 |
+
.ui-visual-focus {
|
323 |
+
box-shadow: 0 0 3px 1px rgb(94, 158, 214);
|
324 |
+
}
|
325 |
+
.ui-state-active,
|
326 |
+
.ui-widget-content .ui-state-active,
|
327 |
+
.ui-widget-header .ui-state-active,
|
328 |
+
a.ui-button:active,
|
329 |
+
.ui-button:active,
|
330 |
+
.ui-button.ui-state-active:hover {
|
331 |
+
border: 1px solid #fbd850;
|
332 |
+
background: #ffffff;
|
333 |
+
font-weight: bold;
|
334 |
+
color: #eb8f00;
|
335 |
+
}
|
336 |
+
.ui-icon-background,
|
337 |
+
.ui-state-active .ui-icon-background {
|
338 |
+
border: #fbd850;
|
339 |
+
background-color: #eb8f00;
|
340 |
+
}
|
341 |
+
.ui-state-active a,
|
342 |
+
.ui-state-active a:link,
|
343 |
+
.ui-state-active a:visited {
|
344 |
+
color: #eb8f00;
|
345 |
+
text-decoration: none;
|
346 |
+
}
|
347 |
+
|
348 |
+
/* Interaction Cues
|
349 |
+
----------------------------------*/
|
350 |
+
.ui-state-highlight,
|
351 |
+
.ui-widget-content .ui-state-highlight,
|
352 |
+
.ui-widget-header .ui-state-highlight {
|
353 |
+
border: 1px solid #fed22f;
|
354 |
+
background: #ffe45c;
|
355 |
+
color: #363636;
|
356 |
+
}
|
357 |
+
.ui-state-checked {
|
358 |
+
border: 1px solid #fed22f;
|
359 |
+
background: #ffe45c;
|
360 |
+
}
|
361 |
+
.ui-state-highlight a,
|
362 |
+
.ui-widget-content .ui-state-highlight a,
|
363 |
+
.ui-widget-header .ui-state-highlight a {
|
364 |
+
color: #363636;
|
365 |
+
}
|
366 |
+
.ui-state-error,
|
367 |
+
.ui-widget-content .ui-state-error,
|
368 |
+
.ui-widget-header .ui-state-error {
|
369 |
+
border: 1px solid #cd0a0a;
|
370 |
+
background: #b81900;
|
371 |
+
color: #ffffff;
|
372 |
+
}
|
373 |
+
.ui-state-error a,
|
374 |
+
.ui-widget-content .ui-state-error a,
|
375 |
+
.ui-widget-header .ui-state-error a {
|
376 |
+
color: #ffffff;
|
377 |
+
}
|
378 |
+
.ui-state-error-text,
|
379 |
+
.ui-widget-content .ui-state-error-text,
|
380 |
+
.ui-widget-header .ui-state-error-text {
|
381 |
+
color: #ffffff;
|
382 |
+
}
|
383 |
+
.ui-priority-primary,
|
384 |
+
.ui-widget-content .ui-priority-primary,
|
385 |
+
.ui-widget-header .ui-priority-primary {
|
386 |
+
font-weight: bold;
|
387 |
+
}
|
388 |
+
.ui-priority-secondary,
|
389 |
+
.ui-widget-content .ui-priority-secondary,
|
390 |
+
.ui-widget-header .ui-priority-secondary {
|
391 |
+
opacity: .7;
|
392 |
+
-ms-filter: "alpha(opacity=70)"; /* support: IE8 */
|
393 |
+
font-weight: normal;
|
394 |
+
}
|
395 |
+
.ui-state-disabled,
|
396 |
+
.ui-widget-content .ui-state-disabled,
|
397 |
+
.ui-widget-header .ui-state-disabled {
|
398 |
+
opacity: .35;
|
399 |
+
-ms-filter: "alpha(opacity=35)"; /* support: IE8 */
|
400 |
+
background-image: none;
|
401 |
+
}
|
402 |
+
.ui-state-disabled .ui-icon {
|
403 |
+
-ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
|
404 |
+
}
|
405 |
+
|
406 |
+
/* Misc visuals
|
407 |
+
----------------------------------*/
|
408 |
+
|
409 |
+
/* Overlays */
|
410 |
+
.ui-widget-overlay {
|
411 |
+
background: #666666;
|
412 |
+
opacity: .5;
|
413 |
+
-ms-filter: Alpha(Opacity=50); /* support: IE8 */
|
414 |
+
}
|
415 |
+
.ui-widget-shadow {
|
416 |
+
-webkit-box-shadow: -5px -5px 5px #000000;
|
417 |
+
box-shadow: -5px -5px 5px #000000;
|
418 |
+
}
|
assets/css/wpbdp.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}.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .submit-btn input[type="submit"],.wpbdp-wp-theme-twentytwenty .wpbdp-main-box .submit-btn input[type="submit"],.wpbdp-wp-theme-twentytwentyone .wpbdp-main-box .submit-btn input[type="submit"]{padding:16px 12px;font-size:14px}.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .box-col .distance-field input,.wpbdp-wp-theme-twentytwenty .wpbdp-main-box .box-col .distance-field input,.wpbdp-wp-theme-twentytwentyone .wpbdp-main-box .box-col .distance-field input{min-width:70px}.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .box-col .unit-label,.wpbdp-wp-theme-twentytwenty .wpbdp-main-box .box-col .unit-label,.wpbdp-wp-theme-twentytwentyone .wpbdp-main-box .box-col .unit-label{font-size:14px}.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .box-col .unit-label{font-size:16px}@media screen and (min-width:1900px){.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .box-col .unit-label{font-size:20px}}.wpbdp-wp-theme-twentytwenty .wpbdp-page{max-width:69rem !important}.wpbdp-wp-theme-twentysixteen .wpbdp-listing .social-fields .social-field.linkedin{vertical-align:text-top}.wpbdp-wp-theme-twentyseventeen .single-featured-image-header{display:none}.wpbdp-wp-theme-twentyseventeen .wpbdp-listing .social-fields .twitter.twitter-handle{vertical-align:text-top;padding-top:1px}.wpbdp-wp-theme-twentynineteen .wpbdp-listing .social-fields .twitter.twitter-handle{vertical-align:text-top}.wpbdp-wp-theme-twentytwenty .wpbdp-main-links .wpbdp-button,.wpbdp-wp-theme-twentytwenty .box-col.submit-btn input,.wpbdp-wp-theme-twentytwenty .listing-actions{font-size:1.1rem}.wpbdp-wp-theme-twentytwenty .wpbdp-listing-excerpt{font-size:1.8rem}.wpbdp-wp-theme-twentytwenty .wpbdp-listing .social-fields .social-field.facebook,.wpbdp-wp-theme-twentytwenty .wpbdp-listing .social-fields .social-field.instagram{margin-top:-5px;vertical-align:top}.wpbdp-wp-theme-twentytwentytwo.single-wpbdp_listing .listing-title{display:none}.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="text"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="email"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="url"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="password"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="search"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="number"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="tel"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="date"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="month"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="week"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="time"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="datetime"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="submit"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page select,.wpbdp-wp-theme-twentytwentytwo .wpbdp-page textarea{padding:8px;max-width:100%;font-size:inherit;font-family:inherit}.wpbdp-wp-theme-twentytwentytwo .wpbdp-page .wpbdp-button,.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="submit"]{color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary);text-decoration:none}.wpbdp-wp-theme-twentytwentytwo .wpbdp-page .wpbdp-submit-listing-form-actions .wpbdp-button,.wpbdp-wp-theme-twentytwentytwo .wpbdp-page .wpbdp-submit.wpbdp-button,.wpbdp-wp-theme-twentytwentytwo .wpbdp-page .wpbdp-main-links .button{padding:calc(0.667em + 2px) calc(1.333em + 2px);font-size:var(--wp--preset--font-size--medium)}.wpbdp-wp-theme-twentytwentytwo .wpbdp-button{color:var(--wp--preset--color--background)}.wpbdp-cf:before,.wpbdp-cf:after,.cf:before,.cf:after{content:" ";display:table}.wpbdp-cf:after,.cf:after{clear:both}form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>.wpbdp-search-field-label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{box-sizing:border-box;width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{box-sizing:border-box;width:90%}#wpbdp-search-form input[type="submit"]{float:none;margin:auto}.wpbdp-clearfix:after,.cf:before,.cf:after{content:" ";display:table}.wpbdp-clearfix:after,.cf:after{clear:both}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0 0 5px;font-size:80%}.wpbdp-with-button-styles .wpbdp-listing .listing-actions .wpbdp-button.delete-listing,.listing-actions .delete-listing,.listing-actions a.delete-listing{color:#d64226 !important;background-color:transparent !important;border-color:transparent}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;margin-right:3px}.listing-actions>span{font-size:11px;margin-right:10px}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label,.field-value .field-label{color:#444;font-weight:bold;padding-right:5px}.field-value .value{display:inline}.wpbdp-listing-excerpt{padding:10px}.wpbdp-listing-excerpt .wpbdp-hide-title .listing-details .wpbdp-field-title,.wpbdp-listing-excerpt .wpbdp-hide-title .listing-details .wpbdp-field-name{display:none}.wpbdp-listing-excerpt.sticky{background:#fff0cf;background:var(--bd-main-color-8)}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single.sticky{margin-top:30px}.wpbdp-listing-excerpt .stickytag,.wpbdp-listing-single .stickytag{float:right;margin-top:-20px}.wpbdp-listing-excerpt .stickytag img,.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent;max-height:102px}.wpbdp-listing-single .stickytag{position:absolute;bottom:0;right:0}.wpbdp-sticky-tag{background:var(--bd-main-color);color:#fff;padding:6px 15px;margin:0 15px;border-radius:4px;text-transform:uppercase;font-weight:600;vertical-align:text-bottom;display:inline-block;font-size:12px}.wpbdp-is-table .wpbdp-listing-excerpt>.wpbdp-sticky-tag{display:none !important}.wpbdp-listing-excerpt .wpbdp-sticky-tag{float:right;margin-top:10px;margin-right:0}.wpbdp-listing-excerpt.wpbdp-has-ribbon{position:relative;overflow:hidden}.wpbdp-listing-excerpt.wpbdp-has-ribbon .wpbdp-sticky-tag{transform:rotate(45deg);text-align:center;position:absolute;top:12px;right:-48px;width:150px;margin:0;border-radius:0}.wpbdp-listing-excerpt.wpbdp-has-ribbon .wpbdp-claim-listings{display:none}.wpbdp-listing-single .listing-title{margin-bottom:7px;position:relative}.wpbdp-listing-single .listing-title h1,.wpbdp-listing-single .listing-title h2,.wpbdp-listing-single .listing-title h3{display:inline-block}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #d2d2d2}.single-wpbdp_listing .extra-images,.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.single-wpbdp_listing .extra-images ul,.wpbdp-listing-single .extra-images ul{margin:0 auto;padding:0;width:100%}.single-wpbdp_listing .extra-images ul li,.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline-block;margin-left:5px;margin-bottom:5px}.single-wpbdp_listing .extra-images ul li img,.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #d2d2d2}.single-wpbdp_listing .social-fields,.wpbdp-listing .social-fields{margin:20px 0;vertical-align:top}.social-field-link,.single-wpbdp_listing .social-field,.wpbdp-listing .social-field{display:inline-block;margin-right:10px;height:20px;vertical-align:text-top}.social-field-link iframe,.single-wpbdp_listing .social-field iframe,.wpbdp-listing .social-field iframe{margin-bottom:0}.social-field-link img,.single-wpbdp_listing .social-field img,.wpbdp-listing .social-field img{vertical-align:initial}.social-field-link .social-icon,.single-wpbdp_listing .social-field .social-icon,.wpbdp-listing .social-field .social-icon{display:inline-block;background-color:transparent;color:#1a1a1a}.social-field-link .social-text,.single-wpbdp_listing .social-field .social-text,.wpbdp-listing .social-field .social-text{font-size:90%}.social-field-link a,.single-wpbdp_listing .social-field a,.wpbdp-listing .social-field a{box-shadow:none}.social-field-link a img,.single-wpbdp_listing .social-field a img,.wpbdp-listing .social-field a img{height:20px;width:auto}.social-field-link a object,.single-wpbdp_listing .social-field a object,.wpbdp-listing .social-field a object{height:20px;margin-bottom:0}.social-field-link.icon_first .social-icon,.single-wpbdp_listing .social-field.icon_first .social-icon,.wpbdp-listing .social-field.icon_first .social-icon{margin-right:5px}.social-field-link.text_first .social-text,.single-wpbdp_listing .social-field.text_first .social-text,.wpbdp-listing .social-field.text_first .social-text{margin-right:5px}.wpbdp-listing-contact-form{margin-top:20px;padding-top:20px}.wpbdp-listing-contact-form #wpbdp-contact-form-recaptcha{margin-bottom:20px}.wpbdp-listing-contact-form textarea{width:100%}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar .wpbdp-search-form{margin:0;padding:0 !important;margin-left:50%}.wpbdp-main-links a{margin-right:15px}.wpbdp-bar .left{float:left;text-align:center}.wpbdp-bar .right{width:300px;float:right}.wpbdp-listings-sort-options{font-size:90%;margin:5px 0 10px}.wpbdp-listings-sort-options label{font-weight:normal}.wpbdp-listings-sort-options select{margin:0 4px}#wpbdp-categories{clear:both}.wpbdp-categories{margin:0;padding-left:20px}.wpbdp-categories .cat-item{box-sizing:border-box;float:left;margin:0 0 20px;width:50%}.wpbdp-categories .cat-item:nth-child(2n+1){clear:left}.wpbdp-categories .cat-item .cat-item{margin:0;width:100%}.wpbdp-categories-tiny .cat-item{float:none;width:100%}.wpbdp-categories-tiny .cat-item:nth-child(2n+1){clear:none}#wpbdp-checkout-form-fields,.wpbdp-form-field{margin:14px 0}#wpbdp-checkout-form-fields label,.wpbdp-form-field label{font-weight:500}#wpbdp-checkout-form-fields label .wpbdp-form-field-required-indicator,.wpbdp-form-field label .wpbdp-form-field-required-indicator{margin-left:3px;font-size:90%}#wpbdp-checkout-form-fields.wpbdp-form-field-has-description .wpbdp-form-field-label,.wpbdp-form-field.wpbdp-form-field-has-description .wpbdp-form-field-label{margin-bottom:0}#wpbdp-checkout-form-fields.wpbdp-form-field-has-description .wpbdp-form-field-description,.wpbdp-form-field.wpbdp-form-field-has-description .wpbdp-form-field-description{margin-bottom:3px}#wpbdp-checkout-form-fields .wpbdp-description,.wpbdp-form-field .wpbdp-description,#wpbdp-checkout-form-fields .wpbdp-form-field-description,.wpbdp-form-field .wpbdp-form-field-description{opacity:.8;font-size:14px;display:block}#wpbdp-checkout-form-fields .wpbdp-form-field-inner,.wpbdp-form-field .wpbdp-form-field-inner{padding-left:6px}#wpbdp-checkout-form-fields textarea,.wpbdp-form-field textarea,#wpbdp-checkout-form-fields input[type="text"],.wpbdp-form-field input[type="text"],#wpbdp-checkout-form-fields input[type="tel"],.wpbdp-form-field input[type="tel"],#wpbdp-checkout-form-fields select,.wpbdp-form-field select{width:100%;box-sizing:border-box}#wpbdp-checkout-form-fields .field-description,.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .preview,.wpbdp-form-field.wpbdp-form-field-type-social-network .preview{margin-bottom:20px}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .preview img,.wpbdp-form-field.wpbdp-form-field-type-social-network .preview img{display:inline}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .preview a.delete,.wpbdp-form-field.wpbdp-form-field-type-social-network .preview a.delete{color:#900000;margin-left:20px;display:none;vertical-align:top}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .preview:hover a.delete,.wpbdp-form-field.wpbdp-form-field-type-social-network .preview:hover a.delete{display:inline}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network input[type="text"],.wpbdp-form-field.wpbdp-form-field-type-social-network input[type="text"]{width:100%}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .wpbdp-social-type-field .sublabel,.wpbdp-form-field.wpbdp-form-field-type-social-network .wpbdp-social-type-field .sublabel{display:block}.wpbdp-form-field-validation-error-wrapper{margin:24px 0}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors{font-size:80%;color:#d64226;position:relative;background:#fff;border:1px solid #d64226;border-radius:4px;padding:4px 6px;margin:0 12px 3px 6px}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors:after,.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors:before{top:100%;left:12px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors:after{border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:4px;margin-left:-4px}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors:before{border-color:rgba(214,66,38,0);border-top-color:#d64226;border-width:5px;margin-left:-5px}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field{margin:0}.wpbdp-form-field-validation-error-wrapper+label{color:#d64226}.wpbdp-checkout-section{margin:0 0 1.5em 0;padding:.7em 1.2em;border:solid 1px #efefef}.wpbdp-checkout-section.wpbdp-checkout-errors{padding:0;border:none}.wpbdp-checkout-section h3{margin:0 0 1em 0;padding:0}.wpbdp-checkout-gateway-selection label{margin:0 10px 0 0}.wpbdp-checkout-gateway-selection label:last-child{margin-right:0}.wpbdp-checkout-gateway-selection label input,.wpbdp-checkout-gateway-selection label img{vertical-align:middle}.wpbdp-checkout-gateway-selection label img{margin-bottom:10px}.wpbdp-billing-detail-field{margin:0 0 1.5em 0;font-size:95%}.wpbdp-billing-detail-field.wpbdp-required label:after{content:' *';color:#d64226}.wpbdp-exp-field select{width:auto}.wpbdp-exp-slash{padding:0 5px}.wpbdp-payment-receipt{border:1px solid #d2d2d2;padding:1em 1.5em;margin:1.5em 0;font-size:90%}.wpbdp-payment-receipt h4{margin:0;padding:0}.wpbdp-payment-receipt .wpbdp-payment-receipt-date{color:#666}.wpbdp-payment-receipt .wpbdp-payment-status{float:right}.wpbdp-payment-receipt .wpbdp-payment-receipt-details{margin:1.5em .5em}.wpbdp-payment-receipt .wpbdp-payment-receipt-details dl{margin:0;padding:0}.wpbdp-payment-receipt .wpbdp-payment-receipt-details dl dt{margin:0;padding:0;float:left;min-width:50%}.wpbdp-payment-receipt .wpbdp-payment-receipt-details dl dd{margin:0 0 5px 50%;padding:0}.wpbdp-payment-receipt .wpbdp-payment-receipt-print{margin:1.5em 0 0 0}.wpbdp-checkout-invoice table.wpbdp-payment-items-table th,.wpbdp-checkout-invoice table.wpbdp-payment-items-table td{font-size:95%}.wpbdp-checkout-invoice table.wpbdp-payment-items-table tr.item td:first-of-type{width:80%}.wpbdp-checkout-invoice table.wpbdp-payment-items-table .item-fee-description{margin-left:10px;font-size:85%;max-width:90%}.wpbdp-grid{display:grid;grid-template-columns:repeat(12, 1fr);grid-auto-rows:max-content;grid-gap:20px 4%}.wpbdp-grid>*{grid-column:span 12 / span 12}.wpbdp-col-grid-2 .wpbdp-grid>div,.wpbdp6,.wpbdp-half{grid-column:span 6 / span 6}.wpbdp-col-grid-3 .wpbdp-grid>div,.wpbdp4{grid-column:span 4 / span 4}.wpbdp8{grid-column:span 8 / span 8}.wpbdp3{grid-column:span 3 / span 3}.wpbdp9{grid-column:span 9 / span 9}.wpbdp2{grid-column:span 2 / span 2}.wpbdp10{grid-column:span 10 / span 10}.wpbdp1{grid-column:span 1 / span 1}.wpbdp5{grid-column:span 5 / span 5}.wpbdp7{grid-column:span 7 / span 7}.wpbdp11{grid-column:span 11 / span 11}.wpbdp12,.wpbdp-full{width:100% !important;grid-column:span 12 / span 12;box-sizing:border-box}.wpbdp_first{grid-column-start:1}.wpbdp_last{grid-column-end:-1;grid-row-start:span 100;justify-content:end}@media only screen and (max-width:710px){.wpbdp-grid>.wpbdp-listing{grid-column:1 / span 12 !important}}@media only screen and (max-width:600px){.wpbdp-grid>.wpbdp-form-field{grid-column:1 / span 12 !important}}.wpbdp-submit-rootline{margin:30px auto;text-align:center;display:flex}.wpbdp-rootline-section{align-items:center;width:100%}.wpbdp-rootline-section:not(.wpbdp-submit-section-current).wpbdp-submit-checked .wpbdp-rootline-counter span{display:none}.wpbdp-rootline-section:last-of-type .wpbdp-rootline-bar{background-image:none}.wpbdp-rootline-section-name{margin:10px auto 0;font-size:12px;text-transform:uppercase;opacity:.6}.wpbdp-rootline-bar{background-image:linear-gradient(to left, rgba(255,255,255,0) 50%, #569AF6 50%);background-image:linear-gradient(to left, rgba(255,255,255,0) 50%, var(--bd-main-color) 50%);background-position:bottom;background-size:10px;background-repeat:repeat-x;position:relative;height:1px;width:calc(100% - 48px);top:24px;margin-left:calc(50% + 25px)}.wpbdp-rootline-circle{display:inline-flex;justify-content:center;align-items:center;width:48px;height:48px;border-radius:48px;border:1px solid #569AF6;border-color:var(--bd-main-color);z-index:1}.wpbdp-rootline-circle svg{fill:none}.wpbdp-submit-checked .wpbdp-rootline-circle{background:#569AF6;background:var(--bd-main-color)}.wpbdp-rootline-counter{font-weight:bold;font-size:20px}.wpbdp-submit-checked .wpbdp-rootline-section-name{opacity:1}.wpbdp-submit-checked.wpbdp-submit-section-current svg{display:none}.wpbdp-submit-checked .wpbdp-rootline-circle{color:#fff}#wpbdp-submit-listing.wpbdp-submit-page{margin:auto}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section{margin:10px 0 0 0;display:block}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section.collapsed .collapse-indicator.expanded{display:none}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section.collapsed .collapse-indicator.collapsed{display:inline}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section.collapsed .wpbdp-submit-listing-section-content{display:none}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section.hidden{display:none}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-content h4{margin:0 0 10px 0}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-form-actions{margin:10px 0;text-align:center}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-form-actions button{margin:15px}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-messages{margin:0 0 12px 0}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-plan-selection-with-tip{margin:24px 0 0 0}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-plan_selection ul.category-list{margin:0;padding:0;list-style-type:none}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-plan_selection ul.category-list li{font-size:10px;margin:0 5px 0 0;padding:1px 6px;border-radius:3px;background:#569AF6;background:var(--bd-main-color);color:#fff;font-weight:700;text-align:center;white-space:nowrap;vertical-align:baseline;border:none;display:inline}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-plan_selection .wpbdp_continue_to_fields_action{text-align:right}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-editor-area{height:422px}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-listing_fields .wpbdp-submit-listing-form-actions{display:block}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-listing_fields.has-error .wpbdp-form-field-label{position:relative}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-form-field-inner{padding:0;width:100%}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-form-field-type-select:not(.wpbdp-form-field-association-category).wpbdp-form-field-association-region.wpbdp-regions-hidden{display:none;visibility:hidden}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-upload-widget{max-height:50px}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-form-field-label .wpbdp-form-field-validation-error-wrapper{visibility:hidden;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:40%;left:-10px}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-form-field-label:hover .wpbdp-form-field-validation-error-wrapper{visibility:visible}textarea.wpbdp-submit-listing-tos{min-height:100px}#change-plan-link{text-align:right;font-size:90%}#wpbdp-submit-listing-account-details{margin:10px 0 0 0}#wpbdp-submit-listing-account-details input[type="password"]{width:70%;display:inline-block}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter{float:right;width:20%;padding:4px;text-align:center;border:1px solid}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter.strength-0{background-color:#f1adad;border-color:#e35b5b}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter.strength-2{background-color:#fbc5a9;border-color:#f78b53}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter.strength-3{background-color:#ffe399;border-color:#ffc733}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter.strength-4{background-color:#c1e1b9;border-color:#83c373}@media only screen and (max-width:450px){.wpbdp-form-field.wpbdp-form-field-type-url .wpbdp-url-field-col{grid-column:span 12 / span 12}.wpbdp-submit-rootline .wpbdp-rootline-section:not(.wpbdp-submit-section-current),.wpbdp-submit-rootline .wpbdp-rootline-section .wpbdp-rootline-bar{display:none}.wpbdp-submit-rootline .wpbdp-rootline-section.wpbdp-submit-checked .wpbdp-rootline-circle .wpbdp-rootline-checkmark{display:none}.wpbdp-submit-rootline .wpbdp-rootline-section.wpbdp-submit-checked .wpbdp-rootline-circle .wpbdp-rootline-counter span{display:initial}}.wpbdp-form-field-type-image #image-upload-form,.wpbdp-submit-listing-section-listing_images #image-upload-form{margin:15px 10px}.wpbdp-form-field-type-image #wpbdp-uploaded-images,.wpbdp-submit-listing-section-listing_images #wpbdp-uploaded-images{margin:0 0 20px 0}.wpbdp-form-field-type-image .wpbdp-image,.wpbdp-submit-listing-section-listing_images .wpbdp-image{padding:10px 0;border-bottom:1px solid #d2d2d2;display:flex;align-items:center}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-img,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-img{margin:0 10px}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-img img,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-img img{object-fit:cover;width:50px;height:50px}.wpbdp-form-field-type-image .wpbdp-image .wpbdp_thumbnail_indicator,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp_thumbnail_indicator{font-size:.8em;display:none}.wpbdp-form-field-type-image .wpbdp-image:first-of-type .wpbdp_thumbnail_indicator,.wpbdp-submit-listing-section-listing_images .wpbdp-image:first-of-type .wpbdp_thumbnail_indicator{display:inline-block}.wpbdp-form-field-type-image .wpbdp-image:first-of-type .wpbdp_thumbnail_indicator::before,.wpbdp-submit-listing-section-listing_images .wpbdp-image:first-of-type .wpbdp_thumbnail_indicator::before{content:"✓"}.wpbdp-form-field-type-image .wpbdp-image:last-of-type,.wpbdp-submit-listing-section-listing_images .wpbdp-image:last-of-type{border:none}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-extra,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-extra{flex:1 0 auto}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-extra input[type="text"],.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-extra input[type="text"]{width:60%}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-delete-link,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-delete-link{font-size:12px;text-decoration:none;color:#900000;display:none;margin-left:10px}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-delete-link:hover,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-delete-link:hover{text-decoration:underline}.wpbdp-form-field-type-image .wpbdp-image:hover .wpbdp-image-delete-link,.wpbdp-submit-listing-section-listing_images .wpbdp-image:hover .wpbdp-image-delete-link{display:inline}.wpbdp-form-field-type-image .wpbdp-drag-handle,.wpbdp-submit-listing-section-listing_images .wpbdp-drag-handle{visibility:hidden}.wpbdp-form-field-type-image:hover .wpbdp-drag-handle,.wpbdp-submit-listing-section-listing_images:hover .wpbdp-drag-handle{visibility:visible}.wpbdp-form-field-type-image .wpbdp-image-draggable-highlight,.wpbdp-submit-listing-section-listing_images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-form-field-type-image #image-upload-form-no-js,.wpbdp-submit-listing-section-listing_images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-form-field-type-image .wpbdp-image{border:none}.wpbdp-submit-listing-section h3,.wpbdp-submit-listing-section .wpbdp-recaptcha{margin-top:40px}.wpbdp-submit-listing-section-header{display:none}.wpbdp-with-button-styles .submit-back-button.wpbdp-button{background:transparent !important;border:1px solid #569AF6;border-color:var(--bd-main-color);color:#569AF6;color:var(--bd-main-color) !important}.wpbdp-with-button-styles .submit-back-button.wpbdp-button:hover{background:#569AF6;background:var(--bd-main-color) !important;color:#fff !important}.wpbdp-with-button-styles .select2-container .select2-selection{border-color:#d2d2d2}.wpbdp-with-button-styles .select2-container .select2-results__option--highlighted[data-selected]{background-color:var(--bd-main-color)}#wpbdp-login-view .wpbdp-login-options{margin:30px 0 0 0;box-sizing:border-box}#wpbdp-login-view .wpbdp-login-options.options-2 .wpbdp-login-option{width:50%;float:left;box-sizing:border-box}#wpbdp-login-view .wpbdp-login-options.options-2 .wpbdp-login-option:first-child{padding:0 20px 0 0}#wpbdp-login-view .wpbdp-login-options.options-2 .wpbdp-login-option:last-child{border-left:1px solid #d2d2d2;padding:0 0 0 20px}#wpbdp-login-view #loginform #user_login,#wpbdp-login-view #loginform #user_pass{display:block}#wpbdp-login-view h4{font-size:21px;margin-top:0}#wpbdp-login-view .access-key-message{font-size:13px}#wpbdp-login-view input[type=text],#wpbdp-login-view input[type=password]{width:100%}.wpbdp-wp-theme-twentyseventeen #wpbdp-login-access-key-form input[type=submit]{margin-top:49px}.wpbdp-wp-theme-twentyseventeen #wpbdp-login-form h4{margin-bottom:74px}.wpbdp-wp-theme-twentynineteen #wpbdp-login-view h4{font-size:24px}.wpbdp-wp-theme-twentynineteen #wpbdp-login-view .access-key-message{font-size:16px}.wpbdp-wp-theme-twentynineteen #wpbdp-login-view #wpbdp-login-access-key-form input[type=submit]{margin-top:60px}.wpbdp-wp-theme-twentynineteen #wpbdp-login-view #wpbdp-login-form h4{margin-bottom:72px}.wpbdp-wp-theme-twentytwenty #wpbdp-login-access-key-form input[type=submit]{margin-top:44px}.wpbdp-wp-theme-twentytwenty #wpbdp-login-form h4{margin-bottom:57px}.wpbdp-msg{padding:10px 12px;margin:5px 0;background:#FEF7D3;border:1px solid rgba(63,75,91,0.2);box-sizing:border-box;border-radius:4px;font-size:14px;color:rgba(63,75,91,0.6)}.wpbdp-msg ul{margin:0}.wpbdp-msg ul li{list-style-position:inside}.wpbdp-msg.error,.wpbdp-msg.wpbdp-error{color:#fff;background:#d64226}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options td.fee-label,.wpbdp-submit-page table.fee-options tr.fee-description td{text-align:left}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{padding:15px 10px 10px;border-radius:2px;background-color:var(--bd-main-color-8)}#wpbdp-renewal-page .do-not-renew-listing p:last-child{margin-bottom:0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{background:#d64226}.wpbdp-recaptcha-error{color:#d64226}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-right:20px;background:#d64226}.wpbdp-scroll-box{padding:10px;margin:30px 0;border:1px solid #d2d2d2;max-height:250px;overflow:auto}.wpbdp-checkout input[type="image"]{padding:0;border:none;box-shadow:none;width:auto}table#wpbdp-manage-recurring th.listing-title,table#wpbdp-manage-recurring td.listing-title{min-width:200px}table#wpbdp-manage-recurring a.cancel-subscription{color:#d64226}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.wpbdp-cancel-subscription-form{padding:15px 10px 10px;border-radius:2px;background-color:var(--bd-main-color-8)}.wpbdp-cancel-subscription-form p:last-child{margin-bottom:0}.wpbdp-cancel-subscription-form input.button-primary[type="submit"]{background-color:#d64226}.wpbdp-cc-form{padding:0;width:90%}.wpbdp-cc-form h4{margin:0}.wpbdp-cc-field input{width:auto}.wpbdp-cc-field label{display:block;font-weight:bold;text-align:right;padding-right:10px}#wpbdp-billing-information .billing-info-section h4{margin:10px 0 5px 0}#wpbdp-billing-information .billing-info-section table{margin:1.75em 0}#wpbdp-billing-information #wpbdp-billing-field-exp,#wpbdp-billing-information #wpbdp-billing-field-exp-year{width:40%;display:inline}#wpbdp-billing-information .form-buttons{margin:15px 0}a.wpbdp-show-on-mobile,input[type="button"].wpbdp-show-on-mobile,.wpbdp-show-on-mobile{display:none}body.business-directory #TB_ImageOff .screen-reader-text,body.business-directory #TB_closeWindowButton .screen-reader-text{visibility:hidden}body.business-directory #TB_next{float:right}body.business-directory #TB_prev{float:left}body.business-directory #TB_caption{text-align:center;width:70%;height:auto}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{font-size:11px;color:#666}.wpbdp-form-row label{display:block}.wpbdp-form-row.wpbdp-form-textfield input[type="text"]{width:400px}.wpbdp-main-box,.wpbdp-main-box .box-row,.wpbdp-main-box .box-col{box-sizing:border-box;width:100%}.wpbdp-main-box{margin:10px 0 20px 0}.wpbdp-main-box .box-col{margin-bottom:4px}.wpbdp-main-box .box-col input{width:100%;min-width:150px;box-sizing:border-box}.distance-field-wrapper .box-row{display:flex;align-items:center}.wpbdp-main-box .submit-btn input[type="submit"]{margin-top:0}.wpbdp-main-box .advanced-search-link{border:none;box-shadow:none;display:block;font-size:11px;text-align:right;text-decoration:none}.wpbdp-main-box .search-fields .box-row,.wpbdp-main-box .main-fields.box-row form{width:100%;display:flex;gap:5px}.wpbdp-main-box .submit-btn{width:22%;min-width:150px}.wpbdp-main-box-tiny .submit-btn,.wpbdp-main-box-small .submit-btn{width:100%}.wpbdp-main-box-tiny .search-fields .box-row,.wpbdp-main-box-tiny .main-fields.box-row form,.wpbdp-main-box-small .search-fields .box-row,.wpbdp-main-box-small .main-fields.box-row form{display:block}.wpbdp-main-links{text-align:right}a.wpbdp-button{white-space:nowrap}.wpbdp-main-links .button,.wpbdp-main-links-large .button{margin:0 3px 6px;font-size:15px;display:inline-block}.wpbdp-main-links .button:first-child{margin-left:0}.wpbdp-main-links .button:last-child{margin-right:0}.wpbdp-main-links-tiny .wpbdp-main-links .button{padding-top:10px;padding-bottom:10px;width:100%;margin:0 0 4px}.wpbdp-main-links-small .button{width:100%;margin:0 0 4px;text-align:center}.wpbdp-main-links-small .wpbdp-main-links-2-buttons .button{width:49%}.wpbdp-main-links-small .wpbdp-main-links-2-buttons .button:first-child{margin-right:1%}.wpbdp-with-button-styles .wpbdp-checkout-submit input[type=submit],.wpbdp-with-button-styles .wpbdp-ratings-reviews input[type=submit],.wpbdp-with-button-styles .wpbdp-main-box input[type=submit],.wpbdp-with-button-styles .listing-actions a.wpbdp-button,.wpbdp-with-button-styles .wpbdp-button{background:#569AF6;background:var(--bd-main-color) !important;border:1px solid #569AF6;border-color:var(--bd-main-color)}.wpbdp-with-button-styles .wpbdp-checkout-submit input[type=submit]:hover,.wpbdp-with-button-styles .wpbdp-ratings-reviews input[type=submit]:hover,.wpbdp-with-button-styles .wpbdp-main-box input[type=submit]:hover,.wpbdp-with-button-styles .listing-actions a.wpbdp-button:hover,.wpbdp-with-button-styles .wpbdp-button:hover{opacity:.8;background:var(--bd-main-color)}.wpbdp-with-button-styles .wpbdp-main-links-tiny .wpbdp-main-links .button{padding-top:10px;padding-bottom:10px}.wpbdp-with-button-styles .wpbdp-main-links-small .button{padding-top:10px;padding-bottom:10px}.wpbdp-with-button-styles .wpbdp-main-links-medium .wpbdp-main-links .button{padding-top:8px;padding-bottom:8px}.single-wpbdp_listing .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-show_category .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-show_tag .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-search .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-submit_listing .wpbdp-view-content-wrapper header.entry-header{display:none}.wpbdp-wp-theme-graphene.single-wpbdp_listing h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_category h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_tag h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-search h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-submit_listing h1.post-title{display:none}.wpbdp-wp-theme-genesis.wpbdp-view-show_category .archive-description,.wpbdp-wp-theme-genesis.wpbdp-view-show_tag .archive-description{display:none}.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_category .post-details,.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_tag .post-details{display:none}.wpbdp-wp-theme-atahualpa.wpbdp-view-show_category .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_tag .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_listing .post-footer{display:none}.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_category .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_tag .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_listing .entry-content .featured-image{display:none}.wpbdp-plan-info-box{padding:10px;margin:0 0 6px 0;border:1px solid #d2d2d2;border-radius:2px;display:flex;align-items:center;flex-wrap:wrap}.wpbdp-plan-info-box .wpbdp-plan-details,.wpbdp-plan-info-box .wpbdp-plan-price{float:left;box-sizing:border-box}.wpbdp-plan-info-box .wpbdp-plan-details{width:55%;padding:0 10px}.wpbdp-plan-info-box .wpbdp-plan-price{width:40%;text-align:center}.wpbdp-plan-info-box .wpbdp-plan-price label{cursor:pointer;margin-top:15px;font-size:20px;display:block;padding:6px 12px}.wpbdp-plan-info-box .wpbdp-plan-price input[type=radio]{display:none}.wpbdp-plan-info-box .wpbdp-plan-description{margin:0 0 10px 0}.wpbdp-plan-info-box .wpbdp-plan-price-amount,.wpbdp-plan-info-box .wpbdp-plan-label{font-size:1.1em;font-weight:bold;margin-bottom:10px}.wpbdp-plan-info-box .wpbdp-plan-feature-list{margin:0 0 0 10px}.wpbdp-plan-info-box .wpbdp-plan-details p{margin:0}.wpbdp-plan-info-box .wpbdp-plan-feature-list li{list-style-position:inside;margin:0}.wpbdp-plan-info-box .wpbdp-plan-disabled-msg{clear:both}.wpbdp-plan-info-box .wpbdp-plan-private-msg{width:100%;display:inline-block;text-align:right}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-duration,.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-details,.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-price{width:100%}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-duration-amount,.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-duration-period{display:inline}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-details{padding:0 0 4pt}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-label{font-size:1.5em;margin-bottom:5px}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-description{margin-bottom:5px}.wpbdp-with-button-styles .wpbdp-plan-info-box .wpbdp-plan-price input[type=radio]+label{background:transparent !important;border:1px solid #569AF6;border-color:var(--bd-main-color);color:#569AF6;color:var(--bd-main-color) !important}.wpbdp-with-button-styles .wpbdp-plan-info-box .wpbdp-plan-price input[type=radio]+label:hover{background:#569AF6;background:var(--bd-main-color) !important;color:#fff !important}.wpbdp-with-button-styles .wpbdp-plan-info-box .wpbdp-plan-price input[type=radio]:checked+label{color:#fff !important;background:var(--bd-main-color) !important}.wpbdp-dnd-area{margin:0 auto;border:1px solid #ddd;width:100%}.wpbdp-dnd-area.dragging{background:#efefef}.wpbdp-dnd-area p{margin:0;font-size:16px;line-height:24px}.wpbdp-dnd-area p.dnd-message{font-size:24px;line-height:24px}.wpbdp-dnd-area .dnd-area-inside{letter-spacing:1px;margin:54px auto 38px;text-align:center}.wpbdp-dnd-area .dnd-area-inside-working{text-align:center;margin:50px auto 38px}.wpbdp-dnd-area .dnd-area-inside-working span{font-weight:bold}.wpbdp-dnd-area .dnd-area-inside-error{color:#900000;text-align:center;margin:50px 25px}.wpbdp-dnd-area .upload-button{position:relative;overflow:hidden}.wpbdp-dnd-area .upload-button a{text-decoration:none}.wpbdp-dnd-area .upload-button a:hover{cursor:pointer}.wpbdp-dnd-area .upload-button input{margin:0;padding:0;position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;opacity:0;border:none !important;z-index:-1}.area-and-conditions #image-upload-dnd-area{box-sizing:border-box;background-color:rgba(86,154,246,0.08);background-color:var(--bd-main-color-8);border-color:var(--bd-main-color-20);border-radius:4px}.area-and-conditions #image-upload-dnd-area .dnd-buttons a{letter-spacing:initial}#image-upload-conditions{font-size:12px;margin-bottom:6px;opacity:.8}#image-slots-available{float:right}.wpbdp-drag-handle{width:6px;height:10px;display:inline-block;background:url('../../assets/images/drag-handle.png') 0 0;cursor:move;float:left;margin:5px 5px 0 0;vertical-align:middle}.wpbdp-help-tip{margin:10px 0}.wpbdp-help-tip .dashicons{vertical-align:middle}.wpbdp-help-tip .message{display:inline-block}.wpbdp-help-tip.small{font-size:12px}.wpbdp-help-tip.small .dashicons{font-size:15px;width:15px;height:15px}.wpbdp-hidden{display:none}.wpbdp-form-field-association-category .wpbdp-form-field-checkbox-item.disabled,.wpbdp-form-field-association-category .wpbdp-form-field-radio-item.disabled{opacity:.65}.wpbdp-form-field-association-category select{width:100%}.wpbdp-form-field-association-category .select2{width:100%}.wpbdp-form-field-association-category .select2 .select2-selection{border-radius:0;padding-left:5px}.wpbdp-form-field-association-category .select2 ul.select2-selection__rendered li.select2-selection__choice{font-size:11px;padding:1px 6px;border-radius:3px;font-weight:normal;white-space:nowrap;vertical-align:baseline;border:none}.wpbdp-form-field-association-category .select2 ul.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__remove{margin-right:5px}.wpbdp-form-field-association-category .select2 ul.select2-selection__rendered li.select2-selection__choice,.wpbdp-form-field-association-category .select2 ul.select2-selection__rendered li.select2-search--inline{margin:5px 5px 0 0}.wpbdp-form-field-association-category .select2 .select2-search .select2-search__field{font-size:11px}#wpbdp-listing-flagging-page textarea{width:90%;min-height:150px;margin-bottom:10px}.wpbdp-thumbnail{max-width:200px;max-height:200px;max-width:var(--bd-thumbnail-width);max-height:var(--bd-thumbnail-height)}.wpbdp-thumbnail-cropped{width:200px;height:200px;width:var(--bd-thumbnail-width);height:var(--bd-thumbnail-height);object-fit:cover}@media screen and (max-width:560px){.wpbdp-show-on-mobile{display:inline !important}input[type="button"].wpbdp-hide-on-mobile{display:none}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar form.wpbdp-search-form{display:block;margin-left:0;margin-top:10px}.wpbdp-bar form.wpbdp-search-form #intextbox{margin-bottom:5px;padding:4px}.wpbdp-bar form.wpbdp-search-form input[type="text"]{padding:4px 0;margin:0 0 2px 0}.wpbdp-main-box .search-fields .box-row,.wpbdp-main-box .main-fields.box-row form{display:block}.wpbdp-main-box .submit-btn{width:100%}.wpbdp-main-links .button{width:100%}.wpbdp-listing.wpbdp-listing{font-size:90%}.wpbdp-listing.wpbdp-listing-excerpt .field-value>label{display:block}.wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail,.wpbdp-listing.wpbdp-listing-single .listing-thumbnail{float:none;padding:5px}.wpbdp-listing.wpbdp-listing-excerpt .listing-details,.wpbdp-listing.wpbdp-listing-single .listing-details{margin:0 5px;float:none;display:block}.wpbdp-listing .listing-actions input{font-size:70%}.wpbdp-listing .listing-actions input.back-to-dir{float:right}.wpbdp-listing.wpbdp-listing-single .main-image{display:block;float:none;padding:0;margin:0 0 10px 0;text-align:center;max-width:90%}.wpbdp-listing.wpbdp-listing-single .field-value>label{display:block}.wpbdp-submit-page.step-images #image-upload-dnd-area{font-size:90%;float:none !important;width:100% !important}.wpbdp-submit-page.step-images .dnd-area-inside-error{margin-top:30px}.wpbdp-submit-page.step-images #image-upload-conditions{width:100% !important;float:none !important;font-size:90%}.wpbdp-submit-page.step-images #image-upload-conditions dl{margin:0;padding:0}.wpbdp-submit-page.step-images #image-upload-conditions dl dt{margin:0;margin-right:5px;padding:0;float:left}.wpbdp-submit-page.step-images #image-upload-conditions dl dd{margin:0;padding:0;display:block}.wpbdp-submit-page.step-images .wpbdp-image img{max-width:50%}}
|
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}.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .submit-btn input[type="submit"],.wpbdp-wp-theme-twentytwenty .wpbdp-main-box .submit-btn input[type="submit"],.wpbdp-wp-theme-twentytwentyone .wpbdp-main-box .submit-btn input[type="submit"]{padding:16px 12px;font-size:14px}.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .box-col .distance-field input,.wpbdp-wp-theme-twentytwenty .wpbdp-main-box .box-col .distance-field input,.wpbdp-wp-theme-twentytwentyone .wpbdp-main-box .box-col .distance-field input{min-width:70px}.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .box-col .unit-label,.wpbdp-wp-theme-twentytwenty .wpbdp-main-box .box-col .unit-label,.wpbdp-wp-theme-twentytwentyone .wpbdp-main-box .box-col .unit-label{font-size:14px}.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .box-col .unit-label{font-size:16px}@media screen and (min-width:1900px){.wpbdp-wp-theme-twentynineteen .wpbdp-main-box .box-col .unit-label{font-size:20px}}.wpbdp-wp-theme-twentytwenty .wpbdp-page{max-width:69rem !important}.wpbdp-wp-theme-twentysixteen .wpbdp-listing .social-fields .social-field.linkedin{vertical-align:text-top}.wpbdp-wp-theme-twentyseventeen .single-featured-image-header{display:none}.wpbdp-wp-theme-twentyseventeen .wpbdp-listing .social-fields .twitter.twitter-handle{vertical-align:text-top;padding-top:1px}.wpbdp-wp-theme-twentynineteen .wpbdp-listing .social-fields .twitter.twitter-handle{vertical-align:text-top}.wpbdp-wp-theme-twentytwenty .wpbdp-main-links .wpbdp-button,.wpbdp-wp-theme-twentytwenty .box-col.submit-btn input,.wpbdp-wp-theme-twentytwenty .listing-actions{font-size:1.1rem}.wpbdp-wp-theme-twentytwenty .wpbdp-listing-excerpt{font-size:1.8rem}.wpbdp-wp-theme-twentytwenty .wpbdp-listing .social-fields .social-field.facebook,.wpbdp-wp-theme-twentytwenty .wpbdp-listing .social-fields .social-field.instagram{margin-top:-5px;vertical-align:top}.wpbdp-wp-theme-twentytwentytwo.single-wpbdp_listing .listing-title{display:none}.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="text"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="email"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="url"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="password"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="search"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="number"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="tel"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="date"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="month"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="week"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="time"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="datetime"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="submit"],.wpbdp-wp-theme-twentytwentytwo .wpbdp-page select,.wpbdp-wp-theme-twentytwentytwo .wpbdp-page textarea{padding:8px;max-width:100%;font-size:inherit;font-family:inherit}.wpbdp-wp-theme-twentytwentytwo .wpbdp-page .wpbdp-button,.wpbdp-wp-theme-twentytwentytwo .wpbdp-page input[type="submit"]{color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary);text-decoration:none}.wpbdp-wp-theme-twentytwentytwo .wpbdp-page .wpbdp-submit-listing-form-actions .wpbdp-button,.wpbdp-wp-theme-twentytwentytwo .wpbdp-page .wpbdp-submit.wpbdp-button,.wpbdp-wp-theme-twentytwentytwo .wpbdp-page .wpbdp-main-links .button{padding:calc(0.667em + 2px) calc(1.333em + 2px);font-size:var(--wp--preset--font-size--medium)}.wpbdp-wp-theme-twentytwentytwo .wpbdp-button{color:var(--wp--preset--color--background)}#ui-datepicker-div{z-index:999999 !important}.wpbdp-datepicker.ui-datepicker{display:none;width:19em;background:#fff;border:1px solid #d2d2d2;border-radius:0;padding:0}.wpbdp-datepicker.ui-datepicker .ui-datepicker-title{line-height:1.8em}.wpbdp-datepicker.ui-datepicker .ui-widget-header,.wpbdp-datepicker.ui-datepicker .ui-datepicker-header{background:var(--bd-main-color);color:#fff;opacity:80%}.wpbdp-datepicker.ui-datepicker .ui-datepicker-header .ui-icon{background:none;border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:3px;height:0;font-size:0}.wpbdp-datepicker.ui-datepicker .ui-datepicker-header .ui-icon.ui-icon-circle-triangle-w{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.wpbdp-datepicker.ui-datepicker .ui-datepicker-header .ui-icon.ui-icon-circle-triangle-e{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.wpbdp-datepicker.ui-datepicker .ui-datepicker-prev,.wpbdp-datepicker.ui-datepicker .ui-datepicker-next{width:1.8em;height:100%;top:2px}.wpbdp-datepicker.ui-datepicker .ui-datepicker-prev span,.wpbdp-datepicker.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-5px;top:50%;cursor:pointer}.wpbdp-datepicker.ui-datepicker .ui-datepicker-prev-hover,.wpbdp-datepicker.ui-datepicker .ui-datepicker-next-hover{background:transparent;border:none;top:2px}.wpbdp-datepicker.ui-datepicker .ui-datepicker-prev{left:2px}.wpbdp-datepicker.ui-datepicker .ui-datepicker-next{right:2px}.wpbdp-datepicker.ui-datepicker .ui-state-default{background:transparent;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 0;font-weight:normal;border:none}.wpbdp-datepicker.ui-datepicker table{margin:0}.wpbdp-datepicker.ui-datepicker td{width:14.2%;padding:0;border:1px solid rgba(210,210,210,0.5)}.wpbdp-datepicker.ui-datepicker td.ui-datepicker-today{background:var(--bd-main-color-20) !important}.wpbdp-datepicker.ui-datepicker td.ui-datepicker-other-month{border:transparent}.wpbdp-datepicker.ui-datepicker td .ui-state-highlight{border-color:rgba(210,210,210,0.5)}.wpbdp-datepicker.ui-datepicker tr:first-of-type td{border-top:transparent}.wpbdp-datepicker.ui-datepicker tr:last-of-type td{border-bottom:transparent}.wpbdp-datepicker.ui-datepicker td.ui-datepicker-current-day,.wpbdp-datepicker.ui-datepicker td .ui-state-hover,.wpbdp-datepicker.ui-datepicker td .ui-state-active,.wpbdp-datepicker.ui-datepicker thead{background:var(--bd-main-color);color:#fff}.wpbdp-datepicker.ui-datepicker .ui-corner-all{border-radius:0}.wpbdp-datepicker.ui-datepicker .ui-datepicker-buttonpane{border-top:1px solid rgba(210,210,210,0.5);margin-top:0}.wpbdp-cf:before,.wpbdp-cf:after,.cf:before,.cf:after{content:" ";display:table}.wpbdp-cf:after,.cf:after{clear:both}form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>.wpbdp-search-field-label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{box-sizing:border-box;width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{box-sizing:border-box;width:90%}#wpbdp-search-form input[type="submit"]{float:none;margin:auto}.wpbdp-clearfix:after,.cf:before,.cf:after{content:" ";display:table}.wpbdp-clearfix:after,.cf:after{clear:both}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0 0 5px;font-size:80%}.wpbdp-with-button-styles .wpbdp-listing .listing-actions .wpbdp-button.delete-listing,.listing-actions .delete-listing,.listing-actions a.delete-listing{color:#d64226 !important;background-color:transparent !important;border-color:transparent}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;margin-right:3px}.listing-actions>span{font-size:11px;margin-right:10px}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label,.field-value .field-label{color:#444;font-weight:bold;padding-right:5px}.field-value .value{display:inline}.wpbdp-listing-excerpt{padding:10px}.wpbdp-listing-excerpt .wpbdp-hide-title .listing-details .wpbdp-field-title,.wpbdp-listing-excerpt .wpbdp-hide-title .listing-details .wpbdp-field-name{display:none}.wpbdp-listing-excerpt.sticky{background:#fff0cf;background:var(--bd-main-color-8)}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single.sticky{margin-top:30px}.wpbdp-listing-excerpt .stickytag,.wpbdp-listing-single .stickytag{float:right;margin-top:-20px}.wpbdp-listing-excerpt .stickytag img,.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent;max-height:102px}.wpbdp-listing-single .stickytag{position:absolute;bottom:0;right:0}.wpbdp-sticky-tag{background:var(--bd-main-color);color:#fff;padding:6px 15px;margin:0 15px;border-radius:4px;text-transform:uppercase;font-weight:600;vertical-align:text-bottom;display:inline-block;font-size:12px}.wpbdp-is-table .wpbdp-listing-excerpt>.wpbdp-sticky-tag{display:none !important}.wpbdp-listing-excerpt .wpbdp-sticky-tag{float:right;margin-top:10px;margin-right:0}.wpbdp-listing-excerpt.wpbdp-has-ribbon{position:relative;overflow:hidden}.wpbdp-listing-excerpt.wpbdp-has-ribbon .wpbdp-sticky-tag{transform:rotate(45deg);text-align:center;position:absolute;top:12px;right:-48px;width:150px;margin:0;border-radius:0}.wpbdp-listing-excerpt.wpbdp-has-ribbon .wpbdp-claim-listings{display:none}.wpbdp-listing-single .listing-title{margin-bottom:7px;position:relative}.wpbdp-listing-single .listing-title h1,.wpbdp-listing-single .listing-title h2,.wpbdp-listing-single .listing-title h3{display:inline-block}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #d2d2d2}.single-wpbdp_listing .extra-images,.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.single-wpbdp_listing .extra-images ul,.wpbdp-listing-single .extra-images ul{margin:0 auto;padding:0;width:100%}.single-wpbdp_listing .extra-images ul li,.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline-block;margin-left:5px;margin-bottom:5px}.single-wpbdp_listing .extra-images ul li img,.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #d2d2d2}.single-wpbdp_listing .social-fields,.wpbdp-listing .social-fields{margin:20px 0;vertical-align:top}.social-field-link,.single-wpbdp_listing .social-field,.wpbdp-listing .social-field{display:inline-block;margin-right:10px;height:20px;vertical-align:text-top}.social-field-link iframe,.single-wpbdp_listing .social-field iframe,.wpbdp-listing .social-field iframe{margin-bottom:0}.social-field-link img,.single-wpbdp_listing .social-field img,.wpbdp-listing .social-field img{vertical-align:initial}.social-field-link .social-icon,.single-wpbdp_listing .social-field .social-icon,.wpbdp-listing .social-field .social-icon{display:inline-block;background-color:transparent;color:#1a1a1a}.social-field-link .social-text,.single-wpbdp_listing .social-field .social-text,.wpbdp-listing .social-field .social-text{font-size:90%}.social-field-link a,.single-wpbdp_listing .social-field a,.wpbdp-listing .social-field a{box-shadow:none}.social-field-link a img,.single-wpbdp_listing .social-field a img,.wpbdp-listing .social-field a img{height:20px;width:auto}.social-field-link a object,.single-wpbdp_listing .social-field a object,.wpbdp-listing .social-field a object{height:20px;margin-bottom:0}.social-field-link.icon_first .social-icon,.single-wpbdp_listing .social-field.icon_first .social-icon,.wpbdp-listing .social-field.icon_first .social-icon{margin-right:5px}.social-field-link.text_first .social-text,.single-wpbdp_listing .social-field.text_first .social-text,.wpbdp-listing .social-field.text_first .social-text{margin-right:5px}.wpbdp-listing-contact-form{margin-top:20px;padding-top:20px}.wpbdp-listing-contact-form #wpbdp-contact-form-recaptcha{margin-bottom:20px}.wpbdp-listing-contact-form textarea{width:100%}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar .wpbdp-search-form{margin:0;padding:0 !important;margin-left:50%}.wpbdp-main-links a{margin-right:15px}.wpbdp-bar .left{float:left;text-align:center}.wpbdp-bar .right{width:300px;float:right}.wpbdp-listings-sort-options{font-size:90%;margin:5px 0 10px}.wpbdp-listings-sort-options label{font-weight:normal}.wpbdp-listings-sort-options select{margin:0 4px}#wpbdp-categories{clear:both}.wpbdp-categories{margin:0;padding-left:20px}.wpbdp-categories .cat-item{box-sizing:border-box;float:left;margin:0 0 20px;width:50%}.wpbdp-categories .cat-item:nth-child(2n+1){clear:left}.wpbdp-categories .cat-item .cat-item{margin:0;width:100%}.wpbdp-categories-tiny .cat-item{float:none;width:100%}.wpbdp-categories-tiny .cat-item:nth-child(2n+1){clear:none}#wpbdp-checkout-form-fields,.wpbdp-form-field{margin:14px 0}#wpbdp-checkout-form-fields label,.wpbdp-form-field label{font-weight:500}#wpbdp-checkout-form-fields label .wpbdp-form-field-required-indicator,.wpbdp-form-field label .wpbdp-form-field-required-indicator{margin-left:3px;font-size:90%}#wpbdp-checkout-form-fields.wpbdp-form-field-has-description .wpbdp-form-field-label,.wpbdp-form-field.wpbdp-form-field-has-description .wpbdp-form-field-label{margin-bottom:0}#wpbdp-checkout-form-fields.wpbdp-form-field-has-description .wpbdp-form-field-description,.wpbdp-form-field.wpbdp-form-field-has-description .wpbdp-form-field-description{margin-bottom:3px}#wpbdp-checkout-form-fields .wpbdp-description,.wpbdp-form-field .wpbdp-description,#wpbdp-checkout-form-fields .wpbdp-form-field-description,.wpbdp-form-field .wpbdp-form-field-description{opacity:.8;font-size:14px;display:block}#wpbdp-checkout-form-fields .wpbdp-form-field-inner,.wpbdp-form-field .wpbdp-form-field-inner{padding-left:6px}#wpbdp-checkout-form-fields textarea,.wpbdp-form-field textarea,#wpbdp-checkout-form-fields input[type="text"],.wpbdp-form-field input[type="text"],#wpbdp-checkout-form-fields input[type="tel"],.wpbdp-form-field input[type="tel"],#wpbdp-checkout-form-fields select,.wpbdp-form-field select{width:100%;box-sizing:border-box}#wpbdp-checkout-form-fields .field-description,.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .preview,.wpbdp-form-field.wpbdp-form-field-type-social-network .preview{margin-bottom:20px}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .preview img,.wpbdp-form-field.wpbdp-form-field-type-social-network .preview img{display:inline}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .preview a.delete,.wpbdp-form-field.wpbdp-form-field-type-social-network .preview a.delete{color:#900000;margin-left:20px;display:none;vertical-align:top}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .preview:hover a.delete,.wpbdp-form-field.wpbdp-form-field-type-social-network .preview:hover a.delete{display:inline}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network input[type="text"],.wpbdp-form-field.wpbdp-form-field-type-social-network input[type="text"]{width:100%}#wpbdp-checkout-form-fields.wpbdp-form-field-type-social-network .wpbdp-social-type-field .sublabel,.wpbdp-form-field.wpbdp-form-field-type-social-network .wpbdp-social-type-field .sublabel{display:block}.wpbdp-form-field-validation-error-wrapper{margin:24px 0}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors{font-size:80%;color:#d64226;position:relative;background:#fff;border:1px solid #d64226;border-radius:4px;padding:4px 6px;margin:0 12px 3px 6px}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors:after,.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors:before{top:100%;left:12px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors:after{border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:4px;margin-left:-4px}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field-validation-errors:before{border-color:rgba(214,66,38,0);border-top-color:#d64226;border-width:5px;margin-left:-5px}.wpbdp-form-field-validation-error-wrapper .wpbdp-form-field{margin:0}.wpbdp-form-field-validation-error-wrapper+label{color:#d64226}.wpbdp-checkout-section{margin:0 0 1.5em 0;padding:.7em 1.2em;border:solid 1px #efefef}.wpbdp-checkout-section.wpbdp-checkout-errors{padding:0;border:none}.wpbdp-checkout-section h3{margin:0 0 1em 0;padding:0}.wpbdp-checkout-gateway-selection label{margin:0 10px 0 0}.wpbdp-checkout-gateway-selection label:last-child{margin-right:0}.wpbdp-checkout-gateway-selection label input,.wpbdp-checkout-gateway-selection label img{vertical-align:middle}.wpbdp-checkout-gateway-selection label img{margin-bottom:10px}.wpbdp-billing-detail-field{margin:0 0 1.5em 0;font-size:95%}.wpbdp-billing-detail-field.wpbdp-required label:after{content:' *';color:#d64226}.wpbdp-exp-field select{width:auto}.wpbdp-exp-slash{padding:0 5px}.wpbdp-payment-receipt{border:1px solid #d2d2d2;padding:1em 1.5em;margin:1.5em 0;font-size:90%}.wpbdp-payment-receipt h4{margin:0;padding:0}.wpbdp-payment-receipt .wpbdp-payment-receipt-date{color:#666}.wpbdp-payment-receipt .wpbdp-payment-status{float:right}.wpbdp-payment-receipt .wpbdp-payment-receipt-details{margin:1.5em .5em}.wpbdp-payment-receipt .wpbdp-payment-receipt-details dl{margin:0;padding:0}.wpbdp-payment-receipt .wpbdp-payment-receipt-details dl dt{margin:0;padding:0;float:left;min-width:50%}.wpbdp-payment-receipt .wpbdp-payment-receipt-details dl dd{margin:0 0 5px 50%;padding:0}.wpbdp-payment-receipt .wpbdp-payment-receipt-print{margin:1.5em 0 0 0}.wpbdp-checkout-invoice table.wpbdp-payment-items-table th,.wpbdp-checkout-invoice table.wpbdp-payment-items-table td{font-size:95%}.wpbdp-checkout-invoice table.wpbdp-payment-items-table tr.item td:first-of-type{width:80%}.wpbdp-checkout-invoice table.wpbdp-payment-items-table .item-fee-description{margin-left:10px;font-size:85%;max-width:90%}.wpbdp-grid{display:grid;grid-template-columns:repeat(12, 1fr);grid-auto-rows:max-content;grid-gap:20px 4%}.wpbdp-grid>*{grid-column:span 12 / span 12}.wpbdp-col-grid-2 .wpbdp-grid>div,.wpbdp6,.wpbdp-half{grid-column:span 6 / span 6}.wpbdp-col-grid-3 .wpbdp-grid>div,.wpbdp4{grid-column:span 4 / span 4}.wpbdp8{grid-column:span 8 / span 8}.wpbdp3{grid-column:span 3 / span 3}.wpbdp9{grid-column:span 9 / span 9}.wpbdp2{grid-column:span 2 / span 2}.wpbdp10{grid-column:span 10 / span 10}.wpbdp1{grid-column:span 1 / span 1}.wpbdp5{grid-column:span 5 / span 5}.wpbdp7{grid-column:span 7 / span 7}.wpbdp11{grid-column:span 11 / span 11}.wpbdp12,.wpbdp-full{width:100% !important;grid-column:span 12 / span 12;box-sizing:border-box}.wpbdp_first{grid-column-start:1}.wpbdp_last{grid-column-end:-1;grid-row-start:span 100;justify-content:end}@media only screen and (max-width:710px){.wpbdp-grid>.wpbdp-listing{grid-column:1 / span 12 !important}}@media only screen and (max-width:600px){.wpbdp-grid>.wpbdp-form-field{grid-column:1 / span 12 !important}}.wpbdp-submit-rootline{margin:30px auto;text-align:center;display:flex}.wpbdp-rootline-section{align-items:center;width:100%}.wpbdp-rootline-section:not(.wpbdp-submit-section-current).wpbdp-submit-checked .wpbdp-rootline-counter span{display:none}.wpbdp-rootline-section:last-of-type .wpbdp-rootline-bar{background-image:none}.wpbdp-rootline-section-name{margin:10px auto 0;font-size:12px;text-transform:uppercase;opacity:.6}.wpbdp-rootline-bar{background-image:linear-gradient(to left, rgba(255,255,255,0) 50%, #569AF6 50%);background-image:linear-gradient(to left, rgba(255,255,255,0) 50%, var(--bd-main-color) 50%);background-position:bottom;background-size:10px;background-repeat:repeat-x;position:relative;height:1px;width:calc(100% - 48px);top:24px;margin-left:calc(50% + 25px)}.wpbdp-rootline-circle{display:inline-flex;justify-content:center;align-items:center;width:48px;height:48px;border-radius:48px;border:1px solid #569AF6;border-color:var(--bd-main-color);z-index:1}.wpbdp-rootline-circle svg{fill:none}.wpbdp-submit-checked .wpbdp-rootline-circle{background:#569AF6;background:var(--bd-main-color)}.wpbdp-rootline-counter{font-weight:bold;font-size:20px}.wpbdp-submit-checked .wpbdp-rootline-section-name{opacity:1}.wpbdp-submit-checked.wpbdp-submit-section-current svg{display:none}.wpbdp-submit-checked .wpbdp-rootline-circle{color:#fff}#wpbdp-submit-listing.wpbdp-submit-page{margin:auto}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section{margin:10px 0 0 0;display:block}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section.collapsed .collapse-indicator.expanded{display:none}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section.collapsed .collapse-indicator.collapsed{display:inline}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section.collapsed .wpbdp-submit-listing-section-content{display:none}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section.hidden{display:none}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-content h4{margin:0 0 10px 0}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-form-actions{margin:10px 0;text-align:center}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-form-actions button{margin:15px}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-messages{margin:0 0 12px 0}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-plan-selection-with-tip{margin:24px 0 0 0}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-plan_selection ul.category-list{margin:0;padding:0;list-style-type:none}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-plan_selection ul.category-list li{font-size:10px;margin:0 5px 0 0;padding:1px 6px;border-radius:3px;background:#569AF6;background:var(--bd-main-color);color:#fff;font-weight:700;text-align:center;white-space:nowrap;vertical-align:baseline;border:none;display:inline}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-plan_selection .wpbdp_continue_to_fields_action{text-align:right}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-editor-area{height:422px}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-listing_fields .wpbdp-submit-listing-form-actions{display:block}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-submit-listing-section-listing_fields.has-error .wpbdp-form-field-label{position:relative}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-form-field-inner{padding:0;width:100%}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-form-field-type-select:not(.wpbdp-form-field-association-category).wpbdp-form-field-association-region.wpbdp-regions-hidden{display:none;visibility:hidden}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-upload-widget{max-height:50px}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-form-field-label .wpbdp-form-field-validation-error-wrapper{visibility:hidden;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:40%;left:-10px}#wpbdp-submit-listing.wpbdp-submit-page .wpbdp-form-field-label:hover .wpbdp-form-field-validation-error-wrapper{visibility:visible}textarea.wpbdp-submit-listing-tos{min-height:100px}#change-plan-link{text-align:right;font-size:90%}#wpbdp-submit-listing-account-details{margin:10px 0 0 0}#wpbdp-submit-listing-account-details input[type="password"]{width:70%;display:inline-block}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter{float:right;width:20%;padding:4px;text-align:center;border:1px solid}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter.strength-0{background-color:#f1adad;border-color:#e35b5b}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter.strength-2{background-color:#fbc5a9;border-color:#f78b53}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter.strength-3{background-color:#ffe399;border-color:#ffc733}#wpbdp-submit-listing-account-details .wpbdp-password-strength-meter.strength-4{background-color:#c1e1b9;border-color:#83c373}@media only screen and (max-width:450px){.wpbdp-form-field.wpbdp-form-field-type-url .wpbdp-url-field-col{grid-column:span 12 / span 12}.wpbdp-submit-rootline .wpbdp-rootline-section:not(.wpbdp-submit-section-current),.wpbdp-submit-rootline .wpbdp-rootline-section .wpbdp-rootline-bar{display:none}.wpbdp-submit-rootline .wpbdp-rootline-section.wpbdp-submit-checked .wpbdp-rootline-circle .wpbdp-rootline-checkmark{display:none}.wpbdp-submit-rootline .wpbdp-rootline-section.wpbdp-submit-checked .wpbdp-rootline-circle .wpbdp-rootline-counter span{display:initial}}.wpbdp-form-field-type-image #image-upload-form,.wpbdp-submit-listing-section-listing_images #image-upload-form{margin:15px 10px}.wpbdp-form-field-type-image #wpbdp-uploaded-images,.wpbdp-submit-listing-section-listing_images #wpbdp-uploaded-images{margin:0 0 20px 0}.wpbdp-form-field-type-image .wpbdp-image,.wpbdp-submit-listing-section-listing_images .wpbdp-image{padding:10px 0;border-bottom:1px solid #d2d2d2;display:flex;align-items:center}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-img,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-img{margin:0 10px}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-img img,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-img img{object-fit:cover;width:50px;height:50px}.wpbdp-form-field-type-image .wpbdp-image .wpbdp_thumbnail_indicator,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp_thumbnail_indicator{font-size:.8em;display:none}.wpbdp-form-field-type-image .wpbdp-image:first-of-type .wpbdp_thumbnail_indicator,.wpbdp-submit-listing-section-listing_images .wpbdp-image:first-of-type .wpbdp_thumbnail_indicator{display:inline-block}.wpbdp-form-field-type-image .wpbdp-image:first-of-type .wpbdp_thumbnail_indicator::before,.wpbdp-submit-listing-section-listing_images .wpbdp-image:first-of-type .wpbdp_thumbnail_indicator::before{content:"✓"}.wpbdp-form-field-type-image .wpbdp-image:last-of-type,.wpbdp-submit-listing-section-listing_images .wpbdp-image:last-of-type{border:none}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-extra,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-extra{flex:1 0 auto}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-extra input[type="text"],.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-extra input[type="text"]{width:60%}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-delete-link,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-delete-link{font-size:12px;text-decoration:none;color:#900000;display:none;margin-left:10px}.wpbdp-form-field-type-image .wpbdp-image .wpbdp-image-delete-link:hover,.wpbdp-submit-listing-section-listing_images .wpbdp-image .wpbdp-image-delete-link:hover{text-decoration:underline}.wpbdp-form-field-type-image .wpbdp-image:hover .wpbdp-image-delete-link,.wpbdp-submit-listing-section-listing_images .wpbdp-image:hover .wpbdp-image-delete-link{display:inline}.wpbdp-form-field-type-image .wpbdp-drag-handle,.wpbdp-submit-listing-section-listing_images .wpbdp-drag-handle{visibility:hidden}.wpbdp-form-field-type-image:hover .wpbdp-drag-handle,.wpbdp-submit-listing-section-listing_images:hover .wpbdp-drag-handle{visibility:visible}.wpbdp-form-field-type-image .wpbdp-image-draggable-highlight,.wpbdp-submit-listing-section-listing_images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-form-field-type-image #image-upload-form-no-js,.wpbdp-submit-listing-section-listing_images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-form-field-type-image .wpbdp-image{border:none}.wpbdp-submit-listing-section h3,.wpbdp-submit-listing-section .wpbdp-recaptcha{margin-top:40px}.wpbdp-submit-listing-section-header{display:none}.wpbdp-with-button-styles .submit-back-button.wpbdp-button{background:transparent !important;border:1px solid #569AF6;border-color:var(--bd-main-color);color:#569AF6;color:var(--bd-main-color) !important}.wpbdp-with-button-styles .submit-back-button.wpbdp-button:hover{background:#569AF6;background:var(--bd-main-color) !important;color:#fff !important}.wpbdp-with-button-styles .select2-container .select2-selection{border-color:#d2d2d2}.wpbdp-with-button-styles .select2-container .select2-results__option--highlighted[data-selected]{background-color:var(--bd-main-color)}#wpbdp-login-view .wpbdp-login-options{margin:30px 0 0 0;box-sizing:border-box}#wpbdp-login-view .wpbdp-login-options.options-2 .wpbdp-login-option{width:50%;float:left;box-sizing:border-box}#wpbdp-login-view .wpbdp-login-options.options-2 .wpbdp-login-option:first-child{padding:0 20px 0 0}#wpbdp-login-view .wpbdp-login-options.options-2 .wpbdp-login-option:last-child{border-left:1px solid #d2d2d2;padding:0 0 0 20px}#wpbdp-login-view #loginform #user_login,#wpbdp-login-view #loginform #user_pass{display:block}#wpbdp-login-view h4{font-size:21px;margin-top:0}#wpbdp-login-view .access-key-message{font-size:13px}#wpbdp-login-view input[type=text],#wpbdp-login-view input[type=password]{width:100%}.wpbdp-wp-theme-twentyseventeen #wpbdp-login-access-key-form input[type=submit]{margin-top:49px}.wpbdp-wp-theme-twentyseventeen #wpbdp-login-form h4{margin-bottom:74px}.wpbdp-wp-theme-twentynineteen #wpbdp-login-view h4{font-size:24px}.wpbdp-wp-theme-twentynineteen #wpbdp-login-view .access-key-message{font-size:16px}.wpbdp-wp-theme-twentynineteen #wpbdp-login-view #wpbdp-login-access-key-form input[type=submit]{margin-top:60px}.wpbdp-wp-theme-twentynineteen #wpbdp-login-view #wpbdp-login-form h4{margin-bottom:72px}.wpbdp-wp-theme-twentytwenty #wpbdp-login-access-key-form input[type=submit]{margin-top:44px}.wpbdp-wp-theme-twentytwenty #wpbdp-login-form h4{margin-bottom:57px}.wpbdp-msg{padding:10px 12px;margin:5px 0;background:#FEF7D3;border:1px solid rgba(63,75,91,0.2);box-sizing:border-box;border-radius:4px;font-size:14px;color:rgba(63,75,91,0.6)}.wpbdp-msg ul{margin:0}.wpbdp-msg ul li{list-style-position:inside}.wpbdp-msg.error,.wpbdp-msg.wpbdp-error{color:#fff;background:#d64226}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options td.fee-label,.wpbdp-submit-page table.fee-options tr.fee-description td{text-align:left}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{padding:15px 10px 10px;border-radius:2px;background-color:var(--bd-main-color-8)}#wpbdp-renewal-page .do-not-renew-listing p:last-child{margin-bottom:0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{background:#d64226}.wpbdp-recaptcha-error{color:#d64226}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-right:20px;background:#d64226}.wpbdp-scroll-box{padding:10px;margin:30px 0;border:1px solid #d2d2d2;max-height:250px;overflow:auto}.wpbdp-checkout input[type="image"]{padding:0;border:none;box-shadow:none;width:auto}table#wpbdp-manage-recurring th.listing-title,table#wpbdp-manage-recurring td.listing-title{min-width:200px}table#wpbdp-manage-recurring a.cancel-subscription{color:#d64226}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.wpbdp-cancel-subscription-form{padding:15px 10px 10px;border-radius:2px;background-color:var(--bd-main-color-8)}.wpbdp-cancel-subscription-form p:last-child{margin-bottom:0}.wpbdp-cancel-subscription-form input.button-primary[type="submit"]{background-color:#d64226}.wpbdp-cc-form{padding:0;width:90%}.wpbdp-cc-form h4{margin:0}.wpbdp-cc-field input{width:auto}.wpbdp-cc-field label{display:block;font-weight:bold;text-align:right;padding-right:10px}#wpbdp-billing-information .billing-info-section h4{margin:10px 0 5px 0}#wpbdp-billing-information .billing-info-section table{margin:1.75em 0}#wpbdp-billing-information #wpbdp-billing-field-exp,#wpbdp-billing-information #wpbdp-billing-field-exp-year{width:40%;display:inline}#wpbdp-billing-information .form-buttons{margin:15px 0}a.wpbdp-show-on-mobile,input[type="button"].wpbdp-show-on-mobile,.wpbdp-show-on-mobile{display:none}body.business-directory #TB_ImageOff .screen-reader-text,body.business-directory #TB_closeWindowButton .screen-reader-text{visibility:hidden}body.business-directory #TB_next{float:right}body.business-directory #TB_prev{float:left}body.business-directory #TB_caption{text-align:center;width:70%;height:auto}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{font-size:11px;color:#666}.wpbdp-form-row label{display:block}.wpbdp-form-row.wpbdp-form-textfield input[type="text"]{width:400px}.wpbdp-main-box,.wpbdp-main-box .box-row,.wpbdp-main-box .box-col{box-sizing:border-box;width:100%}.wpbdp-main-box{margin:10px 0 20px 0}.wpbdp-main-box .box-col{margin-bottom:4px}.wpbdp-main-box .box-col input{width:100%;min-width:150px;box-sizing:border-box}.distance-field-wrapper .box-row{display:flex;align-items:center}.wpbdp-main-box .submit-btn input[type="submit"]{margin-top:0}.wpbdp-main-box .advanced-search-link{border:none;box-shadow:none;display:block;font-size:11px;text-align:right;text-decoration:none}.wpbdp-main-box .search-fields .box-row,.wpbdp-main-box .main-fields.box-row form{width:100%;display:flex;gap:5px}.wpbdp-main-box .submit-btn{width:22%;min-width:150px}.wpbdp-main-box-tiny .submit-btn,.wpbdp-main-box-small .submit-btn{width:100%}.wpbdp-main-box-tiny .search-fields .box-row,.wpbdp-main-box-tiny .main-fields.box-row form,.wpbdp-main-box-small .search-fields .box-row,.wpbdp-main-box-small .main-fields.box-row form{display:block}.wpbdp-main-links{text-align:right}a.wpbdp-button{white-space:nowrap}.wpbdp-main-links .button,.wpbdp-main-links-large .button{margin:0 3px 6px;font-size:15px;display:inline-block}.wpbdp-main-links .button:first-child{margin-left:0}.wpbdp-main-links .button:last-child{margin-right:0}.wpbdp-main-links-tiny .wpbdp-main-links .button{padding-top:10px;padding-bottom:10px;width:100%;margin:0 0 4px}.wpbdp-main-links-small .button{width:100%;margin:0 0 4px;text-align:center}.wpbdp-main-links-small .wpbdp-main-links-2-buttons .button{width:49%}.wpbdp-main-links-small .wpbdp-main-links-2-buttons .button:first-child{margin-right:1%}.wpbdp-with-button-styles .wpbdp-checkout-submit input[type=submit],.wpbdp-with-button-styles .wpbdp-ratings-reviews input[type=submit],.wpbdp-with-button-styles .wpbdp-main-box input[type=submit],.wpbdp-with-button-styles .listing-actions a.wpbdp-button,.wpbdp-with-button-styles .wpbdp-button{background:#569AF6;background:var(--bd-main-color) !important;border:1px solid #569AF6;border-color:var(--bd-main-color)}.wpbdp-with-button-styles .wpbdp-checkout-submit input[type=submit]:hover,.wpbdp-with-button-styles .wpbdp-ratings-reviews input[type=submit]:hover,.wpbdp-with-button-styles .wpbdp-main-box input[type=submit]:hover,.wpbdp-with-button-styles .listing-actions a.wpbdp-button:hover,.wpbdp-with-button-styles .wpbdp-button:hover{opacity:.8;background:var(--bd-main-color)}.wpbdp-with-button-styles .wpbdp-main-links-tiny .wpbdp-main-links .button{padding-top:10px;padding-bottom:10px}.wpbdp-with-button-styles .wpbdp-main-links-small .button{padding-top:10px;padding-bottom:10px}.wpbdp-with-button-styles .wpbdp-main-links-medium .wpbdp-main-links .button{padding-top:8px;padding-bottom:8px}.single-wpbdp_listing .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-show_category .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-show_tag .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-search .wpbdp-view-content-wrapper header.entry-header,.wpbdp-view-submit_listing .wpbdp-view-content-wrapper header.entry-header{display:none}.wpbdp-wp-theme-graphene.single-wpbdp_listing h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_category h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_tag h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-search h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-submit_listing h1.post-title{display:none}.wpbdp-wp-theme-genesis.wpbdp-view-show_category .archive-description,.wpbdp-wp-theme-genesis.wpbdp-view-show_tag .archive-description{display:none}.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_category .post-details,.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_tag .post-details{display:none}.wpbdp-wp-theme-atahualpa.wpbdp-view-show_category .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_tag .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_listing .post-footer{display:none}.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_category .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_tag .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_listing .entry-content .featured-image{display:none}.wpbdp-plan-info-box{padding:10px;margin:0 0 6px 0;border:1px solid #d2d2d2;border-radius:2px;display:flex;align-items:center;flex-wrap:wrap}.wpbdp-plan-info-box .wpbdp-plan-details,.wpbdp-plan-info-box .wpbdp-plan-price{float:left;box-sizing:border-box}.wpbdp-plan-info-box .wpbdp-plan-details{width:55%;padding:0 10px}.wpbdp-plan-info-box .wpbdp-plan-price{width:40%;text-align:center}.wpbdp-plan-info-box .wpbdp-plan-price label{cursor:pointer;margin-top:15px;font-size:20px;display:block;padding:6px 12px}.wpbdp-plan-info-box .wpbdp-plan-price input[type=radio]{display:none}.wpbdp-plan-info-box .wpbdp-plan-description{margin:0 0 10px 0}.wpbdp-plan-info-box .wpbdp-plan-price-amount,.wpbdp-plan-info-box .wpbdp-plan-label{font-size:1.1em;font-weight:bold;margin-bottom:10px}.wpbdp-plan-info-box .wpbdp-plan-feature-list{margin:0 0 0 10px}.wpbdp-plan-info-box .wpbdp-plan-details p{margin:0}.wpbdp-plan-info-box .wpbdp-plan-feature-list li{list-style-position:inside;margin:0}.wpbdp-plan-info-box .wpbdp-plan-disabled-msg{clear:both}.wpbdp-plan-info-box .wpbdp-plan-private-msg{width:100%;display:inline-block;text-align:right}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-duration,.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-details,.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-price{width:100%}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-duration-amount,.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-duration-period{display:inline}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-details{padding:0 0 4pt}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-label{font-size:1.5em;margin-bottom:5px}.wpbdp-plan-selection-wrapper.wpbdp-size-tiny .wpbdp-plan-description{margin-bottom:5px}.wpbdp-with-button-styles .wpbdp-plan-info-box .wpbdp-plan-price input[type=radio]+label{background:transparent !important;border:1px solid #569AF6;border-color:var(--bd-main-color);color:#569AF6;color:var(--bd-main-color) !important}.wpbdp-with-button-styles .wpbdp-plan-info-box .wpbdp-plan-price input[type=radio]+label:hover{background:#569AF6;background:var(--bd-main-color) !important;color:#fff !important}.wpbdp-with-button-styles .wpbdp-plan-info-box .wpbdp-plan-price input[type=radio]:checked+label{color:#fff !important;background:var(--bd-main-color) !important}.wpbdp-dnd-area{margin:0 auto;border:1px solid #ddd;width:100%}.wpbdp-dnd-area.dragging{background:#efefef}.wpbdp-dnd-area p{margin:0;font-size:16px;line-height:24px}.wpbdp-dnd-area p.dnd-message{font-size:24px;line-height:24px}.wpbdp-dnd-area .dnd-area-inside{letter-spacing:1px;margin:54px auto 38px;text-align:center}.wpbdp-dnd-area .dnd-area-inside-working{text-align:center;margin:50px auto 38px}.wpbdp-dnd-area .dnd-area-inside-working span{font-weight:bold}.wpbdp-dnd-area .dnd-area-inside-error{color:#900000;text-align:center;margin:50px 25px}.wpbdp-dnd-area .upload-button{position:relative;overflow:hidden}.wpbdp-dnd-area .upload-button a{text-decoration:none}.wpbdp-dnd-area .upload-button a:hover{cursor:pointer}.wpbdp-dnd-area .upload-button input{margin:0;padding:0;position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;opacity:0;border:none !important;z-index:-1}.area-and-conditions #image-upload-dnd-area{box-sizing:border-box;background-color:rgba(86,154,246,0.08);background-color:var(--bd-main-color-8);border-color:var(--bd-main-color-20);border-radius:4px}.area-and-conditions #image-upload-dnd-area .dnd-buttons a{letter-spacing:initial}#image-upload-conditions{font-size:12px;margin-bottom:6px;opacity:.8}#image-slots-available{float:right}.wpbdp-drag-handle{width:6px;height:10px;display:inline-block;background:url('../../assets/images/drag-handle.png') 0 0;cursor:move;float:left;margin:5px 5px 0 0;vertical-align:middle}.wpbdp-help-tip{margin:10px 0}.wpbdp-help-tip .dashicons{vertical-align:middle}.wpbdp-help-tip .message{display:inline-block}.wpbdp-help-tip.small{font-size:12px}.wpbdp-help-tip.small .dashicons{font-size:15px;width:15px;height:15px}.wpbdp-hidden{display:none}.wpbdp-form-field-association-category .wpbdp-form-field-checkbox-item.disabled,.wpbdp-form-field-association-category .wpbdp-form-field-radio-item.disabled{opacity:.65}.wpbdp-form-field-association-category select{width:100%}.wpbdp-form-field-association-category .select2{width:100%}.wpbdp-form-field-association-category .select2 .select2-selection{border-radius:0;padding-left:5px}.wpbdp-form-field-association-category .select2 ul.select2-selection__rendered li.select2-selection__choice{font-size:11px;padding:1px 6px;border-radius:3px;font-weight:normal;white-space:nowrap;vertical-align:baseline;border:none}.wpbdp-form-field-association-category .select2 ul.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__remove{margin-right:5px}.wpbdp-form-field-association-category .select2 ul.select2-selection__rendered li.select2-selection__choice,.wpbdp-form-field-association-category .select2 ul.select2-selection__rendered li.select2-search--inline{margin:5px 5px 0 0}.wpbdp-form-field-association-category .select2 .select2-search .select2-search__field{font-size:11px}#wpbdp-listing-flagging-page textarea{width:90%;min-height:150px;margin-bottom:10px}.wpbdp-thumbnail{max-width:200px;max-height:200px;max-width:var(--bd-thumbnail-width);max-height:var(--bd-thumbnail-height)}.wpbdp-thumbnail-cropped{width:200px;height:200px;width:var(--bd-thumbnail-width);height:var(--bd-thumbnail-height);object-fit:cover}@media screen and (max-width:560px){.wpbdp-show-on-mobile{display:inline !important}input[type="button"].wpbdp-hide-on-mobile{display:none}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar form.wpbdp-search-form{display:block;margin-left:0;margin-top:10px}.wpbdp-bar form.wpbdp-search-form #intextbox{margin-bottom:5px;padding:4px}.wpbdp-bar form.wpbdp-search-form input[type="text"]{padding:4px 0;margin:0 0 2px 0}.wpbdp-main-box .search-fields .box-row,.wpbdp-main-box .main-fields.box-row form{display:block}.wpbdp-main-box .submit-btn{width:100%}.wpbdp-main-links .button{width:100%}.wpbdp-listing.wpbdp-listing{font-size:90%}.wpbdp-listing.wpbdp-listing-excerpt .field-value>label{display:block}.wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail,.wpbdp-listing.wpbdp-listing-single .listing-thumbnail{float:none;padding:5px}.wpbdp-listing.wpbdp-listing-excerpt .listing-details,.wpbdp-listing.wpbdp-listing-single .listing-details{margin:0 5px;float:none;display:block}.wpbdp-listing .listing-actions input{font-size:70%}.wpbdp-listing .listing-actions input.back-to-dir{float:right}.wpbdp-listing.wpbdp-listing-single .main-image{display:block;float:none;padding:0;margin:0 0 10px 0;text-align:center;max-width:90%}.wpbdp-listing.wpbdp-listing-single .field-value>label{display:block}.wpbdp-submit-page.step-images #image-upload-dnd-area{font-size:90%;float:none !important;width:100% !important}.wpbdp-submit-page.step-images .dnd-area-inside-error{margin-top:30px}.wpbdp-submit-page.step-images #image-upload-conditions{width:100% !important;float:none !important;font-size:90%}.wpbdp-submit-page.step-images #image-upload-conditions dl{margin:0;padding:0}.wpbdp-submit-page.step-images #image-upload-conditions dl dt{margin:0;margin-right:5px;padding:0;float:left}.wpbdp-submit-page.step-images #image-upload-conditions dl dd{margin:0;padding:0;display:block}.wpbdp-submit-page.step-images .wpbdp-image img{max-width:50%}}
|
assets/images/icons/archive.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><rect x="0" fill="none" width="20" height="20"/><path d="M19 4v2H1V4h18zM2 7h16v10H2V7zm11 3V9H7v1h6z" fill="currentColor"/></svg>
|
assets/images/icons/caret-left.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" rx="12"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3" d="m14 16-4-4 4-4"/></svg>
|
assets/images/icons/caret-right.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><rect width="24" height="24" fill="#fff" rx="12" transform="matrix(-1 0 0 1 24 0)"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3" d="m10 16 4-4-4-4"/></svg>
|
assets/images/icons/clipboard.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 2H9a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h6c.6 0 1-.4 1-1V3c0-.6-.4-1-1-1Z"/></svg>
|
assets/images/icons/cog.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.4 15a1.7 1.7 0 0 0 .3 1.8h0a2 2 0 1 1-2.7 3l-.1-.2a1.7 1.7 0 0 0-1.8-.3 1.7 1.7 0 0 0-1 1.5v.2a2 2 0 0 1-4 0v0A1.6 1.6 0 0 0 9 19.3a1.7 1.7 0 0 0-1.8.3h0a2 2 0 1 1-3-2.7l.1-.1a1.6 1.6 0 0 0 .4-1.8 1.6 1.6 0 0 0-1.5-1H3a2 2 0 1 1 0-4h0A1.6 1.6 0 0 0 4.7 9a1.6 1.6 0 0 0-.3-1.8h0a2 2 0 1 1 2.7-3l.1.1a1.6 1.6 0 0 0 1.8.4H9a1.6 1.6 0 0 0 1-1.5V3a2 2 0 1 1 4 0v0a1.6 1.6 0 0 0 1 1.6 1.6 1.6 0 0 0 1.8-.3h0a2 2 0 1 1 3 2.7l-.2.1a1.7 1.7 0 0 0-.3 1.8V9a1.7 1.7 0 0 0 1.5 1h.2a2 2 0 0 1 0 4h0a1.7 1.7 0 0 0-1.6 1v0Z"/></svg>
|
assets/images/icons/email.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m22 6-10 7L2 6"/></svg>
|
assets/images/icons/folder.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2v11Z"/></svg>
|
assets/images/icons/import.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m22 8-5-5-5 5M17 3v12M12 16l-5 5-5-5M7 21V9"/></svg>
|
assets/images/icons/key.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.5 7.5 19 4m2-2-2 2 2-2Zm-9.6 9.6a5.5 5.5 0 1 1-7.8 7.8 5.5 5.5 0 0 1 7.8-7.8h0Zm0 0 4.1-4.1-4.1 4.1Zm4.1-4.1 3 3L22 7l-3-3-3.5 3.5Z"/></svg>
|
assets/images/icons/layout.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM3 9h18M9 21V9"/></svg>
|
assets/images/icons/list.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 6h13M8 12h13M8 18h13M3 6h0M3 12h0M3 18h0"/></svg>
|
assets/images/icons/misc.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3M1 14h6M9 8h6M17 16h6"/></svg>
|
assets/images/icons/money.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 1v22M17 5H9.5a3.5 3.5 0 1 0 0 7h5a3.5 3.5 0 1 1 0 7H6"/></svg>
|
assets/images/icons/package.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 16V8a2 2 0 0 0-1-1.7l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.7l7 4a2 2 0 0 0 2 0l7-4a2 2 0 0 0 1-1.7Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3.3 7 8.7 5 8.7-5M12 22V12"/></svg>
|
assets/images/icons/tag.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m20.6 13.4-7.2 7.2a2 2 0 0 1-2.8 0L2 12V2h10l8.6 8.6a2 2 0 0 1 0 2.8v0ZM7 7h0"/></svg>
|
assets/images/modules/authorize-net-payment-module.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="#055a72" d="M22 21.7h-8v-1c.6 0 1.2-.1 1.7-.3.4-.1.7-.3.7-.5a2 2 0 0 0-.1-.6L14.7 15H7.9a38.4 38.4 0 0 0-1.4 4.5c0 .4.3.6.9.8a7 7 0 0 0 1.9.4v1H2v-1l.9-.1a3 3 0 0 0 1.7-1.2l.6-1A767.7 767.7 0 0 0 11.6 2h1l6.5 16.7.5.9.7.6.8.4.9.1v1zm-7.8-8-3-7.5-2.9 7.5h5.9z"/></svg>
|
assets/images/modules/payfast-payment-module.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 352.8 339.8"><defs><linearGradient id="a" x1="148" x2="100" y1="445.4" y2="904.5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ed1c24"/><stop offset="1" stop-color="#be1e2d"/></linearGradient></defs><path fill="url(#a)" d="M281.5 240.2a196.7 196.7 0 0 1-36.8 17.3c-12.1 5-27 8.7-43.5 10.8-6.3 1-12.8 2-19.4 2.6h-.2c-61 5.3-113-7.9-142.8-35.9l-.8-.7-.1 3.3a51.8 51.8 0 0 0 13 33.9c24.2 27.7 70.7 42.9 124.7 43.7 36 .2 68.9-6.5 94-18.6 12.6-6.2 23.3-13.6 31.5-23s13.6-20.9 13.7-33.6a48.8 48.8 0 0 0-5.5-22.6 123.6 123.6 0 0 1-27.8 22.8Zm-106.3-38.3c-57 4.3-106.1-6.3-136.6-30.6a53 53 0 0 0 13 30.7c24.1 27.8 70.6 42.8 124.7 43.7 36 .2 68.8-6.5 94-18.7 12.5-6 23.3-13.5 31.4-22.9s13.6-20.9 13.6-33.7a49.4 49.4 0 0 0-8.2-27.3c-8 10.4-41.6 51.9-132 58.8Zm1.6-25.7c36 .2 68.9-6.5 94-18.7a97.9 97.9 0 0 0 31.5-22.9c8.1-9.2 13.6-20.9 13.6-33.6s-5-24.5-13-34c-24.2-27.7-70.7-42.7-124.7-43.6-36-.3-68.9 6.5-94 18.6-12.6 6.2-23.4 13.6-31.5 22.9S39 85.9 39 98.6s5.2 24.5 13.1 33.9c24.1 27.7 70.7 42.8 124.7 43.7ZM71.6 71.3c13.1-16 54-31.6 101.7-30.8 31.9.2 60.5 7 79.8 16.9 9.8 4.8 17 10.4 21.4 15.6s5.8 9.6 5.8 13.6-1.6 8.3-6 13.6c-13.1 16-54 31.6-101.7 30.8-32-.2-60.6-7-79.9-16.9a67.7 67.7 0 0 1-21.3-15.6c-4.3-5.4-5.8-9.7-5.8-13.7s1.5-8.3 6-13.5Z"/></svg>
|
assets/images/modules/paypal-gateway-module.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 25.6 30.2"><path fill="#253b80" d="m7.3 29.2.5-3.4H1L4.9 1.3 5 1h9.6C17.7 1 20 1.6 21 3c.5.6.9 1.2 1 1.9a7 7 0 0 1 0 2.6v.8l.5.3c.5.2.8.5 1.1.8.5.5.8 1.1.9 2 .1.7 0 1.7-.1 2.7a9.9 9.9 0 0 1-1.2 3.2 6.5 6.5 0 0 1-4.3 3.1c-.9.3-2 .4-3 .4H15a2.2 2.2 0 0 0-2.2 1.8v.3l-1 5.9V29H7.3z"/><path fill="#179bd7" d="M23 7.7v.5c-1.3 6.4-5.5 8.6-11 8.6H9.4c-.6 0-1.2.4-1.3 1l-1.4 9-.4 2.6c0 .4.3.8.7.8h4.9c.6 0 1-.4 1.1-1v-.3l1-5.8v-.3c.1-.6.6-1 1.2-1h.7c4.8 0 8.5-2 9.6-7.5.4-2.3.2-4.2-1-5.6-.4-.4-.8-.8-1.4-1z"/><path fill="#222d65" d="M21.8 7.2a9.8 9.8 0 0 0-1.2-.3L18 6.7h-7.3a1.2 1.2 0 0 0-1.2 1L8 17.7v.2c.1-.7.7-1.1 1.3-1.1h2.8c5.4 0 9.6-2.2 10.9-8.6v-.5a6.6 6.6 0 0 0-1.2-.5z"/><path fill="#253b80" d="M9.6 7.7a1.2 1.2 0 0 1 1.2-1H18a15.3 15.3 0 0 1 4 .5l1 .5c.3-2.4 0-4-1.3-5.4C20.4.7 17.8 0 14.6 0H5.2C4.6 0 4 .5 4 1.1L0 26c0 .5.3 1 .8 1h5.8L8 17.5l1.6-9.9z"/></svg>
|
assets/images/modules/stripe-payment-module.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="#6772e5" viewBox="0 0 32 32"><path fill-rule="evenodd" d="M111.3 15.6c0-5-2.4-8.9-7-8.9s-7.4 4-7.4 8.9c0 5.8 3.3 8.8 8 8.8 2.3 0 4-.6 5.4-1.3v-3.9a10.2 10.2 0 0 1-4.8 1c-1.9 0-3.5-.6-3.7-2.8h9.5a39.6 39.6 0 0 0 0-1.8zm-9.6-1.8c0-2.2 1.4-3.1 2.6-3.1s2.4.9 2.4 3zm-12.3-7a5.4 5.4 0 0 0-3.8 1.4L85.3 7h-4.2v22.7l4.8-1V23a5.4 5.4 0 0 0 3.5 1.3c3.4 0 6.6-2.8 6.6-9 0-5.6-3.2-8.7-6.6-8.7zM88.2 20a2.9 2.9 0 0 1-2.3-1V12a3 3 0 0 1 2.3-1c1.8 0 3 2 3 4.6 0 2.6-1.2 4.5-3 4.5zM79.2.6l-4.8 1v4l4.8-1z"/><path d="M74.4 7h4.8v17h-4.8z"/><path fill-rule="evenodd" d="M69.2 8.5 68.9 7h-4.2v17h4.8V12.5c1.2-1.5 3.1-1.2 3.7-1V7c-.6-.2-2.9-.6-4 1.5zm-9.8-5.7-4.7 1v15.6c0 2.9 2.1 5 5 5 1.6 0 2.8-.3 3.4-.7v-4c-.6.3-3.7 1.2-3.7-1.6v-7h3.7v-4h-3.7zM46.3 12c0-.8.6-1 1.6-1a10.9 10.9 0 0 1 4.9 1.2V7.6a12.8 12.8 0 0 0-4.9-.9c-3.9 0-6.5 2-6.5 5.5 0 5.4 7.4 4.5 7.4 6.8 0 1-.8 1.2-1.9 1.2-1.6 0-3.7-.7-5.3-1.6v4.7a13.5 13.5 0 0 0 5.3 1.1c4 0 6.8-2 6.8-5.5 0-5.8-7.4-4.7-7.4-7zM13.9 9.5c0-1.4 1.1-1.9 3-1.9a19.7 19.7 0 0 1 8.7 2.3V1.6A23.2 23.2 0 0 0 16.9 0C9.8 0 5 3.7 5 10c0 9.6 13.3 8 13.3 12.3 0 1.6-1.4 2.1-3.3 2.1-3 0-6.7-1.2-9.6-2.8V30a24.4 24.4 0 0 0 9.6 2c7.3 0 12.3-3.6 12.3-10 0-10.4-13.4-8.5-13.4-12.5z"/></svg>
|
assets/images/percie-round.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg width="35" height="35" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 35 35"><mask id="a" width="35" height="35" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><circle cx="17.5" cy="17.5" r="17.5" fill="#C4C4C4"/></mask><g mask="url(#a)"><circle cx="17.5" cy="17.5" r="17.5" fill="#fff"/><path fill="#3F4B5B" fill-rule="evenodd" d="M17.7 26.4c-1.2 3.6-6.3 7.1-9 6.8-1-.1-.7-1-.2-1.5 2-2.3 3.1-4.9 4.8-7 1.3-1.8 5.3-1 4.4 1.7ZM22 27.3c3.6.7 9.3-1.9 10.4-4.4.4-.8-.4-1.1-1.2-1-3 .7-5.7.3-8.4.6-2.2.2-3.5 4.2-.8 4.8Z" clip-rule="evenodd"/><path fill="#3F4B5B" fill-rule="evenodd" d="M14.6 23.6c-2.5 2-3.7 8.5-2.6 13.2.3 1.1.6 1.4 2.3 1.6 3 .3 9-.5 11.9-1.5 1.6-.6 1.8-1 1.8-2.1-.1-4.8-2.8-10.9-5.7-12.1-1.3-.6-6.6 0-7.7 1Z" clip-rule="evenodd"/><path fill="#3F4B5B" fill-rule="evenodd" d="M15.2 24.4c-1.9 1.5-2.5 5.8-2.6 8 0 1.3.1 2.8.4 4.2.2.6.2.7 1.4.8 2.8.2 8.8-.5 11.4-1.5 1.2-.4 1.2-.4 1.2-1 0-3-1.2-6.4-2.7-8.9-.5-.8-1.4-2-2.4-2.4-1-.4-5.9.2-6.7.8Z" clip-rule="evenodd"/><path fill="#556981" fill-rule="evenodd" d="M15.2 24.4c-1.9 1.5-2.5 5.8-2.6 8 0 1.3.1 2.8.4 4.2.2.6.2.7 1.4.8 1.4.1 3.6 0 5.8-.3l-1.7-13.5c-1.5.2-3 .5-3.3.8Z" clip-rule="evenodd"/><path fill="#ECF1F5" fill-rule="evenodd" d="M14 32.4c.3 1 .2 1 1.2 1 1.1.2 2.8.1 4.5 0 1.7-.3 3.3-.6 4.4-1 1-.4.9-.4.8-1.3-.4-2.3-1.9-6.5-3.8-7.5h-2.6c-1.1.2-2.3.4-2.6.7-1.6 1.4-2 5.9-1.8 8.1Z" clip-rule="evenodd"/><path fill="#fff" fill-rule="evenodd" d="M14 32.4c.3 1 .2 1 1.2 1 1.1.2 2.8.1 4.5 0l-1.2-9.8c-1.1.2-2.3.4-2.6.7-1.6 1.4-2 5.9-1.8 8.1Z" clip-rule="evenodd"/><path fill="#FC802E" fill-rule="evenodd" d="M26 37.6 30 36a.7.7 0 0 0 .3-1c-.9-1.2-2.4-1.4-3.7-1-.9.3-1.4.8-1.6 1.4-.3 1.1 0 2.7.9 2.3Z" clip-rule="evenodd"/><path fill="#FDAC5C" fill-rule="evenodd" d="M26.1 34.8c.6.2 1.4.9 1.7 1.5l2-.9c.1 0 .1 0 0 0-.8-1.2-2.4-1.2-3.7-.6Z" clip-rule="evenodd"/><path fill="#CD5A0C" fill-rule="evenodd" d="M27.6 35.7c1.4-.6 2.7-.7 2.9-.3.1.4-.8 1.2-2.3 1.8-1.3.6-2.6.7-2.8.3-.2-.4.8-1.3 2.2-1.8Z" clip-rule="evenodd"/><path fill="#3F4B5B" fill-rule="evenodd" d="M5.5 9.1c-1.6 1.2-2 8.2 0 13.4C6 23.7 7 25 9.5 25c5 0 13.4-1.7 18-3.7 2.2-1 2.7-2.6 2.6-4C30 11.7 26.8 5.5 24.8 5 20 4 9.5 6 5.5 9.1Z" clip-rule="evenodd"/><path fill="#3F4B5B" fill-rule="evenodd" d="M25 6.6c2.2 2.3 3.7 7.7 3.8 10.8 0 1.4-.7 2.2-2 2.7a51 51 0 0 1-17.3 3.6c-1.3 0-2.3-.4-2.8-1.7A19.5 19.5 0 0 1 6 10.6c.2-.5.4-.6.8-.8a31.8 31.8 0 0 1 17-3.6c.6 0 .8 0 1.2.4Z" clip-rule="evenodd"/><path fill="#556981" fill-rule="evenodd" d="M6 10.6c-1.2 3-.4 8.6.7 11.4.5 1.3 1.5 1.7 2.9 1.7 2.3 0 5.6-.4 8.8-1L15 6.7a27 27 0 0 0-8.3 3c-.4.3-.6.4-.8.9Z" clip-rule="evenodd"/><path fill="#ECF1F5" fill-rule="evenodd" d="M18.4 22.7c-2.4.5-4.8.8-7 1-1.6 0-2.9-.7-3.5-2.3-.8-2.1-1.3-5.8-1.2-7.9.2-4.1 7-5.8 9.3-2.5.8-4 7.6-5 9.5-1.4.9 1.9 1.9 5.4 2 7.7 0 1.7-.8 3-2.4 3.5-2 .7-4.3 1.4-6.7 1.9Z" clip-rule="evenodd"/><path fill="#fff" fill-rule="evenodd" d="m16 11 2.4 11.7a51 51 0 0 1-7 1c-1.6 0-2.9-.7-3.5-2.3-.8-2.1-1.3-5.8-1.2-7.9.2-4.1 7-5.8 9.3-2.5Z" clip-rule="evenodd"/><path fill="#343D47" fill-rule="evenodd" d="M22.7 13.4a1.5 1.5 0 0 0 .6 3c.8-.3 1.3-1 1.1-1.9l-1.4.2 1-1c-.4-.3-.9-.4-1.3-.3Zm-9.6 2a1.5 1.5 0 0 0 .6 2.9c.8-.2 1.4-1 1.2-1.8l-1.4.2 1-1c-.4-.3-.9-.4-1.4-.3Z" clip-rule="evenodd"/><path fill="#343D47" d="M1 15.3c0-.4.5-.5 1.3-.9a40.3 40.3 0 0 1 10.2-2.3 3 3 0 0 1 2.6.9l1.2-.5.4.5.3 1.4-.2.4c-.3 0-.6.2-.7.4.3 2.1.2 4.5-1.1 5.6-2.4 2-8.7 2.8-10.4 1A8.3 8.3 0 0 1 2.8 19c0-.1-1.2-.7-1.4-1.1-.2-.6-.4-2-.4-2.5Zm4.7 6c1.4 1 6.6.6 8.7-1.2 1-.9 1-3 .6-4.8-.1-.8-1.1-1.9-2.1-1.8a33.7 33.7 0 0 0-9.4 2c-.6.3-.4 1-.2 1.6.3 1.3 1.2 3.4 2.4 4.2Z"/><path fill="#343D47" d="M31.4 8.9c-.2-.3-.7-.3-1.5-.2a40 40 0 0 0-10.3 2 3 3 0 0 0-2 1.7h-1.3l-.2.7.3 1.4.3.3h.8c.5 2.2 1.6 4.3 3.2 4.8 3 .9 9-1 10-3.2.4-1.1.5-2.3.5-3.5 0 0 .8-1 .7-1.5 0-.6-.3-2-.5-2.5Zm-2 7.4c-.8 1.5-5.8 3.2-8.3 2.5-1.4-.5-2.2-2.4-2.6-4.2-.1-.8.3-2.2 1.3-2.6a33 33 0 0 1 9.5-1.8c.6 0 .6.6.7 1.3.2 1.3.2 3.6-.5 4.8Z"/><path fill="#FC802E" fill-rule="evenodd" d="m16.3 20.5.9-1.7c.1-.3.5-.4.7-.1l1.5 1.2-3.1.6Z" clip-rule="evenodd"/><path fill="#FDAC5C" fill-rule="evenodd" d="m17.6 18.8.3 1.4-1.2.3.7-1.5.2-.2Z" clip-rule="evenodd"/><path fill="#CD5A0C" fill-rule="evenodd" d="m15.9 20.8 1.7 1.1c.2.1.4.2.6.1l.6-.3 1.1-1.7c.1-.2 0-.5-.2-.4l-1.9.4-1.9.4c-.2 0-.2.3 0 .4Z" clip-rule="evenodd"/><path fill="#FC802E" fill-rule="evenodd" d="M18.2 22h-.6L16 20.7c-.2-.1-.2-.4 0-.4l2-.4.3 2Z" clip-rule="evenodd"/><path fill="#3F4B5B" fill-rule="evenodd" d="M17.8 5.3c.1-1.4-.3-2.9-.9-3.6-1 1.9-2.3 3.7-4 5 1.4-.4 2.8-.7 4.3-.9.4 0 .6-.3.6-.5Z" clip-rule="evenodd"/><path fill="#556981" fill-rule="evenodd" d="m16.5 3.5.4-.7c.3.7.4 1.5.4 2.3 0 .2-.2.1-.2 0 0-.6-.3-1-.6-1.6Z" clip-rule="evenodd"/><path fill="#3F4B5B" fill-rule="evenodd" d="M15.4 8.3c1.2-2.2.3-6-1.5-7.3-1 3.5-2.3 4.5-3.8 6-.2.1 0 .5.2.5 2.4-.3 4-.1 5.1.8Z" clip-rule="evenodd"/><path fill="#556981" fill-rule="evenodd" d="m13.9 2.9.3-.8c.7 1 1.1 2.3 1.2 3.5 0 .1 0 .3 0 0-.3-.9-.8-1.8-1.5-2.7Z" clip-rule="evenodd"/></g></svg>
|
assets/images/premium-layout.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" viewBox="0 0 594 151"><defs><path id="reuse-0" d="M0 0h171v87H0z" class="C"/></defs><style>.B{fill-opacity:.7}.C{fill:#fff}.D{fill:#b5c1d1}.E{fill:#9ea9b8}.F{opacity:.5}.G{fill-opacity:.4}.H{fill:#3c4b5d}.I{stroke:#c5ccdb}</style><g clip-path="url(#A)"><path d="M8 8h194v87H8V8Z" class="C G"/><path d="M47 21H25a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3h22a3 3 0 0 0 3-3V24a3 3 0 0 0-3-3z" class="B E"/><path d="M40 34h-9c-.5 0-1-.5-1-1.1V26c0-.6.5-1.1 1-1.1h9c.5 0 1 .5 1 1.1v7c0 .6-.5 1.1-1 1.1V34zm-7.6-7.7c-.7 0-1.2.6-1.2 1.3s.5 1.3 1.2 1.3 1.2-.6 1.2-1.3-.5-1.3-1.2-1.3zm-1 6.2h8.2v-2.6l-1.9-2a.2.2 0 0 0-.2 0 .2.2 0 0 0-.1 0l-3 3.1-1.1-1.3a.2.2 0 0 0-.2-.2.2.2 0 0 0-.2.2l-1.5 1.7v1.1z" class="C F"/><g class="D B"><path d="M165.5 22h-107a1.5 1.5 0 1 0 0 3h107a1.5 1.5 0 1 0 0-3zm-21 6h-86a1.5 1.5 0 1 0 0 3h86a1.5 1.5 0 1 0 0-3z"/><use xlink:href="#C"/><path d="M101.5 40h-43a1.5 1.5 0 1 0 0 3h43a1.5 1.5 0 1 0 0-3z"/></g><path d="M47 61H25a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3h22a3 3 0 0 0 3-3V64a3 3 0 0 0-3-3z" class="B E"/><path d="M40 74h-9c-.5 0-1-.5-1-1.1V66c0-.6.5-1.1 1-1.1h9c.5 0 1 .5 1 1.1v7c0 .6-.5 1.1-1 1.1V74zm-7.6-7.7c-.7 0-1.2.6-1.2 1.3s.5 1.3 1.2 1.3 1.2-.6 1.2-1.3-.5-1.3-1.2-1.3zm-1 6.2h8.2v-2.6l-1.9-2a.2.2 0 0 0-.2 0 .2.2 0 0 0-.1 0l-3 3.1-1.1-1.3a.2.2 0 0 0-.2-.2.2.2 0 0 0-.2.2l-1.5 1.7v1.1z" class="C F"/><path d="M165.5 62h-107a1.5 1.5 0 1 0 0 3h107a1.5 1.5 0 1 0 0-3zm-21 6h-86a1.5 1.5 0 1 0 0 3h86a1.5 1.5 0 1 0 0-3zm-43 6h-43a1.5 1.5 0 1 0 0 3h43a1.5 1.5 0 1 0 0-3zm0 6h-43a1.5 1.5 0 1 0 0 3h43a1.5 1.5 0 1 0 0-3z" class="D B"/></g><path d="M78.9 128c0 1.6-.5 2.8-1.4 3.7s-2.2 1.3-3.9 1.3H71v-10h3c1.6 0 2.8.4 3.7 1.3s1.3 2 1.3 3.6zm-1.3 0c0-1.4-.3-2.3-1-3s-1.6-1-2.9-1H72v8h1.5c1.3 0 2.4-.3 3-1s1.1-1.7 1.1-3zm6.5 5.1c-1.1 0-2-.3-2.6-1s-1-1.6-1-2.8c0-1.2.3-2.1.9-2.9s1.4-1 2.4-1 1.7.3 2.2.9c.6.6.8 1.4.8 2.4v.8h-5.1c0 .8.2 1.5.6 2s1 .6 1.8.6a6 6 0 0 0 2.4-.5v1a5.7 5.7 0 0 1-2.4.5zm-.3-6.8c-.6 0-1.1.2-1.5.6s-.5 1-.6 1.6h4c0-.7-.2-1.2-.6-1.6s-.7-.6-1.3-.6zm8.4 0h-2v6.7h-1v-6.6h-1.4v-.5l1.3-.4v-.4c0-1.9.8-2.8 2.4-2.8.4 0 .9 0 1.4.2l-.3 1-1.1-.3c-.4 0-.7.2-1 .5s-.3.7-.3 1.3v.5h2v.9zm6 6.7-.3-1-1.2.9a3 3 0 0 1-1.4.2c-.7 0-1.3-.2-1.7-.5s-.6-1-.6-1.7c0-1.5 1.2-2.3 3.6-2.3h1.3v-.6c0-.5-.2-1-.4-1.3s-.7-.4-1.2-.4a5 5 0 0 0-2.2.6l-.3-.9a5.4 5.4 0 0 1 1.2-.4c.5-.2.9-.2 1.3-.2 1 0 1.6.2 2 .6s.7 1 .7 1.9v5.1H98zm-2.6-.8c.7 0 1.2-.2 1.6-.6s.6-1 .6-1.6v-.7h-1.1c-.9.1-1.6.2-2 .5s-.6.6-.6 1.1c0 .5.2.8.4 1s.6.3 1 .3zm6.8-6.7v4.9c0 .6.1 1 .4 1.3s.7.5 1.3.5c.8 0 1.4-.2 1.7-.7s.6-1 .6-2v-4h1.1v7.5h-1l-.1-1c-.3.4-.6.6-1 .8-.4.2-1 .3-1.4.3-1 0-1.6-.2-2-.6-.5-.4-.8-1.1-.8-2v-5h1.2zm8.6 7.5h-1v-10.6h1V133zm4.9-.8h.6l.4-.1v.8l-.5.2h-.7c-1.4 0-2.2-.7-2.2-2.3v-4.4h-1v-.6l1-.4.5-1.6h.7v1.7h2.1v.9h-2.1v4.4c0 .5 0 .8.3 1s.5.4.9.4z" class="H" opacity=".8"/><rect width="186" height="150" x=".5" y=".5" class="I" rx="3.5"/><g clip-path="url(#B)"><path d="M201 8h194v87H201V8Z" class="C G"/><path d="M231 61h-13a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3h13a3 3 0 0 0 3-3V64a3 3 0 0 0-3-3z" class="B E"/><use xlink:href="#D" class="C F"/><g class="D B"><use xlink:href="#E"/><use xlink:href="#F"/><use xlink:href="#G"/><path d="M258.5 80h-18a1.5 1.5 0 1 0 0 3h18a1.5 1.5 0 1 0 0-3z"/></g><path d="M319 61h-13a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3h13a3 3 0 0 0 3-3V64a3 3 0 0 0-3-3z" class="B E"/><path d="M317 74h-9l-1-1v-7l1-1h9l1 1v7l-1 1zm-8-8-1 2 1 1 2-1-2-2zm-1 7h9v-3l-2-2h-1l-3 3-1-1-2 1v2z" class="C F"/><path d="M375.5 62h-47a1.5 1.5 0 1 0 0 3h47a1.5 1.5 0 1 0 0-3zm-10 6h-37a1.5 1.5 0 1 0 0 3h37a1.5 1.5 0 1 0 0-3zm-19 6h-18a1.5 1.5 0 1 0 0 3h18a1.5 1.5 0 1 0 0-3zm0 6h-18a1.5 1.5 0 1 0 0 3h18a1.5 1.5 0 1 0 0-3z" class="D B"/><path d="M231 21h-13a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3h13a3 3 0 0 0 3-3V24a3 3 0 0 0-3-3z" class="B E"/><path d="M229 34h-9l-1-1v-7l1-1h9l1 1v7l-1 1zm-8-8-1 2 1 1 2-1-2-2zm-1 7h9v-3l-2-2h-1l-3 3-1-1-2 1v2z" class="C F"/><path d="M287.5 22h-47a1.5 1.5 0 1 0 0 3h47a1.5 1.5 0 1 0 0-3zm-10 6h-37a1.5 1.5 0 1 0 0 3h37a1.5 1.5 0 1 0 0-3zm-19 6h-18a1.5 1.5 0 1 0 0 3h18a1.5 1.5 0 1 0 0-3zm0 6h-18a1.5 1.5 0 1 0 0 3h18a1.5 1.5 0 1 0 0-3z" class="D B"/><path d="M319 21h-13a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3h13a3 3 0 0 0 3-3V24a3 3 0 0 0-3-3z" class="B E"/><path d="M317 34h-9l-1-1v-7l1-1h9l1 1v7l-1 1zm-8-8-1 2 1 1 2-1-2-2zm-1 7h9v-3l-2-2h-1l-3 3-1-1-2 1v2z" class="C F"/><path d="M375.5 22h-47a1.5 1.5 0 1 0 0 3h47a1.5 1.5 0 1 0 0-3zm-10 6h-37a1.5 1.5 0 1 0 0 3h37a1.5 1.5 0 1 0 0-3zm-19 6h-18a1.5 1.5 0 1 0 0 3h18a1.5 1.5 0 1 0 0-3zm0 6h-18a1.5 1.5 0 1 0 0 3h18a1.5 1.5 0 1 0 0-3z" class="D B"/></g><path d="M257 133h-1.2v-9h-3.2v-1h7.5v1H257v9zm10.6 0-1.4-4.4-.5-1.8-.5 1.8-1.4 4.4h-1.3l-2-7.5h1.1l1.1 4.3.4 2 .3-1 .3-1 1.4-4.3h1.2l1.4 4.3.5 2 .2-.8 1.4-5.5h1.2l-2 7.5h-1.4zm11.2-3.8c0 1.3-.3 2.2-.9 3s-1.5 1-2.6 1c-.6 0-1.2-.2-1.7-.5s-1-.8-1.2-1.4-.5-1.3-.5-2c0-1.3.3-2.2 1-2.9s1.4-1 2.5-1c1 0 1.9.3 2.5 1s1 1.7 1 2.8zm-5.7 0c0 1 .2 1.7.6 2.2s1 .8 1.7.8 1.3-.3 1.7-.8.5-1.2.5-2.2c0-.9-.2-1.6-.5-2.1s-1-.8-1.7-.8c-.8 0-1.3.3-1.7.8s-.6 1.2-.6 2.1zm7 .6v-1h3.4v1h-3.3zm8.2 3.3c-1 0-2-.3-2.5-1s-.9-1.6-.9-2.8c0-1.3.3-2.2 1-2.9s1.4-1 2.5-1a5.2 5.2 0 0 1 1 0l1 .4-.4 1a5 5 0 0 0-.8-.3l-.8-.1c-1.6 0-2.3 1-2.3 2.9 0 1 .2 1.6.5 2.1s1 .7 1.7.7a5 5 0 0 0 2-.4v1a4 4 0 0 1-2 .4zm10.2-3.9c0 1.3-.3 2.2-1 3s-1.4 1-2.5 1c-.7 0-1.3-.2-1.8-.5s-1-.8-1.2-1.4-.4-1.3-.4-2c0-1.3.3-2.2.9-2.9s1.5-1 2.5-1 2 .3 2.5 1 1 1.7 1 2.8zm-5.7 0c0 1 .1 1.7.5 2.2s1 .8 1.7.8 1.3-.3 1.7-.8.6-1.2.6-2.2c0-.9-.2-1.6-.6-2.1s-1-.8-1.7-.8-1.3.3-1.7.8-.5 1.2-.5 2.1zm8.8 3.8h-1.1v-10.6h1.1V133zm3.5-7.5v4.9c0 .6.1 1 .4 1.3s.7.5 1.3.5c.8 0 1.3-.2 1.7-.7s.6-1 .6-2v-4h1v7.5h-.8l-.2-1a2.3 2.3 0 0 1-1 .8l-1.5.3c-.9 0-1.5-.2-2-.6s-.7-1.1-.7-2v-5h1.2zm17 7.5v-4.9c0-.6 0-1-.3-1.3s-.7-.5-1.2-.5c-.7 0-1.2.2-1.6.6s-.5 1-.5 2v4.1h-1.1v-4.9c0-.6-.2-1-.4-1.3s-.7-.5-1.2-.5c-.7 0-1.2.2-1.6.7-.3.4-.5 1.1-.5 2v4h-1.1v-7.5h1l.1 1 1-.8c.4-.2.8-.3 1.3-.3 1.2 0 2 .4 2.3 1.2.3-.3.6-.7 1-.9s1-.3 1.5-.3c.8 0 1.4.2 1.9.6s.6 1.2.6 2.1v4.9h-1.1zm8.7 0v-4.8c0-.7-.2-1.1-.5-1.4s-.7-.5-1.3-.5c-.7 0-1.3.2-1.7.7s-.5 1-.5 2v4h-1.2v-7.5h1l.1 1 1-.8c.4-.2 1-.3 1.5-.3.9 0 1.6.2 2 .6s.7 1.2.7 2.1v4.9h-1.1zm8.3-2c0 .7-.3 1.2-.8 1.6s-1.3.5-2.2.5c-1 0-1.8-.1-2.3-.4v-1a5.6 5.6 0 0 0 1.1.3l1.2.2c.6 0 1 0 1.4-.3s.5-.5.5-.8c0-.3-.2-.6-.4-.8l-1.5-.7-1.5-.7c-.3-.2-.5-.4-.6-.7a1.8 1.8 0 0 1-.2-.9 1.7 1.7 0 0 1 .7-1.4c.5-.4 1.2-.5 2-.5a6 6 0 0 1 2.4.5l-.4.9c-.7-.3-1.4-.5-2-.5-.6 0-1 .1-1.3.3s-.4.4-.4.7c0 .2 0 .3.2.5l.5.4 1.3.5c.9.4 1.5.7 1.8 1s.5.8.5 1.3z" class="H" opacity=".8"/><rect width="186" height="150" x="203.5" y=".5" class="I" rx="3.5"/><g class="C"><path d="M414 8h172v87H414z" class="G"/><path fill-opacity=".6" d="M414 8h172v19H414z"/></g><g class="D B"><use xlink:href="#H"/><use xlink:href="#H" x="53"/><use xlink:href="#H" x="106"/><use xlink:href="#I"/><use xlink:href="#I" x="53"/><use xlink:href="#I" x="106"/><use xlink:href="#I" y="15"/><use xlink:href="#I" x="53" y="15"/><use xlink:href="#I" x="106" y="15"/><use xlink:href="#I" y="30"/><use xlink:href="#I" x="53" y="30"/><use xlink:href="#I" x="106" y="30"/><use xlink:href="#I" y="45"/><use xlink:href="#I" x="53" y="45"/><use xlink:href="#I" x="106" y="45"/></g><path d="M486.4 133h-1.1v-9H482v-1h7.5v1h-3.2v9zm9.2 0-.3-1-1.1.9c-.3.2-.9.2-1.4.2-.8 0-1.4-.2-1.8-.5s-.6-1-.6-1.7c0-1.5 1.2-2.3 3.6-2.4h1.3v-.5c0-.5-.1-1-.4-1.3s-.6-.4-1.2-.4a5 5 0 0 0-2.1.6l-.4-.9a5.4 5.4 0 0 1 1.2-.4 5.3 5.3 0 0 1 1.4-.2c.9 0 1.5.2 2 .6s.6 1 .6 1.9v5.1h-.8zm-2.6-.8c.7 0 1.3-.2 1.7-.6s.6-1 .6-1.6v-.7H494c-.9 0-1.5.2-2 .5s-.5.6-.5 1.1c0 .5.1.8.4 1s.6.3 1 .3zm9.2-6.8c1 0 1.8.3 2.3 1s.8 1.6.8 2.8-.2 2.2-.8 3-1.3 1-2.3 1c-.5 0-.9-.2-1.3-.3s-.7-.5-1-.9h-.1l-.2 1h-.9v-10.6h1.2v4.1c.5-.7 1.3-1.1 2.3-1.1zm-.1 1c-.8 0-1.4.2-1.7.6-.3.4-.5 1.2-.5 2.2s.2 1.9.5 2.3c.4.5 1 .7 1.7.7s1.2-.3 1.6-.8.5-1.2.5-2.2c0-1-.2-1.7-.5-2.1s-1-.8-1.6-.8zm6.4 6.6h-1.2v-10.6h1.2V133zm5.5.1c-1 0-2-.3-2.6-1a4 4 0 0 1-1-2.8c0-1.2.4-2.2 1-2.9s1.3-1 2.3-1c1 0 1.7.3 2.3.9.5.6.8 1.4.8 2.4v.8h-5.2c0 .8.3 1.5.7 2 .4.4 1 .6 1.8.6a6 6 0 0 0 2.4-.5v1a5.8 5.8 0 0 1-1.2.4l-1.3.1zm-.3-6.8c-.6 0-1 .2-1.4.6s-.6 1-.6 1.6h3.9c0-.7-.2-1.2-.5-1.6s-.8-.6-1.4-.6z" class="H" opacity=".8"/><rect width="187" height="150" x="406.5" y=".5" class="I" rx="3.5"/><defs><path id="C" d="M101.5 34h-43a1.5 1.5 0 1 0 0 3h43a1.5 1.5 0 1 0 0-3z"/><path id="D" d="M229 74h-9l-1-1v-7l1-1h9l1 1v7l-1 1zm-8-8-1 2 1 1 2-1-2-2zm-1 7h9v-3l-2-2h-1l-3 3-1-1-2 1v2z"/><path id="E" d="M287.5 62h-47a1.5 1.5 0 1 0 0 3h47a1.5 1.5 0 1 0 0-3z"/><path id="F" d="M277.5 68h-37a1.5 1.5 0 1 0 0 3h37a1.5 1.5 0 1 0 0-3z"/><path id="G" d="M258.5 74h-18a1.5 1.5 0 1 0 0 3h18a1.5 1.5 0 1 0 0-3z"/><path id="H" d="M465.8 15h-38.6c-.6 0-1.2 1.3-1.2 3s.6 3 1.2 3h38.6c.6 0 1.2-1.3 1.2-3s-.6-3-1.2-3z"/><path id="I" d="M465.8 37h-38.6c-.6 0-1.2.7-1.2 1.5s.6 1.5 1.2 1.5h38.6c.6 0 1.2-.7 1.2-1.5s-.6-1.5-1.2-1.5z"/><clipPath id="A"><use xlink:href="#reuse-0" class="C" transform="translate(8 8)"/></clipPath><clipPath id="B"><use xlink:href="#reuse-0" class="C" transform="translate(211 8)"/></clipPath></defs></svg>
|
assets/js/admin-listing-metabox.js
CHANGED
@@ -15,7 +15,7 @@ jQuery( function( $ ) {
|
|
15 |
},
|
16 |
}).addClass( 'ui-datepicker-never ui-state-default ui-priority-primary ui-corner-all' );
|
17 |
|
18 |
-
|
19 |
}, 1 );
|
20 |
};
|
21 |
|
@@ -24,6 +24,8 @@ jQuery( function( $ ) {
|
|
24 |
showButtonPanel: true,
|
25 |
beforeShow: function( input, instance ) {
|
26 |
_addNeverButton( instance );
|
|
|
|
|
27 |
},
|
28 |
onChangeMonthYear: function( year, month, instance ) {
|
29 |
_addNeverButton( instance );
|
@@ -32,30 +34,22 @@ jQuery( function( $ ) {
|
|
32 |
|
33 |
var $metabox_tab = $('#wpbdp-listing-metabox-plan-info');
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
$( '#wpbdp-listing-plan-prop-amount' ).html( plan_data.amount ? plan_data.amount : '-' );
|
52 |
-
$( '#wpbdp-listing-plan-prop-is_sticky' ).html( plan_data.sticky ? wpbdpListingMetaboxL10n.yes : wpbdpListingMetaboxL10n.no );
|
53 |
-
$( '#wpbdp-listing-plan-prop-is_recurring' ).html( plan_data.recurring ? wpbdpListingMetaboxL10n.yes : wpbdpListingMetaboxL10n.no );
|
54 |
-
}
|
55 |
-
|
56 |
-
$('#wpbdp-listing-plan-prop-expiration').html(expiration ? expiration : wpbdpListingMetaboxL10n.noExpiration);
|
57 |
-
$('#wpbdp-listing-plan-prop-images').html(images);
|
58 |
-
};
|
59 |
|
60 |
// Properties editing.
|
61 |
$metabox_tab.find('a.edit-value-toggle').click(function(e) {
|
@@ -93,7 +87,6 @@ jQuery( function( $ ) {
|
|
93 |
if ( $input.is('#wpbdp-listing-plan-select') && $input.val() ) {
|
94 |
var listing_id = $( 'input[name="post_ID"]' ).val();
|
95 |
|
96 |
-
|
97 |
$.ajax(ajaxurl, {
|
98 |
data: {
|
99 |
action: 'wpbdp-assign-plan-to-listing',
|
@@ -114,8 +107,6 @@ jQuery( function( $ ) {
|
|
114 |
}
|
115 |
});
|
116 |
}
|
117 |
-
|
118 |
-
updateText();
|
119 |
}
|
120 |
|
121 |
$editor.hide();
|
15 |
},
|
16 |
}).addClass( 'ui-datepicker-never ui-state-default ui-priority-primary ui-corner-all' );
|
17 |
|
18 |
+
$buttonPane.append($button);
|
19 |
}, 1 );
|
20 |
};
|
21 |
|
24 |
showButtonPanel: true,
|
25 |
beforeShow: function( input, instance ) {
|
26 |
_addNeverButton( instance );
|
27 |
+
|
28 |
+
$( '#ui-datepicker-div' ).addClass( 'wpbdp-datepicker' );
|
29 |
},
|
30 |
onChangeMonthYear: function( year, month, instance ) {
|
31 |
_addNeverButton( instance );
|
34 |
|
35 |
var $metabox_tab = $('#wpbdp-listing-metabox-plan-info');
|
36 |
|
37 |
+
// Makes sure texts displayed inside the metabox are in sync with the settings.
|
38 |
+
var updateText = function( plan ) {
|
39 |
+
var images = $('input[name="listing_plan[fee_images]"]').val();
|
40 |
+
$('#wpbdp-listing-plan-prop-images').html(images);
|
41 |
+
|
42 |
+
if ( plan ) {
|
43 |
+
$('#wpbdp-listing-plan-prop-label').html(
|
44 |
+
wpbdpListingMetaboxL10n.planDisplayFormat.replace('{{plan_id}}', plan.id)
|
45 |
+
.replace('{{plan_label}}', plan.label)
|
46 |
+
);
|
47 |
+
$( '#wpbdp-listing-plan-prop-amount' ).html( plan.amount ? plan.amount : '-' );
|
48 |
+
$( '#wpbdp-listing-plan-prop-is_sticky' ).html( plan.sticky );
|
49 |
+
$( '#wpbdp-listing-plan-prop-is_recurring' ).html( plan.recurring );
|
50 |
+
$( '#wpbdp-listing-plan-prop-expiration' ).html( plan.formated_date );
|
51 |
+
}
|
52 |
+
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
// Properties editing.
|
55 |
$metabox_tab.find('a.edit-value-toggle').click(function(e) {
|
87 |
if ( $input.is('#wpbdp-listing-plan-select') && $input.val() ) {
|
88 |
var listing_id = $( 'input[name="post_ID"]' ).val();
|
89 |
|
|
|
90 |
$.ajax(ajaxurl, {
|
91 |
data: {
|
92 |
action: 'wpbdp-assign-plan-to-listing',
|
107 |
}
|
108 |
});
|
109 |
}
|
|
|
|
|
110 |
}
|
111 |
|
112 |
$editor.hide();
|
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)},onChangeMonthYear:function(year,month,instance){_addNeverButton(instance)}});var $metabox_tab=$("#wpbdp-listing-metabox-plan-info"),updateText=function(
|
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))};$metabox_tab.find("a.edit-value-toggle").click(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.find(".value-editor a.update-value, .value-editor a.cancel-edit").click(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)}}})}$editor.hide(),$display.show(),$dd.find(".edit-value-toggle").show()}),$payments_tab=$("#wpbdp-listing-metabox-payments"),$payments_tab.mouseover(function(){$(this).find(".payment-delete-action").css("left","0")}).mouseout(function(){$(this).find(".payment-delete-action").css("left","-9999em")}),$payments_tab.find('a[name="delete-payments"]').click(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())})})});
|
assets/js/admin.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
-
var WPBDP_associations_fieldtypes = {}
|
|
|
2 |
|
3 |
(function($) {
|
4 |
|
@@ -6,6 +7,7 @@ var WPBDP_associations_fieldtypes = {};
|
|
6 |
var WPBDPAdmin_Modal = {
|
7 |
init: function() {
|
8 |
WPBDPAdmin_Modal.initConfirmModal();
|
|
|
9 |
},
|
10 |
|
11 |
/**
|
@@ -34,13 +36,7 @@ var WPBDP_associations_fieldtypes = {};
|
|
34 |
|
35 |
getHtml : function() {
|
36 |
return '<div id="wpbdp-admin-modal" class="hidden settings-lite-cta">' +
|
37 |
-
|
38 |
-
'<a href="#" class="dismiss alignright" title="Dismiss">' +
|
39 |
-
'<img src="' + wpbdp_global.assets + '/images/icons/close.svg" width="24" height="24"/>' +
|
40 |
-
'</a>' +
|
41 |
-
'<h2>' + wpbdp_global.confirm + '</h2>' +
|
42 |
-
'</div>' +
|
43 |
-
'<div class="inside"></div>' +
|
44 |
'<div class="wpbdp-modal-bottom">' +
|
45 |
'<a href="#" class="dismiss-button" title="Dismiss">' + wpbdp_global.cancel + '</a>' +
|
46 |
'<a href="#" class="wpbdp-continue wpbdp-button-primary alignright">' + wpbdp_global.continue + '</a>' +
|
@@ -48,8 +44,52 @@ var WPBDP_associations_fieldtypes = {};
|
|
48 |
'</div>';
|
49 |
},
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
initModal : function( id, width ) {
|
52 |
var $info = $( id );
|
|
|
|
|
|
|
53 |
|
54 |
if ( typeof width === 'undefined' ) {
|
55 |
width = '550px';
|
@@ -72,6 +112,13 @@ var WPBDP_associations_fieldtypes = {};
|
|
72 |
},
|
73 |
close: function() {
|
74 |
$( '.ui-widget-overlay' ).removeClass( 'wpbdp-modal-overlay' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
});
|
77 |
|
@@ -88,6 +135,52 @@ var WPBDP_associations_fieldtypes = {};
|
|
88 |
}
|
89 |
};
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
/* Form Fields */
|
92 |
var WPBDPAdmin_FormFields = {
|
93 |
$f_association: null,
|
@@ -248,16 +341,146 @@ var WPBDP_associations_fieldtypes = {};
|
|
248 |
}
|
249 |
};
|
250 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
|
252 |
$(document).ready(function(){
|
253 |
WPBDPAdmin_FormFields.init();
|
254 |
WPBDPAdmin_Modal.init();
|
|
|
255 |
|
256 |
$( '.wpbdp-tooltip' ).tooltip({
|
257 |
tooltipClass: 'wpbdp-admin-tooltip-content'
|
258 |
});
|
259 |
});
|
260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
})(jQuery);
|
262 |
|
263 |
|
@@ -344,20 +567,20 @@ jQuery(document).ready(function($){
|
|
344 |
});
|
345 |
|
346 |
/* Debug info page */
|
347 |
-
$('
|
348 |
e.preventDefault();
|
349 |
|
350 |
-
$('
|
351 |
|
352 |
var $selected_tab = $(this);
|
353 |
-
$selected_tab.addClass( '
|
354 |
|
355 |
$( '.wpbdp-debug-section' ).hide();
|
356 |
$( '.wpbdp-debug-section[data-id="' + $(this).attr('href') + '"]' ).show();
|
357 |
});
|
358 |
|
359 |
-
if ( $('
|
360 |
-
$('
|
361 |
|
362 |
/* Transactions */
|
363 |
$( '.wpbdp-page-admin-transactions .column-actions a.details-link' ).click(function(e){
|
@@ -535,35 +758,6 @@ jQuery(function($) {
|
|
535 |
})(jQuery);
|
536 |
// }}
|
537 |
|
538 |
-
// Dismissible Messages
|
539 |
-
(function($) {
|
540 |
-
$(function(){
|
541 |
-
var dismissNotice = function( $notice, $button ) {
|
542 |
-
$.post( ajaxurl, {
|
543 |
-
action: 'wpbdp_dismiss_notification',
|
544 |
-
id: $button.data( 'dismissible-id' ),
|
545 |
-
nonce: $button.data( 'nonce' )
|
546 |
-
}, function() {
|
547 |
-
$notice.fadeOut( 'fast', function(){
|
548 |
-
$notice.remove();
|
549 |
-
} );
|
550 |
-
} );
|
551 |
-
};
|
552 |
-
|
553 |
-
$( '#wpbody-content' ).on( 'click', '.wpbdp-notice.is-dismissible > .notice-dismiss, .wpbdp-notice .wpbdp-notice-dismiss', function( e ) {
|
554 |
-
e.preventDefault();
|
555 |
-
var $button = $( this ),
|
556 |
-
$notice = $button.closest( '.wpbdp-notice' ),
|
557 |
-
link = $button.attr( 'href' );
|
558 |
-
|
559 |
-
if ( link ) {
|
560 |
-
window.open( link, '_blank').focus();
|
561 |
-
}
|
562 |
-
dismissNotice( $notice, $button );
|
563 |
-
});
|
564 |
-
});
|
565 |
-
})(jQuery);
|
566 |
-
|
567 |
// Install addons
|
568 |
function wpbdpAddons() {
|
569 |
function activateAddon( e ) {
|
@@ -582,7 +776,7 @@ function wpbdpAddons() {
|
|
582 |
var button = jQuery( clicked );
|
583 |
var plugin = button.attr( 'rel' );
|
584 |
var el = button.parent();
|
585 |
-
var message = el.parent().find( '.addon-status
|
586 |
|
587 |
button.addClass( 'wpbdp-loading-button' );
|
588 |
|
@@ -858,7 +1052,8 @@ jQuery( function( $ ) {
|
|
858 |
* Highlight Directory menu.
|
859 |
*/
|
860 |
function wpbdpSelectSubnav() {
|
861 |
-
|
862 |
-
|
863 |
-
|
|
|
864 |
}
|
1 |
+
var WPBDP_associations_fieldtypes = {},
|
2 |
+
WPBDPAdmin_Tooltip = {};
|
3 |
|
4 |
(function($) {
|
5 |
|
7 |
var WPBDPAdmin_Modal = {
|
8 |
init: function() {
|
9 |
WPBDPAdmin_Modal.initConfirmModal();
|
10 |
+
WPBDPAdmin_Modal.initTaxonomyModal();
|
11 |
},
|
12 |
|
13 |
/**
|
36 |
|
37 |
getHtml : function() {
|
38 |
return '<div id="wpbdp-admin-modal" class="hidden settings-lite-cta">' +
|
39 |
+
WPBDPAdmin_Modal.getHeaderHtml() +
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
'<div class="wpbdp-modal-bottom">' +
|
41 |
'<a href="#" class="dismiss-button" title="Dismiss">' + wpbdp_global.cancel + '</a>' +
|
42 |
'<a href="#" class="wpbdp-continue wpbdp-button-primary alignright">' + wpbdp_global.continue + '</a>' +
|
44 |
'</div>';
|
45 |
},
|
46 |
|
47 |
+
initTaxonomyModal : function() {
|
48 |
+
var modal,
|
49 |
+
form = $( '#addtag' ).closest( '.form-wrap' );
|
50 |
+
|
51 |
+
if ( ! form.length ) {
|
52 |
+
return;
|
53 |
+
}
|
54 |
+
|
55 |
+
$('.wpbdp-admin-page').append( WPBDPAdmin_Modal.getFormHtml() );
|
56 |
+
|
57 |
+
modal = WPBDPAdmin_Modal.initModal( '#wpbdp-add-taxonomy-form' );
|
58 |
+
|
59 |
+
$( document ).on( 'click', '.wpbdp-add-taxonomy-form', function( e ) {
|
60 |
+
e.preventDefault();
|
61 |
+
|
62 |
+
// Get the heading from the content and move it.
|
63 |
+
var heading = form.find( 'h2' );
|
64 |
+
heading.hide();
|
65 |
+
modal.find( 'h2' ).text( heading.text() );
|
66 |
+
|
67 |
+
modal.find('.inside').html( form );
|
68 |
+
modal.dialog( 'open' );
|
69 |
+
});
|
70 |
+
},
|
71 |
+
|
72 |
+
getFormHtml : function() {
|
73 |
+
return '<div id="wpbdp-add-taxonomy-form" class="hidden settings-lite-cta">' +
|
74 |
+
WPBDPAdmin_Modal.getHeaderHtml() +
|
75 |
+
'</div>';
|
76 |
+
},
|
77 |
+
|
78 |
+
getHeaderHtml : function() {
|
79 |
+
return '<div class="wpbdp-modal-top">' +
|
80 |
+
'<a href="#" class="dismiss alignright" title="Dismiss">' +
|
81 |
+
'<img src="' + wpbdp_global.assets + '/images/icons/close.svg" width="24" height="24"/>' +
|
82 |
+
'</a>' +
|
83 |
+
'<h2>' + wpbdp_global.confirm + '</h2>' +
|
84 |
+
'</div>' +
|
85 |
+
'<div class="inside"></div>';
|
86 |
+
},
|
87 |
+
|
88 |
initModal : function( id, width ) {
|
89 |
var $info = $( id );
|
90 |
+
if ( $info.length < 1 ) {
|
91 |
+
return false;
|
92 |
+
}
|
93 |
|
94 |
if ( typeof width === 'undefined' ) {
|
95 |
width = '550px';
|
112 |
},
|
113 |
close: function() {
|
114 |
$( '.ui-widget-overlay' ).removeClass( 'wpbdp-modal-overlay' );
|
115 |
+
$( '.spinner' ).css( 'visibility', 'hidden' );
|
116 |
+
|
117 |
+
this.removeAttribute( 'data-option-type' );
|
118 |
+
var optionType = document.getElementById( 'bulk-option-type' );
|
119 |
+
if ( optionType ) {
|
120 |
+
optionType.value = '';
|
121 |
+
}
|
122 |
}
|
123 |
});
|
124 |
|
135 |
}
|
136 |
};
|
137 |
|
138 |
+
/**
|
139 |
+
* Menu tooltips
|
140 |
+
*/
|
141 |
+
window.WPBDPAdmin_Tooltip = {
|
142 |
+
$layout_container: null,
|
143 |
+
$menu_items: null,
|
144 |
+
$menu_state: null,
|
145 |
+
|
146 |
+
init: function() {
|
147 |
+
WPBDPAdmin_Tooltip.$layout_container = $( '.wpbdp-admin-row' );
|
148 |
+
WPBDPAdmin_Tooltip.$menu_items = WPBDPAdmin_Tooltip.$layout_container.find( '.wpbdp-nav-item a' );
|
149 |
+
WPBDPAdmin_Tooltip.$menu_state = window.localStorage.getItem( '_wpbdp_admin_menu' );
|
150 |
+
$( '.wpbdp-nav-toggle' ).click( WPBDPAdmin_Tooltip.onNavToggle );
|
151 |
+
WPBDPAdmin_Tooltip.layoutAdjustment();
|
152 |
+
},
|
153 |
+
|
154 |
+
onNavToggle: function( e ) {
|
155 |
+
e.preventDefault();
|
156 |
+
WPBDPAdmin_Tooltip.$layout_container.toggleClass( 'minimized' );
|
157 |
+
if ( WPBDPAdmin_Tooltip.$layout_container.hasClass( 'minimized' ) ) {
|
158 |
+
window.localStorage.setItem( '_wpbdp_admin_menu', 'minimized' );
|
159 |
+
WPBDPAdmin_Tooltip.$menu_items.addClass( 'wpbdp-nav-tooltip' );
|
160 |
+
} else {
|
161 |
+
window.localStorage.removeItem( '_wpbdp_admin_menu' );
|
162 |
+
WPBDPAdmin_Tooltip.$menu_items.removeClass( 'wpbdp-nav-tooltip' );
|
163 |
+
}
|
164 |
+
},
|
165 |
+
|
166 |
+
layoutAdjustment: function() {
|
167 |
+
var menu = document.getElementById( 'adminmenuwrap' );
|
168 |
+
if ( menu !== null ) {
|
169 |
+
WPBDPAdmin_Tooltip.$layout_container.css( 'min-height', menu.offsetHeight );
|
170 |
+
}
|
171 |
+
if ( window.matchMedia( 'screen and (max-width: 768px)' ).matches ) {
|
172 |
+
WPBDPAdmin_Tooltip.$menu_items.addClass( 'wpbdp-nav-tooltip' );
|
173 |
+
}
|
174 |
+
|
175 |
+
if ( WPBDPAdmin_Tooltip.$menu_state === 'minimized' ) {
|
176 |
+
WPBDPAdmin_Tooltip.$layout_container.addClass( 'minimized' );
|
177 |
+
WPBDPAdmin_Tooltip.$menu_items.addClass( 'wpbdp-nav-tooltip' );
|
178 |
+
}
|
179 |
+
}
|
180 |
+
};
|
181 |
+
|
182 |
+
WPBDPAdmin_Tooltip.init();
|
183 |
+
|
184 |
/* Form Fields */
|
185 |
var WPBDPAdmin_FormFields = {
|
186 |
$f_association: null,
|
341 |
}
|
342 |
};
|
343 |
|
344 |
+
var WPBDPAdmin_Notifications = {
|
345 |
+
notificationContainer: null,
|
346 |
+
preAdminNotifications: null,
|
347 |
+
adminNotifications: null,
|
348 |
+
buttonNotification: null,
|
349 |
+
closeButton: null,
|
350 |
+
|
351 |
+
init: function() {
|
352 |
+
// Get the notification center
|
353 |
+
this.notificationContainer = $( '.wpbdp-bell-notifications' );
|
354 |
+
|
355 |
+
// Get all the notifications to display in the modal
|
356 |
+
this.preAdminNotifications = $( '.notice:hidden' );
|
357 |
+
|
358 |
+
// Notifications container
|
359 |
+
this.adminNotifications = this.notificationContainer.find( '.wpbdp-bell-notifications-list' );
|
360 |
+
|
361 |
+
// Get the notification button
|
362 |
+
this.buttonNotification = $( '.wpbdp-bell-notification-icon' );
|
363 |
+
|
364 |
+
// Get the close button
|
365 |
+
this.closeButton = $( '.wpbdp-bell-notifications-close' );
|
366 |
+
|
367 |
+
this.onClickNotifications();
|
368 |
+
this.initCloseNotifications();
|
369 |
+
|
370 |
+
WPBDPAdmin_Notifications.parseNotifications();
|
371 |
+
},
|
372 |
+
|
373 |
+
onClickNotifications: function() {
|
374 |
+
WPBDPAdmin_Notifications.buttonNotification.on( 'click', function(e) {
|
375 |
+
e.preventDefault();
|
376 |
+
WPBDPAdmin_Notifications.notificationContainer.toggleClass( 'hidden' );
|
377 |
+
});
|
378 |
+
},
|
379 |
+
|
380 |
+
initCloseNotifications: function() {
|
381 |
+
WPBDPAdmin_Notifications.closeButton.on( 'click', function(e) {
|
382 |
+
e.preventDefault();
|
383 |
+
WPBDPAdmin_Notifications.notificationContainer.addClass( 'hidden' );
|
384 |
+
});
|
385 |
+
},
|
386 |
+
|
387 |
+
parseNotifications: function() {
|
388 |
+
if ( WPBDPAdmin_Notifications.preAdminNotifications.length < 1 ){
|
389 |
+
return true;
|
390 |
+
}
|
391 |
+
var notifications = [],
|
392 |
+
snackbars = [];
|
393 |
+
|
394 |
+
WPBDPAdmin_Notifications.preAdminNotifications.each( function() {
|
395 |
+
var notification = $(this),
|
396 |
+
mainMsg = this.id === 'message';
|
397 |
+
if ( notification.hasClass( 'wpbdp-inline-notice' ) ) {
|
398 |
+
return false;
|
399 |
+
}
|
400 |
+
if ( notification.hasClass( 'wpbdp-notice' ) || mainMsg ) {
|
401 |
+
if ( notification.hasClass( 'is-dismissible' ) && ! mainMsg ) {
|
402 |
+
notifications.push( '<li class="wpbdp-bell-notice ' + this.classList + '">' + notification.html() + '</li>' );
|
403 |
+
} else {
|
404 |
+
snackbars.push( notification.html() );
|
405 |
+
}
|
406 |
+
notification.remove();
|
407 |
+
}
|
408 |
+
});
|
409 |
+
|
410 |
+
WPBDPAdmin_Notifications.adminNotifications.append( notifications.join( ' ' ) );
|
411 |
+
if ( notifications.length > 0 ) {
|
412 |
+
$( '.wpbdp-bell-notification' ).show();
|
413 |
+
WPBDPAdmin_Notifications.notificationContainer.removeClass( 'hidden' );
|
414 |
+
}
|
415 |
+
if ( snackbars.length > 0 ) {
|
416 |
+
snackbars.forEach( function( value, index, array ) {
|
417 |
+
WPBDPAdmin_Notifications.generateSnackBar( value );
|
418 |
+
});
|
419 |
+
}
|
420 |
+
},
|
421 |
+
|
422 |
+
/**
|
423 |
+
* Render the snack bar
|
424 |
+
*
|
425 |
+
* @param {string} notification
|
426 |
+
*/
|
427 |
+
generateSnackBar: function( notification ) {
|
428 |
+
var snackbar = $( '<div>', {
|
429 |
+
class: 'wpbdp-snackbar',
|
430 |
+
html: notification
|
431 |
+
});
|
432 |
+
$( '#wpbdp-snackbar-notices' ).append( snackbar );
|
433 |
+
snackbar.find( '.notice-dismiss').on( 'click', function(e) {
|
434 |
+
e.preventDefault();
|
435 |
+
snackbar.fadeOut();
|
436 |
+
});
|
437 |
+
setTimeout( function(){ snackbar.remove(); }, 25000 );
|
438 |
+
},
|
439 |
+
|
440 |
+
hideNotificationCenter: function() {
|
441 |
+
if ( WPBDPAdmin_Notifications.adminNotifications.find( 'li' ).length < 1 ) {
|
442 |
+
WPBDPAdmin_Notifications.notificationContainer.addClass( 'hidden' );
|
443 |
+
$( '.wpbdp-bell-notification' ).hide();
|
444 |
+
}
|
445 |
+
}
|
446 |
+
};
|
447 |
|
448 |
$(document).ready(function(){
|
449 |
WPBDPAdmin_FormFields.init();
|
450 |
WPBDPAdmin_Modal.init();
|
451 |
+
WPBDPAdmin_Notifications.init();
|
452 |
|
453 |
$( '.wpbdp-tooltip' ).tooltip({
|
454 |
tooltipClass: 'wpbdp-admin-tooltip-content'
|
455 |
});
|
456 |
});
|
457 |
|
458 |
+
// Dismissible Messages
|
459 |
+
var dismissNotice = function( $notice, $button ) {
|
460 |
+
$.post( ajaxurl, {
|
461 |
+
action: 'wpbdp_dismiss_notification',
|
462 |
+
id: $button.data( 'dismissible-id' ),
|
463 |
+
nonce: $button.data( 'nonce' )
|
464 |
+
}, function() {
|
465 |
+
$notice.fadeOut( 'fast', function(){
|
466 |
+
$notice.remove();
|
467 |
+
WPBDPAdmin_Notifications.hideNotificationCenter();
|
468 |
+
} );
|
469 |
+
} );
|
470 |
+
};
|
471 |
+
|
472 |
+
$( document ).on( 'click', '.wpbdp-notice.is-dismissible > .notice-dismiss, .wpbdp-notice .wpbdp-notice-dismiss', function( e ) {
|
473 |
+
e.preventDefault();
|
474 |
+
var $button = $( this ),
|
475 |
+
$notice = $button.closest( '.wpbdp-notice' ),
|
476 |
+
link = $button.attr( 'href' );
|
477 |
+
|
478 |
+
if ( link ) {
|
479 |
+
window.open( link, '_blank').focus();
|
480 |
+
}
|
481 |
+
dismissNotice( $notice, $button );
|
482 |
+
});
|
483 |
+
|
484 |
})(jQuery);
|
485 |
|
486 |
|
567 |
});
|
568 |
|
569 |
/* Debug info page */
|
570 |
+
$('.wpbdp-admin-page-debug-info a.current-nav').click(function(e){
|
571 |
e.preventDefault();
|
572 |
|
573 |
+
$('.wpbdp-admin-page-debug-info a.current-nav').not(this).removeClass('current');
|
574 |
|
575 |
var $selected_tab = $(this);
|
576 |
+
$selected_tab.addClass( 'current' );
|
577 |
|
578 |
$( '.wpbdp-debug-section' ).hide();
|
579 |
$( '.wpbdp-debug-section[data-id="' + $(this).attr('href') + '"]' ).show();
|
580 |
});
|
581 |
|
582 |
+
if ( $('.wpbdp-admin-page-debug-info a.current-nav').length > 0 )
|
583 |
+
$('.wpbdp-admin-page-debug-info a.current-nav').get(0).click();
|
584 |
|
585 |
/* Transactions */
|
586 |
$( '.wpbdp-page-admin-transactions .column-actions a.details-link' ).click(function(e){
|
758 |
})(jQuery);
|
759 |
// }}
|
760 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
761 |
// Install addons
|
762 |
function wpbdpAddons() {
|
763 |
function activateAddon( e ) {
|
776 |
var button = jQuery( clicked );
|
777 |
var plugin = button.attr( 'rel' );
|
778 |
var el = button.parent();
|
779 |
+
var message = el.parent().find( '.wpbdp-addon-status' );
|
780 |
|
781 |
button.addClass( 'wpbdp-loading-button' );
|
782 |
|
1052 |
* Highlight Directory menu.
|
1053 |
*/
|
1054 |
function wpbdpSelectSubnav() {
|
1055 |
+
var wpbdpMenu = jQuery( '#toplevel_page_wpbdp_admin' );
|
1056 |
+
jQuery( wpbdpMenu ).removeClass( 'wp-not-current-submenu' ).addClass( 'wp-has-current-submenu wp-menu-open' );
|
1057 |
+
jQuery( '#toplevel_page_wpbdp_admin a.wp-has-submenu' ).removeClass( 'wp-not-current-submenu' ).addClass( 'wp-has-current-submenu wp-menu-open' );
|
1058 |
+
jQuery( '#toplevel_page_wpbdp_admin ul.wp-submenu-wrap li.wp-first-item' ).addClass( 'current' );
|
1059 |
}
|
assets/js/admin.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
function wpbdp_load_placeholder($v){var action=$v.attr("data-action"),post_id=$v.attr("data-post_id"),baseurl=$v.attr("data-baseurl");$v.load(ajaxurl,{action:action,post_id:post_id,baseurl:baseurl})}function wpbdpAddons(){function activateAddon(e){e.preventDefault(),installOrActivate(this,"wpbdp_activate_addon")}function installAddon(e){e.preventDefault(),installOrActivate(this,"wpbdp_install_addon")}function installOrActivate(clicked,action){jQuery(".wpbdp-addon-error").remove();var button=jQuery(clicked),plugin=button.attr("rel"),el=button.parent(),message=el.parent().find(".addon-status-label");button.addClass("wpbdp-loading-button"),jQuery.ajax({url:ajaxurl,type:"POST",async:!0,cache:!1,dataType:"json",data:{action:action,nonce:wpbdp_global.nonce,plugin:plugin},success:function(response){var error=extractErrorFromAddOnResponse(response);return error?void addonError(error,el,button):void afterAddonInstall(response,button,message,el)},error:function(){button.removeClass("wpbdp-loading-button")}})}function installAddonWithCreds(e){e.preventDefault();var proceed=jQuery(this),el=proceed.parent().parent(),plugin=proceed.attr("rel");proceed.addClass("wpbdp-loading-button"),jQuery.ajax({url:ajaxurl,type:"POST",async:!0,cache:!1,dataType:"json",data:{action:"wpbdp_install_addon",nonce:wpbdp_global.nonce,plugin:plugin,hostname:el.find("#hostname").val(),username:el.find("#username").val(),password:el.find("#password").val()},success:function(response){var error=extractErrorFromAddOnResponse(response);return error?void addonError(error,el,proceed):void afterAddonInstall(response,proceed,message,el)},error:function(){proceed.removeClass("wpbdp-loading-button")}})}function afterAddonInstall(response,button,message,el){button.css({opacity:"0"}),message.text("Active"),jQuery("#wpbdp-oneclick").hide(),jQuery("#wpbdp-addon-status").text(response).show(),jQuery("#wpbdp-upgrade-modal h2").hide(),jQuery("#wpbdp-upgrade-modal .wpbdp-lock-icon").addClass("wpbdp-lock-open-icon"),jQuery("#wpbdp-upgrade-modal .wpbdp-lock-icon use").attr("xlink:href","#wpbdp-lock-open-icon"),el.parent().removeClass("wpbdp-addon-not-installed wpbdp-addon-installed").addClass("wpbdp-addon-active"),button.removeClass("wpbdp-loading-button");var refreshPage=document.querySelectorAll(".wpbdp-admin-page-import, #wpbdp-admin-smtp, #wpbdp-welcome");refreshPage.length>0&&window.location.reload()}function extractErrorFromAddOnResponse(response){return"string"!=typeof response&&(("undefined"==typeof response.success||!response.success)&&(response.form&&jQuery(response.form).is("#message")?{message:jQuery(response.form).find("p").html()}:response))}function addonError(response,el,button){response.form?(jQuery(".wpbdp-inline-error").remove(),button.closest(".wpbdp-card").html(response.form).css({padding:5}).find("#upgrade").attr("rel",button.attr("rel")).on("click",installAddonWithCreds)):(el.append('<div class="wpbdp-addon-error wpbdp_error_style"><p><strong>'+response.message+"</strong></p></div>"),button.removeClass("wpbdp-loading-button"),jQuery(".wpbdp-addon-error").delay(4e3).fadeOut())}return{init:function(){jQuery(document).on("click",".wpbdp-install-addon",installAddon),jQuery(document).on("click",".wpbdp-activate-addon",activateAddon)}}}function wpbdpSelectSubnav(){var wpbdpMenu=jQuery("#toplevel_page_wpbdp_admin");jQuery(wpbdpMenu).removeClass("wp-not-current-submenu").addClass("wp-has-current-submenu wp-menu-open"),jQuery("#toplevel_page_wpbdp_admin a.wp-has-submenu").removeClass("wp-not-current-submenu").addClass("wp-has-current-submenu wp-menu-open")}var WPBDP_associations_fieldtypes={};!function($){var WPBDPAdmin_Modal={init:function(){WPBDPAdmin_Modal.initConfirmModal()},initConfirmModal:function(){var links=$("a[data-bdconfirm]");if(links.length){$(".wpbdp-admin-page").append(WPBDPAdmin_Modal.getHtml());var modal=WPBDPAdmin_Modal.initModal("#wpbdp-admin-modal");$(document).on("click","a[data-bdconfirm]",function(e){e.preventDefault(),modal.find("h2").text(this.getAttribute("data-bdconfirm")),modal.find(".inside").addClass("empty"),modal.find(".wpbdp-continue").attr("href",this.getAttribute("href")),modal.dialog("open")})}},getHtml:function(){return'<div id="wpbdp-admin-modal" class="hidden settings-lite-cta"><div class="wpbdp-modal-top"><a href="#" class="dismiss alignright" title="Dismiss"><img src="'+wpbdp_global.assets+'/images/icons/close.svg" width="24" height="24"/></a><h2>'+wpbdp_global.confirm+'</h2></div><div class="inside"></div><div class="wpbdp-modal-bottom"><a href="#" class="dismiss-button" title="Dismiss">'+wpbdp_global.cancel+'</a><a href="#" class="wpbdp-continue wpbdp-button-primary alignright">'+wpbdp_global["continue"]+"</a></div></div>"},initModal:function(id,width){var $info=$(id);return"undefined"==typeof width&&(width="550px"),$info.dialog({dialogClass:"wpbdp-admin-dialog",modal:!0,autoOpen:!1,closeOnEscape:!0,width:width,resizable:!1,draggable:!1,open:function(){$(".ui-dialog-titlebar").addClass("hidden").removeClass("ui-helper-clearfix"),$(".ui-widget-overlay").addClass("wpbdp-modal-overlay"),$(".wpbdp-admin-dialog").removeClass("ui-widget ui-widget-content ui-corner-all"),$info.removeClass("ui-dialog-content ui-widget-content"),WPBDPAdmin_Modal.onCloseModal($info)},close:function(){$(".ui-widget-overlay").removeClass("wpbdp-modal-overlay")}}),$info},onCloseModal:function($modal){var closeModal=function(e){e.preventDefault(),$modal.dialog("close")};$(".ui-widget-overlay").on("click",closeModal),$modal.on("click","a.dismiss, .dismiss-button",closeModal)}},WPBDPAdmin_FormFields={$f_association:null,$f_fieldtype:null,init:function(){WPBDPAdmin_FormFields.$f_association=$("form#wpbdp-formfield-form select#field-association"),WPBDPAdmin_FormFields.$f_association.change(WPBDPAdmin_FormFields.onAssociationChange),WPBDPAdmin_FormFields.$f_fieldtype=$("form#wpbdp-formfield-form select#field-type"),WPBDPAdmin_FormFields.$f_fieldtype.change(WPBDPAdmin_FormFields.onFieldTypeChange),WPBDPAdmin_FormFields.$f_validator=$("form#wpbdp-formfield-form select#field-validator"),WPBDPAdmin_FormFields.$f_validator.change(WPBDPAdmin_FormFields.onFieldValidatorChange),$("#wpbdp-fieldsettings .iframe-confirm a").click(function(e){e.preventDefault(),$(this).hasClass("yes")?$(this).parents(".iframe-confirm").hide():($('#wpbdp-fieldsettings input[name="field[allow_iframes]"]').prop("checked",!1),$(this).parents(".iframe-confirm").hide())}),$('#wpbdp-fieldsettings input[name="field[allow_iframes]"]').change(function(){$(this).is(":checked")?$(".iframe-confirm").show():$(".iframe-confirm").hide()}),$('#wpbdp-formfield-form input[name="field[display_flags][]"][value="search"]').change(function(){$(".if-display-in-search").toggle($(this).is(":checked"))}),$("table.formfields tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:.9,update:function(event,ui){var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-field-id"))}),sorted_items&&$.post(ajaxurl,{action:"wpbdp-formfields-reorder",order:sorted_items})}}),$('#wpbdp-formfield-form select[name="limit_categories"]').change(function(){var form=$(this).parents("form").find("#limit-categories-list");"1"===$(this).val()?form.removeClass("hidden"):form.addClass("hidden")})},onFieldTypeChange:function(){var $field_type=$(this).find("option:selected");if($field_type.length){var field_type=$field_type.val();$("select#field-validator").prop("disabled",!1),"url"==field_type?($("select#field-validator option").not('[value="url"]').prop("disabled",!0).prop("selected",!1),$('select#field-validator option[value="url"]').prop("selected",!0)):$("select#field-validator option").prop("disabled",!1),"social-twitter"==field_type&&$("select#field-validator").prop("disabled",!0);var request_data={action:"wpbdp-renderfieldsettings",association:WPBDPAdmin_FormFields.$f_association.find("option:selected").val(),field_type:field_type,field_id:$('#wpbdp-formfield-form input[name="field[id]"]').val()};$.post(ajaxurl,request_data,function(response){response.ok&&response.html?($("#wpbdp-fieldsettings-html").html(response.html),$("#wpbdp-fieldsettings").show()):($("#wpbdp-fieldsettings-html").empty(),$("#wpbdp-fieldsettings").hide())},"json"),WPBDPAdmin_FormFields.onFieldValidatorChange()}},onAssociationChange:function(){$f_fieldtype=WPBDPAdmin_FormFields.$f_fieldtype;var association=$(this).val(),valid_types=WPBDP_associations_fieldtypes[association],private_option=$("#wpbdp_private_field");$f_fieldtype.find("option").prop("disabled",!1),$f_fieldtype.find("option").each(function(i,v){$.inArray($(v).val(),valid_types)<0&&$(v).prop("disabled",!0)}),$f_fieldtype.change(),0<=["title","content","category"].indexOf(association)?(private_option.find("input").prop("disabled",!0),private_option.hide()):(private_option.find("input").prop("disabled",!1),private_option.show());var form=$(this).parents("form").find(".limit-categories");0<=["title","category"].indexOf(association)?form.addClass("hidden"):form.removeClass("hidden")},onFieldValidatorChange:function(){var $field_validator=$(this).find("option:selected"),field_type=WPBDPAdmin_FormFields.$f_fieldtype.find("option:selected").val();"textfield"===field_type||"textarea"===field_type?"word_number"===$field_validator.val()?($("#wpbdp_word_count").show(),$('select#field-validator option[value="word_number"]').prop("disabled",!1)):$("#wpbdp_word_count").hide():($("#wpbdp_word_count").hide(),$('select#field-validator option[value="word_number"]').prop("disabled",!0).prop("selected",!1))}};$(document).ready(function(){WPBDPAdmin_FormFields.init(),WPBDPAdmin_Modal.init(),$(".wpbdp-tooltip").tooltip({tooltipClass:"wpbdp-admin-tooltip-content"})})}(jQuery),jQuery(document).ready(function($){$(".wpbdp-admin-page-fees .wp-list-table.fees tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:.9,update:function(event,ui){var rel_rows=$(".free-fee-related-tr").remove();$("tr.free-fee").after(rel_rows);var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-fee-id"))}),sorted_items&&$.post(ajaxurl,{action:"wpbdp-admin-fees-reorder",order:sorted_items})}}),$(document).on("click",".fee-order-submit",function(e){e.preventDefault(),$.ajax({url:ajaxurl,data:$(this).parent("form").serialize(),dataType:"json",type:"POST",success:function(res){res.success&&location.reload()}})}),$(".wpbdp-ajax-placeholder").each(function(i,v){wpbdp_load_placeholder($(v))}),$("input#doaction, input#doaction2").click(function(e){var action_name="doaction"==$(this).attr("id")?"action":"action2",$selected_option=$('select[name="'+action_name+'"] option:selected'),action_val=$selected_option.val();if("listing"==action_val.split("-")[0]){var action=action_val.split("-")[1];if("sep0"!=action&&"sep1"!=action&&"sep2"!=action){var $checked_posts=$('input[name="post[]"]:checked'),uri=$selected_option.attr("data-uri");return $checked_posts.each(function(i,v){uri+="&post[]="+$(v).val()}),window.location.href=uri,!1}}return!0}),$('.wpbdp-admin.wpbdp-page-formfields-preview form input[type="submit"]').click(function(e){e.preventDefault(),alert("This form is just a preview. It doesn't work.")}),$("#wpbdp-admin-debug-info-page a.nav-tab").click(function(e){e.preventDefault(),$("#wpbdp-admin-debug-info-page a.nav-tab").not(this).removeClass("nav-tab-active");var $selected_tab=$(this);$selected_tab.addClass("nav-tab-active"),$(".wpbdp-debug-section").hide(),$('.wpbdp-debug-section[data-id="'+$(this).attr("href")+'"]').show()}),$("#wpbdp-admin-debug-info-page a.nav-tab").length>0&&$("#wpbdp-admin-debug-info-page a.nav-tab").get(0).click(),$(".wpbdp-page-admin-transactions .column-actions a.details-link").click(function(e){e.preventDefault();var $tr=$(this).parents("tr"),$details=$tr.find("div.more-details"),$tr_details=$tr.next("tr.more-details-row");return $tr_details.length>0?($tr_details.remove(),void $(this).text($(this).text().replace("-","+"))):($(this).text($(this).text().replace("+","-")),void $tr.after('<tr class="more-details-row"><td colspan="7">'+$details.html()+"</td></tr>").show())})});var WPBDP_Admin={};WPBDP_Admin.payments={},WPBDP_Admin.ProgressBar=function($item,settings){$item.empty(),$item.html('<div class="wpbdp-progress-bar"><span class="progress-text">0%</span><div class="progress-bar"><div class="progress-bar-outer"><div class="progress-bar-inner" style="width: 0%;"></div></div></div>'),this.$item=$item,this.$text=$item.find(".progress-text"),this.$bar=$item.find(".progress-bar"),this.set=function(completed,total){var pcg=Math.round(100*parseInt(completed)/parseInt(total));this.$text.text(pcg+"%"),this.$bar.find(".progress-bar-inner").attr("style","width: "+pcg+"%;")}},function($){var s=WPBDP_Admin.settings={init:function(){$("#wpbdp-settings-quick-search-fields").on("change",":checkbox",function(){var $container=$("#wpbdp-settings-quick-search-fields"),text_fields=$container.data("text-fields"),selected=$container.find(":checkbox:checked").map(function(){return parseInt($(this).val())}).get(),show_warning=!1;if(selected.length>0&&text_fields.length>0)for(var i=0;i<text_fields.length;i++)if($.inArray(text_fields[i],selected)>-1){show_warning=!0;break}show_warning?$("#wpbdp-settings-quick-search-fields .text-fields-warning").fadeIn("fast"):$("#wpbdp-settings-quick-search-fields .text-fields-warning").fadeOut("fast")}),$("#wpbdp-settings-currency select").on("change",function(){"AED"===$(this).val()?$("#wpbdp-settings-currency .wpbdp-setting-description").show():$("#wpbdp-settings-currency .wpbdp-setting-description").hide()}),$("#wpbdp-settings-currency select").change()}};$(document).ready(function(){$("#wpbdp-admin-page-settings").length>0&&s.init()})}(jQuery),jQuery(function($){if(0!==$(".wpbdp-admin-page-uninstall").length){var $warnings=$("#wpbdp-uninstall-messages"),$confirm_button=$("#wpbdp-uninstall-proceed-btn"),$form=$("#wpbdp-uninstall-capture-form");$confirm_button.click(function(e){e.preventDefault(),$warnings.fadeOut("fast",function(){$form.fadeIn("fast")})}),$form.submit(function(){var $no_reason_error=$(".wpbdp-validation-error.no-reason").hide(),$no_text_error=$(".wpbdp-validation-error.no-reason-text").hide(),$reason_checked=$('input[name="uninstall[reason_id]"]:checked');if(0===$reason_checked.length)return $no_reason_error.show(),!1;if("0"==$reason_checked.val()){var $reason_text=$('textarea[name="uninstall[reason_text]"]'),reason_text=$.trim($reason_text.val());if($reason_text.removeClass("invalid"),!reason_text)return $no_text_error.show(),$reason_text.addClass("invalid"),!1}return!0}),$('form#wpbdp-uninstall-capture-form input[name="uninstall[reason_id]"]').change(function(e){var val=$(this).val();"0"==val?$("form#wpbdp-uninstall-capture-form .custom-reason").fadeIn():$("form#wpbdp-uninstall-capture-form .custom-reason").fadeOut("fast",function(){$(this).val("")})})}}),function($){$(document).ready(function(){0!==$("body.wp-admin.widgets-php").length&&$("body.wp-admin.widgets-php").on("change","input.wpbdp-toggle-images",function(){var checked=$(this).is(":checked");checked?$(this).parents(".widget").find(".thumbnail-width-config").fadeIn("fast"):$(this).parents(".widget").find(".thumbnail-width-config").fadeOut("fast")})})}(jQuery),function($){$(function(){var dismissNotice=function($notice,$button){$.post(ajaxurl,{action:"wpbdp_dismiss_notification",id:$button.data("dismissible-id"),nonce:$button.data("nonce")},function(){$notice.fadeOut("fast",function(){$notice.remove()})})};$("#wpbody-content").on("click",".wpbdp-notice.is-dismissible > .notice-dismiss, .wpbdp-notice .wpbdp-notice-dismiss",function(e){e.preventDefault();var $button=$(this),$notice=$button.closest(".wpbdp-notice"),link=$button.attr("href");link&&window.open(link,"_blank").focus(),dismissNotice($notice,$button)})})}(jQuery),wpbdpAddonBuild=wpbdpAddons(),jQuery(document).ready(function($){wpbdpAddonBuild.init()}),jQuery(function($){$(".wpbdp-js-toggle").change(function(){var other_opts,name=$(this).attr("name"),value=$(this).val(),is_checkbox=$(this).is(":checkbox"),is_radio=$(this).is(":radio"),is_select=$(this).is("select"),toggles=$(this).attr("data-toggles");if(is_select){var $option=$(this).find(":selected");toggles=$option.attr("data-toggles"),toggles&&"undefined"!=typeof toggles||(toggles="")}if(toggles){var $dest=$(toggles.startsWith("#")||toggles.startsWith("-")?toggles:"#"+toggles+", ."+toggles);if(0===$dest.length||!is_radio&&!is_checkbox&&!is_select)return;if(is_checkbox&&$(this).is(":checked"))return void $dest.toggleClass("hidden")}other_opts=is_select?$(this).find("option").not('[value="'+value+'"]'):$('input[name="'+name+'"]').not('[value="'+value+'"]'),other_opts.each(function(){var toggles_i=$(this).attr("data-toggles");if(toggles_i){var $dest_i=$(toggles_i.startsWith("#")||toggles_i.startsWith("-")?toggles_i:"#"+toggles_i+", ."+toggles_i);$dest_i.addClass("hidden")}})})}),jQuery(function($){$(".wpbdp-admin-tab-nav a").click(function(e){e.preventDefault();var $others=$(this).parents("ul").find("li a"),$selected=$others.filter(".current");$others.removeClass("current"),$(this).addClass("current");var href=$(this).attr("href"),$content=$(href);$selected.length>0&&$($selected.attr("href")).hide(),$content.show()}),$(".wpbdp-admin-tab-nav").each(function(i,v){$(this).find("a:first").click()})}),jQuery(function($){$(document).on("click",".wpbdp-admin-confirm",function(e){var message=$(this).data("confirm");message&&"undefined"!=typeof message||(message="Are you sure you want to do this?");var confirm=window.confirm(message);return!!confirm||(e.stopImmediatePropagation(),!1)}),$(document).on("click",".wpbdp-admin-ajax",function(e){e.preventDefault();var $btn=$(this),data=$btn.data("ajax"),message=$btn.data("confirm"),$target=$($btn.data("target")),confirm=window.confirm(message);return!!confirm&&($btn.prop("disabled",!0),void $.post(ajaxurl,data,function(res){res.success?($target.removeClass("error").addClass("updated").find("p").html(res.message).show(),$target.fadeOut(1e3)):$target.removeClass("updated").addClass("error").find("p").html(res.error).show(),$btn.prop("disabled",!1)},"json"))})});
|
1 |
+
function wpbdp_load_placeholder($v){var action=$v.attr("data-action"),post_id=$v.attr("data-post_id"),baseurl=$v.attr("data-baseurl");$v.load(ajaxurl,{action:action,post_id:post_id,baseurl:baseurl})}function wpbdpAddons(){function activateAddon(e){e.preventDefault(),installOrActivate(this,"wpbdp_activate_addon")}function installAddon(e){e.preventDefault(),installOrActivate(this,"wpbdp_install_addon")}function installOrActivate(clicked,action){jQuery(".wpbdp-addon-error").remove();var button=jQuery(clicked),plugin=button.attr("rel"),el=button.parent(),message=el.parent().find(".wpbdp-addon-status");button.addClass("wpbdp-loading-button"),jQuery.ajax({url:ajaxurl,type:"POST",async:!0,cache:!1,dataType:"json",data:{action:action,nonce:wpbdp_global.nonce,plugin:plugin},success:function(response){var error=extractErrorFromAddOnResponse(response);return error?void addonError(error,el,button):void afterAddonInstall(response,button,message,el)},error:function(){button.removeClass("wpbdp-loading-button")}})}function installAddonWithCreds(e){e.preventDefault();var proceed=jQuery(this),el=proceed.parent().parent(),plugin=proceed.attr("rel");proceed.addClass("wpbdp-loading-button"),jQuery.ajax({url:ajaxurl,type:"POST",async:!0,cache:!1,dataType:"json",data:{action:"wpbdp_install_addon",nonce:wpbdp_global.nonce,plugin:plugin,hostname:el.find("#hostname").val(),username:el.find("#username").val(),password:el.find("#password").val()},success:function(response){var error=extractErrorFromAddOnResponse(response);return error?void addonError(error,el,proceed):void afterAddonInstall(response,proceed,message,el)},error:function(){proceed.removeClass("wpbdp-loading-button")}})}function afterAddonInstall(response,button,message,el){button.css({opacity:"0"}),message.text("Active"),jQuery("#wpbdp-oneclick").hide(),jQuery("#wpbdp-addon-status").text(response).show(),jQuery("#wpbdp-upgrade-modal h2").hide(),jQuery("#wpbdp-upgrade-modal .wpbdp-lock-icon").addClass("wpbdp-lock-open-icon"),jQuery("#wpbdp-upgrade-modal .wpbdp-lock-icon use").attr("xlink:href","#wpbdp-lock-open-icon"),el.parent().removeClass("wpbdp-addon-not-installed wpbdp-addon-installed").addClass("wpbdp-addon-active"),button.removeClass("wpbdp-loading-button");var refreshPage=document.querySelectorAll(".wpbdp-admin-page-import, #wpbdp-admin-smtp, #wpbdp-welcome");refreshPage.length>0&&window.location.reload()}function extractErrorFromAddOnResponse(response){return"string"!=typeof response&&(("undefined"==typeof response.success||!response.success)&&(response.form&&jQuery(response.form).is("#message")?{message:jQuery(response.form).find("p").html()}:response))}function addonError(response,el,button){response.form?(jQuery(".wpbdp-inline-error").remove(),button.closest(".wpbdp-card").html(response.form).css({padding:5}).find("#upgrade").attr("rel",button.attr("rel")).on("click",installAddonWithCreds)):(el.append('<div class="wpbdp-addon-error wpbdp_error_style"><p><strong>'+response.message+"</strong></p></div>"),button.removeClass("wpbdp-loading-button"),jQuery(".wpbdp-addon-error").delay(4e3).fadeOut())}return{init:function(){jQuery(document).on("click",".wpbdp-install-addon",installAddon),jQuery(document).on("click",".wpbdp-activate-addon",activateAddon)}}}function wpbdpSelectSubnav(){var wpbdpMenu=jQuery("#toplevel_page_wpbdp_admin");jQuery(wpbdpMenu).removeClass("wp-not-current-submenu").addClass("wp-has-current-submenu wp-menu-open"),jQuery("#toplevel_page_wpbdp_admin a.wp-has-submenu").removeClass("wp-not-current-submenu").addClass("wp-has-current-submenu wp-menu-open"),jQuery("#toplevel_page_wpbdp_admin ul.wp-submenu-wrap li.wp-first-item").addClass("current")}var WPBDP_associations_fieldtypes={},WPBDPAdmin_Tooltip={};!function($){var WPBDPAdmin_Modal={init:function(){WPBDPAdmin_Modal.initConfirmModal(),WPBDPAdmin_Modal.initTaxonomyModal()},initConfirmModal:function(){var links=$("a[data-bdconfirm]");if(links.length){$(".wpbdp-admin-page").append(WPBDPAdmin_Modal.getHtml());var modal=WPBDPAdmin_Modal.initModal("#wpbdp-admin-modal");$(document).on("click","a[data-bdconfirm]",function(e){e.preventDefault(),modal.find("h2").text(this.getAttribute("data-bdconfirm")),modal.find(".inside").addClass("empty"),modal.find(".wpbdp-continue").attr("href",this.getAttribute("href")),modal.dialog("open")})}},getHtml:function(){return'<div id="wpbdp-admin-modal" class="hidden settings-lite-cta">'+WPBDPAdmin_Modal.getHeaderHtml()+'<div class="wpbdp-modal-bottom"><a href="#" class="dismiss-button" title="Dismiss">'+wpbdp_global.cancel+'</a><a href="#" class="wpbdp-continue wpbdp-button-primary alignright">'+wpbdp_global["continue"]+"</a></div></div>"},initTaxonomyModal:function(){var modal,form=$("#addtag").closest(".form-wrap");form.length&&($(".wpbdp-admin-page").append(WPBDPAdmin_Modal.getFormHtml()),modal=WPBDPAdmin_Modal.initModal("#wpbdp-add-taxonomy-form"),$(document).on("click",".wpbdp-add-taxonomy-form",function(e){e.preventDefault();var heading=form.find("h2");heading.hide(),modal.find("h2").text(heading.text()),modal.find(".inside").html(form),modal.dialog("open")}))},getFormHtml:function(){return'<div id="wpbdp-add-taxonomy-form" class="hidden settings-lite-cta">'+WPBDPAdmin_Modal.getHeaderHtml()+"</div>"},getHeaderHtml:function(){return'<div class="wpbdp-modal-top"><a href="#" class="dismiss alignright" title="Dismiss"><img src="'+wpbdp_global.assets+'/images/icons/close.svg" width="24" height="24"/></a><h2>'+wpbdp_global.confirm+'</h2></div><div class="inside"></div>'},initModal:function(id,width){var $info=$(id);return!($info.length<1)&&("undefined"==typeof width&&(width="550px"),$info.dialog({dialogClass:"wpbdp-admin-dialog",modal:!0,autoOpen:!1,closeOnEscape:!0,width:width,resizable:!1,draggable:!1,open:function(){$(".ui-dialog-titlebar").addClass("hidden").removeClass("ui-helper-clearfix"),$(".ui-widget-overlay").addClass("wpbdp-modal-overlay"),$(".wpbdp-admin-dialog").removeClass("ui-widget ui-widget-content ui-corner-all"),$info.removeClass("ui-dialog-content ui-widget-content"),WPBDPAdmin_Modal.onCloseModal($info)},close:function(){$(".ui-widget-overlay").removeClass("wpbdp-modal-overlay"),$(".spinner").css("visibility","hidden"),this.removeAttribute("data-option-type");var optionType=document.getElementById("bulk-option-type");optionType&&(optionType.value="")}}),$info)},onCloseModal:function($modal){var closeModal=function(e){e.preventDefault(),$modal.dialog("close")};$(".ui-widget-overlay").on("click",closeModal),$modal.on("click","a.dismiss, .dismiss-button",closeModal)}};window.WPBDPAdmin_Tooltip={$layout_container:null,$menu_items:null,$menu_state:null,init:function(){WPBDPAdmin_Tooltip.$layout_container=$(".wpbdp-admin-row"),WPBDPAdmin_Tooltip.$menu_items=WPBDPAdmin_Tooltip.$layout_container.find(".wpbdp-nav-item a"),WPBDPAdmin_Tooltip.$menu_state=window.localStorage.getItem("_wpbdp_admin_menu"),$(".wpbdp-nav-toggle").click(WPBDPAdmin_Tooltip.onNavToggle),WPBDPAdmin_Tooltip.layoutAdjustment()},onNavToggle:function(e){e.preventDefault(),WPBDPAdmin_Tooltip.$layout_container.toggleClass("minimized"),WPBDPAdmin_Tooltip.$layout_container.hasClass("minimized")?(window.localStorage.setItem("_wpbdp_admin_menu","minimized"),WPBDPAdmin_Tooltip.$menu_items.addClass("wpbdp-nav-tooltip")):(window.localStorage.removeItem("_wpbdp_admin_menu"),WPBDPAdmin_Tooltip.$menu_items.removeClass("wpbdp-nav-tooltip"))},layoutAdjustment:function(){var menu=document.getElementById("adminmenuwrap");null!==menu&&WPBDPAdmin_Tooltip.$layout_container.css("min-height",menu.offsetHeight),window.matchMedia("screen and (max-width: 768px)").matches&&WPBDPAdmin_Tooltip.$menu_items.addClass("wpbdp-nav-tooltip"),"minimized"===WPBDPAdmin_Tooltip.$menu_state&&(WPBDPAdmin_Tooltip.$layout_container.addClass("minimized"),WPBDPAdmin_Tooltip.$menu_items.addClass("wpbdp-nav-tooltip"))}},WPBDPAdmin_Tooltip.init();var WPBDPAdmin_FormFields={$f_association:null,$f_fieldtype:null,init:function(){WPBDPAdmin_FormFields.$f_association=$("form#wpbdp-formfield-form select#field-association"),WPBDPAdmin_FormFields.$f_association.change(WPBDPAdmin_FormFields.onAssociationChange),WPBDPAdmin_FormFields.$f_fieldtype=$("form#wpbdp-formfield-form select#field-type"),WPBDPAdmin_FormFields.$f_fieldtype.change(WPBDPAdmin_FormFields.onFieldTypeChange),WPBDPAdmin_FormFields.$f_validator=$("form#wpbdp-formfield-form select#field-validator"),WPBDPAdmin_FormFields.$f_validator.change(WPBDPAdmin_FormFields.onFieldValidatorChange),$("#wpbdp-fieldsettings .iframe-confirm a").click(function(e){e.preventDefault(),$(this).hasClass("yes")?$(this).parents(".iframe-confirm").hide():($('#wpbdp-fieldsettings input[name="field[allow_iframes]"]').prop("checked",!1),$(this).parents(".iframe-confirm").hide())}),$('#wpbdp-fieldsettings input[name="field[allow_iframes]"]').change(function(){$(this).is(":checked")?$(".iframe-confirm").show():$(".iframe-confirm").hide()}),$('#wpbdp-formfield-form input[name="field[display_flags][]"][value="search"]').change(function(){$(".if-display-in-search").toggle($(this).is(":checked"))}),$("table.formfields tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:.9,update:function(event,ui){var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-field-id"))}),sorted_items&&$.post(ajaxurl,{action:"wpbdp-formfields-reorder",order:sorted_items})}}),$('#wpbdp-formfield-form select[name="limit_categories"]').change(function(){var form=$(this).parents("form").find("#limit-categories-list");"1"===$(this).val()?form.removeClass("hidden"):form.addClass("hidden")})},onFieldTypeChange:function(){var $field_type=$(this).find("option:selected");if($field_type.length){var field_type=$field_type.val();$("select#field-validator").prop("disabled",!1),"url"==field_type?($("select#field-validator option").not('[value="url"]').prop("disabled",!0).prop("selected",!1),$('select#field-validator option[value="url"]').prop("selected",!0)):$("select#field-validator option").prop("disabled",!1),"social-twitter"==field_type&&$("select#field-validator").prop("disabled",!0);var request_data={action:"wpbdp-renderfieldsettings",association:WPBDPAdmin_FormFields.$f_association.find("option:selected").val(),field_type:field_type,field_id:$('#wpbdp-formfield-form input[name="field[id]"]').val()};$.post(ajaxurl,request_data,function(response){response.ok&&response.html?($("#wpbdp-fieldsettings-html").html(response.html),$("#wpbdp-fieldsettings").show()):($("#wpbdp-fieldsettings-html").empty(),$("#wpbdp-fieldsettings").hide())},"json"),WPBDPAdmin_FormFields.onFieldValidatorChange()}},onAssociationChange:function(){$f_fieldtype=WPBDPAdmin_FormFields.$f_fieldtype;var association=$(this).val(),valid_types=WPBDP_associations_fieldtypes[association],private_option=$("#wpbdp_private_field");$f_fieldtype.find("option").prop("disabled",!1),$f_fieldtype.find("option").each(function(i,v){$.inArray($(v).val(),valid_types)<0&&$(v).prop("disabled",!0)}),$f_fieldtype.change(),0<=["title","content","category"].indexOf(association)?(private_option.find("input").prop("disabled",!0),private_option.hide()):(private_option.find("input").prop("disabled",!1),private_option.show());var form=$(this).parents("form").find(".limit-categories");0<=["title","category"].indexOf(association)?form.addClass("hidden"):form.removeClass("hidden")},onFieldValidatorChange:function(){var $field_validator=$(this).find("option:selected"),field_type=WPBDPAdmin_FormFields.$f_fieldtype.find("option:selected").val();"textfield"===field_type||"textarea"===field_type?"word_number"===$field_validator.val()?($("#wpbdp_word_count").show(),$('select#field-validator option[value="word_number"]').prop("disabled",!1)):$("#wpbdp_word_count").hide():($("#wpbdp_word_count").hide(),$('select#field-validator option[value="word_number"]').prop("disabled",!0).prop("selected",!1))}},WPBDPAdmin_Notifications={notificationContainer:null,preAdminNotifications:null,adminNotifications:null,buttonNotification:null,closeButton:null,init:function(){this.notificationContainer=$(".wpbdp-bell-notifications"),this.preAdminNotifications=$(".notice:hidden"),this.adminNotifications=this.notificationContainer.find(".wpbdp-bell-notifications-list"),this.buttonNotification=$(".wpbdp-bell-notification-icon"),this.closeButton=$(".wpbdp-bell-notifications-close"),this.onClickNotifications(),this.initCloseNotifications(),WPBDPAdmin_Notifications.parseNotifications()},onClickNotifications:function(){WPBDPAdmin_Notifications.buttonNotification.on("click",function(e){e.preventDefault(),WPBDPAdmin_Notifications.notificationContainer.toggleClass("hidden")})},initCloseNotifications:function(){WPBDPAdmin_Notifications.closeButton.on("click",function(e){e.preventDefault(),WPBDPAdmin_Notifications.notificationContainer.addClass("hidden")})},parseNotifications:function(){if(WPBDPAdmin_Notifications.preAdminNotifications.length<1)return!0;var notifications=[],snackbars=[];WPBDPAdmin_Notifications.preAdminNotifications.each(function(){var notification=$(this),mainMsg="message"===this.id;return!notification.hasClass("wpbdp-inline-notice")&&void((notification.hasClass("wpbdp-notice")||mainMsg)&&(notification.hasClass("is-dismissible")&&!mainMsg?notifications.push('<li class="wpbdp-bell-notice '+this.classList+'">'+notification.html()+"</li>"):snackbars.push(notification.html()),notification.remove()))}),WPBDPAdmin_Notifications.adminNotifications.append(notifications.join(" ")),notifications.length>0&&($(".wpbdp-bell-notification").show(),WPBDPAdmin_Notifications.notificationContainer.removeClass("hidden")),snackbars.length>0&&snackbars.forEach(function(value,index,array){WPBDPAdmin_Notifications.generateSnackBar(value)})},generateSnackBar:function(notification){var snackbar=$("<div>",{"class":"wpbdp-snackbar",html:notification});$("#wpbdp-snackbar-notices").append(snackbar),snackbar.find(".notice-dismiss").on("click",function(e){e.preventDefault(),snackbar.fadeOut()}),setTimeout(function(){snackbar.remove()},25e3)},hideNotificationCenter:function(){WPBDPAdmin_Notifications.adminNotifications.find("li").length<1&&(WPBDPAdmin_Notifications.notificationContainer.addClass("hidden"),$(".wpbdp-bell-notification").hide())}};$(document).ready(function(){WPBDPAdmin_FormFields.init(),WPBDPAdmin_Modal.init(),WPBDPAdmin_Notifications.init(),$(".wpbdp-tooltip").tooltip({tooltipClass:"wpbdp-admin-tooltip-content"})});var dismissNotice=function($notice,$button){$.post(ajaxurl,{action:"wpbdp_dismiss_notification",id:$button.data("dismissible-id"),nonce:$button.data("nonce")},function(){$notice.fadeOut("fast",function(){$notice.remove(),WPBDPAdmin_Notifications.hideNotificationCenter()})})};$(document).on("click",".wpbdp-notice.is-dismissible > .notice-dismiss, .wpbdp-notice .wpbdp-notice-dismiss",function(e){e.preventDefault();var $button=$(this),$notice=$button.closest(".wpbdp-notice"),link=$button.attr("href");link&&window.open(link,"_blank").focus(),dismissNotice($notice,$button)})}(jQuery),jQuery(document).ready(function($){$(".wpbdp-admin-page-fees .wp-list-table.fees tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:.9,update:function(event,ui){var rel_rows=$(".free-fee-related-tr").remove();$("tr.free-fee").after(rel_rows);var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-fee-id"))}),sorted_items&&$.post(ajaxurl,{action:"wpbdp-admin-fees-reorder",order:sorted_items})}}),$(document).on("click",".fee-order-submit",function(e){e.preventDefault(),$.ajax({url:ajaxurl,data:$(this).parent("form").serialize(),dataType:"json",type:"POST",success:function(res){res.success&&location.reload()}})}),$(".wpbdp-ajax-placeholder").each(function(i,v){wpbdp_load_placeholder($(v))}),$("input#doaction, input#doaction2").click(function(e){var action_name="doaction"==$(this).attr("id")?"action":"action2",$selected_option=$('select[name="'+action_name+'"] option:selected'),action_val=$selected_option.val();if("listing"==action_val.split("-")[0]){var action=action_val.split("-")[1];if("sep0"!=action&&"sep1"!=action&&"sep2"!=action){var $checked_posts=$('input[name="post[]"]:checked'),uri=$selected_option.attr("data-uri");return $checked_posts.each(function(i,v){uri+="&post[]="+$(v).val()}),window.location.href=uri,!1}}return!0}),$('.wpbdp-admin.wpbdp-page-formfields-preview form input[type="submit"]').click(function(e){e.preventDefault(),alert("This form is just a preview. It doesn't work.")}),$(".wpbdp-admin-page-debug-info a.current-nav").click(function(e){e.preventDefault(),$(".wpbdp-admin-page-debug-info a.current-nav").not(this).removeClass("current");var $selected_tab=$(this);$selected_tab.addClass("current"),$(".wpbdp-debug-section").hide(),$('.wpbdp-debug-section[data-id="'+$(this).attr("href")+'"]').show()}),$(".wpbdp-admin-page-debug-info a.current-nav").length>0&&$(".wpbdp-admin-page-debug-info a.current-nav").get(0).click(),$(".wpbdp-page-admin-transactions .column-actions a.details-link").click(function(e){e.preventDefault();var $tr=$(this).parents("tr"),$details=$tr.find("div.more-details"),$tr_details=$tr.next("tr.more-details-row");return $tr_details.length>0?($tr_details.remove(),void $(this).text($(this).text().replace("-","+"))):($(this).text($(this).text().replace("+","-")),void $tr.after('<tr class="more-details-row"><td colspan="7">'+$details.html()+"</td></tr>").show())})});var WPBDP_Admin={};WPBDP_Admin.payments={},WPBDP_Admin.ProgressBar=function($item,settings){$item.empty(),$item.html('<div class="wpbdp-progress-bar"><span class="progress-text">0%</span><div class="progress-bar"><div class="progress-bar-outer"><div class="progress-bar-inner" style="width: 0%;"></div></div></div>'),this.$item=$item,this.$text=$item.find(".progress-text"),this.$bar=$item.find(".progress-bar"),this.set=function(completed,total){var pcg=Math.round(100*parseInt(completed)/parseInt(total));this.$text.text(pcg+"%"),this.$bar.find(".progress-bar-inner").attr("style","width: "+pcg+"%;")}},function($){var s=WPBDP_Admin.settings={init:function(){$("#wpbdp-settings-quick-search-fields").on("change",":checkbox",function(){var $container=$("#wpbdp-settings-quick-search-fields"),text_fields=$container.data("text-fields"),selected=$container.find(":checkbox:checked").map(function(){return parseInt($(this).val())}).get(),show_warning=!1;if(selected.length>0&&text_fields.length>0)for(var i=0;i<text_fields.length;i++)if($.inArray(text_fields[i],selected)>-1){show_warning=!0;break}show_warning?$("#wpbdp-settings-quick-search-fields .text-fields-warning").fadeIn("fast"):$("#wpbdp-settings-quick-search-fields .text-fields-warning").fadeOut("fast")}),$("#wpbdp-settings-currency select").on("change",function(){"AED"===$(this).val()?$("#wpbdp-settings-currency .wpbdp-setting-description").show():$("#wpbdp-settings-currency .wpbdp-setting-description").hide()}),$("#wpbdp-settings-currency select").change()}};$(document).ready(function(){$("#wpbdp-admin-page-settings").length>0&&s.init()})}(jQuery),jQuery(function($){if(0!==$(".wpbdp-admin-page-uninstall").length){var $warnings=$("#wpbdp-uninstall-messages"),$confirm_button=$("#wpbdp-uninstall-proceed-btn"),$form=$("#wpbdp-uninstall-capture-form");$confirm_button.click(function(e){e.preventDefault(),$warnings.fadeOut("fast",function(){$form.fadeIn("fast")})}),$form.submit(function(){var $no_reason_error=$(".wpbdp-validation-error.no-reason").hide(),$no_text_error=$(".wpbdp-validation-error.no-reason-text").hide(),$reason_checked=$('input[name="uninstall[reason_id]"]:checked');if(0===$reason_checked.length)return $no_reason_error.show(),!1;if("0"==$reason_checked.val()){var $reason_text=$('textarea[name="uninstall[reason_text]"]'),reason_text=$.trim($reason_text.val());if($reason_text.removeClass("invalid"),!reason_text)return $no_text_error.show(),$reason_text.addClass("invalid"),!1}return!0}),$('form#wpbdp-uninstall-capture-form input[name="uninstall[reason_id]"]').change(function(e){var val=$(this).val();"0"==val?$("form#wpbdp-uninstall-capture-form .custom-reason").fadeIn():$("form#wpbdp-uninstall-capture-form .custom-reason").fadeOut("fast",function(){$(this).val("")})})}}),function($){$(document).ready(function(){0!==$("body.wp-admin.widgets-php").length&&$("body.wp-admin.widgets-php").on("change","input.wpbdp-toggle-images",function(){var checked=$(this).is(":checked");checked?$(this).parents(".widget").find(".thumbnail-width-config").fadeIn("fast"):$(this).parents(".widget").find(".thumbnail-width-config").fadeOut("fast")})})}(jQuery),wpbdpAddonBuild=wpbdpAddons(),jQuery(document).ready(function($){wpbdpAddonBuild.init()}),jQuery(function($){$(".wpbdp-js-toggle").change(function(){var other_opts,name=$(this).attr("name"),value=$(this).val(),is_checkbox=$(this).is(":checkbox"),is_radio=$(this).is(":radio"),is_select=$(this).is("select"),toggles=$(this).attr("data-toggles");if(is_select){var $option=$(this).find(":selected");toggles=$option.attr("data-toggles"),toggles&&"undefined"!=typeof toggles||(toggles="")}if(toggles){var $dest=$(toggles.startsWith("#")||toggles.startsWith("-")?toggles:"#"+toggles+", ."+toggles);if(0===$dest.length||!is_radio&&!is_checkbox&&!is_select)return;if(is_checkbox&&$(this).is(":checked"))return void $dest.toggleClass("hidden")}other_opts=is_select?$(this).find("option").not('[value="'+value+'"]'):$('input[name="'+name+'"]').not('[value="'+value+'"]'),other_opts.each(function(){var toggles_i=$(this).attr("data-toggles");if(toggles_i){var $dest_i=$(toggles_i.startsWith("#")||toggles_i.startsWith("-")?toggles_i:"#"+toggles_i+", ."+toggles_i);$dest_i.addClass("hidden")}})})}),jQuery(function($){$(".wpbdp-admin-tab-nav a").click(function(e){e.preventDefault();var $others=$(this).parents("ul").find("li a"),$selected=$others.filter(".current");$others.removeClass("current"),$(this).addClass("current");var href=$(this).attr("href"),$content=$(href);$selected.length>0&&$($selected.attr("href")).hide(),$content.show()}),$(".wpbdp-admin-tab-nav").each(function(i,v){$(this).find("a:first").click()})}),jQuery(function($){$(document).on("click",".wpbdp-admin-confirm",function(e){var message=$(this).data("confirm");message&&"undefined"!=typeof message||(message="Are you sure you want to do this?");var confirm=window.confirm(message);return!!confirm||(e.stopImmediatePropagation(),!1)}),$(document).on("click",".wpbdp-admin-ajax",function(e){e.preventDefault();var $btn=$(this),data=$btn.data("ajax"),message=$btn.data("confirm"),$target=$($btn.data("target")),confirm=window.confirm(message);return!!confirm&&($btn.prop("disabled",!0),void $.post(ajaxurl,data,function(res){res.success?($target.removeClass("error").addClass("updated").find("p").html(res.message).show(),$target.fadeOut(1e3)):$target.removeClass("updated").addClass("error").find("p").html(res.error).show(),$btn.prop("disabled",!1)},"json"))})});
|
assets/js/wpbdp.js
CHANGED
@@ -130,7 +130,10 @@ jQuery(function( $ ) {
|
|
130 |
configure_date_picker: function( $e ) {
|
131 |
$e.datepicker({
|
132 |
dateFormat: $e.attr( 'data-date-format' ),
|
133 |
-
defaultDate: $e.val()
|
|
|
|
|
|
|
134 |
});
|
135 |
}
|
136 |
};
|
130 |
configure_date_picker: function( $e ) {
|
131 |
$e.datepicker({
|
132 |
dateFormat: $e.attr( 'data-date-format' ),
|
133 |
+
defaultDate: $e.val(),
|
134 |
+
beforeShow: function() {
|
135 |
+
$( '#ui-datepicker-div' ).addClass( 'wpbdp-datepicker' );
|
136 |
+
},
|
137 |
});
|
138 |
}
|
139 |
};
|
assets/js/wpbdp.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
"undefined"==typeof window.WPBDP&&(window.WPBDP={}),"undefined"==typeof window.wpbdp&&(window.wpbdp={}),jQuery(function($){$(".wpbdp-no-js").hide()}),jQuery(document).ready(function($){$(".wpbdp-js-select2").length>0&&$.fn.selectWoo&&$(".wpbdp-js-select2").selectWoo(),wpbdp.main_box={init:function(){return},sum_width:function($selector,prop){prop="undefined"==typeof prop?"width":prop;var sum=0;return $selector.each(function(){var w=0;w="initial"==prop?$(this).data("initial-width"):"outer"==prop?$(this).outerWidth():"inner"==prop?$(this).innerWidth():$(this).width(),sum+=parseInt(w)}),sum},min_width:function(){return this.sum_width(this.$cols_fixed,"initial")},should_resize:function(){return this.$box.find("form").width()>this.min_width()},resize:function(){if(this.should_resize()){var available_width=this.$box.find("form").innerWidth()-this.min_width(),flex_width=Math.floor(available_width/this.$cols_expanding.length)-2;this.$cols_expanding.each(function(){$(this).outerWidth(flex_width)})}}},$("#wpbdp-main-box").length>0&&wpbdp.main_box.init(),0==$(".wpbdp-bar").children().length&&""==$(".wpbdp-bar").text().trim()&&$(".wpbdp-bar").remove(),$(".wpbdp-listing-contact-form .send-message-button").on("click",function(){$(this).removeClass("wpbdp-show-on-mobile").hide(),$(".wpbdp-listing-contact-form .contact-form-wrapper").show()}),$(".wpbdp-listings-sort-options select").on("change",function(e){var selected=$(this).val();location.href=selected})}),jQuery(function($){var form_fields={init:function(){var t=this;$(".wpbdp-form-field-type-date").each(function(i,v){t.configure_date_picker($(v).find("input"))}),$(window).on("wpbdp_submit_refresh",function(event,submit,section_id){"listing_fields"==section_id&&t.init()})},configure_date_picker:function($e){$e.datepicker({dateFormat:$e.attr("data-date-format"),defaultDate:$e.val()})}};form_fields.init()}),WPBDP.fileUpload={resizeIFrame:function(element_id,height){var iframe=jQuery("#wpbdp-upload-iframe-"+element_id)[0],iframeWin=iframe.contentWindow||iframe.contentDocument.parentWindow;iframeWin.document.body&&(iframe.height=height?height:iframeWin.document.documentElement.scrollHeight||iframeWin.document.body.scrollHeight),0!==jQuery(iframe).parents(".wpbdp-social-type-field").length&&(jQuery(iframe).parent().siblings(".wpbdp-inner-social-field-option-Other").find("input").is(":checked")||jQuery(iframe).parent().hide())},handleUpload:function(o){var $input=jQuery(o),$form=$input.parent("form");$form.submit()},finishUpload:function(element_id,upload_id,element){var $iframe=jQuery("#wpbdp-upload-iframe-"+element_id),$input=jQuery('input[name="'+element+'"]');$input.val(upload_id);var $preview=$input.siblings(".preview");$preview.find("img").remove(),$preview.prepend($iframe.contents().find(".preview").html()),$iframe.contents().find(".preview").remove(),$iframe.hide(),$preview.show()},deleteUpload:function(element_id,element){var $input=(jQuery("#wpbdp-upload-iframe-"+element_id),jQuery('input[name="'+element+'"]')),$preview=$input.siblings(".preview");return $input.val(""),$preview.find("img").remove(),$preview.find("input").val(""),$preview.hide(),$preview.siblings().show(),!1}},function($){var sb=wpbdp.listingSubmit={init:function(){$(".wpbdp-submit-listing-section-listing_images").length>0&&sb.images.init()},init_events:function(){$("#wpbdp-submit-listing").on("click",".wpbdp-inner-field-option-select_all",function(e){var $options=$(this).parent().find('input[type="checkbox"]');$options.prop("checked",$(this).find("input").is(":checked"))}),$("#wpbdp-submit-listing").on("click",".wpbdp-inner-social-field-option input",function(e){var $icon_element=$(this).parents(".wpbdp-inner-social-field-option").siblings(".wpbdp-upload-widget");return"Other"!==$(this).val()?void $icon_element.hide():void $icon_element.show()})}};sb.images=wpbdp.listingSubmit.images={_initialized:!1,_admin_nonce:"",_slots:0,_slotsRemaining:0,_working:!1,init:function(){this._initialized=!0,this._admin_nonce=$("#image-upload-dnd-area").attr("data-admin-nonce");var t=this;this._admin_nonce||(sb.images._slots=parseInt($("#image-slots-total").text()),sb.images._slotsRemaining=parseInt($("#image-slots-remaining").text())),$("#wpbdp-uploaded-images").on("click",".wpbdp-image-delete-link","click",function(e){e.preventDefault();var url=$(this).attr("href");$.post(url,{},function(res){res.success&&$('#wpbdp-uploaded-images .wpbdp-image[data-imageid="'+res.data.imageId+'"]').fadeOut(function(){if($(this).remove(),1==$("#wpbdp-uploaded-images .wpbdp-image").length&&$('#wpbdp-uploaded-images .wpbdp-image:first input[name="thumbnail_id"] ').attr("checked","checked"),t._admin_nonce||(t._slotsRemaining++,$("#image-slots-remaining").text(t._slotsRemaining)),(t._admin_nonce&&0==$("#wpbdp-uploaded-images .wpbdp-image").length||!t._admin_nonce&&t._slotsRemaining==t._slots)&&$("#current-images-header").show(),(t._admin_nonce||t._slotsRemaining>0)&&($("#image-upload-dnd-area .dnd-area-inside").show(),$("#noslots-message").hide(),$("#image-upload-dnd-area").removeClass("error"),$("#image-upload-dnd-area .dnd-area-inside-error").hide()),$("#wpbdp-listing-fields.postbox").length>0){var $with_count=$(".wpbdp-admin-tab-nav li a .with-image-count"),$no_count=$(".wpbdp-admin-tab-nav li a .no-image-count"),n=$("#wpbdp-uploaded-images .wpbdp-image").length;n?($no_count.addClass("hidden"),$with_count.removeClass("hidden").find("span").text(n)):($with_count.addClass("hidden"),$no_count.removeClass("hidden"))}})},"json")}),wpbdp.dnd.setup($("#image-upload-dnd-area"),{init:function(){t._admin_nonce||t._slotsRemaining>0||($("#image-upload-dnd-area .dnd-area-inside").hide(),$("#noslots-message").show(),$("#image-upload-dnd-area").addClass("error"),$("#image-upload-dnd-area .dnd-area-inside-error").show(),$(".image-upload-wrapper .error").remove())},validate:function(data){return $(".image-upload-wrapper .error").remove(),!!t._admin_nonce||($(this).siblings(".wpbdp-msg").remove(),!0)},done:function(res){var uploadErrors=!1;if(uploadErrors=res.success?"undefined"!=typeof res.data.uploadErrors&&res.data.uploadErrors:[res.error]){var errorMsg=$("<div>").addClass("wpbdp-msg error").html(uploadErrors);return $(errorMsg).insertAfter($(".area-and-conditions")),void $("#image-upload-dnd-area .dnd-area-inside").show()}if($("#current-images-header").hide(),$("#wpbdp-uploaded-images").append(res.data.html),1==$("#wpbdp-uploaded-images .wpbdp-image").length&&$('#wpbdp-uploaded-images .wpbdp-image:first input[name="thumbnail_id"] ').attr("checked","checked"),t._admin_nonce||(t._slotsRemaining-=res.data.attachmentIds.length,$("#image-slots-remaining").text(t._slotsRemaining),0==t._slotsRemaining&&($("#image-upload-dnd-area .dnd-area-inside").hide(),$("#noslots-message").show(),$("#image-upload-dnd-area").addClass("error"),$("#image-upload-dnd-area .dnd-area-inside").hide(),$("#image-upload-dnd-area .dnd-area-inside-error").show())),$("#wpbdp-listing-fields.postbox").length>0){var $with_count=$(".wpbdp-admin-tab-nav li a .with-image-count"),$no_count=$(".wpbdp-admin-tab-nav li a .no-image-count"),n=$("#wpbdp-uploaded-images .wpbdp-image").length;n?($no_count.addClass("hidden"),$with_count.removeClass("hidden").find("span").text(n)):($with_count.addClass("hidden"),$no_count.removeClass("hidden"))}}}),$("input#wpbdp_media_manager").on("click",function(e){e.preventDefault();var image_frame,url=$(this).attr("data-action");image_frame&&image_frame.open(),image_frame=wp.media({title:"Select Media",multiple:!1,library:{type:"image"}}),image_frame.on("close",function(){var selection=image_frame.state().get("selection"),gallery_ids=new Array,i=0;selection.each(function(attachment){gallery_ids[i]=attachment.id,i++});var ids=gallery_ids.join(",");ids&&$.post(url,{image_ids:ids},function(res){if(res.success?errors="undefined"!=typeof res.data.errors&&res.data.errors:errors=[res.data.errors],errors){var errorMsg=$("<div>").addClass("wpbdp-msg error").html(errors);return void $(res.data.errorElement).prepend(errorMsg)}if($(res.data.errorElement+" .wpbdp-msg.error").remove(),"listing_field"===res.data.source){if(!res.data.inputElement)return;var $input=$('input[name="'+res.data.inputElement+'"]');$input.val(res.data.media_id);var $preview=$input.siblings(".preview");return $preview.find("img").remove(),$preview.prepend(res.data.html),$preview.siblings().hide(),void $preview.show()}$("#current-images-header").hide(),$(res.data.previewElement).append(res.data.html)})}),image_frame.open()}),$("#wpbdp-uploaded-images").sortable({axis:"y",cursor:"move",opacity:.9,update:function(ev,ui){var sorted=$(this).sortable("toArray",{attribute:"data-imageid"}),no_images=$(this).find(".wpbdp-image").length;$.each(sorted,function(i,v){$('input[name="images_meta['+v+'][order]"]').attr("value",no_images-i),0===i&&(document.getElementById("_thumbnail_id").value=v)})}})}};$(document).ready(function(){0!=$("#wpbdp-submit-listing").length&&(sb.init_events(),0!=$(".wpbdp-submit-page").length&&sb.init())})}(jQuery);
|
1 |
+
"undefined"==typeof window.WPBDP&&(window.WPBDP={}),"undefined"==typeof window.wpbdp&&(window.wpbdp={}),jQuery(function($){$(".wpbdp-no-js").hide()}),jQuery(document).ready(function($){$(".wpbdp-js-select2").length>0&&$.fn.selectWoo&&$(".wpbdp-js-select2").selectWoo(),wpbdp.main_box={init:function(){return},sum_width:function($selector,prop){prop="undefined"==typeof prop?"width":prop;var sum=0;return $selector.each(function(){var w=0;w="initial"==prop?$(this).data("initial-width"):"outer"==prop?$(this).outerWidth():"inner"==prop?$(this).innerWidth():$(this).width(),sum+=parseInt(w)}),sum},min_width:function(){return this.sum_width(this.$cols_fixed,"initial")},should_resize:function(){return this.$box.find("form").width()>this.min_width()},resize:function(){if(this.should_resize()){var available_width=this.$box.find("form").innerWidth()-this.min_width(),flex_width=Math.floor(available_width/this.$cols_expanding.length)-2;this.$cols_expanding.each(function(){$(this).outerWidth(flex_width)})}}},$("#wpbdp-main-box").length>0&&wpbdp.main_box.init(),0==$(".wpbdp-bar").children().length&&""==$(".wpbdp-bar").text().trim()&&$(".wpbdp-bar").remove(),$(".wpbdp-listing-contact-form .send-message-button").on("click",function(){$(this).removeClass("wpbdp-show-on-mobile").hide(),$(".wpbdp-listing-contact-form .contact-form-wrapper").show()}),$(".wpbdp-listings-sort-options select").on("change",function(e){var selected=$(this).val();location.href=selected})}),jQuery(function($){var form_fields={init:function(){var t=this;$(".wpbdp-form-field-type-date").each(function(i,v){t.configure_date_picker($(v).find("input"))}),$(window).on("wpbdp_submit_refresh",function(event,submit,section_id){"listing_fields"==section_id&&t.init()})},configure_date_picker:function($e){$e.datepicker({dateFormat:$e.attr("data-date-format"),defaultDate:$e.val(),beforeShow:function(){$("#ui-datepicker-div").addClass("wpbdp-datepicker")}})}};form_fields.init()}),WPBDP.fileUpload={resizeIFrame:function(element_id,height){var iframe=jQuery("#wpbdp-upload-iframe-"+element_id)[0],iframeWin=iframe.contentWindow||iframe.contentDocument.parentWindow;iframeWin.document.body&&(iframe.height=height?height:iframeWin.document.documentElement.scrollHeight||iframeWin.document.body.scrollHeight),0!==jQuery(iframe).parents(".wpbdp-social-type-field").length&&(jQuery(iframe).parent().siblings(".wpbdp-inner-social-field-option-Other").find("input").is(":checked")||jQuery(iframe).parent().hide())},handleUpload:function(o){var $input=jQuery(o),$form=$input.parent("form");$form.submit()},finishUpload:function(element_id,upload_id,element){var $iframe=jQuery("#wpbdp-upload-iframe-"+element_id),$input=jQuery('input[name="'+element+'"]');$input.val(upload_id);var $preview=$input.siblings(".preview");$preview.find("img").remove(),$preview.prepend($iframe.contents().find(".preview").html()),$iframe.contents().find(".preview").remove(),$iframe.hide(),$preview.show()},deleteUpload:function(element_id,element){var $input=(jQuery("#wpbdp-upload-iframe-"+element_id),jQuery('input[name="'+element+'"]')),$preview=$input.siblings(".preview");return $input.val(""),$preview.find("img").remove(),$preview.find("input").val(""),$preview.hide(),$preview.siblings().show(),!1}},function($){var sb=wpbdp.listingSubmit={init:function(){$(".wpbdp-submit-listing-section-listing_images").length>0&&sb.images.init()},init_events:function(){$("#wpbdp-submit-listing").on("click",".wpbdp-inner-field-option-select_all",function(e){var $options=$(this).parent().find('input[type="checkbox"]');$options.prop("checked",$(this).find("input").is(":checked"))}),$("#wpbdp-submit-listing").on("click",".wpbdp-inner-social-field-option input",function(e){var $icon_element=$(this).parents(".wpbdp-inner-social-field-option").siblings(".wpbdp-upload-widget");return"Other"!==$(this).val()?void $icon_element.hide():void $icon_element.show()})}};sb.images=wpbdp.listingSubmit.images={_initialized:!1,_admin_nonce:"",_slots:0,_slotsRemaining:0,_working:!1,init:function(){this._initialized=!0,this._admin_nonce=$("#image-upload-dnd-area").attr("data-admin-nonce");var t=this;this._admin_nonce||(sb.images._slots=parseInt($("#image-slots-total").text()),sb.images._slotsRemaining=parseInt($("#image-slots-remaining").text())),$("#wpbdp-uploaded-images").on("click",".wpbdp-image-delete-link","click",function(e){e.preventDefault();var url=$(this).attr("href");$.post(url,{},function(res){res.success&&$('#wpbdp-uploaded-images .wpbdp-image[data-imageid="'+res.data.imageId+'"]').fadeOut(function(){if($(this).remove(),1==$("#wpbdp-uploaded-images .wpbdp-image").length&&$('#wpbdp-uploaded-images .wpbdp-image:first input[name="thumbnail_id"] ').attr("checked","checked"),t._admin_nonce||(t._slotsRemaining++,$("#image-slots-remaining").text(t._slotsRemaining)),(t._admin_nonce&&0==$("#wpbdp-uploaded-images .wpbdp-image").length||!t._admin_nonce&&t._slotsRemaining==t._slots)&&$("#current-images-header").show(),(t._admin_nonce||t._slotsRemaining>0)&&($("#image-upload-dnd-area .dnd-area-inside").show(),$("#noslots-message").hide(),$("#image-upload-dnd-area").removeClass("error"),$("#image-upload-dnd-area .dnd-area-inside-error").hide()),$("#wpbdp-listing-fields.postbox").length>0){var $with_count=$(".wpbdp-admin-tab-nav li a .with-image-count"),$no_count=$(".wpbdp-admin-tab-nav li a .no-image-count"),n=$("#wpbdp-uploaded-images .wpbdp-image").length;n?($no_count.addClass("hidden"),$with_count.removeClass("hidden").find("span").text(n)):($with_count.addClass("hidden"),$no_count.removeClass("hidden"))}})},"json")}),wpbdp.dnd.setup($("#image-upload-dnd-area"),{init:function(){t._admin_nonce||t._slotsRemaining>0||($("#image-upload-dnd-area .dnd-area-inside").hide(),$("#noslots-message").show(),$("#image-upload-dnd-area").addClass("error"),$("#image-upload-dnd-area .dnd-area-inside-error").show(),$(".image-upload-wrapper .error").remove())},validate:function(data){return $(".image-upload-wrapper .error").remove(),!!t._admin_nonce||($(this).siblings(".wpbdp-msg").remove(),!0)},done:function(res){var uploadErrors=!1;if(uploadErrors=res.success?"undefined"!=typeof res.data.uploadErrors&&res.data.uploadErrors:[res.error]){var errorMsg=$("<div>").addClass("wpbdp-msg error").html(uploadErrors);return $(errorMsg).insertAfter($(".area-and-conditions")),void $("#image-upload-dnd-area .dnd-area-inside").show()}if($("#current-images-header").hide(),$("#wpbdp-uploaded-images").append(res.data.html),1==$("#wpbdp-uploaded-images .wpbdp-image").length&&$('#wpbdp-uploaded-images .wpbdp-image:first input[name="thumbnail_id"] ').attr("checked","checked"),t._admin_nonce||(t._slotsRemaining-=res.data.attachmentIds.length,$("#image-slots-remaining").text(t._slotsRemaining),0==t._slotsRemaining&&($("#image-upload-dnd-area .dnd-area-inside").hide(),$("#noslots-message").show(),$("#image-upload-dnd-area").addClass("error"),$("#image-upload-dnd-area .dnd-area-inside").hide(),$("#image-upload-dnd-area .dnd-area-inside-error").show())),$("#wpbdp-listing-fields.postbox").length>0){var $with_count=$(".wpbdp-admin-tab-nav li a .with-image-count"),$no_count=$(".wpbdp-admin-tab-nav li a .no-image-count"),n=$("#wpbdp-uploaded-images .wpbdp-image").length;n?($no_count.addClass("hidden"),$with_count.removeClass("hidden").find("span").text(n)):($with_count.addClass("hidden"),$no_count.removeClass("hidden"))}}}),$("input#wpbdp_media_manager").on("click",function(e){e.preventDefault();var image_frame,url=$(this).attr("data-action");image_frame&&image_frame.open(),image_frame=wp.media({title:"Select Media",multiple:!1,library:{type:"image"}}),image_frame.on("close",function(){var selection=image_frame.state().get("selection"),gallery_ids=new Array,i=0;selection.each(function(attachment){gallery_ids[i]=attachment.id,i++});var ids=gallery_ids.join(",");ids&&$.post(url,{image_ids:ids},function(res){if(res.success?errors="undefined"!=typeof res.data.errors&&res.data.errors:errors=[res.data.errors],errors){var errorMsg=$("<div>").addClass("wpbdp-msg error").html(errors);return void $(res.data.errorElement).prepend(errorMsg)}if($(res.data.errorElement+" .wpbdp-msg.error").remove(),"listing_field"===res.data.source){if(!res.data.inputElement)return;var $input=$('input[name="'+res.data.inputElement+'"]');$input.val(res.data.media_id);var $preview=$input.siblings(".preview");return $preview.find("img").remove(),$preview.prepend(res.data.html),$preview.siblings().hide(),void $preview.show()}$("#current-images-header").hide(),$(res.data.previewElement).append(res.data.html)})}),image_frame.open()}),$("#wpbdp-uploaded-images").sortable({axis:"y",cursor:"move",opacity:.9,update:function(ev,ui){var sorted=$(this).sortable("toArray",{attribute:"data-imageid"}),no_images=$(this).find(".wpbdp-image").length;$.each(sorted,function(i,v){$('input[name="images_meta['+v+'][order]"]').attr("value",no_images-i),0===i&&(document.getElementById("_thumbnail_id").value=v)})}})}};$(document).ready(function(){0!=$("#wpbdp-submit-listing").length&&(sb.init_events(),0!=$(".wpbdp-submit-page").length&&sb.init())})}(jQuery);
|
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:
|
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.0
|
7 |
* Author: Business Directory Team
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: business-directory-plugin
|
includes/admin/admin-pages.php
CHANGED
@@ -1,4 +1,547 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
function wpbdp_admin_sidebar( $echo = false ) {
|
3 |
$page = wpbdp_render_page( WPBDP_PATH . 'templates/admin/sidebar.tpl.php', array(), $echo );
|
4 |
|
@@ -9,11 +552,10 @@ function wpbdp_admin_sidebar( $echo = false ) {
|
|
9 |
return ! empty( $page );
|
10 |
}
|
11 |
|
12 |
-
function wpbdp_admin_header( $args_or_title = null, $id = null, $h2items = array(), $sidebar =
|
13 |
// For backwards compatibility.
|
14 |
if ( ! $args_or_title || ! is_array( $args_or_title ) ) {
|
15 |
$buttons = array();
|
16 |
-
|
17 |
if ( $h2items ) {
|
18 |
foreach ( $h2items as $item ) {
|
19 |
if ( isset( $item['label'] ) ) {
|
@@ -65,56 +607,42 @@ function wpbdp_admin_header( $args_or_title = null, $id = null, $h2items = array
|
|
65 |
|
66 |
$args = wp_parse_args( $args_or_title, $defaults );
|
67 |
|
68 |
-
extract( $args );
|
69 |
-
|
70 |
$id = str_replace( array( 'wpbdp_', 'wpbdp-' ), '', $args['id'] );
|
71 |
$id = str_replace( array( 'admin-', 'admin_' ), '', $id );
|
72 |
|
73 |
if ( empty( $args['echo'] ) ) {
|
74 |
ob_start();
|
75 |
}
|
76 |
-
?>
|
77 |
-
<div class="wrap wpbdp-admin wpbdp-admin-page wpbdp-admin-page-<?php echo esc_attr( $id ); ?>" id="wpbdp-admin-page-<?php echo esc_attr( $id ); ?>">
|
78 |
-
<h1>
|
79 |
-
<?php WPBDP_App_Helper::show_logo( 55 ); ?>
|
80 |
-
<?php echo esc_html( $title ); ?>
|
81 |
-
|
82 |
-
<?php
|
83 |
-
$button_class = 'add-new-h2';
|
84 |
-
foreach ( $buttons as $id => $button ) :
|
85 |
-
if ( ! is_array( $button ) ) {
|
86 |
-
$button = array(
|
87 |
-
'url' => $button,
|
88 |
-
'label' => $id,
|
89 |
-
);
|
90 |
-
}
|
91 |
-
?>
|
92 |
-
<a href="<?php echo esc_url( $button['url'] ); ?>" class="<?php echo esc_attr( $button_class . ( isset( $button['class'] ) ? ' ' . $button['class'] : '' ) ); ?>">
|
93 |
-
<?php echo esc_html( $button['label'] ); ?>
|
94 |
-
</a>
|
95 |
-
<?php
|
96 |
-
endforeach;
|
97 |
-
?>
|
98 |
-
</h1>
|
99 |
|
100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
return ob_get_clean();
|
106 |
-
}
|
107 |
}
|
108 |
|
109 |
/*
|
110 |
* @param bool|string Use 'echo' or true to show the footer.
|
111 |
*/
|
112 |
function wpbdp_admin_footer( $echo = false ) {
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
|
|
117 |
|
118 |
-
|
119 |
-
|
|
|
120 |
}
|
1 |
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* @since 6.0
|
5 |
+
*/
|
6 |
+
class WPBDP_Admin_Pages {
|
7 |
+
|
8 |
+
/*
|
9 |
+
* Register hooks for the CPT, category and tags page.
|
10 |
+
*
|
11 |
+
* @since 6.0
|
12 |
+
*/
|
13 |
+
public static function load_hooks() {
|
14 |
+
if ( ! is_admin() ) {
|
15 |
+
return;
|
16 |
+
}
|
17 |
+
|
18 |
+
add_filter( 'views_edit-wpbdp_listing', 'WPBDP_Admin_Pages::add_listings_nav' );
|
19 |
+
|
20 |
+
// Categories and tags.
|
21 |
+
add_filter( 'views_edit-wpbdp_tag', 'WPBDP_Admin_Pages::add_tag_nav' );
|
22 |
+
add_filter( 'views_edit-wpbdp_category', 'WPBDP_Admin_Pages::add_category_nav' );
|
23 |
+
|
24 |
+
// Category and tag edit page.
|
25 |
+
add_filter( 'wpbdp_tag_pre_edit_form', 'WPBDP_Admin_Pages::edit_tag_nav' );
|
26 |
+
add_filter( 'wpbdp_category_pre_edit_form', 'WPBDP_Admin_Pages::edit_category_nav' );
|
27 |
+
|
28 |
+
// Add search form.
|
29 |
+
add_action( 'wpbdp_admin_pages_show_tabs', 'WPBDP_Admin_Pages::taxonomy_search_form', 10, 2 );
|
30 |
+
|
31 |
+
add_action( 'wpbdp_category_add_form_fields', 'WPBDP_Admin_Pages::add_category_info', 9999 );
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Add listing nav header to the post listing page.
|
36 |
+
*
|
37 |
+
* @since 6.0
|
38 |
+
*/
|
39 |
+
public static function add_listings_nav( $views ) {
|
40 |
+
global $post_type_object;
|
41 |
+
add_action( 'admin_footer', 'WPBDP_Admin_Pages::show_full_footer' );
|
42 |
+
|
43 |
+
$args = array(
|
44 |
+
'sub' => __( 'Listings', 'business-directory-plugin' ),
|
45 |
+
'active_tab' => 'edit.php?post_type=wpbdp_listing',
|
46 |
+
);
|
47 |
+
|
48 |
+
if ( current_user_can( $post_type_object->cap->create_posts ) ) {
|
49 |
+
$args['buttons'] = array(
|
50 |
+
'add_listing' => array(
|
51 |
+
'label' => __( 'Add New Listing', 'business-directory-plugin' ),
|
52 |
+
'url' => esc_url( admin_url( 'post-new.php?post_type=wpbdp_listing' ) ),
|
53 |
+
),
|
54 |
+
);
|
55 |
+
}
|
56 |
+
|
57 |
+
self::show_tabs( $args );
|
58 |
+
|
59 |
+
return $views;
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* Add listing category nav.
|
64 |
+
*
|
65 |
+
* @since 6.0
|
66 |
+
*/
|
67 |
+
public static function add_category_nav( $views ) {
|
68 |
+
global $tax;
|
69 |
+
$atts = array(
|
70 |
+
'title' => __( 'Categories', 'business-directory-plugin' ),
|
71 |
+
'taxonomy' => 'wpbdp_category',
|
72 |
+
'button_name' => __( 'Add New Category', 'business-directory-plugin' ),
|
73 |
+
'button_url' => '#',
|
74 |
+
'button_class' => 'wpbdp-add-taxonomy-form',
|
75 |
+
);
|
76 |
+
return self::add_taxonomy_nav( $views, $tax, $atts );
|
77 |
+
}
|
78 |
+
|
79 |
+
/**
|
80 |
+
* Add listing tags nav.
|
81 |
+
*
|
82 |
+
* @since 6.0
|
83 |
+
*/
|
84 |
+
public static function add_tag_nav( $views ) {
|
85 |
+
global $tax;
|
86 |
+
$atts = array(
|
87 |
+
'title' => __( 'Tags', 'business-directory-plugin' ),
|
88 |
+
'taxonomy' => 'wpbdp_tag',
|
89 |
+
'button_name' => __( 'Add New Tag', 'business-directory-plugin' ),
|
90 |
+
'button_url' => '#',
|
91 |
+
'button_class' => 'wpbdp-add-taxonomy-form',
|
92 |
+
);
|
93 |
+
return self::add_taxonomy_nav( $views, $tax, $atts );
|
94 |
+
}
|
95 |
+
|
96 |
+
/**
|
97 |
+
* Add listing category nav.
|
98 |
+
*
|
99 |
+
* @since 6.0
|
100 |
+
*/
|
101 |
+
public static function edit_category_nav( $views ) {
|
102 |
+
global $tax;
|
103 |
+
$atts = array(
|
104 |
+
'title' => __( 'Edit Category', 'business-directory-plugin' ),
|
105 |
+
'taxonomy' => 'wpbdp_category',
|
106 |
+
'button_name' => __( 'Back to Categories', 'business-directory-plugin' ),
|
107 |
+
'button_url' => admin_url( 'edit-tags.php?taxonomy=wpbdp_category&post_type=wpbdp_listing' ),
|
108 |
+
);
|
109 |
+
return self::add_taxonomy_nav( $views, $tax, $atts );
|
110 |
+
}
|
111 |
+
|
112 |
+
/**
|
113 |
+
* Add listing tags nav.
|
114 |
+
*
|
115 |
+
* @since 6.0
|
116 |
+
*/
|
117 |
+
public static function edit_tag_nav( $views ) {
|
118 |
+
global $tax;
|
119 |
+
$atts = array(
|
120 |
+
'title' => __( 'Edit Tag', 'business-directory-plugin' ),
|
121 |
+
'taxonomy' => 'wpbdp_tag',
|
122 |
+
'button_name' => __( 'Back to Tags', 'business-directory-plugin' ),
|
123 |
+
'button_url' => admin_url( 'edit-tags.php?taxonomy=wpbdp_tag&post_type=wpbdp_listing' ),
|
124 |
+
);
|
125 |
+
return self::add_taxonomy_nav( $views, $tax, $atts );
|
126 |
+
}
|
127 |
+
|
128 |
+
|
129 |
+
/**
|
130 |
+
* Add taxonomy navigation.
|
131 |
+
* Public function to be used in addons that have custom tags.
|
132 |
+
*
|
133 |
+
* @since 6.0
|
134 |
+
*/
|
135 |
+
public static function add_taxonomy_nav( $views, $tax, $params = array() ) {
|
136 |
+
add_action( 'admin_footer', 'WPBDP_Admin_Pages::show_full_footer' );
|
137 |
+
|
138 |
+
$args = array(
|
139 |
+
'sub' => $params['title'],
|
140 |
+
'active_tab' => 'edit-tags.php?taxonomy=' . $params['taxonomy'] . '&post_type=wpbdp_listing',
|
141 |
+
);
|
142 |
+
if ( current_user_can( $tax->cap->edit_terms ) && isset( $params['button_name'] ) ) {
|
143 |
+
$args['buttons'] = array(
|
144 |
+
'add_listing' => array(
|
145 |
+
'label' => $params['button_name'],
|
146 |
+
'url' => $params['button_url'],
|
147 |
+
'class' => isset( $params['button_class'] ) ? $params['button_class'] : '',
|
148 |
+
),
|
149 |
+
);
|
150 |
+
}
|
151 |
+
|
152 |
+
self::show_tabs( $args );
|
153 |
+
|
154 |
+
return $views;
|
155 |
+
}
|
156 |
+
|
157 |
+
/**
|
158 |
+
* Search form for taxonomies.
|
159 |
+
*
|
160 |
+
* @since 6.0
|
161 |
+
*/
|
162 |
+
public static function taxonomy_search_form( $active_tab, $id ) {
|
163 |
+
$active_screens = array(
|
164 |
+
'edit-wpbdp_tag',
|
165 |
+
'edit-wpbdp_category',
|
166 |
+
'edit-wpbdm-region',
|
167 |
+
);
|
168 |
+
|
169 |
+
$current_screen = get_current_screen();
|
170 |
+
if ( ! in_array( $current_screen->id, $active_screens, true ) ) {
|
171 |
+
return;
|
172 |
+
}
|
173 |
+
|
174 |
+
$tag_id = wpbdp_get_var( array( 'param' => 'tag_ID' ), 'get' );
|
175 |
+
if ( $tag_id ) {
|
176 |
+
return;
|
177 |
+
}
|
178 |
+
|
179 |
+
global $post_type, $taxonomy, $tax, $wp_list_table;
|
180 |
+
$search_param = wpbdp_get_var( array( 'param' => 's' ), 'request' );
|
181 |
+
if ( $search_param ) {
|
182 |
+
echo '<span class="wpbdp-taxonomy-search-results">';
|
183 |
+
printf(
|
184 |
+
/* translators: %s: Search query. */
|
185 |
+
// phpcs:ignore WordPress.WP.I18n.MissingArgDomain
|
186 |
+
__( 'Search results for: %s' ),
|
187 |
+
'<strong>' . esc_html( $search_param ) . '</strong>'
|
188 |
+
);
|
189 |
+
echo '</span>';
|
190 |
+
}
|
191 |
+
?>
|
192 |
+
<form class="search-form wp-clearfix" method="get">
|
193 |
+
<input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
|
194 |
+
<input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
|
195 |
+
|
196 |
+
<?php $wp_list_table->search_box( $tax->labels->search_items, 'tag' ); ?>
|
197 |
+
</form>
|
198 |
+
<?php
|
199 |
+
}
|
200 |
+
|
201 |
+
/**
|
202 |
+
* Add info about category images.
|
203 |
+
*
|
204 |
+
* @since 6.0
|
205 |
+
*/
|
206 |
+
public static function add_category_info() {
|
207 |
+
echo '<div class="form-field">';
|
208 |
+
WPBDP_Admin_Education::show_tip( 'categories' );
|
209 |
+
echo '</div>';
|
210 |
+
}
|
211 |
+
|
212 |
+
/**
|
213 |
+
* Admin header.
|
214 |
+
*
|
215 |
+
* @since 6.0
|
216 |
+
*/
|
217 |
+
public static function show_tabs( $args = array() ) {
|
218 |
+
|
219 |
+
$defaults = array(
|
220 |
+
'title' => 'Business Directory', // Don't translate this.
|
221 |
+
'id' => wpbdp_get_var( array( 'param' => 'page' ) ),
|
222 |
+
'tabs' => array(),
|
223 |
+
'buttons' => array(),
|
224 |
+
'active_tab' => self::get_active_tab(),
|
225 |
+
'show_nav' => true,
|
226 |
+
'tabbed_title' => false,
|
227 |
+
'titles' => array(),
|
228 |
+
);
|
229 |
+
|
230 |
+
$args = wp_parse_args( $args, $defaults );
|
231 |
+
|
232 |
+
$id = str_replace( array( 'wpbdp_', 'wpbdp-' ), '', $args['id'] );
|
233 |
+
$id = str_replace( array( 'admin-', 'admin_' ), '', $id );
|
234 |
+
|
235 |
+
$active_tab = $args['active_tab'];
|
236 |
+
$tabs = $args['tabs'];
|
237 |
+
if ( empty( $tabs ) ) {
|
238 |
+
$tabs = self::get_content_tabs();
|
239 |
+
}
|
240 |
+
$title = $args['title'];
|
241 |
+
?>
|
242 |
+
<div class="wrap wpbdp-admin wpbdp-admin-layout wpbdp-admin-page wpbdp-admin-page-<?php echo esc_attr( $id ); ?> <?php echo ! $args['show_nav'] ? 'wpbdp-admin-page-full-width' : ''; ?>" id="wpbdp-admin-page-<?php echo esc_attr( $id ); ?>">
|
243 |
+
<div class="wpbdp-admin-row">
|
244 |
+
<?php if ( $args['show_nav'] ) : ?>
|
245 |
+
<?php include WPBDP_PATH . 'templates/admin/_admin-menu.php'; ?>
|
246 |
+
<?php endif; ?>
|
247 |
+
<div class="wpbdp-content-area">
|
248 |
+
<?php
|
249 |
+
wpbdp_admin_notices();
|
250 |
+
if ( ! isset( $args['sub'] ) ) {
|
251 |
+
return;
|
252 |
+
}
|
253 |
+
?>
|
254 |
+
<div class="wpbdp-content-area-header <?php echo $args['tabbed_title'] ? 'wpbdp-content-area-header-tabbed' : '' ?>">
|
255 |
+
<?php if ( $args['tabbed_title'] ) :
|
256 |
+
$current_tab = isset( $args['current_tab'] ) ? $args['current_tab'] : '';
|
257 |
+
self::show_tabbed_title( $args['titles'], $current_tab );
|
258 |
+
else : ?>
|
259 |
+
<h2 class="wpbdp-sub-section-title"><?php echo esc_html( $args['sub'] ); ?></h2>
|
260 |
+
<?php endif; ?>
|
261 |
+
<div class="wpbdp-content-area-header-actions">
|
262 |
+
<?php self::show_buttons( $args['buttons'] ); ?>
|
263 |
+
</div>
|
264 |
+
</div>
|
265 |
+
<div class="wpbdp-content-area-body">
|
266 |
+
<?php
|
267 |
+
do_action( 'wpbdp_admin_pages_show_tabs', $active_tab, $id );
|
268 |
+
}
|
269 |
+
|
270 |
+
/**
|
271 |
+
* Show action buttons at the top of the page.
|
272 |
+
*
|
273 |
+
* @since 6.0
|
274 |
+
*/
|
275 |
+
private static function show_buttons( $buttons ) {
|
276 |
+
$button_class = 'wpbdp-button-primary';
|
277 |
+
foreach ( $buttons as $id => $button ) {
|
278 |
+
if ( ! is_array( $button ) ) {
|
279 |
+
$button = array(
|
280 |
+
'url' => $button,
|
281 |
+
'label' => $id,
|
282 |
+
);
|
283 |
+
}
|
284 |
+
?>
|
285 |
+
<a href="<?php echo esc_url( $button['url'] ); ?>" class="<?php echo esc_attr( $button_class . ( isset( $button['class'] ) ? ' ' . $button['class'] : '' ) ); ?>">
|
286 |
+
<?php echo esc_html( $button['label'] ); ?>
|
287 |
+
</a>
|
288 |
+
<?php
|
289 |
+
$button_class = 'wpbdp-button-secondary';
|
290 |
+
}
|
291 |
+
}
|
292 |
+
|
293 |
+
/**
|
294 |
+
* Includes the end div for the tabs section.
|
295 |
+
*
|
296 |
+
* @since 6.0
|
297 |
+
*/
|
298 |
+
public static function show_full_footer() {
|
299 |
+
self::show_tabs_footer( array( 'sub' => true ) );
|
300 |
+
}
|
301 |
+
|
302 |
+
/**
|
303 |
+
* @since 6.0
|
304 |
+
*/
|
305 |
+
public static function show_tabs_footer( $args = array() ) {
|
306 |
+
if ( isset( $args['sub'] ) ) {
|
307 |
+
echo '</div>'; // end wpbdp-content-area-body
|
308 |
+
}
|
309 |
+
echo '</div>'; // end wpbdp-content-area
|
310 |
+
echo '</div></div>'; // end wpbdp-admin & wpbdp-admin-row
|
311 |
+
}
|
312 |
+
|
313 |
+
/**
|
314 |
+
* Admin title.
|
315 |
+
*
|
316 |
+
* @since 6.0
|
317 |
+
*/
|
318 |
+
public static function show_title( $args = array() ) {
|
319 |
+
$title = isset( $args['title'] ) ? $args['title'] : '';
|
320 |
+
$title = self::get_title( $title );
|
321 |
+
|
322 |
+
$buttons = isset( $args['buttons'] ) ? $args['buttons'] : array();
|
323 |
+
|
324 |
+
?>
|
325 |
+
<h1 class="wpbdp-page-title">
|
326 |
+
<?php
|
327 |
+
WPBDP_App_Helper::show_logo(
|
328 |
+
array(
|
329 |
+
'round' => true,
|
330 |
+
'class' => 'wpbdp-logo-center',
|
331 |
+
'size' => 35,
|
332 |
+
)
|
333 |
+
);
|
334 |
+
?>
|
335 |
+
<span class="title-text"><?php echo esc_html( $title ); ?></span>
|
336 |
+
|
337 |
+
<?php foreach ( $buttons as $label => $url ) : ?>
|
338 |
+
<a href="<?php echo esc_url( $url ); ?>" class="add-new-h2">
|
339 |
+
<?php echo esc_html( $label ); ?>
|
340 |
+
</a>
|
341 |
+
<?php endforeach; ?>
|
342 |
+
</h1>
|
343 |
+
<?php
|
344 |
+
}
|
345 |
+
|
346 |
+
/**
|
347 |
+
* Admin tabbed title.
|
348 |
+
*
|
349 |
+
* @param array $titles The titles as an array.
|
350 |
+
* @param string $current_tab The current selected tab.
|
351 |
+
*
|
352 |
+
* @since 6.0
|
353 |
+
*/
|
354 |
+
public static function show_tabbed_title( $titles, $current_tab = '' ) {
|
355 |
+
?>
|
356 |
+
<div class="wpbdp-content-area-header-tabs">
|
357 |
+
<?php
|
358 |
+
foreach ( $titles as $key => $title ) : ?>
|
359 |
+
<a class="wpbdp-header-tab <?php echo $key === $current_tab ? 'wpbdp-header-tab-active' : ''; ?>" href="<?php echo esc_url( $title['url'] ); ?>"><?php echo esc_html( $title['name'] ); ?></a>
|
360 |
+
<?php endforeach;
|
361 |
+
?>
|
362 |
+
</div>
|
363 |
+
<?php
|
364 |
+
}
|
365 |
+
|
366 |
+
/**
|
367 |
+
* @since 6.0
|
368 |
+
*/
|
369 |
+
private static function get_title( $title = '' ) {
|
370 |
+
if ( isset( $args['title'] ) ) {
|
371 |
+
$title = $args['title'];
|
372 |
+
}
|
373 |
+
if ( $title ) {
|
374 |
+
return $title;
|
375 |
+
}
|
376 |
+
|
377 |
+
if ( empty( $GLOBALS['title'] ) ) {
|
378 |
+
$title = get_admin_page_title();
|
379 |
+
} else {
|
380 |
+
$title = $GLOBALS['title'];
|
381 |
+
}
|
382 |
+
return $title;
|
383 |
+
}
|
384 |
+
|
385 |
+
/**
|
386 |
+
* Prints out all settings sections added to a particular settings page.
|
387 |
+
*
|
388 |
+
* @link https://developer.wordpress.org/reference/functions/do_settings_sections/
|
389 |
+
*
|
390 |
+
* @param string $page
|
391 |
+
*
|
392 |
+
* @since 6.0
|
393 |
+
*/
|
394 |
+
public static function render_settings_sections( $page ) {
|
395 |
+
global $wp_settings_sections, $wp_settings_fields;
|
396 |
+
|
397 |
+
if ( ! isset( $wp_settings_sections[ $page ] ) ) {
|
398 |
+
return;
|
399 |
+
}
|
400 |
+
|
401 |
+
foreach ( (array) $wp_settings_sections[ $page ] as $section ) {
|
402 |
+
if ( $section['title'] ) {
|
403 |
+
echo '<div class="wpbdp-settings-form-title">';
|
404 |
+
echo '<h3>' . esc_html( $section['title'] ) . '</h3>';
|
405 |
+
echo '</div>';
|
406 |
+
}
|
407 |
+
|
408 |
+
if ( $section['callback'] ) {
|
409 |
+
call_user_func( $section['callback'], $section );
|
410 |
+
}
|
411 |
+
|
412 |
+
if ( ! isset( $wp_settings_fields ) || ! isset( $wp_settings_fields[ $page ] ) || ! isset( $wp_settings_fields[ $page ][ $section['id'] ] ) ) {
|
413 |
+
continue;
|
414 |
+
}
|
415 |
+
echo '<div class="form-table wpbdp-settings-form wpbdp-grid">';
|
416 |
+
self::render_settings_fields( $page, $section['id'] );
|
417 |
+
echo '</div>';
|
418 |
+
}
|
419 |
+
}
|
420 |
+
|
421 |
+
/**
|
422 |
+
* Print out the settings fields for a particular settings section.
|
423 |
+
*
|
424 |
+
* @link https://developer.wordpress.org/reference/functions/do_settings_fields/
|
425 |
+
*
|
426 |
+
* @param string $page
|
427 |
+
* @param string $section
|
428 |
+
*
|
429 |
+
* @since 6.0
|
430 |
+
*/
|
431 |
+
public static function render_settings_fields( $page, $section ) {
|
432 |
+
global $wp_settings_fields;
|
433 |
+
|
434 |
+
if ( ! isset( $wp_settings_fields[ $page ][ $section ] ) ) {
|
435 |
+
return;
|
436 |
+
}
|
437 |
+
|
438 |
+
foreach ( (array) $wp_settings_fields[ $page ][ $section ] as $field ) {
|
439 |
+
$class = 'wpbdp-setting-row';
|
440 |
+
if ( ! empty( $field['args']['class'] ) ) {
|
441 |
+
$class .= ' ' . $field['args']['class'];
|
442 |
+
}
|
443 |
+
|
444 |
+
echo '<div class="' . esc_attr( $class ) . '">';
|
445 |
+
echo '<div class="wpbdp-setting-content">';
|
446 |
+
call_user_func( $field['callback'], $field['args'] );
|
447 |
+
echo '</div>';
|
448 |
+
echo '</div>';
|
449 |
+
}
|
450 |
+
}
|
451 |
+
|
452 |
+
private static function get_content_tabs() {
|
453 |
+
global $wpbdp;
|
454 |
+
|
455 |
+
$menu = $wpbdp->admin->get_menu();
|
456 |
+
$tabs = array();
|
457 |
+
|
458 |
+
if ( empty( $menu ) ) {
|
459 |
+
return $tabs;
|
460 |
+
}
|
461 |
+
|
462 |
+
$exclude = $wpbdp->admin->top_level_nav();
|
463 |
+
|
464 |
+
foreach ( $menu as $id => $menu_item ) {
|
465 |
+
$requires = empty( $menu_item['capability'] ) ? 'administrator' : $menu_item['capability'];
|
466 |
+
if ( ! current_user_can( $requires ) || in_array( $id, $exclude ) ) {
|
467 |
+
continue;
|
468 |
+
}
|
469 |
+
|
470 |
+
$title = strip_tags( $menu_item['title'] );
|
471 |
+
|
472 |
+
// change_menu_name() changes the name here. This changes it back.
|
473 |
+
if ( $title === __( 'Directory Content', 'business-directory-plugin' ) ) {
|
474 |
+
$title = __( 'Listings', 'business-directory-plugin' );
|
475 |
+
}
|
476 |
+
|
477 |
+
$tabs[ $id ] = array(
|
478 |
+
'title' => str_replace(
|
479 |
+
__( 'Directory', 'business-directory-plugin' ) . ' ',
|
480 |
+
'',
|
481 |
+
$title
|
482 |
+
),
|
483 |
+
'icon' => self::get_admin_menu_icon( $id, $menu_item ),
|
484 |
+
);
|
485 |
+
}
|
486 |
+
|
487 |
+
return $tabs;
|
488 |
+
}
|
489 |
+
|
490 |
+
/**
|
491 |
+
* Set the admin menu icon with their corresponding inner locations.
|
492 |
+
*
|
493 |
+
* @param int $menu_id The menu id.
|
494 |
+
* @param array $menu_item The menu item as an array.
|
495 |
+
*
|
496 |
+
* @return string
|
497 |
+
*/
|
498 |
+
private static function get_admin_menu_icon( $menu_id, $menu_item ) {
|
499 |
+
$menu_icons = apply_filters( 'wpbdp_admin_menu_icons',
|
500 |
+
array(
|
501 |
+
'edit.php?post_type=wpbdp_listing' => 'list',
|
502 |
+
'edit-tags.php?taxonomy=wpbdp_category&post_type=wpbdp_listing' => 'folder',
|
503 |
+
'edit-tags.php?taxonomy=wpbdp_tag&post_type=wpbdp_listing' => 'tag',
|
504 |
+
'wpbdp-admin-fees' => 'money',
|
505 |
+
'wpbdp_admin_formfields' => 'clipboard',
|
506 |
+
'wpbdp_admin_csv' => 'import',
|
507 |
+
)
|
508 |
+
);
|
509 |
+
if ( isset( $menu_icons[ $menu_id ] ) ) {
|
510 |
+
return $menu_icons[ $menu_id ];
|
511 |
+
}
|
512 |
+
return isset( $menu_item['icon'] ) ? $menu_item['icon'] : 'archive';
|
513 |
+
}
|
514 |
+
|
515 |
+
/**
|
516 |
+
* Get the active tab
|
517 |
+
*
|
518 |
+
* @return string
|
519 |
+
*/
|
520 |
+
private static function get_active_tab() {
|
521 |
+
if ( ! WPBDP_App_Helper::is_bd_post_page() ) {
|
522 |
+
return wpbdp_get_var( array( 'param' => 'page' ) );
|
523 |
+
}
|
524 |
+
|
525 |
+
$taxonomy = wpbdp_get_var( array( 'param' => 'taxonomy' ) );
|
526 |
+
if ( ! $taxonomy ) {
|
527 |
+
return 'edit.php?post_type=wpbdp_listing';
|
528 |
+
}
|
529 |
+
|
530 |
+
return add_query_arg(
|
531 |
+
array(
|
532 |
+
'taxonomy' => $taxonomy,
|
533 |
+
'post_type' => 'wpbdp_listing'
|
534 |
+
),
|
535 |
+
'edit-tags.php'
|
536 |
+
);
|
537 |
+
}
|
538 |
+
}
|
539 |
+
|
540 |
+
WPBDP_Admin_Pages::load_hooks();
|
541 |
+
|
542 |
+
/**
|
543 |
+
* @deprecated 6.0
|
544 |
+
*/
|
545 |
function wpbdp_admin_sidebar( $echo = false ) {
|
546 |
$page = wpbdp_render_page( WPBDP_PATH . 'templates/admin/sidebar.tpl.php', array(), $echo );
|
547 |
|
552 |
return ! empty( $page );
|
553 |
}
|
554 |
|
555 |
+
function wpbdp_admin_header( $args_or_title = null, $id = null, $h2items = array(), $sidebar = true ) {
|
556 |
// For backwards compatibility.
|
557 |
if ( ! $args_or_title || ! is_array( $args_or_title ) ) {
|
558 |
$buttons = array();
|
|
|
559 |
if ( $h2items ) {
|
560 |
foreach ( $h2items as $item ) {
|
561 |
if ( isset( $item['label'] ) ) {
|
607 |
|
608 |
$args = wp_parse_args( $args_or_title, $defaults );
|
609 |
|
|
|
|
|
610 |
$id = str_replace( array( 'wpbdp_', 'wpbdp-' ), '', $args['id'] );
|
611 |
$id = str_replace( array( 'admin-', 'admin_' ), '', $id );
|
612 |
|
613 |
if ( empty( $args['echo'] ) ) {
|
614 |
ob_start();
|
615 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
|
617 |
+
WPBDP_Admin_Pages::show_tabs(
|
618 |
+
array(
|
619 |
+
'id' => $id,
|
620 |
+
'sub' => $args['title'],
|
621 |
+
'buttons' => isset( $args['buttons'] ) ? $args['buttons'] : array(),
|
622 |
+
'show_nav' => $args['sidebar'],
|
623 |
+
'tabbed_title' => $args['tabbed_title'],
|
624 |
+
'titles' => $args['titles'],
|
625 |
+
'current_tab' => $args['current_tab'],
|
626 |
+
'full_width' => $args['full_width'],
|
627 |
+
)
|
628 |
+
);
|
629 |
|
630 |
+
if ( empty( $args['echo'] ) ) {
|
631 |
+
return ob_get_clean();
|
632 |
+
}
|
|
|
|
|
633 |
}
|
634 |
|
635 |
/*
|
636 |
* @param bool|string Use 'echo' or true to show the footer.
|
637 |
*/
|
638 |
function wpbdp_admin_footer( $echo = false ) {
|
639 |
+
if ( ! $echo ) {
|
640 |
+
ob_start();
|
641 |
+
}
|
642 |
+
|
643 |
+
WPBDP_Admin_Pages::show_tabs_footer();
|
644 |
|
645 |
+
if ( ! $echo ) {
|
646 |
+
return ob_get_clean();
|
647 |
+
}
|
648 |
}
|
includes/admin/class-admin.php
CHANGED
@@ -28,6 +28,7 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
28 |
class WPBDP_Admin {
|
29 |
|
30 |
private $menu = array();
|
|
|
31 |
private $current_controller = null;
|
32 |
private $current_controller_output = '';
|
33 |
|
@@ -44,15 +45,13 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
44 |
add_action( 'admin_init', array( &$this, 'process_admin_action' ), 999 );
|
45 |
add_action( 'admin_init', array( $this, 'register_listings_views' ) );
|
46 |
|
47 |
-
add_action( 'admin_notices', array( $this, '
|
48 |
add_action( 'wp_ajax_wpbdp_dismiss_review', array( &$this, 'maybe_dismiss_review' ) );
|
49 |
|
50 |
add_action( 'admin_enqueue_scripts', array( $this, 'init_scripts' ) );
|
51 |
|
52 |
// Adds admin menus.
|
53 |
add_action( 'admin_menu', array( &$this, 'admin_menu' ) );
|
54 |
-
add_action( 'admin_menu', array( &$this, 'maybe_add_themes_update_count' ), 20 );
|
55 |
-
add_action( 'admin_menu', array( &$this, 'admin_menu_combine' ), 20 );
|
56 |
add_action( 'admin_head', array( &$this, 'hide_menu' ) );
|
57 |
|
58 |
// Enables reordering of admin menus.
|
@@ -86,6 +85,10 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
86 |
add_filter( 'admin_head-post.php', array( $this, 'maybe_highlight_menu' ) );
|
87 |
add_filter( 'admin_head-edit.php', array( $this, 'maybe_highlight_menu' ) );
|
88 |
add_filter( 'admin_head-edit-tags.php', array( $this, 'maybe_highlight_menu' ) );
|
|
|
|
|
|
|
|
|
89 |
|
90 |
// Clear listing page cache.
|
91 |
add_filter( 'pre_delete_post', array( $this, 'before_delete_post' ), 10, 2 );
|
@@ -96,6 +99,9 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
96 |
require_once WPBDP_INC . 'controllers/class-smtp.php';
|
97 |
WPBDP_SMTP_Controller::load_hooks();
|
98 |
|
|
|
|
|
|
|
99 |
$this->listings = new WPBDP_Admin_Listings();
|
100 |
$this->csv_import = new WPBDP_CSVImportAdmin();
|
101 |
$this->csv_export = new WPBDP_Admin_CSVExport();
|
@@ -290,11 +296,13 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
290 |
}
|
291 |
|
292 |
function admin_menu() {
|
|
|
|
|
293 |
if ( ! current_user_can( 'manage_categories' ) ) {
|
294 |
return;
|
295 |
}
|
296 |
|
297 |
-
$menu_id =
|
298 |
|
299 |
add_menu_page(
|
300 |
__( 'Business Directory Admin', 'business-directory-plugin' ),
|
@@ -341,18 +349,34 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
341 |
);
|
342 |
}
|
343 |
|
344 |
-
$label = '<span style="color:#
|
345 |
add_submenu_page( $menu_id, __( 'Business Directory', 'business-directory-plugin' ) . ' | ' . __( 'Modules', 'business-directory-plugin' ), $label, 'install_plugins', 'wpbdp-addons', 'WPBDP_Show_Modules::list_addons' );
|
346 |
|
347 |
do_action( 'wpbdp_admin_menu', $menu_id );
|
348 |
|
|
|
|
|
349 |
if ( empty( $GLOBALS['submenu'] ) || empty( $GLOBALS['submenu'][ $menu_id ] ) ) {
|
350 |
return;
|
351 |
}
|
352 |
|
353 |
// Handle some special menu items.
|
354 |
-
|
|
|
|
|
355 |
if ( ! isset( $this->menu[ $menu_item[2] ] ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
continue;
|
357 |
}
|
358 |
|
@@ -362,8 +386,21 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
362 |
$menu_item[2] = $menu_item_data['url'];
|
363 |
}
|
364 |
}
|
|
|
|
|
|
|
|
|
365 |
}
|
366 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
/**
|
368 |
* Removed the dashboard wpbdp_admin submenu.
|
369 |
*
|
@@ -372,17 +409,54 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
372 |
* @since 5.7.3
|
373 |
*/
|
374 |
public function hide_menu() {
|
375 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
|
377 |
if ( current_user_can( 'administrator' ) ) {
|
378 |
-
remove_menu_page(
|
379 |
} else {
|
380 |
$this->maybe_restore_regions_submenu();
|
381 |
-
remove_menu_page(
|
382 |
}
|
383 |
-
|
|
|
384 |
}
|
385 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
/**
|
387 |
* Combine submenus from post type and wpbdp_admin
|
388 |
* together and asign it to wpbdp_admin
|
@@ -392,14 +466,29 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
392 |
public function admin_menu_combine() {
|
393 |
global $submenu;
|
394 |
|
395 |
-
$cpt_menu =
|
396 |
-
$admin_menu =
|
397 |
|
398 |
if ( isset( $submenu[ $cpt_menu ] ) && isset( $submenu[ $admin_menu ] ) ) {
|
399 |
-
|
|
|
400 |
}
|
401 |
}
|
402 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
/**
|
404 |
* @since 5.0
|
405 |
*/
|
@@ -447,7 +536,7 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
447 |
|
448 |
$item = $this->menu[ $plugin_page ];
|
449 |
$slug = $plugin_page;
|
450 |
-
$callback = $item['callback'];
|
451 |
|
452 |
// Simple callback view are not processed here.
|
453 |
if ( $callback && is_callable( $callback ) ) {
|
@@ -457,11 +546,13 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
457 |
$id = str_replace( array( 'wpbdp-admin-', 'wpbdp_admin_' ), '', $slug );
|
458 |
|
459 |
$candidates = array(
|
460 |
-
$item['file'],
|
461 |
WPBDP_INC . 'admin/controllers/class-admin-' . $id . '.php',
|
462 |
WPBDP_INC . 'admin/class-admin-' . $id . '.php',
|
463 |
WPBDP_INC . 'admin/' . $id . '.php',
|
464 |
);
|
|
|
|
|
465 |
foreach ( $candidates as $c ) {
|
466 |
if ( $c && file_exists( $c ) ) {
|
467 |
require_once $c;
|
@@ -573,7 +664,7 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
573 |
|
574 |
$menu_item = wp_list_filter(
|
575 |
$menu,
|
576 |
-
array( 2 =>
|
577 |
);
|
578 |
|
579 |
if ( ! empty( $menu_item ) ) {
|
@@ -667,28 +758,58 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
667 |
return;
|
668 |
}
|
669 |
|
670 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
671 |
$res->send();
|
672 |
}
|
673 |
|
674 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
if ( ! current_user_can( 'administrator' ) ) {
|
676 |
-
|
677 |
-
|
678 |
|
679 |
$this->upgrade_bar();
|
680 |
|
681 |
-
|
682 |
-
|
683 |
-
|
|
|
|
|
684 |
|
685 |
-
|
686 |
-
|
687 |
-
|
|
|
688 |
|
689 |
-
|
|
|
|
|
|
|
690 |
|
691 |
-
|
|
|
|
|
692 |
|
693 |
foreach ( $this->messages as $msg ) {
|
694 |
$msg_sha1 = sha1( is_array( $msg ) ? $msg[0] : $msg );
|
@@ -699,17 +820,22 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
699 |
|
700 |
$this->displayed_warnings[] = $msg_sha1;
|
701 |
|
|
|
|
|
702 |
if ( is_array( $msg ) ) {
|
703 |
-
$class = isset( $msg[1] ) ? $msg[1] :
|
704 |
$text = isset( $msg[0] ) ? $msg[0] : '';
|
705 |
-
$extra = isset( $msg[2] ) && is_array( $msg[2] ) ? $msg[2] :
|
706 |
} else {
|
707 |
-
$class = 'updated';
|
708 |
$text = $msg;
|
709 |
-
$extra = array();
|
710 |
}
|
711 |
|
712 |
-
|
|
|
|
|
|
|
|
|
|
|
713 |
|
714 |
echo '<div class="wpbdp-notice notice ' . esc_attr( $class ) . '">';
|
715 |
echo '<p>' . $text . '</p>';
|
@@ -750,7 +876,7 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
750 |
return;
|
751 |
}
|
752 |
|
753 |
-
_deprecated_function( __METHOD__, '5.15.3', 'The classes in an admin notice are outdated: ' . $class );
|
754 |
$classes = str_replace( $find, $replace, $classes );
|
755 |
$class = implode( ' ', $classes );
|
756 |
}
|
@@ -770,7 +896,7 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
770 |
return;
|
771 |
}
|
772 |
?>
|
773 |
-
<div class="wpbdp-notice wpbdp-upgrade-bar">
|
774 |
You're using Business Directory Plugin Lite. To unlock more features consider
|
775 |
<a href="<?php echo esc_url( wpbdp_admin_upgrade_link( 'upgrade-bar' ) ); ?>">
|
776 |
upgrading to premium.
|
@@ -1115,7 +1241,7 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
1115 |
);
|
1116 |
$message .= '</p>';
|
1117 |
|
1118 |
-
$this->messages[] = array( $message, 'error' );
|
1119 |
}
|
1120 |
|
1121 |
/**
|
@@ -1184,18 +1310,16 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
1184 |
}
|
1185 |
|
1186 |
// Registration disabled message.
|
1187 |
-
if ( wpbdp_get_option( 'require-login' )
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
array( 'dismissible-id' => 'registration_disabled' ),
|
1198 |
-
);
|
1199 |
}
|
1200 |
}
|
1201 |
|
@@ -1221,15 +1345,9 @@ if ( ! class_exists( 'WPBDP_Admin' ) ) {
|
|
1221 |
}
|
1222 |
|
1223 |
public function maybe_highlight_menu() {
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
return;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
if ( is_object( $post ) && $post->post_type != WPBDP_POST_TYPE ) {
|
1231 |
-
return;
|
1232 |
-
}
|
1233 |
|
1234 |
echo '<script>jQuery(document).ready(function(){wpbdpSelectSubnav();});</script>';
|
1235 |
}
|
28 |
class WPBDP_Admin {
|
29 |
|
30 |
private $menu = array();
|
31 |
+
private $menu_id = 'wpbdp_admin';
|
32 |
private $current_controller = null;
|
33 |
private $current_controller_output = '';
|
34 |
|
45 |
add_action( 'admin_init', array( &$this, 'process_admin_action' ), 999 );
|
46 |
add_action( 'admin_init', array( $this, 'register_listings_views' ) );
|
47 |
|
48 |
+
add_action( 'admin_notices', array( $this, 'prepare_admin_notices' ) );
|
49 |
add_action( 'wp_ajax_wpbdp_dismiss_review', array( &$this, 'maybe_dismiss_review' ) );
|
50 |
|
51 |
add_action( 'admin_enqueue_scripts', array( $this, 'init_scripts' ) );
|
52 |
|
53 |
// Adds admin menus.
|
54 |
add_action( 'admin_menu', array( &$this, 'admin_menu' ) );
|
|
|
|
|
55 |
add_action( 'admin_head', array( &$this, 'hide_menu' ) );
|
56 |
|
57 |
// Enables reordering of admin menus.
|
85 |
add_filter( 'admin_head-post.php', array( $this, 'maybe_highlight_menu' ) );
|
86 |
add_filter( 'admin_head-edit.php', array( $this, 'maybe_highlight_menu' ) );
|
87 |
add_filter( 'admin_head-edit-tags.php', array( $this, 'maybe_highlight_menu' ) );
|
88 |
+
add_filter( 'admin_head-term.php', array( $this, 'maybe_highlight_menu' ) );
|
89 |
+
add_filter( 'admin_head-directory_page_wpbdp-admin-fees', array( $this, 'maybe_highlight_menu' ) );
|
90 |
+
add_filter( 'admin_head-directory_page_wpbdp_admin_formfields', array( $this, 'maybe_highlight_menu' ) );
|
91 |
+
add_filter( 'admin_head-directory_page_wpbdp_admin_csv', array( $this, 'maybe_highlight_menu' ) );
|
92 |
|
93 |
// Clear listing page cache.
|
94 |
add_filter( 'pre_delete_post', array( $this, 'before_delete_post' ), 10, 2 );
|
99 |
require_once WPBDP_INC . 'controllers/class-smtp.php';
|
100 |
WPBDP_SMTP_Controller::load_hooks();
|
101 |
|
102 |
+
require_once WPBDP_PATH . 'includes/admin/helpers/class-notices.php';
|
103 |
+
WPBDP_Admin_Notices::load_hooks();
|
104 |
+
|
105 |
$this->listings = new WPBDP_Admin_Listings();
|
106 |
$this->csv_import = new WPBDP_CSVImportAdmin();
|
107 |
$this->csv_export = new WPBDP_Admin_CSVExport();
|
296 |
}
|
297 |
|
298 |
function admin_menu() {
|
299 |
+
add_action( 'admin_menu', array( &$this, 'maybe_add_themes_update_count' ), 20 );
|
300 |
+
|
301 |
if ( ! current_user_can( 'manage_categories' ) ) {
|
302 |
return;
|
303 |
}
|
304 |
|
305 |
+
$menu_id = $this->menu_id;
|
306 |
|
307 |
add_menu_page(
|
308 |
__( 'Business Directory Admin', 'business-directory-plugin' ),
|
349 |
);
|
350 |
}
|
351 |
|
352 |
+
$label = '<span style="color:#1da867">' . __( 'Modules', 'business-directory-plugin' ) . '</span>';
|
353 |
add_submenu_page( $menu_id, __( 'Business Directory', 'business-directory-plugin' ) . ' | ' . __( 'Modules', 'business-directory-plugin' ), $label, 'install_plugins', 'wpbdp-addons', 'WPBDP_Show_Modules::list_addons' );
|
354 |
|
355 |
do_action( 'wpbdp_admin_menu', $menu_id );
|
356 |
|
357 |
+
$this->admin_menu_combine();
|
358 |
+
|
359 |
if ( empty( $GLOBALS['submenu'] ) || empty( $GLOBALS['submenu'][ $menu_id ] ) ) {
|
360 |
return;
|
361 |
}
|
362 |
|
363 |
// Handle some special menu items.
|
364 |
+
$prepend = array();
|
365 |
+
|
366 |
+
foreach ( $GLOBALS['submenu'][ $menu_id ] as &$menu_item ) {
|
367 |
if ( ! isset( $this->menu[ $menu_item[2] ] ) ) {
|
368 |
+
$new = array(
|
369 |
+
$menu_item[2] => array(
|
370 |
+
'title' => $menu_item[0],
|
371 |
+
),
|
372 |
+
);
|
373 |
+
// Add in front of the existing nav items.
|
374 |
+
if ( strpos( $menu_item[2], 'post_type' ) ) {
|
375 |
+
$prepend = $prepend + $new;
|
376 |
+
} else {
|
377 |
+
$this->menu = $this->menu + $new;
|
378 |
+
}
|
379 |
+
|
380 |
continue;
|
381 |
}
|
382 |
|
386 |
$menu_item[2] = $menu_item_data['url'];
|
387 |
}
|
388 |
}
|
389 |
+
|
390 |
+
if ( ! empty( $prepend ) ) {
|
391 |
+
$this->menu = $prepend + $this->menu;
|
392 |
+
}
|
393 |
}
|
394 |
|
395 |
+
/**
|
396 |
+
* Get the menu to piece together tabs.
|
397 |
+
*
|
398 |
+
* @since 6.0
|
399 |
+
*/
|
400 |
+
public function get_menu() {
|
401 |
+
return $this->menu;
|
402 |
+
}
|
403 |
+
|
404 |
/**
|
405 |
* Removed the dashboard wpbdp_admin submenu.
|
406 |
*
|
409 |
* @since 5.7.3
|
410 |
*/
|
411 |
public function hide_menu() {
|
412 |
+
global $submenu;
|
413 |
+
|
414 |
+
$menu_id = $this->menu_id;
|
415 |
+
if ( empty( $submenu[ $menu_id ] ) ) {
|
416 |
+
return;
|
417 |
+
}
|
418 |
+
|
419 |
+
$top_level = $this->top_level_nav();
|
420 |
+
$top_level[] = 'edit.php?post_type=' . WPBDP_POST_TYPE;
|
421 |
+
|
422 |
+
foreach ( $submenu[ $menu_id ] as $menu ) {
|
423 |
+
$key = $menu[2];
|
424 |
+
if ( ! in_array( $key, $top_level, true ) ) {
|
425 |
+
// Remove all the menu items that are included in the combined page.
|
426 |
+
remove_submenu_page( $menu_id, $key );
|
427 |
+
}
|
428 |
+
}
|
429 |
+
|
430 |
+
remove_submenu_page( $menu_id, 'wpbdp-debug-info' ); // This page isn't used anymore.
|
431 |
|
432 |
if ( current_user_can( 'administrator' ) ) {
|
433 |
+
remove_menu_page( 'edit.php?post_type=' . WPBDP_POST_TYPE );
|
434 |
} else {
|
435 |
$this->maybe_restore_regions_submenu();
|
436 |
+
remove_menu_page( $menu_id );
|
437 |
}
|
438 |
+
|
439 |
+
remove_submenu_page( $menu_id, $menu_id );
|
440 |
}
|
441 |
|
442 |
+
/**
|
443 |
+
* These are the pages that will be hidden from the combined tabs page.
|
444 |
+
*
|
445 |
+
* @since 6.0
|
446 |
+
*/
|
447 |
+
public function top_level_nav() {
|
448 |
+
return array(
|
449 |
+
'wpbdp_settings',
|
450 |
+
'wpbdp-smtp',
|
451 |
+
$this->menu_id,
|
452 |
+
'wpbdp_admin_payments',
|
453 |
+
'post-new.php?post_type=' . WPBDP_POST_TYPE,
|
454 |
+
'wpbdp-addons',
|
455 |
+
'wpbdp-themes',
|
456 |
+
'wpbdp-debug-info', // Exclude from the tabs.
|
457 |
+
);
|
458 |
+
}
|
459 |
+
|
460 |
/**
|
461 |
* Combine submenus from post type and wpbdp_admin
|
462 |
* together and asign it to wpbdp_admin
|
466 |
public function admin_menu_combine() {
|
467 |
global $submenu;
|
468 |
|
469 |
+
$cpt_menu = 'edit.php?post_type=' . WPBDP_POST_TYPE;
|
470 |
+
$admin_menu = $this->menu_id;
|
471 |
|
472 |
if ( isset( $submenu[ $cpt_menu ] ) && isset( $submenu[ $admin_menu ] ) ) {
|
473 |
+
$this->change_menu_name( $submenu[ $cpt_menu ] );
|
474 |
+
$submenu[ $admin_menu ] = array_merge( $submenu[ $cpt_menu ], $submenu[ $admin_menu ] );
|
475 |
}
|
476 |
}
|
477 |
|
478 |
+
/**
|
479 |
+
* Since the top link points to the listings page, the menu name needs to change.
|
480 |
+
* If we add a dashboard, this can be removed.
|
481 |
+
*
|
482 |
+
* @since 6.0
|
483 |
+
*/
|
484 |
+
private function change_menu_name( &$submenu ) {
|
485 |
+
foreach ( $submenu as $k => $menu ) {
|
486 |
+
if ( $menu[0] === __( 'Directory Listings', 'business-directory-plugin' ) ) {
|
487 |
+
$submenu[ $k ][0] = __( 'Directory Content', 'business-directory-plugin' );
|
488 |
+
}
|
489 |
+
}
|
490 |
+
}
|
491 |
+
|
492 |
/**
|
493 |
* @since 5.0
|
494 |
*/
|
536 |
|
537 |
$item = $this->menu[ $plugin_page ];
|
538 |
$slug = $plugin_page;
|
539 |
+
$callback = isset( $item['callback'] ) ? $item['callback'] : false;
|
540 |
|
541 |
// Simple callback view are not processed here.
|
542 |
if ( $callback && is_callable( $callback ) ) {
|
546 |
$id = str_replace( array( 'wpbdp-admin-', 'wpbdp_admin_' ), '', $slug );
|
547 |
|
548 |
$candidates = array(
|
549 |
+
isset( $item['file'] ) ? $item['file'] : '',
|
550 |
WPBDP_INC . 'admin/controllers/class-admin-' . $id . '.php',
|
551 |
WPBDP_INC . 'admin/class-admin-' . $id . '.php',
|
552 |
WPBDP_INC . 'admin/' . $id . '.php',
|
553 |
);
|
554 |
+
$candidates = array_filter( $candidates );
|
555 |
+
|
556 |
foreach ( $candidates as $c ) {
|
557 |
if ( $c && file_exists( $c ) ) {
|
558 |
require_once $c;
|
664 |
|
665 |
$menu_item = wp_list_filter(
|
666 |
$menu,
|
667 |
+
array( 2 => $this->menu_id ) // 2 is the position of an array item which contains URL, it will always be 2!
|
668 |
);
|
669 |
|
670 |
if ( ! empty( $menu_item ) ) {
|
758 |
return;
|
759 |
}
|
760 |
|
761 |
+
$dismissed = get_user_meta( $user_id, 'wpbdp_notice_dismissed', true );
|
762 |
+
if ( ! $dismissed || ! is_array( $dismissed ) ) {
|
763 |
+
$dismissed = array();
|
764 |
+
}
|
765 |
+
$dismissed[] = $id;
|
766 |
+
update_user_meta( $user_id, 'wpbdp_notice_dismissed', $dismissed );
|
767 |
+
|
768 |
$res->send();
|
769 |
}
|
770 |
|
771 |
+
/**
|
772 |
+
* Get all dismissals from the same cell for better db performance.
|
773 |
+
*
|
774 |
+
* @since 6.0
|
775 |
+
*/
|
776 |
+
private function is_notice_dismissed( $id, $user_id = 0 ) {
|
777 |
+
$user_id = $user_id ? $user_id : get_current_user_id();
|
778 |
+
$dismissed = get_user_meta( $user_id, 'wpbdp_notice_dismissed', true );
|
779 |
+
return in_array( $id, (array) $dismissed );
|
780 |
+
}
|
781 |
+
|
782 |
+
/**
|
783 |
+
* Prepare admin notices that should only be checked once.
|
784 |
+
*
|
785 |
+
* @since 6.0
|
786 |
+
*/
|
787 |
+
public function prepare_admin_notices() {
|
788 |
if ( ! current_user_can( 'administrator' ) ) {
|
789 |
+
return;
|
790 |
+
}
|
791 |
|
792 |
$this->upgrade_bar();
|
793 |
|
794 |
+
$this->check_server_requirements();
|
795 |
+
$this->check_setup();
|
796 |
+
$this->check_deprecation_warnings();
|
797 |
+
|
798 |
+
$this->maybe_request_review();
|
799 |
|
800 |
+
do_action( 'wpbdp_admin_notices' );
|
801 |
+
|
802 |
+
$this->admin_notices();
|
803 |
+
}
|
804 |
|
805 |
+
function admin_notices() {
|
806 |
+
if ( ! current_user_can( 'administrator' ) ) {
|
807 |
+
return;
|
808 |
+
}
|
809 |
|
810 |
+
if ( ! isset( $this->displayed_warnings ) ) {
|
811 |
+
$this->displayed_warnings = array();
|
812 |
+
}
|
813 |
|
814 |
foreach ( $this->messages as $msg ) {
|
815 |
$msg_sha1 = sha1( is_array( $msg ) ? $msg[0] : $msg );
|
820 |
|
821 |
$this->displayed_warnings[] = $msg_sha1;
|
822 |
|
823 |
+
$class = 'updated';
|
824 |
+
$extra = array();
|
825 |
if ( is_array( $msg ) ) {
|
826 |
+
$class = isset( $msg[1] ) ? $msg[1] : $class;
|
827 |
$text = isset( $msg[0] ) ? $msg[0] : '';
|
828 |
+
$extra = isset( $msg[2] ) && is_array( $msg[2] ) ? $msg[2] : $extra;
|
829 |
} else {
|
|
|
830 |
$text = $msg;
|
|
|
831 |
}
|
832 |
|
833 |
+
// Check if dismissed.
|
834 |
+
if ( ! empty( $extra['dismissible-id'] ) && $this->is_notice_dismissed( $extra['dismissible-id'] ) ) {
|
835 |
+
continue;
|
836 |
+
}
|
837 |
+
|
838 |
+
$this->maybe_update_notice_classes( $class );
|
839 |
|
840 |
echo '<div class="wpbdp-notice notice ' . esc_attr( $class ) . '">';
|
841 |
echo '<p>' . $text . '</p>';
|
876 |
return;
|
877 |
}
|
878 |
|
879 |
+
//_deprecated_function( __METHOD__, '5.15.3', 'The classes in an admin notice are outdated: ' . $class );
|
880 |
$classes = str_replace( $find, $replace, $classes );
|
881 |
$class = implode( ' ', $classes );
|
882 |
}
|
896 |
return;
|
897 |
}
|
898 |
?>
|
899 |
+
<div class="wpbdp-notice wpbdp-upgrade-bar wpbdp-inline-notice">
|
900 |
You're using Business Directory Plugin Lite. To unlock more features consider
|
901 |
<a href="<?php echo esc_url( wpbdp_admin_upgrade_link( 'upgrade-bar' ) ); ?>">
|
902 |
upgrading to premium.
|
1241 |
);
|
1242 |
$message .= '</p>';
|
1243 |
|
1244 |
+
$this->messages[] = array( $message, 'error wpbdp-inline-notice' );
|
1245 |
}
|
1246 |
|
1247 |
/**
|
1310 |
}
|
1311 |
|
1312 |
// Registration disabled message.
|
1313 |
+
if ( wpbdp_get_option( 'require-login' ) && ! get_option( 'users_can_register' ) ) {
|
1314 |
+
$this->messages[] = array(
|
1315 |
+
sprintf(
|
1316 |
+
__( 'We noticed you want your Business Directory users to register before posting listings, but Registration for your site is currently disabled. Go %1$shere%2$s and check "Anyone can register".', 'business-directory-plugin' ),
|
1317 |
+
'<a href="' . esc_url( admin_url( 'options-general.php' ) ) . '">',
|
1318 |
+
'</a>'
|
1319 |
+
),
|
1320 |
+
'notice-error is-dismissible',
|
1321 |
+
array( 'dismissible-id' => 'registration_disabled' ),
|
1322 |
+
);
|
|
|
|
|
1323 |
}
|
1324 |
}
|
1325 |
|
1345 |
}
|
1346 |
|
1347 |
public function maybe_highlight_menu() {
|
1348 |
+
if ( ! WPBDP_App_Helper::is_bd_post_page() ) {
|
1349 |
+
return;
|
1350 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1351 |
|
1352 |
echo '<script>jQuery(document).ready(function(){wpbdpSelectSubnav();});</script>';
|
1353 |
}
|
includes/admin/class-education.php
CHANGED
@@ -43,25 +43,39 @@ class WPBDP_Admin_Education {
|
|
43 |
}
|
44 |
|
45 |
$message = wp_kses_post( $tip['tip'] );
|
46 |
-
$message .=
|
47 |
-
$message .= esc_html( $tip['cta'] );
|
48 |
-
$message .= '</a>';
|
49 |
|
50 |
self::show_tip_message( $message );
|
51 |
}
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
/**
|
54 |
* @since 5.10
|
55 |
*/
|
56 |
public static function show_tip_message( $message ) {
|
57 |
?>
|
58 |
-
<
|
59 |
<svg width="20" height="22" viewBox="0 0 20 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 1.00003L1 13H10L9 21L19 9.00003H10L11 1.00003Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
60 |
<?php
|
61 |
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
62 |
echo $message; // already escaped.
|
63 |
?>
|
64 |
-
</
|
65 |
<?php
|
66 |
}
|
67 |
|
@@ -99,12 +113,15 @@ class WPBDP_Admin_Education {
|
|
99 |
'discounts' => array(
|
100 |
'requires' => 'discount-codes',
|
101 |
'tip' => 'Offer discount & coupon codes to your paid listing customers.',
|
102 |
-
'cta' => 'Upgrade to Pro.',
|
103 |
),
|
104 |
'migrator' => array(
|
105 |
'requires' => 'migrate',
|
106 |
'tip' => 'Need to export, backup, or move your directory settings and listings?',
|
107 |
),
|
|
|
|
|
|
|
|
|
108 |
'install-premium' => array(
|
109 |
'requires' => 'premium',
|
110 |
'tip' => 'Install modules with one click, get table listings, abandonment emails, and more.',
|
@@ -113,7 +130,7 @@ class WPBDP_Admin_Education {
|
|
113 |
),
|
114 |
'table' => array(
|
115 |
'requires' => 'premium',
|
116 |
-
'tip' => '<
|
117 |
),
|
118 |
);
|
119 |
// TODO: Show maps and attachments.
|
43 |
}
|
44 |
|
45 |
$message = wp_kses_post( $tip['tip'] );
|
46 |
+
$message .= self::render_cta( $tip );
|
|
|
|
|
47 |
|
48 |
self::show_tip_message( $message );
|
49 |
}
|
50 |
|
51 |
+
/**
|
52 |
+
* Render the cta.
|
53 |
+
*
|
54 |
+
* @param array $tip The current tip.
|
55 |
+
*
|
56 |
+
* @since 6.0
|
57 |
+
*
|
58 |
+
* @return string
|
59 |
+
*/
|
60 |
+
public static function render_cta( $tip ) {
|
61 |
+
$cta = '<a href="' . esc_url( $tip['link'] ) . '" target="_blank" rel="noopener">';
|
62 |
+
$cta .= esc_html( $tip['cta'] );
|
63 |
+
$cta .= '</a>';
|
64 |
+
return $cta;
|
65 |
+
}
|
66 |
+
|
67 |
/**
|
68 |
* @since 5.10
|
69 |
*/
|
70 |
public static function show_tip_message( $message ) {
|
71 |
?>
|
72 |
+
<div class="wpbdp-pro-tip">
|
73 |
<svg width="20" height="22" viewBox="0 0 20 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 1.00003L1 13H10L9 21L19 9.00003H10L11 1.00003Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
74 |
<?php
|
75 |
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
76 |
echo $message; // already escaped.
|
77 |
?>
|
78 |
+
</div>
|
79 |
<?php
|
80 |
}
|
81 |
|
113 |
'discounts' => array(
|
114 |
'requires' => 'discount-codes',
|
115 |
'tip' => 'Offer discount & coupon codes to your paid listing customers.',
|
|
|
116 |
),
|
117 |
'migrator' => array(
|
118 |
'requires' => 'migrate',
|
119 |
'tip' => 'Need to export, backup, or move your directory settings and listings?',
|
120 |
),
|
121 |
+
'categories' => array(
|
122 |
+
'requires' => 'categories',
|
123 |
+
'tip' => 'Want to show a list of images for your categories?',
|
124 |
+
),
|
125 |
'install-premium' => array(
|
126 |
'requires' => 'premium',
|
127 |
'tip' => 'Install modules with one click, get table listings, abandonment emails, and more.',
|
130 |
),
|
131 |
'table' => array(
|
132 |
'requires' => 'premium',
|
133 |
+
'tip' => 'Show listings in a grid or table. <img src="' . esc_url( WPBDP_ASSETS_URL . 'images/premium-layout.svg' ) . '" alt="Directory listing layout setting" style="max-width:645px" />',
|
134 |
),
|
135 |
);
|
136 |
// TODO: Show maps and attachments.
|
includes/admin/controllers/class-admin-csv.php
CHANGED
@@ -30,24 +30,35 @@ class WPBDP__Admin__Csv extends WPBDP__Admin__Controller {
|
|
30 |
ob_start();
|
31 |
call_user_func( array( $this->{$current_tab}, 'dispatch' ) );
|
32 |
$output = ob_get_clean();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
-
|
35 |
-
|
36 |
-
?>
|
37 |
-
|
38 |
-
<?php if ( 'csv_import' == $current_tab ) : ?>
|
39 |
-
<div class="wpbdp-csv-import-top-buttons">
|
40 |
-
<a href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp_admin_csv&action=example-csv' ) ); ?>" class="button"><?php _ex( 'See an example CSV import file', 'admin csv-import', 'business-directory-plugin' ); ?></a>
|
41 |
-
<a href="#help" class="button"><?php esc_html_e( 'Help', 'business-directory-plugin' ); ?></a>
|
42 |
-
</div>
|
43 |
-
<?php endif; ?>
|
44 |
-
|
45 |
-
|
46 |
-
<h2 class="nav-tab-wrapper">
|
47 |
-
<a class="nav-tab <?php echo 'csv_import' == $current_tab ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp_admin_csv&tab=csv_import' ) ); ?>"><span class="dashicons dashicons-download"></span> <?php _ex( 'Import', 'admin csv', 'business-directory-plugin' ); ?></a>
|
48 |
-
<a class="nav-tab <?php echo 'csv_export' == $current_tab ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp_admin_csv&tab=csv_export' ) ); ?>"><span class="dashicons dashicons-upload"></span> <?php _ex( 'Export', 'admin csv', 'business-directory-plugin' ); ?></a>
|
49 |
-
</h2>
|
50 |
-
<?php
|
51 |
echo $output;
|
52 |
echo wpbdp_admin_footer();
|
53 |
}
|
30 |
ob_start();
|
31 |
call_user_func( array( $this->{$current_tab}, 'dispatch' ) );
|
32 |
$output = ob_get_clean();
|
33 |
+
$args = array(
|
34 |
+
'tabbed_title' => true,
|
35 |
+
'titles' => array(
|
36 |
+
'csv_import' => array(
|
37 |
+
'url' => esc_url( admin_url( 'admin.php?page=wpbdp_admin_csv&tab=csv_import' ) ),
|
38 |
+
'name' => __( 'Import', 'business-directory-plugin' ),
|
39 |
+
),
|
40 |
+
'csv_export' => array(
|
41 |
+
'url' => esc_url( admin_url( 'admin.php?page=wpbdp_admin_csv&tab=csv_export' ) ),
|
42 |
+
'name' => __( 'Export', 'business-directory-plugin' )
|
43 |
+
),
|
44 |
+
),
|
45 |
+
'current_tab' => $current_tab,
|
46 |
+
);
|
47 |
+
if ( 'csv_import' === $current_tab ) {
|
48 |
+
$args['buttons'] = array(
|
49 |
+
'example-csv' => array(
|
50 |
+
'label' => __( 'See an example CSV import file', 'business-directory-plugin' ),
|
51 |
+
'url' => admin_url( 'admin.php?page=wpbdp_admin_csv&action=example-csv' ),
|
52 |
+
),
|
53 |
+
'help' => array(
|
54 |
+
'label' => __( 'Help', 'business-directory-plugin' ),
|
55 |
+
'url' => '#help',
|
56 |
+
),
|
57 |
+
);
|
58 |
+
}
|
59 |
|
60 |
+
echo wpbdp_admin_header( $args );
|
61 |
+
echo wpbdp_admin_notices();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
echo $output;
|
63 |
echo wpbdp_admin_footer();
|
64 |
}
|
includes/admin/controllers/class-admin-fees.php
CHANGED
@@ -54,10 +54,46 @@ class WPBDP__Admin__Fees extends WPBDP__Admin__Controller {
|
|
54 |
return array(
|
55 |
'table' => $table,
|
56 |
'order_options' => $order_options,
|
57 |
-
|
|
|
58 |
);
|
59 |
}
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
function add_fee() {
|
62 |
return $this->insert_or_update_fee( 'insert' );
|
63 |
}
|
@@ -88,16 +124,18 @@ class WPBDP__Admin__Fees extends WPBDP__Admin__Controller {
|
|
88 |
if ( ! isset( $posted_values['recurring'] ) ) {
|
89 |
$posted_values['recurring'] = 0;
|
90 |
}
|
|
|
91 |
} else {
|
92 |
$posted_values = array();
|
|
|
93 |
}
|
94 |
|
95 |
-
$images_changed = false;
|
96 |
if ( 'insert' === $mode ) {
|
97 |
$fee = new WPBDP__Fee_Plan( $posted_values );
|
|
|
98 |
} else {
|
99 |
-
$fee
|
100 |
-
$images_changed = (int) $fee->images !==
|
101 |
}
|
102 |
|
103 |
if ( ! $posted_values ) {
|
@@ -156,7 +194,7 @@ class WPBDP__Admin__Fees extends WPBDP__Admin__Controller {
|
|
156 |
'</a>',
|
157 |
$total_listings
|
158 |
),
|
159 |
-
'updated wpbdp-plan-updated'
|
160 |
);
|
161 |
}
|
162 |
|
54 |
return array(
|
55 |
'table' => $table,
|
56 |
'order_options' => $order_options,
|
57 |
+
'current_order' => wpbdp_get_option( 'fee-order' ),
|
58 |
+
'gateways' => $this->available_gateways(),
|
59 |
);
|
60 |
}
|
61 |
|
62 |
+
/**
|
63 |
+
* Get a list of gateways that aren't currently being used.
|
64 |
+
*
|
65 |
+
* @since 6.0
|
66 |
+
*/
|
67 |
+
private function available_gateways() {
|
68 |
+
$modules = array(
|
69 |
+
array( 'stripe', 'stripe-payment-module', 'Stripe' ),
|
70 |
+
array( 'paypal', 'paypal-gateway-module', 'PayPal' ),
|
71 |
+
array( 'payfast', 'payfast-payment-module', 'PayFast' ),
|
72 |
+
);
|
73 |
+
|
74 |
+
$gateways = array();
|
75 |
+
$modules_obj = wpbdp()->modules;
|
76 |
+
foreach ( $modules as $mod_info ) {
|
77 |
+
if ( ! $modules_obj->is_loaded( $mod_info[0] ) ) {
|
78 |
+
$mod_info['link'] = wpbdp_admin_upgrade_link( 'get-gateway', '/downloads/' . $mod_info[1] );
|
79 |
+
$mod_info['cta'] = __( 'Upgrade', 'business-directory-plugin' );
|
80 |
+
$gateways[] = $mod_info;
|
81 |
+
}
|
82 |
+
}
|
83 |
+
|
84 |
+
if ( ! wpbdp_payments_possible() ) {
|
85 |
+
$gateways[] = array(
|
86 |
+
'',
|
87 |
+
'authorize-net-payment-module',
|
88 |
+
'Authorize.net',
|
89 |
+
'link' => admin_url( 'admin.php?page=wpbdp_settings&tab=payment' ),
|
90 |
+
'cta' => __( 'Set Up', 'business-directory-plugin' ),
|
91 |
+
);
|
92 |
+
}
|
93 |
+
|
94 |
+
return $gateways;
|
95 |
+
}
|
96 |
+
|
97 |
function add_fee() {
|
98 |
return $this->insert_or_update_fee( 'insert' );
|
99 |
}
|
124 |
if ( ! isset( $posted_values['recurring'] ) ) {
|
125 |
$posted_values['recurring'] = 0;
|
126 |
}
|
127 |
+
$images = (int) $posted_values['images'];
|
128 |
} else {
|
129 |
$posted_values = array();
|
130 |
+
$images = false;
|
131 |
}
|
132 |
|
|
|
133 |
if ( 'insert' === $mode ) {
|
134 |
$fee = new WPBDP__Fee_Plan( $posted_values );
|
135 |
+
$images_changed = false;
|
136 |
} else {
|
137 |
+
$fee = $this->get_or_die();
|
138 |
+
$images_changed = $images !== false && (int) $fee->images !== $images;
|
139 |
}
|
140 |
|
141 |
if ( ! $posted_values ) {
|
194 |
'</a>',
|
195 |
$total_listings
|
196 |
),
|
197 |
+
'updated wpbdp-plan-updated is-dismissible'
|
198 |
);
|
199 |
}
|
200 |
|
includes/admin/controllers/class-admin-listings.php
CHANGED
@@ -709,32 +709,42 @@ class WPBDP_Admin_Listings {
|
|
709 |
* @since 5.18
|
710 |
*/
|
711 |
public function ajax_assign_plan_to_listing() {
|
|
|
712 |
if ( ! current_user_can( 'edit_posts' ) ) {
|
713 |
wp_send_json_error();
|
714 |
}
|
715 |
-
|
716 |
$listing_id = wpbdp_get_var( array( 'param' => 'listing_id' ), 'post' );
|
717 |
$plan_id = wpbdp_get_var( array( 'param' => 'plan_id' ), 'post' );
|
718 |
if ( ! $listing_id || ! $plan_id ) {
|
719 |
wp_send_json_error();
|
720 |
}
|
721 |
-
|
|
|
722 |
$current_plan = $listing->get_fee_plan();
|
723 |
|
724 |
if ( ! $current_plan || (int) $current_plan->fee_id !== (int) $plan_id ) {
|
725 |
$listing->set_fee_plan( $plan_id );
|
726 |
}
|
727 |
-
|
728 |
-
$
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
738 |
}
|
739 |
|
740 |
public function _add_tag_cloud( $tags ) {
|
709 |
* @since 5.18
|
710 |
*/
|
711 |
public function ajax_assign_plan_to_listing() {
|
712 |
+
check_ajax_referer( 'wpbdp_ajax', 'nonce' );
|
713 |
if ( ! current_user_can( 'edit_posts' ) ) {
|
714 |
wp_send_json_error();
|
715 |
}
|
716 |
+
|
717 |
$listing_id = wpbdp_get_var( array( 'param' => 'listing_id' ), 'post' );
|
718 |
$plan_id = wpbdp_get_var( array( 'param' => 'plan_id' ), 'post' );
|
719 |
if ( ! $listing_id || ! $plan_id ) {
|
720 |
wp_send_json_error();
|
721 |
}
|
722 |
+
|
723 |
+
$listing = wpbdp_get_listing( $listing_id );
|
724 |
$current_plan = $listing->get_fee_plan();
|
725 |
|
726 |
if ( ! $current_plan || (int) $current_plan->fee_id !== (int) $plan_id ) {
|
727 |
$listing->set_fee_plan( $plan_id );
|
728 |
}
|
729 |
+
|
730 |
+
$new_plan = $listing->get_fee_plan();
|
731 |
+
$fee = $new_plan->fee;
|
732 |
+
$expiration = $fee->calculate_expiration_time();
|
733 |
+
$date_output = $expiration ? wpbdp_date_full_format( strtotime( $expiration ) ) : __( 'Never', 'business-directory-plugin' );
|
734 |
+
|
735 |
+
wp_send_json_success(
|
736 |
+
array(
|
737 |
+
'id' => $fee->id,
|
738 |
+
'label' => $fee->label,
|
739 |
+
'amount' => $fee->amount ? wpbdp_currency_format( $fee->amount ) : '',
|
740 |
+
'days' => $fee->days,
|
741 |
+
'expiration_date' => $expiration,
|
742 |
+
'formated_date' => $date_output,
|
743 |
+
'images' => $fee->images,
|
744 |
+
'sticky' => $fee->sticky ? __( 'Yes', 'business-directory-plugin' ) : __( 'No', 'business-directory-plugin' ),
|
745 |
+
'recurring' => $fee->recurring ? __( 'Yes', 'business-directory-plugin' ) : __( 'No', 'business-directory-plugin' ),
|
746 |
+
)
|
747 |
+
);
|
748 |
}
|
749 |
|
750 |
public function _add_tag_cloud( $tags ) {
|
includes/admin/controllers/class-admin-payments.php
CHANGED
@@ -7,8 +7,7 @@ require_once WPBDP_PATH . 'includes/models/class-payment.php';
|
|
7 |
class WPBDP__Admin__Payments extends WPBDP__Admin__Controller {
|
8 |
|
9 |
function _enqueue_scripts() {
|
10 |
-
|
11 |
-
wpbdp_enqueue_jquery_ui_style();
|
12 |
parent::_enqueue_scripts();
|
13 |
}
|
14 |
|
7 |
class WPBDP__Admin__Payments extends WPBDP__Admin__Controller {
|
8 |
|
9 |
function _enqueue_scripts() {
|
10 |
+
WPBDP__Assets::load_datepicker();
|
|
|
11 |
parent::_enqueue_scripts();
|
12 |
}
|
13 |
|
includes/admin/controllers/class-form-fields-admin.php
CHANGED
@@ -132,7 +132,7 @@ class WPBDP_FormFieldsAdmin {
|
|
132 |
),
|
133 |
)
|
134 |
);
|
135 |
-
$html .= '<div id="wpbdp-listing-form-preview">';
|
136 |
$html .= wpbdp_admin_notices();
|
137 |
$html .= wpbdp_capture_action( 'wpbdp_admin_form_fields_before_preview' );
|
138 |
|
@@ -215,7 +215,7 @@ class WPBDP_FormFieldsAdmin {
|
|
215 |
'<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_settings&tab=email' ) ) . '">',
|
216 |
$msg
|
217 |
);
|
218 |
-
wpbdp_admin_message( $msg, 'error' );
|
219 |
}
|
220 |
|
221 |
wpbdp_render_page(
|
@@ -294,9 +294,9 @@ class WPBDP_FormFieldsAdmin {
|
|
294 |
$ret = $field->delete();
|
295 |
|
296 |
if ( is_wp_error( $ret ) ) {
|
297 |
-
wpbdp_admin_message( $ret->get_error_message(), 'error
|
298 |
} else {
|
299 |
-
wpbdp_admin_message( _x( 'Field deleted.', 'form-fields admin', 'business-directory-plugin' ), 'success
|
300 |
|
301 |
$quick_search_fields = wpbdp_get_option( 'quick-search-fields' );
|
302 |
$field_id = wpbdp_get_var( array( 'param' => 'id' ), 'request' );
|
132 |
),
|
133 |
)
|
134 |
);
|
135 |
+
$html .= '<div id="wpbdp-submit-listing" class="wpbdp-listing-form-preview wpbdp-submit-page">';
|
136 |
$html .= wpbdp_admin_notices();
|
137 |
$html .= wpbdp_capture_action( 'wpbdp_admin_form_fields_before_preview' );
|
138 |
|
215 |
'<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_settings&tab=email' ) ) . '">',
|
216 |
$msg
|
217 |
);
|
218 |
+
wpbdp_admin_message( $msg, 'notice-error is-dismissible', array( 'dismissible-id' => 'public_emails' ) );
|
219 |
}
|
220 |
|
221 |
wpbdp_render_page(
|
294 |
$ret = $field->delete();
|
295 |
|
296 |
if ( is_wp_error( $ret ) ) {
|
297 |
+
wpbdp_admin_message( $ret->get_error_message(), 'error' );
|
298 |
} else {
|
299 |
+
wpbdp_admin_message( _x( 'Field deleted.', 'form-fields admin', 'business-directory-plugin' ), 'success' );
|
300 |
|
301 |
$quick_search_fields = wpbdp_get_option( 'quick-search-fields' );
|
302 |
$field_id = wpbdp_get_var( array( 'param' => 'id' ), 'request' );
|
includes/admin/controllers/class-settings-admin.php
CHANGED
@@ -32,7 +32,7 @@ class WPBDP__Settings_Admin {
|
|
32 |
if ( false !== strstr( $hook, 'wpbdp_settings' ) ) {
|
33 |
wp_enqueue_script(
|
34 |
'wpbdp-admin-settings',
|
35 |
-
WPBDP_ASSETS_URL . 'js/admin-settings.js',
|
36 |
array(),
|
37 |
WPBDP_VERSION,
|
38 |
true
|
@@ -131,18 +131,27 @@ class WPBDP__Settings_Admin {
|
|
131 |
* @since 5.9.1
|
132 |
*/
|
133 |
private function add_requirement( $setting ) {
|
134 |
-
|
135 |
-
$reqs_info = array();
|
136 |
|
137 |
-
|
138 |
-
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
-
|
|
|
142 |
}
|
|
|
|
|
143 |
}
|
144 |
|
145 |
public function setting_callback( $setting ) {
|
|
|
|
|
146 |
if ( 'callback' == $setting['type'] ) {
|
147 |
if ( ! empty( $setting['callback'] ) && is_callable( $setting['callback'] ) ) {
|
148 |
$callback_html = call_user_func( $setting['callback'], $setting );
|
@@ -151,6 +160,11 @@ class WPBDP__Settings_Admin {
|
|
151 |
}
|
152 |
} else {
|
153 |
$value = wpbdp()->settings->get_option( $setting['id'] );
|
|
|
|
|
|
|
|
|
|
|
154 |
|
155 |
ob_start();
|
156 |
|
@@ -172,12 +186,43 @@ class WPBDP__Settings_Admin {
|
|
172 |
$this->add_requirement( $setting );
|
173 |
echo '>';
|
174 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
176 |
echo apply_filters( 'wpbdp_admin_settings_render', $callback_html, $setting );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
echo '<span id="' . esc_attr( $setting['id'] ) . '"></span>';
|
178 |
echo '</div>';
|
179 |
}
|
180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
public function setting_tooltip( $tooltip = '' ) {
|
182 |
if ( ! $tooltip ) {
|
183 |
return;
|
@@ -195,61 +240,118 @@ class WPBDP__Settings_Admin {
|
|
195 |
}
|
196 |
|
197 |
public function setting_text_callback( $setting, $value ) {
|
198 |
-
|
199 |
-
|
200 |
-
if ( ! empty( $setting['desc'] ) ) {
|
201 |
-
echo '<span class="wpbdp-setting-description">' . wp_kses_post( $setting['desc'] ) . '</span>';
|
202 |
-
}
|
203 |
}
|
204 |
|
205 |
public function setting_number_callback( $setting, $value ) {
|
206 |
-
|
207 |
-
|
208 |
-
if ( isset( $setting['min'] ) ) {
|
209 |
-
echo 'min="' . $setting['min'] . '"';
|
210 |
-
}
|
211 |
-
|
212 |
-
if ( isset( $setting['step'] ) ) {
|
213 |
-
echo 'step="' . $setting['step'] . '"';
|
214 |
-
}
|
215 |
-
|
216 |
-
if ( isset( $setting['max'] ) ) {
|
217 |
-
echo 'max="' . $setting['max'] . '"';
|
218 |
-
}
|
219 |
-
echo '/>';
|
220 |
-
|
221 |
-
if ( ! empty( $setting['desc'] ) ) {
|
222 |
-
echo '<span class="wpbdp-setting-description">' . wp_kses_post( $setting['desc'] ) . '</span>';
|
223 |
-
}
|
224 |
-
}
|
225 |
|
226 |
public function setting_textarea_callback( $setting, $value ) {
|
227 |
echo '<textarea id="' . $setting['id'] . '" name="wpbdp_settings[' . $setting['id'] . ']" placeholder="' . ( ! empty( $setting['placeholder'] ) ? esc_attr( $setting['placeholder'] ) : '' ) . '">';
|
228 |
echo esc_textarea( $value );
|
229 |
echo '</textarea>';
|
230 |
-
|
231 |
-
if ( ! empty( $setting['desc'] ) ) {
|
232 |
-
echo '<span class="wpbdp-setting-description">' . $setting['desc'] . '</span>';
|
233 |
-
}
|
234 |
}
|
235 |
|
236 |
-
|
237 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
if ( 1 === $save ) {
|
239 |
$value = (bool) $value;
|
240 |
}
|
|
|
|
|
241 |
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
|
246 |
-
|
247 |
-
echo wp_kses_post( $setting['desc'] );
|
248 |
-
}
|
249 |
-
echo '</label>';
|
250 |
|
251 |
-
|
252 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
|
254 |
/**
|
255 |
* Allow a check box to have a value other than 1.
|
@@ -277,10 +379,6 @@ class WPBDP__Settings_Admin {
|
|
277 |
echo '</div>';
|
278 |
}
|
279 |
echo '</div>';
|
280 |
-
|
281 |
-
if ( ! empty( $setting['desc'] ) ) {
|
282 |
-
echo '<span class="wpbdp-setting-description">' . $setting['desc'] . '</span>';
|
283 |
-
}
|
284 |
}
|
285 |
|
286 |
/**
|
@@ -290,7 +388,7 @@ class WPBDP__Settings_Admin {
|
|
290 |
*/
|
291 |
public function setting_hidden_callback( $setting, $value ) {
|
292 |
?>
|
293 |
-
<input type="hidden" value="<?php echo esc_attr( $value ); ?>" name="wpbdp_settings[<?php echo esc_attr( $setting['id'] ); ?>]"/>
|
294 |
<?php
|
295 |
}
|
296 |
|
@@ -306,7 +404,7 @@ class WPBDP__Settings_Admin {
|
|
306 |
echo '<div class="wpbdp-settings-multicheck-options wpbdp-grid">';
|
307 |
$n = 0;
|
308 |
foreach ( $setting['options'] as $option_value => $option_label ) {
|
309 |
-
echo '<div class="wpbdp-settings-multicheck-option wpbdp-
|
310 |
echo '<input type="checkbox" name="wpbdp_settings[' . esc_attr( $setting['id'] ) . '][]" id="wpbdp-' . esc_attr( $setting['id'] . '-checkbox-no-' . $n ) . '" value="' . esc_attr( $option_value ) . '" ' . checked( in_array( $option_value, $value ), true, false ) . ' />';
|
311 |
echo '<label for="wpbdp-' . esc_attr( $setting['id'] . '-checkbox-no-' . $n ) . '">';
|
312 |
echo esc_html( $option_label );
|
@@ -317,18 +415,20 @@ class WPBDP__Settings_Admin {
|
|
317 |
}
|
318 |
|
319 |
echo '</div>';
|
320 |
-
|
321 |
-
if ( ! empty( $setting['desc'] ) ) {
|
322 |
-
echo '<span class="wpbdp-setting-description">' . $setting['desc'] . '</span>';
|
323 |
-
}
|
324 |
}
|
325 |
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
public function setting_select_callback( $setting, $value ) {
|
327 |
if ( empty( $setting['options'] ) ) {
|
328 |
return;
|
329 |
}
|
330 |
|
331 |
-
|
332 |
|
333 |
echo '<select id="' . $setting['id'] . '" name="wpbdp_settings[' . $setting['id'] . ']' . ( $multiple ? '[]' : '' ) . '" ' . ( $multiple ? 'multiple="multiple"' : '' ) . '>';
|
334 |
foreach ( $setting['options'] as $option_value => $option_label ) {
|
@@ -341,12 +441,59 @@ class WPBDP__Settings_Admin {
|
|
341 |
echo '<option value="' . $option_value . '" ' . selected( $selected, true, false ) . '>' . $option_label . '</option>';
|
342 |
}
|
343 |
echo '</select>';
|
344 |
-
|
345 |
-
if ( ! empty( $setting['desc'] ) ) {
|
346 |
-
echo '<span class="wpbdp-setting-description">' . $setting['desc'] . '</span>';
|
347 |
-
}
|
348 |
}
|
349 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
public function setting_file_callback( $setting, $value ) {
|
351 |
$html = '';
|
352 |
$html .= sprintf(
|
@@ -396,10 +543,6 @@ class WPBDP__Settings_Admin {
|
|
396 |
|
397 |
public function setting_url_callback( $setting, $value ) {
|
398 |
echo '<input type="url" id="' . $setting['id'] . '" name="wpbdp_settings[' . $setting['id'] . ']" value="' . esc_attr( $value ) . '" placeholder="' . ( ! empty( $setting['placeholder'] ) ? esc_attr( $setting['placeholder'] ) : '' ) . '" />';
|
399 |
-
|
400 |
-
if ( ! empty( $setting['desc'] ) ) {
|
401 |
-
echo '<span class="wpbdp-setting-description">' . wp_kses_post( $setting['desc'] ) . '</span>';
|
402 |
-
}
|
403 |
}
|
404 |
|
405 |
public function setting_color_callback( $setting, $value ) {
|
@@ -407,10 +550,6 @@ class WPBDP__Settings_Admin {
|
|
407 |
wp_enqueue_style( 'wp-color-picker' );
|
408 |
|
409 |
echo '<input type="text" class="cpa-color-picker" id="' . esc_attr( $setting['id'] ) . '" name="wpbdp_settings[' . esc_attr( $setting['id'] ) . ']" value="' . esc_attr( $value ) . '"/>';
|
410 |
-
|
411 |
-
if ( ! empty( $setting['desc'] ) ) {
|
412 |
-
echo '<span class="wpbdp-setting-description">' . wp_kses_post( $setting['desc'] ) . '</span>';
|
413 |
-
}
|
414 |
}
|
415 |
|
416 |
public function setting_text_template_callback( $setting, $value ) {
|
@@ -459,10 +598,6 @@ class WPBDP__Settings_Admin {
|
|
459 |
'placeholders' => ! empty( $setting['placeholders'] ) ? $setting['placeholders'] : array(),
|
460 |
);
|
461 |
|
462 |
-
if ( ! empty( $setting['desc'] ) ) {
|
463 |
-
echo '<span class="wpbdp-setting-description">' . $setting['desc'] . '</span>';
|
464 |
-
}
|
465 |
-
|
466 |
echo wpbdp_render_page( WPBDP_PATH . 'templates/admin/settings-email.tpl.php', $args );
|
467 |
}
|
468 |
|
@@ -602,7 +737,7 @@ foreach ( $value as $i => $notice ) {
|
|
602 |
|
603 |
ob_start();
|
604 |
?>
|
605 |
-
<div class="wpbdp-expiration-notice-email-schedule-summary">
|
606 |
<?php echo $summary; ?>
|
607 |
</div>
|
608 |
<?php
|
32 |
if ( false !== strstr( $hook, 'wpbdp_settings' ) ) {
|
33 |
wp_enqueue_script(
|
34 |
'wpbdp-admin-settings',
|
35 |
+
WPBDP_ASSETS_URL . 'js/admin-settings.min.js',
|
36 |
array(),
|
37 |
WPBDP_VERSION,
|
38 |
true
|
131 |
* @since 5.9.1
|
132 |
*/
|
133 |
private function add_requirement( $setting ) {
|
134 |
+
$skip = array( 'payments-on' ); // Deprecated settings.
|
|
|
135 |
|
136 |
+
$setting['requirements'] = isset( $setting['requirements'] ) ? (array) $setting['requirements'] : array();
|
137 |
+
$setting['requirements'] = array_diff( $setting['requirements'], $skip );
|
138 |
+
|
139 |
+
if ( empty( $setting['requirements'] ) ) {
|
140 |
+
return;
|
141 |
+
}
|
142 |
+
|
143 |
+
$reqs_info = array();
|
144 |
|
145 |
+
foreach ( $setting['requirements'] as $r ) {
|
146 |
+
$reqs_info[] = array( $r, (bool) wpbdp_get_option( str_replace( '!', '', $r ) ) );
|
147 |
}
|
148 |
+
|
149 |
+
echo ' data-requirements="' . esc_attr( wp_json_encode( $reqs_info ) ) . '"';
|
150 |
}
|
151 |
|
152 |
public function setting_callback( $setting ) {
|
153 |
+
$this->add_grid_class( $setting );
|
154 |
+
|
155 |
if ( 'callback' == $setting['type'] ) {
|
156 |
if ( ! empty( $setting['callback'] ) && is_callable( $setting['callback'] ) ) {
|
157 |
$callback_html = call_user_func( $setting['callback'], $setting );
|
160 |
}
|
161 |
} else {
|
162 |
$value = wpbdp()->settings->get_option( $setting['id'] );
|
163 |
+
if ( empty( $setting['name'] ) && $this->show_label_with_input( $setting ) ) {
|
164 |
+
// Some checkbox settings have a description and no label.
|
165 |
+
$setting['name'] = $setting['desc'];
|
166 |
+
$setting['desc'] = '';
|
167 |
+
}
|
168 |
|
169 |
ob_start();
|
170 |
|
186 |
$this->add_requirement( $setting );
|
187 |
echo '>';
|
188 |
|
189 |
+
$setting['class'] .= ' wpbd-' . $setting['type'];
|
190 |
+
|
191 |
+
echo '<div class="' . esc_attr( $setting['class'] ) . '">';
|
192 |
+
$this->open_grid_div( $setting, 'left' );
|
193 |
+
|
194 |
+
if ( ! $this->show_label_with_input( $setting ) ) {
|
195 |
+
$this->setting_input_label( $setting, 'div', 'wpbdp-setting-label' );
|
196 |
+
$this->setting_input_desc( $setting );
|
197 |
+
}
|
198 |
+
|
199 |
+
$this->close_grid_div( $setting );
|
200 |
+
$this->open_grid_div( $setting, 'right' );
|
201 |
+
|
202 |
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
203 |
echo apply_filters( 'wpbdp_admin_settings_render', $callback_html, $setting );
|
204 |
+
if ( $this->show_label_with_input( $setting ) ) {
|
205 |
+
$this->setting_input_desc( $setting );
|
206 |
+
}
|
207 |
+
|
208 |
+
$this->close_grid_div( $setting );
|
209 |
+
echo '</div>';
|
210 |
+
|
211 |
echo '<span id="' . esc_attr( $setting['id'] ) . '"></span>';
|
212 |
echo '</div>';
|
213 |
}
|
214 |
|
215 |
+
/**
|
216 |
+
* Some field types show the label with the input, like checkboxes and toggles in a grid.
|
217 |
+
*
|
218 |
+
* @since 6.0
|
219 |
+
*
|
220 |
+
* @return bool
|
221 |
+
*/
|
222 |
+
private function show_label_with_input( $setting ) {
|
223 |
+
return $setting['type'] === 'checkbox' || $setting['type'] === 'toggle';
|
224 |
+
}
|
225 |
+
|
226 |
public function setting_tooltip( $tooltip = '' ) {
|
227 |
if ( ! $tooltip ) {
|
228 |
return;
|
240 |
}
|
241 |
|
242 |
public function setting_text_callback( $setting, $value ) {
|
243 |
+
$this->setting_input_text_html( $setting, $value );
|
|
|
|
|
|
|
|
|
244 |
}
|
245 |
|
246 |
public function setting_number_callback( $setting, $value ) {
|
247 |
+
$this->setting_input_text_html( $setting, $value );
|
248 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
|
250 |
public function setting_textarea_callback( $setting, $value ) {
|
251 |
echo '<textarea id="' . $setting['id'] . '" name="wpbdp_settings[' . $setting['id'] . ']" placeholder="' . ( ! empty( $setting['placeholder'] ) ? esc_attr( $setting['placeholder'] ) : '' ) . '">';
|
252 |
echo esc_textarea( $value );
|
253 |
echo '</textarea>';
|
|
|
|
|
|
|
|
|
254 |
}
|
255 |
|
256 |
+
public function setting_checkbox_callback( $setting, $value ) {
|
257 |
+
echo '<input type="hidden" name="wpbdp_settings[' . esc_attr( $setting['id'] ) . ']" value="0" />';
|
258 |
+
|
259 |
+
echo '<label>';
|
260 |
+
$this->checkbox_input_html( $setting, $value );
|
261 |
+
|
262 |
+
$this->setting_input_label( $setting, 'span' );
|
263 |
+
echo '</label>';
|
264 |
+
}
|
265 |
+
|
266 |
+
/**
|
267 |
+
* @since 6.0
|
268 |
+
*/
|
269 |
+
public function setting_toggle_callback( $setting, $value ) {
|
270 |
+
echo '<input type="hidden" name="wpbdp_settings[' . esc_attr( $setting['id'] ) . ']" value="0" />';
|
271 |
+
|
272 |
+
echo '<label>';
|
273 |
+
echo '<span class="wpbd-toggle-cont">';
|
274 |
+
$this->checkbox_input_html( $setting, $value );
|
275 |
+
echo '<span class="wpbd-toggle-slider"></span>';
|
276 |
+
echo '</span>';
|
277 |
+
$this->setting_input_label( $setting, 'span', 'wpbdp-setting-label' );
|
278 |
+
echo '</label>';
|
279 |
+
}
|
280 |
+
|
281 |
+
/**
|
282 |
+
* Render checkbox input hmtl.
|
283 |
+
*
|
284 |
+
* @param array $setting The setting of the field.
|
285 |
+
* @param int $value The input value.
|
286 |
+
*
|
287 |
+
* @since 6.0
|
288 |
+
*
|
289 |
+
* @return void
|
290 |
+
*/
|
291 |
+
private function checkbox_input_html( $setting, $value ) {
|
292 |
+
$save = $this->checkbox_saved_value( $setting );
|
293 |
if ( 1 === $save ) {
|
294 |
$value = (bool) $value;
|
295 |
}
|
296 |
+
echo '<input type="checkbox" id="' . esc_attr( $setting['id'] ) . '" name="wpbdp_settings[' . esc_attr( $setting['id'] ) . ']" value="' . esc_attr( $save ) . '" ' . checked( $value, $save, false ) . ' />';
|
297 |
+
}
|
298 |
|
299 |
+
/**
|
300 |
+
* Render settings input label.
|
301 |
+
*
|
302 |
+
* @param array $setting The setting of the field.
|
303 |
+
* @param string $tag The element tag. Defaults to "label".
|
304 |
+
* @param string $class The element tag class. Defaults to empty.
|
305 |
+
*
|
306 |
+
* @since 6.0
|
307 |
+
*
|
308 |
+
* @return string
|
309 |
+
*/
|
310 |
+
private function setting_input_label( $setting, $tag = 'label', $class = '' ) {
|
311 |
+
if ( empty( $setting['name'] ) ) {
|
312 |
+
return '';
|
313 |
+
}
|
314 |
|
315 |
+
$tooltip = $this->setting_tooltip( $setting['tooltip'] );
|
|
|
|
|
|
|
316 |
|
317 |
+
if ( $tag === 'div' && ! empty( $setting['label_for'] ) ) {
|
318 |
+
echo '<div class="' . esc_attr( $class ) . '">' .
|
319 |
+
'<label for="' . esc_attr( $setting['label_for'] ) . '">' .
|
320 |
+
wp_kses_post( $setting['name'] ) .
|
321 |
+
'</label>' .
|
322 |
+
$tooltip .
|
323 |
+
'</div>';
|
324 |
+
return;
|
325 |
+
}
|
326 |
+
|
327 |
+
echo '<' . $tag . ' class="' . esc_attr( $class ) . '">' . wp_kses_post( $setting['name'] ) . $tooltip . '</' . $tag . '>';
|
328 |
+
}
|
329 |
+
|
330 |
+
/**
|
331 |
+
* Render settings input description.
|
332 |
+
*
|
333 |
+
* @param array $setting The setting of the field.
|
334 |
+
*
|
335 |
+
* @since 6.0
|
336 |
+
*
|
337 |
+
* @return void
|
338 |
+
*/
|
339 |
+
private function setting_input_desc( $setting, $include_wrap = 'div' ) {
|
340 |
+
if ( empty( $setting['desc'] ) || $setting['type'] === 'education' ) {
|
341 |
+
return;
|
342 |
+
}
|
343 |
+
if ( $include_wrap === 'div' ) {
|
344 |
+
echo '<div class="wpbdp-setting-description">';
|
345 |
+
} else {
|
346 |
+
echo '<' . esc_attr( $include_wrap ) . '>';
|
347 |
+
}
|
348 |
+
|
349 |
+
echo wp_kses_post( $setting['desc'] );
|
350 |
+
|
351 |
+
if ( $include_wrap ) {
|
352 |
+
echo '</' . esc_attr( $include_wrap ) . '>';
|
353 |
+
}
|
354 |
+
}
|
355 |
|
356 |
/**
|
357 |
* Allow a check box to have a value other than 1.
|
379 |
echo '</div>';
|
380 |
}
|
381 |
echo '</div>';
|
|
|
|
|
|
|
|
|
382 |
}
|
383 |
|
384 |
/**
|
388 |
*/
|
389 |
public function setting_hidden_callback( $setting, $value ) {
|
390 |
?>
|
391 |
+
<input type="hidden" value="<?php echo esc_attr( $value ); ?>" name="wpbdp_settings[<?php echo esc_attr( $setting['id'] ); ?>]" id="wpbdp-settings-<?php echo esc_attr( $setting['id'] ); ?>"/>
|
392 |
<?php
|
393 |
}
|
394 |
|
404 |
echo '<div class="wpbdp-settings-multicheck-options wpbdp-grid">';
|
405 |
$n = 0;
|
406 |
foreach ( $setting['options'] as $option_value => $option_label ) {
|
407 |
+
echo '<div class="wpbdp-settings-multicheck-option wpbdp-settings-multicheck-option-no-' . esc_attr( $n ) . '">';
|
408 |
echo '<input type="checkbox" name="wpbdp_settings[' . esc_attr( $setting['id'] ) . '][]" id="wpbdp-' . esc_attr( $setting['id'] . '-checkbox-no-' . $n ) . '" value="' . esc_attr( $option_value ) . '" ' . checked( in_array( $option_value, $value ), true, false ) . ' />';
|
409 |
echo '<label for="wpbdp-' . esc_attr( $setting['id'] . '-checkbox-no-' . $n ) . '">';
|
410 |
echo esc_html( $option_label );
|
415 |
}
|
416 |
|
417 |
echo '</div>';
|
|
|
|
|
|
|
|
|
418 |
}
|
419 |
|
420 |
+
/**
|
421 |
+
* Render the select dropdown.
|
422 |
+
*
|
423 |
+
* @param array $setting The setting of the current input.
|
424 |
+
* @param string|array $value The selected value
|
425 |
+
*/
|
426 |
public function setting_select_callback( $setting, $value ) {
|
427 |
if ( empty( $setting['options'] ) ) {
|
428 |
return;
|
429 |
}
|
430 |
|
431 |
+
$multiple = ! empty( $setting['multiple'] ) && $setting['multiple'];
|
432 |
|
433 |
echo '<select id="' . $setting['id'] . '" name="wpbdp_settings[' . $setting['id'] . ']' . ( $multiple ? '[]' : '' ) . '" ' . ( $multiple ? 'multiple="multiple"' : '' ) . '>';
|
434 |
foreach ( $setting['options'] as $option_value => $option_label ) {
|
441 |
echo '<option value="' . $option_value . '" ' . selected( $selected, true, false ) . '>' . $option_label . '</option>';
|
442 |
}
|
443 |
echo '</select>';
|
|
|
|
|
|
|
|
|
444 |
}
|
445 |
|
446 |
+
/**
|
447 |
+
* @since 6.0
|
448 |
+
*/
|
449 |
+
private function add_grid_class( &$setting ) {
|
450 |
+
if ( $setting['grid_classes'] ) {
|
451 |
+
$setting['class'] .= ' wpbdp-grid';
|
452 |
+
}
|
453 |
+
}
|
454 |
+
|
455 |
+
/**
|
456 |
+
* @since 6.0
|
457 |
+
*/
|
458 |
+
private function open_grid_div( $setting, $position = 'left' ) {
|
459 |
+
if ( $setting['grid_classes'] ) {
|
460 |
+
echo '<div class="' . esc_attr( $setting['grid_classes'][ $position ] ) . '">';
|
461 |
+
}
|
462 |
+
}
|
463 |
+
|
464 |
+
/**
|
465 |
+
* @since 6.0
|
466 |
+
*/
|
467 |
+
private function close_grid_div( $setting ) {
|
468 |
+
if ( $setting['grid_classes'] ) {
|
469 |
+
echo '</div>';
|
470 |
+
}
|
471 |
+
}
|
472 |
+
|
473 |
+
/**
|
474 |
+
* @since 6.0
|
475 |
+
*/
|
476 |
+
private function setting_input_text_html( $setting, $value ) {
|
477 |
+
echo '<input type="' . esc_attr( $setting['type'] ) . '" id="' . $setting['id'] . '" name="wpbdp_settings[' . $setting['id'] . ']" value="' . esc_attr( $value ) . '"';
|
478 |
+
|
479 |
+
if ( ! empty( $setting['placeholder'] ) ) {
|
480 |
+
echo ' placeholder="' . esc_attr( $setting['placeholder'] ) . '"';
|
481 |
+
}
|
482 |
+
|
483 |
+
if ( isset( $setting['min'] ) ) {
|
484 |
+
echo ' min="' . $setting['min'] . '"';
|
485 |
+
}
|
486 |
+
|
487 |
+
if ( isset( $setting['step'] ) ) {
|
488 |
+
echo ' step="' . $setting['step'] . '"';
|
489 |
+
}
|
490 |
+
|
491 |
+
if ( isset( $setting['max'] ) ) {
|
492 |
+
echo ' max="' . $setting['max'] . '"';
|
493 |
+
}
|
494 |
+
echo '/>';
|
495 |
+
}
|
496 |
+
|
497 |
public function setting_file_callback( $setting, $value ) {
|
498 |
$html = '';
|
499 |
$html .= sprintf(
|
543 |
|
544 |
public function setting_url_callback( $setting, $value ) {
|
545 |
echo '<input type="url" id="' . $setting['id'] . '" name="wpbdp_settings[' . $setting['id'] . ']" value="' . esc_attr( $value ) . '" placeholder="' . ( ! empty( $setting['placeholder'] ) ? esc_attr( $setting['placeholder'] ) : '' ) . '" />';
|
|
|
|
|
|
|
|
|
546 |
}
|
547 |
|
548 |
public function setting_color_callback( $setting, $value ) {
|
550 |
wp_enqueue_style( 'wp-color-picker' );
|
551 |
|
552 |
echo '<input type="text" class="cpa-color-picker" id="' . esc_attr( $setting['id'] ) . '" name="wpbdp_settings[' . esc_attr( $setting['id'] ) . ']" value="' . esc_attr( $value ) . '"/>';
|
|
|
|
|
|
|
|
|
553 |
}
|
554 |
|
555 |
public function setting_text_template_callback( $setting, $value ) {
|
598 |
'placeholders' => ! empty( $setting['placeholders'] ) ? $setting['placeholders'] : array(),
|
599 |
);
|
600 |
|
|
|
|
|
|
|
|
|
601 |
echo wpbdp_render_page( WPBDP_PATH . 'templates/admin/settings-email.tpl.php', $args );
|
602 |
}
|
603 |
|
737 |
|
738 |
ob_start();
|
739 |
?>
|
740 |
+
<div class="wpbdp-expiration-notice-email-schedule-summary wpbdp-setting-description">
|
741 |
<?php echo $summary; ?>
|
742 |
</div>
|
743 |
<?php
|
includes/admin/controllers/class-themes-admin.php
CHANGED
@@ -146,10 +146,11 @@ class WPBDP_Themes_Admin {
|
|
146 |
|
147 |
switch ( $msg ) {
|
148 |
case 1:
|
149 |
-
|
|
|
150 |
|
151 |
if ( $missing_fields = $this->api->missing_suggested_fields( 'label' ) ) {
|
152 |
-
|
153 |
$msg .= '<br />';
|
154 |
|
155 |
foreach ( $missing_fields as $mf ) {
|
146 |
|
147 |
switch ( $msg ) {
|
148 |
case 1:
|
149 |
+
$name = $this->api->get_active_theme_data( 'name' );
|
150 |
+
wpbdp_admin_message( sprintf( _x( 'Active theme changed to "%s".', 'themes', 'business-directory-plugin' ), $name ) );
|
151 |
|
152 |
if ( $missing_fields = $this->api->missing_suggested_fields( 'label' ) ) {
|
153 |
+
$msg = sprintf( _x( '%s requires that you tag your existing fields to match some places we want to put your data on the theme. Below are fields we think are missing.', 'themes', 'business-directory-plugin' ), $name );
|
154 |
$msg .= '<br />';
|
155 |
|
156 |
foreach ( $missing_fields as $mf ) {
|
includes/admin/helpers/class-notices.php
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* @since 6.0
|
5 |
+
*/
|
6 |
+
class WPBDP_Admin_Notices {
|
7 |
+
|
8 |
+
public static function load_hooks() {
|
9 |
+
add_action( 'admin_footer', __CLASS__ . '::admin_footer' );
|
10 |
+
}
|
11 |
+
|
12 |
+
/**
|
13 |
+
* Show admin notification icon in footer.
|
14 |
+
*/
|
15 |
+
public static function admin_footer() {
|
16 |
+
if ( ! WPBDP_App_Helper::is_bd_page() ) {
|
17 |
+
return;
|
18 |
+
}
|
19 |
+
self::show_bell();
|
20 |
+
}
|
21 |
+
|
22 |
+
/**
|
23 |
+
* Admin floating notification bell.
|
24 |
+
*
|
25 |
+
* @since 6.0
|
26 |
+
*/
|
27 |
+
public static function show_bell() {
|
28 |
+
?>
|
29 |
+
<div class="wpbdp-bell-notifications hidden">
|
30 |
+
<a href="#" class="wpbdp-bell-notifications-close"><?php esc_html_e( 'Hide notifications', 'business-directory-plugin' ); ?></a>
|
31 |
+
<ul class="wpbdp-bell-notifications-list"></ul>
|
32 |
+
</div>
|
33 |
+
<div class="wpbdp-bell-notification">
|
34 |
+
<a class="wpbdp-bell-notification-icon" href="#">
|
35 |
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 60 60"><rect width="60" height="60" fill="#fff" rx="12"/><path stroke="#3C4B5D" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M37.5 25a7.5 7.5 0 0 0-15 0c0 8.8-3.8 11.3-3.8 11.3h22.6s-3.8-2.5-3.8-11.3ZM32.2 41.3a2.5 2.5 0 0 1-4.4 0"/><circle class="wpbdp-bell-notification-icon-indicator" cx="39.4" cy="20.6" r="6.1" fill="#FF5A5A" stroke="#fff"><animate attributeName="r" from="6" to="8" dur="1.5s" begin="0s" repeatCount="indefinite"/><animate attributeName="opacity" from="1" to="0.8" dur="1.5s" begin="0s" repeatCount="indefinite"/></circle></svg>
|
36 |
+
</a>
|
37 |
+
</div>
|
38 |
+
<div id="wpbdp-snackbar-notices"></div>
|
39 |
+
<?php
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Show the settings notice.
|
44 |
+
* Renders settings notice in notification area.
|
45 |
+
*
|
46 |
+
* @since 6.0
|
47 |
+
*/
|
48 |
+
public static function settings_errors() {
|
49 |
+
$settings_errors = get_settings_errors();
|
50 |
+
if ( empty( $settings_errors ) ) {
|
51 |
+
return;
|
52 |
+
}
|
53 |
+
|
54 |
+
foreach ( $settings_errors as $key => $details ) {
|
55 |
+
wpbdp_admin_message( $details['message'], $details['type'] );
|
56 |
+
}
|
57 |
+
|
58 |
+
wpbdp_admin_notices();
|
59 |
+
}
|
60 |
+
}
|
includes/admin/helpers/tables/class-form-fields-table.php
CHANGED
@@ -122,6 +122,7 @@ class WPBDP_FormFieldsTable extends WP_List_Table {
|
|
122 |
esc_attr( $field->get_label() ),
|
123 |
$field->get_association()
|
124 |
);
|
|
|
125 |
$html .= '<br/>';
|
126 |
$html .= sprintf(
|
127 |
'%s: %d',
|
@@ -150,12 +151,6 @@ class WPBDP_FormFieldsTable extends WP_List_Table {
|
|
150 |
public function column_tags( $field ) {
|
151 |
$html = '';
|
152 |
|
153 |
-
$html .= sprintf(
|
154 |
-
'<span class="tag %s">%s</span>',
|
155 |
-
$field->is_required() ? 'required' : 'optional',
|
156 |
-
$field->is_required() ? _x( 'Required', 'form-fields admin', 'business-directory-plugin' ) : _x( 'Optional', 'form-fields admin', 'business-directory-plugin' )
|
157 |
-
);
|
158 |
-
|
159 |
if ( $field->has_display_flag( 'private' ) ) {
|
160 |
$html .= sprintf(
|
161 |
'<span class="tag %s">%s</span>',
|
122 |
esc_attr( $field->get_label() ),
|
123 |
$field->get_association()
|
124 |
);
|
125 |
+
$html .= $field->is_required() ? ' *' : '';
|
126 |
$html .= '<br/>';
|
127 |
$html .= sprintf(
|
128 |
'%s: %d',
|
151 |
public function column_tags( $field ) {
|
152 |
$html = '';
|
153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
if ( $field->has_display_flag( 'private' ) ) {
|
155 |
$html .= sprintf(
|
156 |
'<span class="tag %s">%s</span>',
|
includes/admin/settings/class-settings-bootstrap.php
CHANGED
@@ -5,22 +5,36 @@
|
|
5 |
final class WPBDP__Settings__Bootstrap {
|
6 |
|
7 |
public static function register_initial_groups() {
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
}
|
25 |
|
26 |
public static function register_initial_settings() {
|
@@ -94,10 +108,9 @@ final class WPBDP__Settings__Bootstrap {
|
|
94 |
wpbdp_register_setting(
|
95 |
array(
|
96 |
'id' => 'permalinks-no-id',
|
97 |
-
'type' => '
|
98 |
'default' => true,
|
99 |
-
'name' => _x( 'Remove listing ID from
|
100 |
-
'desc' => _x( 'Check this setting to remove the ID for better SEO.', 'settings', 'business-directory-plugin' ),
|
101 |
'tooltip' => _x( 'Prior to 3.5.1, we included the ID in the listing URL, like "/business-directory/1809/listing-title".', 'settings', 'business-directory-plugin' ) . ' ' . _x( 'IMPORTANT: subpages of the main directory page cannot be accesed while this setting is checked.', 'admin settings', 'business-directory-plugin' ),
|
102 |
'group' => 'permalink_settings',
|
103 |
)
|
@@ -124,7 +137,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
124 |
array(
|
125 |
'id' => 'hide-recaptcha-loggedin',
|
126 |
'type' => 'checkbox',
|
127 |
-
'name' => _x( '
|
128 |
'group' => 'recaptcha',
|
129 |
)
|
130 |
);
|
@@ -189,6 +202,10 @@ final class WPBDP__Settings__Bootstrap {
|
|
189 |
'v3' => 'V3',
|
190 |
),
|
191 |
'group' => 'recaptcha',
|
|
|
|
|
|
|
|
|
192 |
)
|
193 |
);
|
194 |
wpbdp_register_setting(
|
@@ -202,6 +219,10 @@ final class WPBDP__Settings__Bootstrap {
|
|
202 |
'max' => 1,
|
203 |
'desc' => _x( 'reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is very likely a bot). Based on the score, you can take variable action in the context of your site. You can set here the score threshold, scores under this value will result in reCAPTCHA validation error.', 'settings', 'business-directory-plugin' ),
|
204 |
'group' => 'recaptcha',
|
|
|
|
|
|
|
|
|
205 |
)
|
206 |
);
|
207 |
|
@@ -209,7 +230,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
209 |
wpbdp_register_setting(
|
210 |
array(
|
211 |
'id' => 'require-login',
|
212 |
-
'type' => '
|
213 |
'name' => _x( 'Require login to post listings', 'settings', 'business-directory-plugin' ),
|
214 |
'default' => 1,
|
215 |
'group' => 'registration',
|
@@ -218,7 +239,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
218 |
wpbdp_register_setting(
|
219 |
array(
|
220 |
'id' => 'enable-key-access',
|
221 |
-
'type' => '
|
222 |
'name' => _x( 'Allow anonymous users to edit/manage listings with an access key', 'settings', 'business-directory-plugin' ),
|
223 |
'group' => 'registration',
|
224 |
)
|
@@ -265,7 +286,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
265 |
wpbdp_register_setting(
|
266 |
array(
|
267 |
'id' => 'display-terms-and-conditions',
|
268 |
-
'type' => '
|
269 |
'name' => __( 'User Agreement', 'business-directory-plugin' ),
|
270 |
'desc' => __( 'Display and require user agreement to Terms and Conditions', 'business-directory-plugin' ),
|
271 |
'group' => 'tos_settings',
|
@@ -290,7 +311,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
290 |
wpbdp_register_setting(
|
291 |
array(
|
292 |
'id' => 'tracking-on',
|
293 |
-
'type' => '
|
294 |
'name' => __( 'Data Collection', 'business-directory-plugin' ),
|
295 |
'desc' => __( 'Allow Business Directory to anonymously collect information about your installed plugins, themes and WP version?', 'business-directory-plugin' ) .
|
296 |
' <a href="https://businessdirectoryplugin.com/what-we-track/" target="_blank" rel="noopener">' . __( 'Learn more', 'business-directory-plugin' ) . '</a>',
|
@@ -320,9 +341,9 @@ final class WPBDP__Settings__Bootstrap {
|
|
320 |
wpbdp_register_setting(
|
321 |
array(
|
322 |
'id' => 'quick-search-enable-performance-tricks',
|
323 |
-
'type' => '
|
324 |
-
'name' => _x( 'Enable high performance
|
325 |
-
|
326 |
'group' => 'search_settings',
|
327 |
)
|
328 |
);
|
@@ -335,7 +356,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
335 |
wpbdp_register_setting(
|
336 |
array(
|
337 |
'id' => 'disable-cpt',
|
338 |
-
'type' => '
|
339 |
'name' => _x( 'Disable advanced CPT integration', 'settings', 'business-directory-plugin' ),
|
340 |
'group' => 'general/advanced',
|
341 |
)
|
@@ -344,7 +365,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
344 |
wpbdp_register_setting(
|
345 |
array(
|
346 |
'id' => 'disable-submit-listing',
|
347 |
-
'type' => '
|
348 |
'name' => _x( 'Disable frontend listing submission', 'settings', 'business-directory-plugin' ),
|
349 |
'desc' => _x( 'Prevents the Submit Listing button from showing on the main UI, but allows a shortcode for submit listing to function on other pages.', 'settings', 'business-directory-plugin' ),
|
350 |
'group' => 'general/advanced',
|
@@ -376,6 +397,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
376 |
'attrs' => array(
|
377 |
'data-text-fields' => wp_json_encode( $text_fields ),
|
378 |
),
|
|
|
379 |
)
|
380 |
);
|
381 |
}
|
@@ -447,7 +469,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
447 |
wpbdp_register_setting(
|
448 |
array(
|
449 |
'id' => 'listing-renewal',
|
450 |
-
'type' => '
|
451 |
'name' => _x( 'Turn on listing renewal option', 'settings', 'business-directory-plugin' ),
|
452 |
'default' => true,
|
453 |
'group' => 'listings/main',
|
@@ -456,7 +478,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
456 |
wpbdp_register_setting(
|
457 |
array(
|
458 |
'id' => 'listing-link-in-new-tab',
|
459 |
-
'type' => '
|
460 |
'name' => _x( 'Open detailed view of listing in new tab', 'settings', 'business-directory-plugin' ),
|
461 |
'default' => false,
|
462 |
'group' => 'listings/main',
|
@@ -466,7 +488,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
466 |
wpbdp_register_setting(
|
467 |
array(
|
468 |
'id' => 'enable-listing-flagging',
|
469 |
-
'type' => '
|
470 |
'name' => _x( 'Include button to report listings', 'settings', 'business-directory-plugin' ),
|
471 |
'default' => false,
|
472 |
'group' => 'listings/report',
|
@@ -475,7 +497,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
475 |
wpbdp_register_setting(
|
476 |
array(
|
477 |
'id' => 'listing-flagging-register-users',
|
478 |
-
'type' => '
|
479 |
'name' => _x( 'Enable report listing for registered users only', 'settings', 'business-directory-plugin' ),
|
480 |
'default' => true,
|
481 |
'group' => 'listings/report',
|
@@ -497,7 +519,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
497 |
wpbdp_register_setting(
|
498 |
array(
|
499 |
'id' => 'show-contact-form',
|
500 |
-
'type' => '
|
501 |
'name' => _x( 'Include listing contact form on listing pages', 'settings', 'business-directory-plugin' ),
|
502 |
'desc' => _x( 'Allows visitors to contact listing authors privately. Authors will receive the messages via email.', 'settings', 'business-directory-plugin' ),
|
503 |
'default' => true,
|
@@ -507,7 +529,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
507 |
wpbdp_register_setting(
|
508 |
array(
|
509 |
'id' => 'contact-form-require-login',
|
510 |
-
'type' => '
|
511 |
'name' => _x( 'Require login for using the contact form', 'settings', 'business-directory-plugin' ),
|
512 |
'default' => false,
|
513 |
'group' => 'listings/contact',
|
@@ -559,7 +581,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
559 |
wpbdp_register_setting(
|
560 |
array(
|
561 |
'id' => 'show-listings-under-categories',
|
562 |
-
'type' => '
|
563 |
'name' => _x( 'Show listings under categories on main page', 'settings', 'business-directory-plugin' ),
|
564 |
'default' => false,
|
565 |
'group' => 'listings/post_category',
|
@@ -602,6 +624,10 @@ final class WPBDP__Settings__Bootstrap {
|
|
602 |
'default' => $admin ? $admin->ID : '1',
|
603 |
'desc' => _x( 'The user ID or login of an existing user account. If login is not required to submit listings, this user will own them. A site admin or another user that will not a be posting a listing is best.', 'settings', 'business-directory-plugin' ),
|
604 |
'group' => 'registration',
|
|
|
|
|
|
|
|
|
605 |
)
|
606 |
);
|
607 |
|
@@ -725,7 +751,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
725 |
wpbdp_register_setting(
|
726 |
array(
|
727 |
'id' => 'show-category-post-count',
|
728 |
-
'type' => '
|
729 |
'name' => _x( 'Show category post count', 'settings', 'business-directory-plugin' ),
|
730 |
'default' => true,
|
731 |
'group' => 'listings/post_category',
|
@@ -734,7 +760,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
734 |
wpbdp_register_setting(
|
735 |
array(
|
736 |
'id' => 'hide-empty-categories',
|
737 |
-
'type' => '
|
738 |
'name' => _x( 'Hide empty categories', 'settings', 'business-directory-plugin' ),
|
739 |
'default' => false,
|
740 |
'group' => 'listings/post_category',
|
@@ -743,7 +769,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
743 |
wpbdp_register_setting(
|
744 |
array(
|
745 |
'id' => 'show-only-parent-categories',
|
746 |
-
'type' => '
|
747 |
'name' => _x( 'Show only parent categories in category list', 'settings', 'business-directory-plugin' ),
|
748 |
'default' => false,
|
749 |
'group' => 'listings/post_category',
|
@@ -793,7 +819,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
793 |
wpbdp_register_setting(
|
794 |
array(
|
795 |
'id' => 'listings-sortbar-enabled',
|
796 |
-
'type' => '
|
797 |
'name' => _x( 'Enable sort bar', 'settings', 'business-directory-plugin' ),
|
798 |
'default' => false,
|
799 |
'group' => 'listings/sorting',
|
@@ -808,6 +834,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
808 |
'options' => is_admin() ? wpbdp_sortbar_get_field_options() : array(),
|
809 |
'group' => 'listings/sorting',
|
810 |
'requirements' => array( 'listings-sortbar-enabled' ),
|
|
|
811 |
)
|
812 |
);
|
813 |
|
@@ -859,8 +886,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
859 |
array(
|
860 |
'id' => 'show-directory-button',
|
861 |
'type' => 'checkbox',
|
862 |
-
'name' =>
|
863 |
-
'desc' => __( 'Show the "Directory" and "Return to Directory" button.', 'business-directory-plugin' ),
|
864 |
'default' => true,
|
865 |
'group' => 'display_options',
|
866 |
)
|
@@ -872,7 +898,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
872 |
wpbdp_register_setting(
|
873 |
array(
|
874 |
'id' => 'themes-button-style',
|
875 |
-
'type' => '
|
876 |
'name' => __( 'Button style', 'business-directory-plugin' ),
|
877 |
'default' => 'theme',
|
878 |
'option' => 'theme',
|
@@ -899,7 +925,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
899 |
wpbdp_register_setting(
|
900 |
array(
|
901 |
'id' => 'allow-images',
|
902 |
-
'type' => '
|
903 |
'name' => _x( 'Allow images', 'settings', 'business-directory-plugin' ),
|
904 |
'default' => true,
|
905 |
'group' => 'images/general',
|
@@ -914,6 +940,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
914 |
'name' => _x( 'Min Image File Size (KB)', 'settings', 'business-directory-plugin' ),
|
915 |
'default' => '0',
|
916 |
'group' => 'images/general',
|
|
|
917 |
)
|
918 |
);
|
919 |
wpbdp_register_setting(
|
@@ -925,6 +952,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
925 |
'name' => _x( 'Max Image File Size (KB)', 'settings', 'business-directory-plugin' ),
|
926 |
'default' => '10000',
|
927 |
'group' => 'images/general',
|
|
|
928 |
)
|
929 |
);
|
930 |
wpbdp_register_setting(
|
@@ -936,6 +964,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
936 |
'name' => _x( 'Min image width (px)', 'settings', 'business-directory-plugin' ),
|
937 |
'default' => '0',
|
938 |
'group' => 'images/general',
|
|
|
939 |
)
|
940 |
);
|
941 |
wpbdp_register_setting(
|
@@ -947,6 +976,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
947 |
'min' => 0,
|
948 |
'step' => 1,
|
949 |
'group' => 'images/general',
|
|
|
950 |
)
|
951 |
);
|
952 |
wpbdp_register_setting(
|
@@ -958,6 +988,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
958 |
'name' => _x( 'Max image width (px)', 'settings', 'business-directory-plugin' ),
|
959 |
'default' => '500',
|
960 |
'group' => 'images/general',
|
|
|
961 |
)
|
962 |
);
|
963 |
wpbdp_register_setting(
|
@@ -969,12 +1000,13 @@ final class WPBDP__Settings__Bootstrap {
|
|
969 |
'name' => _x( 'Max image height (px)', 'settings', 'business-directory-plugin' ),
|
970 |
'default' => '500',
|
971 |
'group' => 'images/general',
|
|
|
972 |
)
|
973 |
);
|
974 |
wpbdp_register_setting(
|
975 |
array(
|
976 |
'id' => 'use-thickbox',
|
977 |
-
'type' => '
|
978 |
'min' => 0,
|
979 |
'step' => 1,
|
980 |
'name' => _x( 'Turn on thickbox/lightbox', 'settings', 'business-directory-plugin' ),
|
@@ -994,6 +1026,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
994 |
'name' => _x( 'Thumbnail width (px)', 'settings', 'business-directory-plugin' ),
|
995 |
'default' => '150',
|
996 |
'group' => 'image/thumbnails',
|
|
|
997 |
)
|
998 |
);
|
999 |
wpbdp_register_setting(
|
@@ -1005,12 +1038,13 @@ final class WPBDP__Settings__Bootstrap {
|
|
1005 |
'name' => _x( 'Thumbnail height (px)', 'settings', 'business-directory-plugin' ),
|
1006 |
'default' => '150',
|
1007 |
'group' => 'image/thumbnails',
|
|
|
1008 |
)
|
1009 |
);
|
1010 |
wpbdp_register_setting(
|
1011 |
array(
|
1012 |
'id' => 'thumbnail-crop',
|
1013 |
-
'type' => '
|
1014 |
'name' => _x( 'Crop thumbnails to exact dimensions', 'settings', 'business-directory-plugin' ),
|
1015 |
'desc' => _x( 'When enabled images will match exactly the dimensions above but part of the image may be cropped out. If disabled, image thumbnails will be resized to match the specified width and their height will be adjusted proportionally. Depending on the uploaded images, thumbnails may have different heights.', 'settings', 'business-directory-plugin' ),
|
1016 |
'default' => false,
|
@@ -1022,7 +1056,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
1022 |
wpbdp_register_setting(
|
1023 |
array(
|
1024 |
'id' => 'enforce-image-upload',
|
1025 |
-
'type' => '
|
1026 |
'name' => _x( 'Enforce image upload on submit/edit', 'settings', 'business-directory-plugin' ),
|
1027 |
'default' => false,
|
1028 |
'group' => 'image/listings',
|
@@ -1141,7 +1175,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
1141 |
wpbdp_register_setting(
|
1142 |
array(
|
1143 |
'id' => 'payments-test-mode',
|
1144 |
-
'type' => '
|
1145 |
'name' => _x( 'Put payment gateways in test mode', 'settings', 'business-directory-plugin' ),
|
1146 |
'default' => true,
|
1147 |
'group' => 'payment/main',
|
@@ -1184,6 +1218,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
1184 |
),
|
1185 |
'desc' => self::gateway_description(),
|
1186 |
'group' => 'payment/main',
|
|
|
1187 |
)
|
1188 |
);
|
1189 |
wpbdp_register_setting(
|
@@ -1193,6 +1228,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
1193 |
'name' => _x( 'Currency Symbol', 'settings', 'business-directory-plugin' ),
|
1194 |
'default' => '$',
|
1195 |
'group' => 'payment/main',
|
|
|
1196 |
)
|
1197 |
);
|
1198 |
wpbdp_register_setting(
|
@@ -1212,7 +1248,7 @@ final class WPBDP__Settings__Bootstrap {
|
|
1212 |
wpbdp_register_setting(
|
1213 |
array(
|
1214 |
'id' => 'include-fee-description',
|
1215 |
-
'type' => '
|
1216 |
'name' => _x( 'Include plan description in receipt', 'settings', 'business-directory-plugin' ),
|
1217 |
'default' => false,
|
1218 |
'group' => 'payment/main',
|
5 |
final class WPBDP__Settings__Bootstrap {
|
6 |
|
7 |
public static function register_initial_groups() {
|
8 |
+
wpbdp_register_settings_group( 'general', _x( 'General', 'settings', 'business-directory-plugin' ), '', array(
|
9 |
+
'icon' => 'cog',
|
10 |
+
) );
|
11 |
+
|
12 |
+
wpbdp_register_settings_group( 'listings', _x( 'Listings', 'settings', 'business-directory-plugin' ), '', array(
|
13 |
+
'icon' => 'list',
|
14 |
+
) );
|
15 |
+
wpbdp_register_settings_group( 'listings/main', _x( 'General Settings', 'settings', 'business-directory-plugin' ), 'listings' );
|
16 |
+
|
17 |
+
wpbdp_register_settings_group( 'email', __( 'Email', 'business-directory-plugin' ), '', array(
|
18 |
+
'icon' => 'email',
|
19 |
+
) );
|
20 |
+
wpbdp_register_settings_group( 'email/main', _x( 'General Settings', 'settings', 'business-directory-plugin' ), 'email' );
|
21 |
+
|
22 |
+
wpbdp_register_settings_group( 'payment', _x( 'Payment', 'settings', 'business-directory-plugin' ), '', array(
|
23 |
+
'icon' => 'money',
|
24 |
+
) );
|
25 |
+
wpbdp_register_settings_group( 'payment/main', _x( 'General Settings', 'settings', 'business-directory-plugin' ), 'payment' );
|
26 |
+
|
27 |
+
wpbdp_register_settings_group( 'appearance', _x( 'Appearance', 'settings', 'business-directory-plugin' ), '', array(
|
28 |
+
'icon' => 'layout',
|
29 |
+
) );
|
30 |
+
|
31 |
+
wpbdp_register_settings_group( 'modules', __( 'Module Settings', 'business-directory-plugin' ), '', array(
|
32 |
+
'icon' => 'package',
|
33 |
+
) );
|
34 |
+
|
35 |
+
wpbdp_register_settings_group( 'misc', __( 'Miscellaneous', 'business-directory-plugin' ), '', array(
|
36 |
+
'icon' => 'misc',
|
37 |
+
) );
|
38 |
}
|
39 |
|
40 |
public static function register_initial_settings() {
|
108 |
wpbdp_register_setting(
|
109 |
array(
|
110 |
'id' => 'permalinks-no-id',
|
111 |
+
'type' => 'toggle',
|
112 |
'default' => true,
|
113 |
+
'name' => _x( 'Remove listing ID from URLs for better SEO', 'settings', 'business-directory-plugin' ),
|
|
|
114 |
'tooltip' => _x( 'Prior to 3.5.1, we included the ID in the listing URL, like "/business-directory/1809/listing-title".', 'settings', 'business-directory-plugin' ) . ' ' . _x( 'IMPORTANT: subpages of the main directory page cannot be accesed while this setting is checked.', 'admin settings', 'business-directory-plugin' ),
|
115 |
'group' => 'permalink_settings',
|
116 |
)
|
137 |
array(
|
138 |
'id' => 'hide-recaptcha-loggedin',
|
139 |
'type' => 'checkbox',
|
140 |
+
'name' => _x( 'Use reCAPTCHA only for logged-out users', 'settings', 'business-directory-plugin' ),
|
141 |
'group' => 'recaptcha',
|
142 |
)
|
143 |
);
|
202 |
'v3' => 'V3',
|
203 |
),
|
204 |
'group' => 'recaptcha',
|
205 |
+
'grid_classes' => array(
|
206 |
+
'left' => 'wpbdp8',
|
207 |
+
'right' => 'wpbdp4'
|
208 |
+
),
|
209 |
)
|
210 |
);
|
211 |
wpbdp_register_setting(
|
219 |
'max' => 1,
|
220 |
'desc' => _x( 'reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is very likely a bot). Based on the score, you can take variable action in the context of your site. You can set here the score threshold, scores under this value will result in reCAPTCHA validation error.', 'settings', 'business-directory-plugin' ),
|
221 |
'group' => 'recaptcha',
|
222 |
+
'grid_classes' => array(
|
223 |
+
'left' => 'wpbdp8',
|
224 |
+
'right' => 'wpbdp4'
|
225 |
+
),
|
226 |
)
|
227 |
);
|
228 |
|
230 |
wpbdp_register_setting(
|
231 |
array(
|
232 |
'id' => 'require-login',
|
233 |
+
'type' => 'toggle',
|
234 |
'name' => _x( 'Require login to post listings', 'settings', 'business-directory-plugin' ),
|
235 |
'default' => 1,
|
236 |
'group' => 'registration',
|
239 |
wpbdp_register_setting(
|
240 |
array(
|
241 |
'id' => 'enable-key-access',
|
242 |
+
'type' => 'toggle',
|
243 |
'name' => _x( 'Allow anonymous users to edit/manage listings with an access key', 'settings', 'business-directory-plugin' ),
|
244 |
'group' => 'registration',
|
245 |
)
|
286 |
wpbdp_register_setting(
|
287 |
array(
|
288 |
'id' => 'display-terms-and-conditions',
|
289 |
+
'type' => 'toggle',
|
290 |
'name' => __( 'User Agreement', 'business-directory-plugin' ),
|
291 |
'desc' => __( 'Display and require user agreement to Terms and Conditions', 'business-directory-plugin' ),
|
292 |
'group' => 'tos_settings',
|
311 |
wpbdp_register_setting(
|
312 |
array(
|
313 |
'id' => 'tracking-on',
|
314 |
+
'type' => 'toggle',
|
315 |
'name' => __( 'Data Collection', 'business-directory-plugin' ),
|
316 |
'desc' => __( 'Allow Business Directory to anonymously collect information about your installed plugins, themes and WP version?', 'business-directory-plugin' ) .
|
317 |
' <a href="https://businessdirectoryplugin.com/what-we-track/" target="_blank" rel="noopener">' . __( 'Learn more', 'business-directory-plugin' ) . '</a>',
|
341 |
wpbdp_register_setting(
|
342 |
array(
|
343 |
'id' => 'quick-search-enable-performance-tricks',
|
344 |
+
'type' => 'toggle',
|
345 |
+
'name' => _x( 'Enable high performance search', 'settings', 'business-directory-plugin' ),
|
346 |
+
'tooltip' => __( 'Enabling this sacrifices result quality to improve speed. This is helpful if you\'re on shared hosting plans, where database performance is an issue.', 'business-directory-plugin' ),
|
347 |
'group' => 'search_settings',
|
348 |
)
|
349 |
);
|
356 |
wpbdp_register_setting(
|
357 |
array(
|
358 |
'id' => 'disable-cpt',
|
359 |
+
'type' => 'toggle',
|
360 |
'name' => _x( 'Disable advanced CPT integration', 'settings', 'business-directory-plugin' ),
|
361 |
'group' => 'general/advanced',
|
362 |
)
|
365 |
wpbdp_register_setting(
|
366 |
array(
|
367 |
'id' => 'disable-submit-listing',
|
368 |
+
'type' => 'toggle',
|
369 |
'name' => _x( 'Disable frontend listing submission', 'settings', 'business-directory-plugin' ),
|
370 |
'desc' => _x( 'Prevents the Submit Listing button from showing on the main UI, but allows a shortcode for submit listing to function on other pages.', 'settings', 'business-directory-plugin' ),
|
371 |
'group' => 'general/advanced',
|
397 |
'attrs' => array(
|
398 |
'data-text-fields' => wp_json_encode( $text_fields ),
|
399 |
),
|
400 |
+
'class' => 'wpbdp-col-grid-2',
|
401 |
)
|
402 |
);
|
403 |
}
|
469 |
wpbdp_register_setting(
|
470 |
array(
|
471 |
'id' => 'listing-renewal',
|
472 |
+
'type' => 'toggle',
|
473 |
'name' => _x( 'Turn on listing renewal option', 'settings', 'business-directory-plugin' ),
|
474 |
'default' => true,
|
475 |
'group' => 'listings/main',
|
478 |
wpbdp_register_setting(
|
479 |
array(
|
480 |
'id' => 'listing-link-in-new-tab',
|
481 |
+
'type' => 'toggle',
|
482 |
'name' => _x( 'Open detailed view of listing in new tab', 'settings', 'business-directory-plugin' ),
|
483 |
'default' => false,
|
484 |
'group' => 'listings/main',
|
488 |
wpbdp_register_setting(
|
489 |
array(
|
490 |
'id' => 'enable-listing-flagging',
|
491 |
+
'type' => 'toggle',
|
492 |
'name' => _x( 'Include button to report listings', 'settings', 'business-directory-plugin' ),
|
493 |
'default' => false,
|
494 |
'group' => 'listings/report',
|
497 |
wpbdp_register_setting(
|
498 |
array(
|
499 |
'id' => 'listing-flagging-register-users',
|
500 |
+
'type' => 'toggle',
|
501 |
'name' => _x( 'Enable report listing for registered users only', 'settings', 'business-directory-plugin' ),
|
502 |
'default' => true,
|
503 |
'group' => 'listings/report',
|
519 |
wpbdp_register_setting(
|
520 |
array(
|
521 |
'id' => 'show-contact-form',
|
522 |
+
'type' => 'toggle',
|
523 |
'name' => _x( 'Include listing contact form on listing pages', 'settings', 'business-directory-plugin' ),
|
524 |
'desc' => _x( 'Allows visitors to contact listing authors privately. Authors will receive the messages via email.', 'settings', 'business-directory-plugin' ),
|
525 |
'default' => true,
|
529 |
wpbdp_register_setting(
|
530 |
array(
|
531 |
'id' => 'contact-form-require-login',
|
532 |
+
'type' => 'toggle',
|
533 |
'name' => _x( 'Require login for using the contact form', 'settings', 'business-directory-plugin' ),
|
534 |
'default' => false,
|
535 |
'group' => 'listings/contact',
|
581 |
wpbdp_register_setting(
|
582 |
array(
|
583 |
'id' => 'show-listings-under-categories',
|
584 |
+
'type' => 'toggle',
|
585 |
'name' => _x( 'Show listings under categories on main page', 'settings', 'business-directory-plugin' ),
|
586 |
'default' => false,
|
587 |
'group' => 'listings/post_category',
|
624 |
'default' => $admin ? $admin->ID : '1',
|
625 |
'desc' => _x( 'The user ID or login of an existing user account. If login is not required to submit listings, this user will own them. A site admin or another user that will not a be posting a listing is best.', 'settings', 'business-directory-plugin' ),
|
626 |
'group' => 'registration',
|
627 |
+
'grid_classes' => array(
|
628 |
+
'left' => 'wpbdp8',
|
629 |
+
'right' => 'wpbdp4'
|
630 |
+
),
|
631 |
)
|
632 |
);
|
633 |
|
751 |
wpbdp_register_setting(
|
752 |
array(
|
753 |
'id' => 'show-category-post-count',
|
754 |
+
'type' => 'toggle',
|
755 |
'name' => _x( 'Show category post count', 'settings', 'business-directory-plugin' ),
|
756 |
'default' => true,
|
757 |
'group' => 'listings/post_category',
|
760 |
wpbdp_register_setting(
|
761 |
array(
|
762 |
'id' => 'hide-empty-categories',
|
763 |
+
'type' => 'toggle',
|
764 |
'name' => _x( 'Hide empty categories', 'settings', 'business-directory-plugin' ),
|
765 |
'default' => false,
|
766 |
'group' => 'listings/post_category',
|
769 |
wpbdp_register_setting(
|
770 |
array(
|
771 |
'id' => 'show-only-parent-categories',
|
772 |
+
'type' => 'toggle',
|
773 |
'name' => _x( 'Show only parent categories in category list', 'settings', 'business-directory-plugin' ),
|
774 |
'default' => false,
|
775 |
'group' => 'listings/post_category',
|
819 |
wpbdp_register_setting(
|
820 |
array(
|
821 |
'id' => 'listings-sortbar-enabled',
|
822 |
+
'type' => 'toggle',
|
823 |
'name' => _x( 'Enable sort bar', 'settings', 'business-directory-plugin' ),
|
824 |
'default' => false,
|
825 |
'group' => 'listings/sorting',
|
834 |
'options' => is_admin() ? wpbdp_sortbar_get_field_options() : array(),
|
835 |
'group' => 'listings/sorting',
|
836 |
'requirements' => array( 'listings-sortbar-enabled' ),
|
837 |
+
'class' => 'wpbdp-col-grid-2',
|
838 |
)
|
839 |
);
|
840 |
|
886 |
array(
|
887 |
'id' => 'show-directory-button',
|
888 |
'type' => 'checkbox',
|
889 |
+
'name' => __( 'Show the "Directory" and "Return to Directory" button', 'business-directory-plugin' ),
|
|
|
890 |
'default' => true,
|
891 |
'group' => 'display_options',
|
892 |
)
|
898 |
wpbdp_register_setting(
|
899 |
array(
|
900 |
'id' => 'themes-button-style',
|
901 |
+
'type' => 'toggle',
|
902 |
'name' => __( 'Button style', 'business-directory-plugin' ),
|
903 |
'default' => 'theme',
|
904 |
'option' => 'theme',
|
925 |
wpbdp_register_setting(
|
926 |
array(
|
927 |
'id' => 'allow-images',
|
928 |
+
'type' => 'toggle',
|
929 |
'name' => _x( 'Allow images', 'settings', 'business-directory-plugin' ),
|
930 |
'default' => true,
|
931 |
'group' => 'images/general',
|
940 |
'name' => _x( 'Min Image File Size (KB)', 'settings', 'business-directory-plugin' ),
|
941 |
'default' => '0',
|
942 |
'group' => 'images/general',
|
943 |
+
'class' => 'wpbdp-half',
|
944 |
)
|
945 |
);
|
946 |
wpbdp_register_setting(
|
952 |
'name' => _x( 'Max Image File Size (KB)', 'settings', 'business-directory-plugin' ),
|
953 |
'default' => '10000',
|
954 |
'group' => 'images/general',
|
955 |
+
'class' => 'wpbdp-half',
|
956 |
)
|
957 |
);
|
958 |
wpbdp_register_setting(
|
964 |
'name' => _x( 'Min image width (px)', 'settings', 'business-directory-plugin' ),
|
965 |
'default' => '0',
|
966 |
'group' => 'images/general',
|
967 |
+
'class' => 'wpbdp-half',
|
968 |
)
|
969 |
);
|
970 |
wpbdp_register_setting(
|
976 |
'min' => 0,
|
977 |
'step' => 1,
|
978 |
'group' => 'images/general',
|
979 |
+
'class' => 'wpbdp-half',
|
980 |
)
|
981 |
);
|
982 |
wpbdp_register_setting(
|
988 |
'name' => _x( 'Max image width (px)', 'settings', 'business-directory-plugin' ),
|
989 |
'default' => '500',
|
990 |
'group' => 'images/general',
|
991 |
+
'class' => 'wpbdp-half',
|
992 |
)
|
993 |
);
|
994 |
wpbdp_register_setting(
|
1000 |
'name' => _x( 'Max image height (px)', 'settings', 'business-directory-plugin' ),
|
1001 |
'default' => '500',
|
1002 |
'group' => 'images/general',
|
1003 |
+
'class' => 'wpbdp-half',
|
1004 |
)
|
1005 |
);
|
1006 |
wpbdp_register_setting(
|
1007 |
array(
|
1008 |
'id' => 'use-thickbox',
|
1009 |
+
'type' => 'toggle',
|
1010 |
'min' => 0,
|
1011 |
'step' => 1,
|
1012 |
'name' => _x( 'Turn on thickbox/lightbox', 'settings', 'business-directory-plugin' ),
|
1026 |
'name' => _x( 'Thumbnail width (px)', 'settings', 'business-directory-plugin' ),
|
1027 |
'default' => '150',
|
1028 |
'group' => 'image/thumbnails',
|
1029 |
+
'class' => 'wpbdp-half',
|
1030 |
)
|
1031 |
);
|
1032 |
wpbdp_register_setting(
|
1038 |
'name' => _x( 'Thumbnail height (px)', 'settings', 'business-directory-plugin' ),
|
1039 |
'default' => '150',
|
1040 |
'group' => 'image/thumbnails',
|
1041 |
+
'class' => 'wpbdp-half',
|
1042 |
)
|
1043 |
);
|
1044 |
wpbdp_register_setting(
|
1045 |
array(
|
1046 |
'id' => 'thumbnail-crop',
|
1047 |
+
'type' => 'toggle',
|
1048 |
'name' => _x( 'Crop thumbnails to exact dimensions', 'settings', 'business-directory-plugin' ),
|
1049 |
'desc' => _x( 'When enabled images will match exactly the dimensions above but part of the image may be cropped out. If disabled, image thumbnails will be resized to match the specified width and their height will be adjusted proportionally. Depending on the uploaded images, thumbnails may have different heights.', 'settings', 'business-directory-plugin' ),
|
1050 |
'default' => false,
|
1056 |
wpbdp_register_setting(
|
1057 |
array(
|
1058 |
'id' => 'enforce-image-upload',
|
1059 |
+
'type' => 'toggle',
|
1060 |
'name' => _x( 'Enforce image upload on submit/edit', 'settings', 'business-directory-plugin' ),
|
1061 |
'default' => false,
|
1062 |
'group' => 'image/listings',
|
1175 |
wpbdp_register_setting(
|
1176 |
array(
|
1177 |
'id' => 'payments-test-mode',
|
1178 |
+
'type' => 'toggle',
|
1179 |
'name' => _x( 'Put payment gateways in test mode', 'settings', 'business-directory-plugin' ),
|
1180 |
'default' => true,
|
1181 |
'group' => 'payment/main',
|
1218 |
),
|
1219 |
'desc' => self::gateway_description(),
|
1220 |
'group' => 'payment/main',
|
1221 |
+
'class' => 'wpbdp5',
|
1222 |
)
|
1223 |
);
|
1224 |
wpbdp_register_setting(
|
1228 |
'name' => _x( 'Currency Symbol', 'settings', 'business-directory-plugin' ),
|
1229 |
'default' => '$',
|
1230 |
'group' => 'payment/main',
|
1231 |
+
'class' => 'wpbdp5',
|
1232 |
)
|
1233 |
);
|
1234 |
wpbdp_register_setting(
|
1248 |
wpbdp_register_setting(
|
1249 |
array(
|
1250 |
'id' => 'include-fee-description',
|
1251 |
+
'type' => 'toggle',
|
1252 |
'name' => _x( 'Include plan description in receipt', 'settings', 'business-directory-plugin' ),
|
1253 |
'default' => false,
|
1254 |
'group' => 'payment/main',
|
includes/admin/settings/class-settings.php
CHANGED
@@ -129,10 +129,12 @@ class WPBDP__Settings {
|
|
129 |
$args,
|
130 |
array(
|
131 |
'title' => $title,
|
132 |
-
'desc' =>
|
133 |
'type' => $group_type,
|
134 |
'parent' => $parent,
|
135 |
-
'count' => 0
|
|
|
|
|
136 |
)
|
137 |
);
|
138 |
}
|
@@ -166,6 +168,8 @@ class WPBDP__Settings {
|
|
166 |
'validator' => false,
|
167 |
'default' => false,
|
168 |
'on_update' => false,
|
|
|
|
|
169 |
'dependencies' => array()
|
170 |
) );
|
171 |
|
129 |
$args,
|
130 |
array(
|
131 |
'title' => $title,
|
132 |
+
'desc' => isset( $args['desc'] ) ? $args['desc'] : '',
|
133 |
'type' => $group_type,
|
134 |
'parent' => $parent,
|
135 |
+
'count' => 0,
|
136 |
+
'icon' => isset( $args['icon'] ) ? $args['icon'] : 'archive',
|
137 |
+
'class' => isset( $args['class'] ) ? $args['class'] : '',
|
138 |
)
|
139 |
);
|
140 |
}
|
168 |
'validator' => false,
|
169 |
'default' => false,
|
170 |
'on_update' => false,
|
171 |
+
'class' => '',
|
172 |
+
'grid_classes' => false,
|
173 |
'dependencies' => array()
|
174 |
) );
|
175 |
|
includes/admin/upgrades/class-themes-updater.php
CHANGED
@@ -128,7 +128,7 @@ class WPBDP_Themes_Updater {
|
|
128 |
if ( ! $update_info )
|
129 |
return;
|
130 |
|
131 |
-
printf( '<div class="wpbdp-theme-update-info update-available" data-l10n-updating="%s" data-l10n-updated="%s">',
|
132 |
_x( 'Updating theme...', 'themes', 'business-directory-plugin' ),
|
133 |
_x( 'Theme updated.', 'themes', 'business-directory-plugin' ) );
|
134 |
echo '<div class="update-message">';
|
128 |
if ( ! $update_info )
|
129 |
return;
|
130 |
|
131 |
+
printf( '<div class="wpbdp-theme-update-info update-available wpbdp-inline-notice" data-l10n-updating="%s" data-l10n-updated="%s">',
|
132 |
_x( 'Updating theme...', 'themes', 'business-directory-plugin' ),
|
133 |
_x( 'Theme updated.', 'themes', 'business-directory-plugin' ) );
|
134 |
echo '<div class="update-message">';
|
includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php
CHANGED
@@ -184,12 +184,17 @@ class WPBDP__Manual_Upgrade__18_0__Featured_Levels {
|
|
184 |
'cost' => floatval( wpbdp_get_option( 'featured-price' ) ),
|
185 |
);
|
186 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
|
188 |
// Validate (in case data was POSTed).
|
189 |
if ( $config = $this->_validate_config( $levels ) ) {
|
190 |
$this->_update_db( $config );
|
191 |
-
|
192 |
-
echo wpbdp_admin_header( __( 'Business Directory - Featured Levels Migration', 'business-directory-plugin' ), 'manual-upgrade', null, false );
|
193 |
echo _x( 'Featured Levels migration is complete.', 'migrate-18', 'business-directory-plugin' );
|
194 |
echo '<br /><br />';
|
195 |
echo '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_admin' ) ) . '" class="button button-secondary">' . _x( '← Return to Directory dashboard', 'upgrade-18', 'business-directory-plugin' ) . '</a>';
|
@@ -198,7 +203,6 @@ class WPBDP__Manual_Upgrade__18_0__Featured_Levels {
|
|
198 |
return;
|
199 |
}
|
200 |
|
201 |
-
echo wpbdp_admin_header( __( 'Business Directory - Featured Levels Migration', 'business-directory-plugin' ), 'manual-upgrade', null, false );
|
202 |
echo '<div class="wpbdp-manual-upgrade-wrapper">';
|
203 |
|
204 |
echo '<div id="wpbdp-manual-upgrade-18_0-config">';
|
184 |
'cost' => floatval( wpbdp_get_option( 'featured-price' ) ),
|
185 |
);
|
186 |
}
|
187 |
+
echo wpbdp_admin_header(
|
188 |
+
array(
|
189 |
+
'title' => __( 'Business Directory - Featured Levels Migration', 'business-directory-plugin' ),
|
190 |
+
'id' => 'manual-upgrade',
|
191 |
+
'sidebar' => false,
|
192 |
+
)
|
193 |
+
);
|
194 |
|
195 |
// Validate (in case data was POSTed).
|
196 |
if ( $config = $this->_validate_config( $levels ) ) {
|
197 |
$this->_update_db( $config );
|
|
|
|
|
198 |
echo _x( 'Featured Levels migration is complete.', 'migrate-18', 'business-directory-plugin' );
|
199 |
echo '<br /><br />';
|
200 |
echo '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_admin' ) ) . '" class="button button-secondary">' . _x( '← Return to Directory dashboard', 'upgrade-18', 'business-directory-plugin' ) . '</a>';
|
203 |
return;
|
204 |
}
|
205 |
|
|
|
206 |
echo '<div class="wpbdp-manual-upgrade-wrapper">';
|
207 |
|
208 |
echo '<div id="wpbdp-manual-upgrade-18_0-config">';
|
includes/admin/views/review.php
CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
9 |
* @since 5.14.3
|
10 |
*/
|
11 |
?>
|
12 |
-
<div class="notice notice-info is-dismissible wpbdp-review-notice">
|
13 |
<div class="wpbdp-satisfied">
|
14 |
<p>
|
15 |
<?php echo esc_html( $title ); ?>
|
@@ -47,7 +47,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
47 |
</div>
|
48 |
</div>
|
49 |
</div>
|
50 |
-
<script
|
51 |
jQuery( document ).ready( function( $ ) {
|
52 |
$( document ).on( 'click', '.wpbdp-dismiss-review-notice, .wpbdp-review-notice .notice-dismiss', function( event ) {
|
53 |
|
@@ -63,11 +63,11 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
63 |
$( '.wpbdp-review-notice' ).remove();
|
64 |
} );
|
65 |
|
66 |
-
$( document ).on('
|
67 |
wpbdpDismissReview( 'done' );
|
68 |
} );
|
69 |
|
70 |
-
$( '.show-wpbdp-feedback'
|
71 |
e.preventDefault();
|
72 |
var link = $( this ).data( 'link' );
|
73 |
var className = '.wpbdp-' + link + '-request';
|
9 |
* @since 5.14.3
|
10 |
*/
|
11 |
?>
|
12 |
+
<div class="wpbdp-notice notice notice-info is-dismissible wpbdp-review-notice">
|
13 |
<div class="wpbdp-satisfied">
|
14 |
<p>
|
15 |
<?php echo esc_html( $title ); ?>
|
47 |
</div>
|
48 |
</div>
|
49 |
</div>
|
50 |
+
<script>
|
51 |
jQuery( document ).ready( function( $ ) {
|
52 |
$( document ).on( 'click', '.wpbdp-dismiss-review-notice, .wpbdp-review-notice .notice-dismiss', function( event ) {
|
53 |
|
63 |
$( '.wpbdp-review-notice' ).remove();
|
64 |
} );
|
65 |
|
66 |
+
$( document ).on( 'click', '.wpbdp-feedback-request button', function() {
|
67 |
wpbdpDismissReview( 'done' );
|
68 |
} );
|
69 |
|
70 |
+
$( document ).on( 'click', '.show-wpbdp-feedback', function( e ) {
|
71 |
e.preventDefault();
|
72 |
var link = $( this ).data( 'link' );
|
73 |
var className = '.wpbdp-' + link + '-request';
|
includes/class-assets.php
CHANGED
@@ -140,8 +140,6 @@ class WPBDP__Assets {
|
|
140 |
return;
|
141 |
}
|
142 |
|
143 |
-
// TODO: Is it possible (and worth it) to figure out if we need the
|
144 |
-
// jquery-ui-datepicker script based on which fields are available?
|
145 |
wp_register_script(
|
146 |
'wpbdp-js',
|
147 |
WPBDP_ASSETS_URL . 'js/wpbdp.min.js',
|
@@ -149,7 +147,6 @@ class WPBDP__Assets {
|
|
149 |
'jquery',
|
150 |
'breakpoints.js',
|
151 |
'jquery-ui-sortable',
|
152 |
-
'jquery-ui-datepicker',
|
153 |
),
|
154 |
WPBDP_VERSION,
|
155 |
true
|
@@ -284,20 +281,22 @@ class WPBDP__Assets {
|
|
284 |
// Add admin body class for parent page class to avoid css conflicts.
|
285 |
add_filter( 'admin_body_class', array( &$this, 'add_body_class' ) );
|
286 |
|
|
|
|
|
287 |
wp_enqueue_style( 'wpbdp-admin', WPBDP_ASSETS_URL . 'css/admin.min.css', array(), WPBDP_VERSION );
|
288 |
|
289 |
wp_enqueue_style( 'thickbox' );
|
290 |
|
291 |
wp_enqueue_style( 'wpbdp-base-css' );
|
292 |
|
293 |
-
wp_enqueue_script( 'wpbdp-frontend-js', WPBDP_ASSETS_URL . 'js/wpbdp.min.js', array( 'jquery' ), WPBDP_VERSION, true );
|
294 |
|
295 |
-
wp_enqueue_script( 'wpbdp-admin-js', WPBDP_ASSETS_URL . 'js/admin.min.js', array( 'jquery', 'thickbox', 'jquery-ui-sortable', 'jquery-ui-dialog', 'jquery-ui-tooltip' ), WPBDP_VERSION, true );
|
296 |
$this->global_localize( 'wpbdp-admin-js' );
|
297 |
|
298 |
-
wp_enqueue_script( 'wpbdp-user-selector-js', WPBDP_ASSETS_URL . 'js/user-selector.min.js', array( 'jquery', 'wpbdp-js-select2' ), WPBDP_VERSION, true );
|
299 |
|
300 |
-
|
301 |
|
302 |
/**
|
303 |
* Load additional scripts or styles used only in BD plugin pages.
|
@@ -313,7 +312,7 @@ class WPBDP__Assets {
|
|
313 |
|
314 |
$this->load_css();
|
315 |
|
316 |
-
|
317 |
|
318 |
wp_enqueue_style(
|
319 |
'wpbdp-listing-admin-metabox',
|
@@ -347,9 +346,6 @@ class WPBDP__Assets {
|
|
347 |
esc_url( admin_url( 'admin.php?page=wpbdp-admin-fees&wpbdp_view=edit-fee&id={{plan_id}}' ) ),
|
348 |
'{{plan_label}}'
|
349 |
),
|
350 |
-
'noExpiration' => __( 'Never', 'business-directory-plugin' ),
|
351 |
-
'yes' => __( 'Yes', 'business-directory-plugin' ),
|
352 |
-
'no' => __( 'No', 'business-directory-plugin' ),
|
353 |
)
|
354 |
);
|
355 |
|
@@ -393,4 +389,41 @@ class WPBDP__Assets {
|
|
393 |
public function register_installation_resources() {
|
394 |
wp_enqueue_script( 'wpbdp-admin-install-js', WPBDP_ASSETS_URL . 'js/admin-install.min.js', array( 'jquery' ), WPBDP_VERSION, true );
|
395 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
}
|
140 |
return;
|
141 |
}
|
142 |
|
|
|
|
|
143 |
wp_register_script(
|
144 |
'wpbdp-js',
|
145 |
WPBDP_ASSETS_URL . 'js/wpbdp.min.js',
|
147 |
'jquery',
|
148 |
'breakpoints.js',
|
149 |
'jquery-ui-sortable',
|
|
|
150 |
),
|
151 |
WPBDP_VERSION,
|
152 |
true
|
281 |
// Add admin body class for parent page class to avoid css conflicts.
|
282 |
add_filter( 'admin_body_class', array( &$this, 'add_body_class' ) );
|
283 |
|
284 |
+
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
285 |
+
|
286 |
wp_enqueue_style( 'wpbdp-admin', WPBDP_ASSETS_URL . 'css/admin.min.css', array(), WPBDP_VERSION );
|
287 |
|
288 |
wp_enqueue_style( 'thickbox' );
|
289 |
|
290 |
wp_enqueue_style( 'wpbdp-base-css' );
|
291 |
|
292 |
+
wp_enqueue_script( 'wpbdp-frontend-js', WPBDP_ASSETS_URL . 'js/wpbdp' . $min . '.js', array( 'jquery' ), WPBDP_VERSION, true );
|
293 |
|
294 |
+
wp_enqueue_script( 'wpbdp-admin-js', WPBDP_ASSETS_URL . 'js/admin' . $min . '.js', array( 'jquery', 'thickbox', 'jquery-ui-sortable', 'jquery-ui-dialog', 'jquery-ui-tooltip' ), WPBDP_VERSION, true );
|
295 |
$this->global_localize( 'wpbdp-admin-js' );
|
296 |
|
297 |
+
wp_enqueue_script( 'wpbdp-user-selector-js', WPBDP_ASSETS_URL . 'js/user-selector' . $min . '.js', array( 'jquery', 'wpbdp-js-select2' ), WPBDP_VERSION, true );
|
298 |
|
299 |
+
wp_enqueue_style( 'wpbdp-js-select2-css' );
|
300 |
|
301 |
/**
|
302 |
* Load additional scripts or styles used only in BD plugin pages.
|
312 |
|
313 |
$this->load_css();
|
314 |
|
315 |
+
self::load_datepicker();
|
316 |
|
317 |
wp_enqueue_style(
|
318 |
'wpbdp-listing-admin-metabox',
|
346 |
esc_url( admin_url( 'admin.php?page=wpbdp-admin-fees&wpbdp_view=edit-fee&id={{plan_id}}' ) ),
|
347 |
'{{plan_label}}'
|
348 |
),
|
|
|
|
|
|
|
349 |
)
|
350 |
);
|
351 |
|
389 |
public function register_installation_resources() {
|
390 |
wp_enqueue_script( 'wpbdp-admin-install-js', WPBDP_ASSETS_URL . 'js/admin-install.min.js', array( 'jquery' ), WPBDP_VERSION, true );
|
391 |
}
|
392 |
+
|
393 |
+
/**
|
394 |
+
* Load Jquery UI Style.
|
395 |
+
*
|
396 |
+
* @since 6.0
|
397 |
+
*/
|
398 |
+
public static function load_datepicker() {
|
399 |
+
wp_enqueue_script( 'jquery-ui-datepicker' );
|
400 |
+
|
401 |
+
if ( self::is_jquery_ui_css_loaded() ) {
|
402 |
+
return;
|
403 |
+
}
|
404 |
+
|
405 |
+
wp_enqueue_style(
|
406 |
+
'jquery-theme',
|
407 |
+
WPBDP_ASSETS_URL . 'css/jquery-ui.css',
|
408 |
+
array(),
|
409 |
+
WPBDP_VERSION
|
410 |
+
);
|
411 |
+
}
|
412 |
+
|
413 |
+
/**
|
414 |
+
* Check if Jquery UI CSS is loaded.
|
415 |
+
*
|
416 |
+
* @since 6.0
|
417 |
+
*
|
418 |
+
* @return bool
|
419 |
+
*/
|
420 |
+
private static function is_jquery_ui_css_loaded() {
|
421 |
+
$possible_styles = array( 'jquery-ui', 'jquery-ui-css', 'jquery-theme' );
|
422 |
+
foreach ( $possible_styles as $style ) {
|
423 |
+
if ( wp_style_is( $style ) ) {
|
424 |
+
return true;
|
425 |
+
}
|
426 |
+
}
|
427 |
+
return false;
|
428 |
+
}
|
429 |
}
|
includes/class-payment-gateways.php
CHANGED
@@ -93,7 +93,7 @@ class WPBDP__Payment_Gateways {
|
|
93 |
array(
|
94 |
'id' => $gateway->get_id(),
|
95 |
'name' => sprintf( _x( 'Enable %s?', 'payment-gateways', 'business-directory-plugin' ), $gateway->get_title() ),
|
96 |
-
'type' => '
|
97 |
'default' => false,
|
98 |
'group' => 'gateway_' . $gateway->get_id(),
|
99 |
)
|
@@ -138,14 +138,14 @@ class WPBDP__Payment_Gateways {
|
|
138 |
$msg = str_replace( '<problems>', '<b>' . $errors . '</b>', $msg );
|
139 |
$msg = str_replace( array( '<link>', '</link>' ), array( '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_settings&tab=payment' ) ) . '">', '</a>' ), $msg );
|
140 |
|
141 |
-
wpbdp_admin_message( $msg, 'error' );
|
142 |
}
|
143 |
}
|
144 |
|
145 |
if ( ! $at_least_one_gateway && ( $is_plans || $is_payments ) ) {
|
146 |
$msg = __( 'You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s to set up a gateway. Until you do this, only free plans will be available.', 'business-directory-plugin' );
|
147 |
$msg = sprintf( $msg, '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_settings&tab=payment' ) ) . '">', '</a>' );
|
148 |
-
wpbdp_admin_message( $msg, 'error' );
|
149 |
}
|
150 |
}
|
151 |
}
|
93 |
array(
|
94 |
'id' => $gateway->get_id(),
|
95 |
'name' => sprintf( _x( 'Enable %s?', 'payment-gateways', 'business-directory-plugin' ), $gateway->get_title() ),
|
96 |
+
'type' => 'toggle',
|
97 |
'default' => false,
|
98 |
'group' => 'gateway_' . $gateway->get_id(),
|
99 |
)
|
138 |
$msg = str_replace( '<problems>', '<b>' . $errors . '</b>', $msg );
|
139 |
$msg = str_replace( array( '<link>', '</link>' ), array( '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_settings&tab=payment' ) ) . '">', '</a>' ), $msg );
|
140 |
|
141 |
+
wpbdp_admin_message( $msg, 'notice-error is-dismissible', array( 'dismissible-id' => 'no_gateway_' . $gateway->get_title() ) );
|
142 |
}
|
143 |
}
|
144 |
|
145 |
if ( ! $at_least_one_gateway && ( $is_plans || $is_payments ) ) {
|
146 |
$msg = __( 'You have paid plans but no payment gateway. Go to %1$sSettings - Payment%2$s to set up a gateway. Until you do this, only free plans will be available.', 'business-directory-plugin' );
|
147 |
$msg = sprintf( $msg, '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp_settings&tab=payment' ) ) . '">', '</a>' );
|
148 |
+
wpbdp_admin_message( $msg, 'notice-error is-dismissible', array( 'dismissible-id' => 'no_gateway' ) );
|
149 |
}
|
150 |
}
|
151 |
}
|
includes/class-shortcodes.php
CHANGED
@@ -298,9 +298,9 @@ class WPBDP__Shortcodes {
|
|
298 |
$sc_atts = shortcode_atts(
|
299 |
array(
|
300 |
'tag' => '',
|
301 |
-
'tags' => '',
|
302 |
'category' => '',
|
303 |
-
'categories' => '',
|
304 |
'operator' => 'OR',
|
305 |
'author' => '',
|
306 |
'menu' => null,
|
@@ -319,19 +319,7 @@ class WPBDP__Shortcodes {
|
|
319 |
|
320 |
$this->process_category_atts( $sc_atts, $query_args );
|
321 |
|
322 |
-
|
323 |
-
$requested_tags = array();
|
324 |
-
|
325 |
-
if ( $sc_atts['tag'] )
|
326 |
-
$requested_tags = array_merge( $requested_tags, explode( ',', $sc_atts['tag'] ) );
|
327 |
-
|
328 |
-
if ( $sc_atts['tags'] )
|
329 |
-
$requested_tags = array_merge( $requested_tags, explode( ',', $sc_atts['tags'] ) );
|
330 |
-
|
331 |
-
$query_args['tax_query'][] = array( array( 'taxonomy' => WPBDP_TAGS_TAX,
|
332 |
-
'field' => 'slug',
|
333 |
-
'terms' => $requested_tags ) );
|
334 |
-
}
|
335 |
|
336 |
if ( ! empty( $sc_atts['author'] ) ) {
|
337 |
$u = false;
|
@@ -437,6 +425,7 @@ class WPBDP__Shortcodes {
|
|
437 |
|
438 |
/**
|
439 |
* Process category query attributes.
|
|
|
440 |
*
|
441 |
* @param array $atts Shortcode attributes.
|
442 |
* @param array $query_args The query args used to search based on attributes.
|
@@ -444,30 +433,22 @@ class WPBDP__Shortcodes {
|
|
444 |
* @since 5.18
|
445 |
*/
|
446 |
private function process_category_atts( $atts, &$query_args ) {
|
447 |
-
|
|
|
448 |
return;
|
449 |
}
|
450 |
|
451 |
-
$
|
452 |
-
|
453 |
-
if ( isset( $atts['category'] ) ) {
|
454 |
-
$requested_categories = array_merge( $requested_categories, explode( ',', $atts['category'] ) );
|
455 |
-
}
|
456 |
-
|
457 |
-
if ( isset( $atts['categories'] ) ) {
|
458 |
-
$requested_categories = array_merge( $requested_categories, explode( ',', $atts['categories'] ) );
|
459 |
-
}
|
460 |
-
|
461 |
$categories = array();
|
462 |
|
463 |
-
foreach ( $
|
464 |
-
$term =
|
465 |
-
if (
|
466 |
-
$term = get_term_by( '
|
467 |
}
|
468 |
|
469 |
-
if ( ! $term
|
470 |
-
$term = get_term_by( '
|
471 |
}
|
472 |
|
473 |
if ( $term ) {
|
@@ -475,6 +456,10 @@ class WPBDP__Shortcodes {
|
|
475 |
}
|
476 |
}
|
477 |
|
|
|
|
|
|
|
|
|
478 |
$query_args['tax_query'][] = array(
|
479 |
array(
|
480 |
'taxonomy' => WPBDP_CATEGORY_TAX,
|
@@ -484,6 +469,52 @@ class WPBDP__Shortcodes {
|
|
484 |
);
|
485 |
}
|
486 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
private function display_listings( $query_args, $args = array() ) {
|
488 |
$query_args = array_merge(
|
489 |
array(
|
298 |
$sc_atts = shortcode_atts(
|
299 |
array(
|
300 |
'tag' => '',
|
301 |
+
'tags' => '', // Deprecated.
|
302 |
'category' => '',
|
303 |
+
'categories' => '', // Deprecated.
|
304 |
'operator' => 'OR',
|
305 |
'author' => '',
|
306 |
'menu' => null,
|
319 |
|
320 |
$this->process_category_atts( $sc_atts, $query_args );
|
321 |
|
322 |
+
$this->process_tag_atts( $sc_atts, $query_args );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
|
324 |
if ( ! empty( $sc_atts['author'] ) ) {
|
325 |
$u = false;
|
425 |
|
426 |
/**
|
427 |
* Process category query attributes.
|
428 |
+
* This checks if the `category` or `categories` attributes are passed in the shortcode and includes them in the loop query.
|
429 |
*
|
430 |
* @param array $atts Shortcode attributes.
|
431 |
* @param array $query_args The query args used to search based on attributes.
|
433 |
* @since 5.18
|
434 |
*/
|
435 |
private function process_category_atts( $atts, &$query_args ) {
|
436 |
+
$this->combine_shortcode_atts( array( 'category', 'categories' ), $atts );
|
437 |
+
if ( empty( $atts['category'] ) ) {
|
438 |
return;
|
439 |
}
|
440 |
|
441 |
+
$atts['category'] = explode( ',', $atts['category'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
442 |
$categories = array();
|
443 |
|
444 |
+
foreach ( $atts['category'] as $cat ) {
|
445 |
+
$term = false;
|
446 |
+
if ( is_numeric( $cat ) ) {
|
447 |
+
$term = get_term_by( 'id', $cat, WPBDP_CATEGORY_TAX );
|
448 |
}
|
449 |
|
450 |
+
if ( ! $term ) {
|
451 |
+
$term = get_term_by( 'slug', $cat, WPBDP_CATEGORY_TAX );
|
452 |
}
|
453 |
|
454 |
if ( $term ) {
|
456 |
}
|
457 |
}
|
458 |
|
459 |
+
if ( empty( $categories ) ) {
|
460 |
+
return;
|
461 |
+
}
|
462 |
+
|
463 |
$query_args['tax_query'][] = array(
|
464 |
array(
|
465 |
'taxonomy' => WPBDP_CATEGORY_TAX,
|
469 |
);
|
470 |
}
|
471 |
|
472 |
+
/**
|
473 |
+
* Process tag query attributes.
|
474 |
+
* This checks if the `tag` or `tags` attributes are passed in the shortcode and includes them in the loop query.
|
475 |
+
*
|
476 |
+
* @param array $atts Shortcode attributes.
|
477 |
+
* @param array $query_args The query args used to search based on attributes.
|
478 |
+
*
|
479 |
+
* @since 6.0
|
480 |
+
*/
|
481 |
+
private function process_tag_atts( $atts, &$query_args ) {
|
482 |
+
$this->combine_shortcode_atts( array( 'tag', 'tags' ), $atts );
|
483 |
+
if ( empty( $atts['tag'] ) ) {
|
484 |
+
return;
|
485 |
+
}
|
486 |
+
|
487 |
+
$query_args['tax_query'][] = array(
|
488 |
+
array(
|
489 |
+
'taxonomy' => WPBDP_TAGS_TAX,
|
490 |
+
'field' => 'slug',
|
491 |
+
'terms' => explode( ',', $atts['tag'] ),
|
492 |
+
)
|
493 |
+
);
|
494 |
+
}
|
495 |
+
|
496 |
+
/**
|
497 |
+
* Combine two shortcode attributes into one. The combination of the two is
|
498 |
+
* saved in the first param.
|
499 |
+
*
|
500 |
+
* @param array $combine The names of two shortcode atts to combine. ie. `category` and `categories`.
|
501 |
+
* @param array $atts Shortcode attributes.
|
502 |
+
*
|
503 |
+
* @since 6.0
|
504 |
+
*/
|
505 |
+
private function combine_shortcode_atts( $combine, &$atts ) {
|
506 |
+
$first = $combine[0];
|
507 |
+
$second = $combine[1];
|
508 |
+
|
509 |
+
$atts[ $first ] = isset( $atts[ $first ] ) ? $atts[ $first ] : '';
|
510 |
+
$second = isset( $atts[ $second ] ) ? $atts[ $second ] : '';
|
511 |
+
if ( $second !== '' ) {
|
512 |
+
// Combine with the extra parameter.
|
513 |
+
$atts[ $first ] .= $atts[ $first ] ? ',' : '';
|
514 |
+
$atts[ $first ] .= $second;
|
515 |
+
}
|
516 |
+
}
|
517 |
+
|
518 |
private function display_listings( $query_args, $args = array() ) {
|
519 |
$query_args = array_merge(
|
520 |
array(
|
includes/class-wpbdp.php
CHANGED
@@ -28,7 +28,7 @@ final class WPBDP {
|
|
28 |
}
|
29 |
|
30 |
private function setup_constants() {
|
31 |
-
define( 'WPBDP_VERSION', '
|
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.0' );
|
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-all-listings.php
CHANGED
@@ -39,8 +39,8 @@ class WPBDP__Views__All_Listings extends WPBDP__View {
|
|
39 |
$q->max_num_pages = 1;
|
40 |
}
|
41 |
wpbdp_push_query( $q );
|
42 |
-
|
43 |
-
|
44 |
|
45 |
$template_args = array( '_id' => $show_menu ? 'all_listings' : 'listings',
|
46 |
'_wrapper' => $show_menu ? 'page' : '',
|
39 |
$q->max_num_pages = 1;
|
40 |
}
|
41 |
wpbdp_push_query( $q );
|
42 |
+
$should_have_menu = isset( $this->in_shortcode ) ? ! $this->in_shortcode : empty( $args['tax_query'] );
|
43 |
+
$show_menu = isset( $this->menu ) ? $this->menu : $should_have_menu;
|
44 |
|
45 |
$template_args = array( '_id' => $show_menu ? 'all_listings' : 'listings',
|
46 |
'_wrapper' => $show_menu ? 'page' : '',
|
includes/controllers/pages/class-submit-listing.php
CHANGED
@@ -51,10 +51,6 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
51 |
|
52 |
wp_enqueue_script( 'wpbdp-checkout' );
|
53 |
|
54 |
-
// Required for the date picker.
|
55 |
-
wpbdp_enqueue_jquery_ui_style();
|
56 |
-
wp_enqueue_script( 'jquery-ui-datepicker' );
|
57 |
-
|
58 |
// Required for textareas with HTML support via the WP Editor.
|
59 |
// XXX: wp_enqueue_editor was added in WordPress 4.8.0.
|
60 |
if ( function_exists( 'wp_enqueue_editor' ) ) {
|
51 |
|
52 |
wp_enqueue_script( 'wpbdp-checkout' );
|
53 |
|
|
|
|
|
|
|
|
|
54 |
// Required for textareas with HTML support via the WP Editor.
|
55 |
// XXX: wp_enqueue_editor was added in WordPress 4.8.0.
|
56 |
if ( function_exists( 'wp_enqueue_editor' ) ) {
|
includes/fields/class-fieldtypes-date.php
CHANGED
@@ -87,10 +87,7 @@ class WPBDP_FieldTypes_Date extends WPBDP_FieldTypes_TextField {
|
|
87 |
static $enqueued = false;
|
88 |
|
89 |
if ( ! $enqueued ) {
|
90 |
-
|
91 |
-
wpbdp_enqueue_jquery_ui_style();
|
92 |
-
wp_enqueue_script( 'jquery-ui-datepicker' );
|
93 |
-
}
|
94 |
$enqueued = true;
|
95 |
}
|
96 |
|
87 |
static $enqueued = false;
|
88 |
|
89 |
if ( ! $enqueued ) {
|
90 |
+
WPBDP__Assets::load_datepicker();
|
|
|
|
|
|
|
91 |
$enqueued = true;
|
92 |
}
|
93 |
|
includes/helpers/class-app.php
CHANGED
@@ -153,8 +153,7 @@ class WPBDP_App_Helper {
|
|
153 |
* @return bool
|
154 |
*/
|
155 |
public static function is_bd_page() {
|
156 |
-
|
157 |
-
if ( $is_post_page ) {
|
158 |
return true;
|
159 |
}
|
160 |
|
@@ -177,13 +176,15 @@ class WPBDP_App_Helper {
|
|
177 |
public static function is_bd_post_page() {
|
178 |
global $pagenow;
|
179 |
|
180 |
-
|
|
|
|
|
181 |
return false;
|
182 |
}
|
183 |
|
184 |
$post_type = wpbdp_get_var( array( 'param' => 'post_type' ) );
|
185 |
|
186 |
-
if ( empty( $post_type ) ) {
|
187 |
$post_id = wpbdp_get_var( array( 'param' => 'post', 'sanitize' => 'absint' ) );
|
188 |
$post = get_post( $post_id );
|
189 |
$post_type = $post ? $post->post_type : '';
|
@@ -311,22 +312,43 @@ class WPBDP_App_Helper {
|
|
311 |
}
|
312 |
|
313 |
/**
|
|
|
|
|
314 |
* @since 5.9.2
|
315 |
*/
|
316 |
-
public static function show_logo( $
|
317 |
-
echo self::kses( self::svg_logo( $
|
318 |
}
|
319 |
|
320 |
/**
|
321 |
* @since 5.9.2
|
322 |
*/
|
323 |
-
public static function svg_logo( $
|
324 |
-
$atts =
|
325 |
-
|
326 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
);
|
328 |
|
329 |
-
return
|
330 |
}
|
331 |
|
332 |
/**
|
153 |
* @return bool
|
154 |
*/
|
155 |
public static function is_bd_page() {
|
156 |
+
if ( self::is_bd_post_page() ) {
|
|
|
157 |
return true;
|
158 |
}
|
159 |
|
176 |
public static function is_bd_post_page() {
|
177 |
global $pagenow;
|
178 |
|
179 |
+
$is_tax = 'term.php' === $pagenow || 'edit-tags.php' === $pagenow;
|
180 |
+
$is_post = 'post.php' === $pagenow || 'post-new.php' === $pagenow || 'edit.php' === $pagenow;
|
181 |
+
if ( ! $is_post && ! $is_tax ) {
|
182 |
return false;
|
183 |
}
|
184 |
|
185 |
$post_type = wpbdp_get_var( array( 'param' => 'post_type' ) );
|
186 |
|
187 |
+
if ( empty( $post_type ) && ! $is_tax ) {
|
188 |
$post_id = wpbdp_get_var( array( 'param' => 'post', 'sanitize' => 'absint' ) );
|
189 |
$post = get_post( $post_id );
|
190 |
$post_type = $post ? $post->post_type : '';
|
312 |
}
|
313 |
|
314 |
/**
|
315 |
+
* @param array|int $atts
|
316 |
+
*
|
317 |
* @since 5.9.2
|
318 |
*/
|
319 |
+
public static function show_logo( $atts ) {
|
320 |
+
echo self::kses( self::svg_logo( $atts ), 'all' ); // WPCS: XSS ok.
|
321 |
}
|
322 |
|
323 |
/**
|
324 |
* @since 5.9.2
|
325 |
*/
|
326 |
+
public static function svg_logo( $atts = array() ) {
|
327 |
+
$atts = self::prep_logo_atts( $atts );
|
328 |
+
|
329 |
+
return '<img src="' . esc_url( self::plugin_url() . '/assets/images/percie' . ( $atts['round'] ? '-round' : '' ) . '.svg' ) . '" width="' . esc_attr( $atts['size'] ) . '" height="' . esc_attr( $atts['size'] ) . '" class="' . esc_attr( $atts['class'] ) . '" />';
|
330 |
+
}
|
331 |
+
|
332 |
+
/**
|
333 |
+
* @param int|array $atts
|
334 |
+
*
|
335 |
+
* @since 6.0
|
336 |
+
*/
|
337 |
+
private static function prep_logo_atts( $atts ) {
|
338 |
+
if ( ! is_array( $atts ) ) {
|
339 |
+
// For reverse compatibility, changing param from int to array.
|
340 |
+
$atts = array(
|
341 |
+
'size' => $atts,
|
342 |
+
);
|
343 |
+
}
|
344 |
+
|
345 |
+
$defaults = array(
|
346 |
+
'class' => false,
|
347 |
+
'round' => false,
|
348 |
+
'size' => 18,
|
349 |
);
|
350 |
|
351 |
+
return wp_parse_args( $atts, $defaults );
|
352 |
}
|
353 |
|
354 |
/**
|
includes/helpers/class-field-display-list.php
CHANGED
@@ -205,7 +205,7 @@ class WPBDP_Field_Display_List implements IteratorAggregate {
|
|
205 |
$city = trim( $this->t_city->value );
|
206 |
$state = trim( $this->t_state->value );
|
207 |
$country = trim( $this->t_country->value );
|
208 |
-
$zip = trim( is_array
|
209 |
|
210 |
$first_line = $address;
|
211 |
|
205 |
$city = trim( $this->t_city->value );
|
206 |
$state = trim( $this->t_state->value );
|
207 |
$country = trim( $this->t_country->value );
|
208 |
+
$zip = trim( is_array( $this->t_zip->value ) ? $this->t_zip->value['zip'] : $this->t_zip->value );
|
209 |
|
210 |
$first_line = $address;
|
211 |
|
includes/licensing.php
CHANGED
@@ -142,8 +142,7 @@ class WPBDP_Licensing {
|
|
142 |
*/
|
143 |
public function show_validation_notice_under_plugin( $plugin_file, $plugin_data ) {
|
144 |
?>
|
145 |
-
<
|
146 |
-
<td colspan="4">
|
147 |
<div class="update-message notice inline notice-warning notice-alt">
|
148 |
<p>
|
149 |
<?php
|
@@ -156,8 +155,7 @@ class WPBDP_Licensing {
|
|
156 |
?>
|
157 |
</p>
|
158 |
</div>
|
159 |
-
</
|
160 |
-
</tr>
|
161 |
<?php
|
162 |
}
|
163 |
|
@@ -202,7 +200,9 @@ class WPBDP_Licensing {
|
|
202 |
$modules = $this->modules_array();
|
203 |
$themes = wp_list_filter( $this->items, array( 'item_type' => 'theme' ) );
|
204 |
|
205 |
-
wpbdp_register_settings_group( 'licenses', __( 'Licenses', 'business-directory-plugin' )
|
|
|
|
|
206 |
wpbdp_register_settings_group(
|
207 |
'licenses/main',
|
208 |
__( 'Licenses', 'business-directory-plugin' ),
|
142 |
*/
|
143 |
public function show_validation_notice_under_plugin( $plugin_file, $plugin_data ) {
|
144 |
?>
|
145 |
+
<div class="wpbdp-setting-row">
|
|
|
146 |
<div class="update-message notice inline notice-warning notice-alt">
|
147 |
<p>
|
148 |
<?php
|
155 |
?>
|
156 |
</p>
|
157 |
</div>
|
158 |
+
</div>
|
|
|
159 |
<?php
|
160 |
}
|
161 |
|
200 |
$modules = $this->modules_array();
|
201 |
$themes = wp_list_filter( $this->items, array( 'item_type' => 'theme' ) );
|
202 |
|
203 |
+
wpbdp_register_settings_group( 'licenses', __( 'Licenses', 'business-directory-plugin' ), '', array(
|
204 |
+
'icon' => 'key',
|
205 |
+
) );
|
206 |
wpbdp_register_settings_group(
|
207 |
'licenses/main',
|
208 |
__( 'Licenses', 'business-directory-plugin' ),
|
includes/payment.php
CHANGED
@@ -17,10 +17,6 @@ if ( ! class_exists( 'WPBDP_PaymentsAPI' ) ) {
|
|
17 |
class WPBDP_PaymentsAPI {
|
18 |
|
19 |
public function __construct() {
|
20 |
-
// Listing abandonment.
|
21 |
-
add_filter( 'WPBDP_Listing::get_payment_status', array( &$this, 'abandonment_status' ), 10, 2 );
|
22 |
-
add_filter( 'wpbdp_admin_directory_views', array( &$this, 'abandonment_admin_views' ), 10, 2 );
|
23 |
-
add_filter( 'wpbdp_admin_directory_filter', array( &$this, 'abandonment_admin_filter' ), 10, 2 );
|
24 |
add_filter( 'wpbdp_listing_post_status', array( &$this, 'check_listing_payment_status' ), 10, 2 );
|
25 |
|
26 |
add_action( 'wpbdp_checkout_form_top', array( $this, '_return_fee_list_button' ), -2, 1 );
|
@@ -112,117 +108,29 @@ class WPBDP_PaymentsAPI {
|
|
112 |
return $html;
|
113 |
}
|
114 |
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
return 'pending-abandonment';
|
139 |
-
}
|
140 |
-
|
141 |
-
return $status;
|
142 |
-
}
|
143 |
-
|
144 |
-
/**
|
145 |
-
* @since 3.5.8
|
146 |
-
*/
|
147 |
-
public function abandonment_admin_views( $views, $post_statuses ) {
|
148 |
-
global $wpdb;
|
149 |
-
|
150 |
-
if ( ! wpbdp_get_option( 'payment-abandonment' ) )
|
151 |
-
return $views;
|
152 |
-
|
153 |
-
$threshold = max( 1, absint( wpbdp_get_option( 'payment-abandonment-threshold' ) ) );
|
154 |
-
$now = current_time( 'timestamp' );
|
155 |
-
|
156 |
-
$within_pending = wpbdp_format_time( strtotime( sprintf( '-%d hours', $threshold ), $now ), 'mysql' );
|
157 |
-
$within_abandonment = wpbdp_format_time( strtotime( sprintf( '-%d hours', $threshold * 2 ), $now ), 'mysql' );
|
158 |
-
|
159 |
-
$count_pending = $wpdb->get_var( $wpdb->prepare(
|
160 |
-
"SELECT COUNT(*) FROM {$wpdb->prefix}wpbdp_payments ps LEFT JOIN {$wpdb->posts} p ON p.ID = ps.listing_id WHERE ps.created_at > %s AND ps.created_at <= %s AND ps.status = %s AND ps.payment_type = %s AND p.post_status IN ({$post_statuses})",
|
161 |
-
$within_abandonment,
|
162 |
-
$within_pending,
|
163 |
-
'pending',
|
164 |
-
'initial'
|
165 |
-
) );
|
166 |
-
$count_abandoned = $wpdb->get_var( $wpdb->prepare(
|
167 |
-
"SELECT COUNT(*) FROM {$wpdb->prefix}wpbdp_payments ps LEFT JOIN {$wpdb->posts} p ON p.ID = ps.listing_id WHERE ps.created_at <= %s AND ps.status = %s AND ps.payment_type = %s AND p.post_status IN ({$post_statuses})",
|
168 |
-
$within_abandonment,
|
169 |
-
'pending',
|
170 |
-
'initial'
|
171 |
-
) );
|
172 |
-
|
173 |
-
$filter = wpbdp_get_var( array( 'param' => 'wpbdmfilter' ), 'request' );
|
174 |
-
$url = add_query_arg( 'wpbdmfilter', $filter, remove_query_arg( 'listing_status' ) );
|
175 |
-
|
176 |
-
$views['pending-abandonment'] = sprintf(
|
177 |
-
'<a href="%s" class="%s">%s</a> <span class="count">(%s)</span></a>',
|
178 |
-
esc_url( add_query_arg( 'wpbdmfilter', 'pending-abandonment', $url ) ),
|
179 |
-
'pending-abandonment' === $filter ? 'current' : '',
|
180 |
-
esc_html__( 'Pending Abandonment', 'business-directory-plugin' ),
|
181 |
-
esc_html( number_format_i18n( $count_pending ) )
|
182 |
-
);
|
183 |
-
$views['abandoned'] = sprintf(
|
184 |
-
'<a href="%s" class="%s">%s</a> <span class="count">(%s)</span></a>',
|
185 |
-
esc_url( add_query_arg( 'wpbdmfilter', 'abandoned', $url ) ),
|
186 |
-
'abandoned' === $filter ? 'current' : '',
|
187 |
-
esc_html__( 'Abandoned', 'business-directory-plugin' ),
|
188 |
-
esc_html( number_format_i18n( $count_abandoned ) )
|
189 |
-
);
|
190 |
-
|
191 |
-
return $views;
|
192 |
-
}
|
193 |
-
|
194 |
-
/**
|
195 |
-
* @since 3.5.8
|
196 |
-
*/
|
197 |
-
public function abandonment_admin_filter( $pieces, $filter = '' ) {
|
198 |
-
if ( ! wpbdp_get_option( 'payment-abandonment' ) ||
|
199 |
-
! in_array( $filter, array( 'abandoned', 'pending-abandonment' ), true ) )
|
200 |
-
return $pieces;
|
201 |
-
|
202 |
-
global $wpdb;
|
203 |
-
|
204 |
-
// TODO: move this code elsewhere since it is used in several places.
|
205 |
-
$threshold = max( 1, absint( wpbdp_get_option( 'payment-abandonment-threshold' ) ) );
|
206 |
-
$now = current_time( 'timestamp' );
|
207 |
-
|
208 |
-
$within_pending = wpbdp_format_time( strtotime( sprintf( '-%d hours', $threshold ), $now ), 'mysql' );
|
209 |
-
$within_abandonment = wpbdp_format_time( strtotime( sprintf( '-%d hours', $threshold * 2 ), $now ), 'mysql' );
|
210 |
-
|
211 |
-
$pieces['join'] .= " LEFT JOIN {$wpdb->prefix}wpbdp_payments ps ON {$wpdb->posts}.ID = ps.listing_id";
|
212 |
-
$pieces['where'] .= $wpdb->prepare( ' AND ps.payment_type = %s AND ps.status = %s ', 'initial', 'pending' );
|
213 |
-
|
214 |
-
switch ( $filter ) {
|
215 |
-
case 'abandoned':
|
216 |
-
$pieces['where'] .= $wpdb->prepare( ' AND ps.created_at <= %s ', $within_abandonment );
|
217 |
-
break;
|
218 |
-
|
219 |
-
case 'pending-abandonment':
|
220 |
-
$pieces['where'] .= $wpdb->prepare( ' AND ps.created_at > %s AND ps.created_at <= %s ', $within_abandonment, $within_pending );
|
221 |
-
break;
|
222 |
-
}
|
223 |
-
|
224 |
-
return $pieces;
|
225 |
-
}
|
226 |
|
227 |
/**
|
228 |
* @since 3.5.8
|
@@ -250,6 +158,9 @@ class WPBDP_PaymentsAPI {
|
|
250 |
continue;
|
251 |
|
252 |
$payment = WPBDP_Payment::get( $data->id );
|
|
|
|
|
|
|
253 |
|
254 |
// Send e-mail.
|
255 |
$replacements = array(
|
@@ -268,8 +179,6 @@ class WPBDP_PaymentsAPI {
|
|
268 |
update_option( 'wpbdp-payment-abandonment-notified', $notified );
|
269 |
}
|
270 |
|
271 |
-
|
272 |
-
|
273 |
function _return_fee_list_button( $payment ) {
|
274 |
if ( 'renewal' !== $payment->payment_type ) {
|
275 |
return;
|
17 |
class WPBDP_PaymentsAPI {
|
18 |
|
19 |
public function __construct() {
|
|
|
|
|
|
|
|
|
20 |
add_filter( 'wpbdp_listing_post_status', array( &$this, 'check_listing_payment_status' ), 10, 2 );
|
21 |
|
22 |
add_action( 'wpbdp_checkout_form_top', array( $this, '_return_fee_list_button' ), -2, 1 );
|
108 |
return $html;
|
109 |
}
|
110 |
|
111 |
+
/**
|
112 |
+
* @since 3.5.8
|
113 |
+
*/
|
114 |
+
public function abandonment_status( $status, $listing_id ) {
|
115 |
+
_deprecated_function( __METHOD__, '5.19' );
|
116 |
+
return $status;
|
117 |
+
}
|
118 |
+
|
119 |
+
/**
|
120 |
+
* @since 3.5.8
|
121 |
+
*/
|
122 |
+
public function abandonment_admin_views( $views, $post_statuses ) {
|
123 |
+
_deprecated_function( __METHOD__, '5.19' );
|
124 |
+
return $views;
|
125 |
+
}
|
126 |
+
|
127 |
+
/**
|
128 |
+
* @since 3.5.8
|
129 |
+
*/
|
130 |
+
public function abandonment_admin_filter( $pieces, $filter = '' ) {
|
131 |
+
_deprecated_function( __METHOD__, '5.19' );
|
132 |
+
return $pieces;
|
133 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
|
135 |
/**
|
136 |
* @since 3.5.8
|
158 |
continue;
|
159 |
|
160 |
$payment = WPBDP_Payment::get( $data->id );
|
161 |
+
if ( ! $payment ) {
|
162 |
+
continue;
|
163 |
+
}
|
164 |
|
165 |
// Send e-mail.
|
166 |
$replacements = array(
|
179 |
update_option( 'wpbdp-payment-abandonment-notified', $notified );
|
180 |
}
|
181 |
|
|
|
|
|
182 |
function _return_fee_list_button( $payment ) {
|
183 |
if ( 'renewal' !== $payment->payment_type ) {
|
184 |
return;
|
includes/utils.php
CHANGED
@@ -403,11 +403,9 @@ class WPBDP__Utils {
|
|
403 |
return false;
|
404 |
}
|
405 |
|
406 |
-
if ( is_array( $constraints['mimetypes'] ) ) {
|
407 |
-
|
408 |
-
|
409 |
-
return false;
|
410 |
-
}
|
411 |
}
|
412 |
|
413 |
// We do not accept TIFF format. Compatibility issues.
|
@@ -432,7 +430,7 @@ class WPBDP__Utils {
|
|
432 |
'min-height' => 0,
|
433 |
'max-width' => 0,
|
434 |
'max-height' => 0,
|
435 |
-
'mimetypes'
|
436 |
),
|
437 |
$constraints
|
438 |
);
|
@@ -442,6 +440,38 @@ class WPBDP__Utils {
|
|
442 |
}
|
443 |
}
|
444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
/**
|
446 |
* We have the file info, but WP needs the file id.
|
447 |
*
|
@@ -1170,20 +1200,7 @@ function wpbdp_render_user_field( $args = array() ) {
|
|
1170 |
}
|
1171 |
|
1172 |
function wpbdp_enqueue_jquery_ui_style() {
|
1173 |
-
|
1174 |
-
|
1175 |
-
if ( is_object( $wp_scripts ) && isset( $wp_scripts->registered['jquery-ui-core'] ) ) {
|
1176 |
-
$ui_version = $wp_scripts->registered['jquery-ui-core']->ver;
|
1177 |
-
} else {
|
1178 |
-
$ui_version = '1.8.21';
|
1179 |
-
}
|
1180 |
-
|
1181 |
-
wp_enqueue_style(
|
1182 |
-
'wpbdp-jquery-ui-css',
|
1183 |
-
'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $ui_version . '/themes/redmond/jquery-ui.css',
|
1184 |
-
array(),
|
1185 |
-
$ui_version
|
1186 |
-
);
|
1187 |
}
|
1188 |
|
1189 |
function wpbdp_buckwalter_arabic_transliteration( $content ) {
|
403 |
return false;
|
404 |
}
|
405 |
|
406 |
+
if ( is_array( $constraints['mimetypes'] ) && ! self::is_valid_file_type( $file, $constraints['mimetypes'] ) ) {
|
407 |
+
$error_msg = sprintf( _x( 'File type "%s" is not allowed', 'utils', 'business-directory-plugin' ), $file['type'] );
|
408 |
+
return false;
|
|
|
|
|
409 |
}
|
410 |
|
411 |
// We do not accept TIFF format. Compatibility issues.
|
430 |
'min-height' => 0,
|
431 |
'max-width' => 0,
|
432 |
'max-height' => 0,
|
433 |
+
'mimetypes' => null,
|
434 |
),
|
435 |
$constraints
|
436 |
);
|
440 |
}
|
441 |
}
|
442 |
|
443 |
+
/**
|
444 |
+
* Check the file type and extension.
|
445 |
+
*
|
446 |
+
* @param array $file
|
447 |
+
* @param array $constraints
|
448 |
+
*
|
449 |
+
* @since 6.0
|
450 |
+
*
|
451 |
+
* @return bool
|
452 |
+
*/
|
453 |
+
private static function is_valid_file_type( $file, $mimetypes ) {
|
454 |
+
// If this is a multidimensional array, flatten it.
|
455 |
+
if ( is_array( reset( $mimetypes ) ) ) {
|
456 |
+
$mimetypes = call_user_func_array( 'array_merge', $mimetypes );
|
457 |
+
}
|
458 |
+
|
459 |
+
$mime_allowed = in_array( strtolower( $file['type'] ), $mimetypes, true );
|
460 |
+
if ( ! $mime_allowed ) {
|
461 |
+
return false;
|
462 |
+
}
|
463 |
+
|
464 |
+
// If the keys are numeric, we don't have the extensions to check.
|
465 |
+
$check_extension = array_filter( array_keys( $mimetypes ), 'is_string' );
|
466 |
+
if ( empty( $check_extension ) ) {
|
467 |
+
return true;
|
468 |
+
}
|
469 |
+
|
470 |
+
$filename = sanitize_file_name( (string) wp_unslash( $file['name'] ) );
|
471 |
+
$matches = wp_check_filetype( $filename, $mimetypes );
|
472 |
+
return ! empty( $matches['ext'] );
|
473 |
+
}
|
474 |
+
|
475 |
/**
|
476 |
* We have the file info, but WP needs the file id.
|
477 |
*
|
1200 |
}
|
1201 |
|
1202 |
function wpbdp_enqueue_jquery_ui_style() {
|
1203 |
+
WPBDP__Assets::load_datepicker();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1204 |
}
|
1205 |
|
1206 |
function wpbdp_buckwalter_arabic_transliteration( $content ) {
|
languages/business-directory-plugin-ar.mo
CHANGED
Binary file
|
languages/business-directory-plugin-ar.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-03-
|
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"
|
@@ -42,7 +42,82 @@ msgstr "قائمة منسدلة"
|
|
42 |
msgid "Selected"
|
43 |
msgstr "قائمة منسدلة"
|
44 |
|
45 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
#, fuzzy
|
47 |
msgid ""
|
48 |
"Find out how to create a compelling, thriving business directory from "
|
@@ -52,71 +127,70 @@ msgstr ""
|
|
52 |
"(مجانا) مكونة من 5 أجزاء (ترسل عبر البريد الإلكتروني). أحصل على وحدة ممتازة "
|
53 |
"(premium module) مجانا بمجرد تسجيلك."
|
54 |
|
55 |
-
#: includes/admin/class-admin.php:
|
56 |
#, fuzzy
|
57 |
msgid "Want to know the Secrets of Building an Awesome Business Directory?"
|
58 |
msgstr "هل تريد معرفة \"أسرار بناء\" \"دليل أعمال مدهش\"؟"
|
59 |
|
60 |
-
#: includes/admin/class-admin.php:
|
61 |
#, fuzzy
|
62 |
msgid "Yes, please!"
|
63 |
msgstr "نعم، من فضلك!"
|
64 |
|
65 |
-
#: includes/admin/class-admin.php:
|
66 |
#, fuzzy
|
67 |
msgid "No, thanks"
|
68 |
msgstr "لا، شكرًا"
|
69 |
|
70 |
-
#: includes/admin/class-admin.php:
|
71 |
#, fuzzy
|
72 |
msgid "You're all set. Visit your new %1$sBusiness Directory%2$s page."
|
73 |
msgstr "أنت مستعد. قم بزيارة صفحة <a>دليل الأعمال</a> الجديدة."
|
74 |
|
75 |
-
#: includes/admin/class-admin.php:
|
76 |
#, fuzzy
|
77 |
msgid "Invalid email address."
|
78 |
msgstr "عنوان البريد الإلكتروني غير صالح!"
|
79 |
|
80 |
-
#: includes/admin/class-admin.php:
|
81 |
#, fuzzy
|
82 |
msgid "Business Directory Admin"
|
83 |
msgstr "مدير دليل الأعمال"
|
84 |
|
85 |
-
#: includes/admin/class-admin.php:
|
86 |
-
#:
|
87 |
-
#: includes/admin/settings/class-settings-bootstrap.php:682
|
88 |
-
#: includes/helpers/class-app.php:93
|
89 |
-
#: includes/helpers/functions/templates-ui.php:307
|
90 |
-
msgid "Directory"
|
91 |
-
msgstr "الدليل"
|
92 |
-
|
93 |
-
#: includes/admin/class-admin.php:312
|
94 |
msgid "Plans"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/admin/class-admin.php:
|
|
|
98 |
#, fuzzy
|
99 |
msgid "Form Fields"
|
100 |
msgstr "حقول الاستمارة"
|
101 |
|
102 |
-
#: includes/admin/class-admin.php:
|
103 |
#: includes/licensing.php:229
|
104 |
#, fuzzy
|
105 |
msgid "Modules"
|
106 |
msgstr "(جميع الوحدات)"
|
107 |
|
108 |
-
#: includes/admin/class-admin.php:
|
109 |
#, fuzzy
|
110 |
msgid "Business Directory"
|
111 |
msgstr "دليل الأعمال"
|
112 |
|
113 |
-
#: includes/admin/class-admin.php:
|
|
|
|
|
|
|
|
|
|
|
114 |
#, fuzzy
|
115 |
msgid "Could not send renewal email."
|
116 |
msgstr "إرسال رسالة بريد إلكتروني بخصوص التجديد للعضو"
|
117 |
|
118 |
-
#: includes/admin/class-admin.php:
|
119 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
120 |
#: includes/admin/helpers/tables/class-payments-table.php:54
|
121 |
#: templates/email/listing-added.tpl.php:7
|
122 |
#: templates/email/listing-edited.tpl.php:13
|
@@ -125,13 +199,13 @@ msgstr "إرسال رسالة بريد إلكتروني بخصوص التجدي
|
|
125 |
msgid "ID"
|
126 |
msgstr "المعرف"
|
127 |
|
128 |
-
#: includes/admin/class-admin.php:
|
129 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
130 |
#, fuzzy
|
131 |
msgid "Listing Count"
|
132 |
msgstr "عدد الإعلانات"
|
133 |
|
134 |
-
#: includes/admin/class-admin.php:
|
135 |
#, fuzzy
|
136 |
msgid ""
|
137 |
"We noticed you want your Business Directory users to register before posting "
|
@@ -210,15 +284,30 @@ msgstr "Business Directory Plugin"
|
|
210 |
msgid "Are you sure you want to do this?"
|
211 |
msgstr "هل أنت متأكد من أنك تريد عمل هذا؟"
|
212 |
|
213 |
-
#: includes/admin/controllers/class-admin-csv.php:
|
214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
#, fuzzy
|
216 |
msgid "Help"
|
217 |
msgstr "المساعدة"
|
218 |
|
219 |
#: includes/admin/controllers/class-admin-fees.php:47
|
220 |
#: includes/admin/helpers/tables/class-payments-table.php:57
|
221 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
222 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:73
|
223 |
#: templates/admin/payments-details.tpl.php:113
|
224 |
#: templates/email/listing-payment-completed.tpl.php:21
|
@@ -229,48 +318,57 @@ msgstr "القدر"
|
|
229 |
|
230 |
#: includes/admin/controllers/class-admin-fees.php:49
|
231 |
#: includes/admin/helpers/tables/class-fees-table.php:65
|
232 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
233 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
234 |
#, fuzzy
|
235 |
msgid "Images"
|
236 |
msgstr "الصور"
|
237 |
|
238 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
#, fuzzy
|
240 |
msgid "Plan added."
|
241 |
msgstr "الرسوم حدثت."
|
242 |
|
243 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
244 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
245 |
#, fuzzy
|
246 |
msgid "Plan updated."
|
247 |
msgstr "الرسوم حدثت."
|
248 |
|
249 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
250 |
msgid "%1$sClick here to update image limits%2$s of %3$s existing listings."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
254 |
#, fuzzy
|
255 |
msgid "Update listing image limits?"
|
256 |
msgstr "الاحتفاظ بصور الإعلانات الموجودة؟"
|
257 |
|
258 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
259 |
#, fuzzy
|
260 |
msgid "Plan not found."
|
261 |
msgstr "الرسوم حدثت."
|
262 |
|
263 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
264 |
#, fuzzy
|
265 |
msgid "Plan listings updated."
|
266 |
msgstr "الرسوم حدثت."
|
267 |
|
268 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
269 |
msgid "Cannot disable plan. At least one plan should be enabled"
|
270 |
msgstr ""
|
271 |
|
272 |
#: includes/admin/controllers/class-admin-listings.php:187
|
273 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
274 |
#: templates/email/listing-reported.tpl.php:7
|
275 |
msgid "Listing Information"
|
276 |
msgstr "معلومات حول الإعلان"
|
@@ -313,6 +411,31 @@ msgstr "تحرير الإعلان"
|
|
313 |
msgid "Delete Listing"
|
314 |
msgstr "حذف الإعلان"
|
315 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
#: includes/admin/controllers/class-form-fields-admin.php:32
|
317 |
#, fuzzy
|
318 |
msgid ""
|
@@ -323,7 +446,7 @@ msgstr ""
|
|
323 |
"الأعمال للقيام بذلك نيابة عنك تلقائياً."
|
324 |
|
325 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
326 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
327 |
#, fuzzy
|
328 |
msgid "Go to \"Form Fields\""
|
329 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
@@ -340,7 +463,7 @@ msgid "Go back"
|
|
340 |
msgstr ""
|
341 |
|
342 |
#: includes/admin/controllers/class-form-fields-admin.php:342
|
343 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
344 |
#: templates/email/listing-added.tpl.php:10
|
345 |
#: templates/email/listing-edited.tpl.php:16
|
346 |
#: templates/email/listing-reported.tpl.php:11
|
@@ -366,11 +489,6 @@ msgstr "مقتطف"
|
|
366 |
msgid "Content"
|
367 |
msgstr "المحتوى"
|
368 |
|
369 |
-
#: includes/admin/controllers/class-form-fields-admin.php:346
|
370 |
-
#, fuzzy
|
371 |
-
msgid "Tags"
|
372 |
-
msgstr "الوسوم"
|
373 |
-
|
374 |
#: includes/admin/controllers/class-form-fields-admin.php:347
|
375 |
#: includes/form-fields.php:445
|
376 |
#: includes/helpers/class-field-display-list.php:247
|
@@ -437,16 +555,16 @@ msgstr "تويتر"
|
|
437 |
msgid "Website"
|
438 |
msgstr "موقع الأنترنيت"
|
439 |
|
440 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
441 |
msgid "Your license key provides access to new features and updates."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
445 |
#, fuzzy
|
446 |
msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
447 |
msgstr "لماذا قمت بحذف إضافة دليل الأعمال؟"
|
448 |
|
449 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
450 |
#: includes/admin/helpers/tables/class-fees-table.php:180
|
451 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
452 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
@@ -493,8 +611,8 @@ msgstr "المرجو رفع أو حدد ملف CSV."
|
|
493 |
|
494 |
#: includes/admin/helpers/class-listing-information-metabox.php:15
|
495 |
#: includes/admin/helpers/tables/class-payments-table.php:53
|
496 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
497 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
498 |
#: includes/helpers/class-app.php:91
|
499 |
#: templates/admin/payments-details.tpl.php:53
|
500 |
#, fuzzy
|
@@ -537,6 +655,11 @@ msgstr "قم بالتفعيل"
|
|
537 |
msgid "Upgrade Now"
|
538 |
msgstr "ترقية إلى %s"
|
539 |
|
|
|
|
|
|
|
|
|
|
|
540 |
#: includes/admin/helpers/csv/class-csv-import.php:676
|
541 |
#, fuzzy
|
542 |
msgid "Listing imported by admin. Payment skipped."
|
@@ -563,14 +686,6 @@ msgstr "تفاصيل الخطة"
|
|
563 |
msgid "Pricing"
|
564 |
msgstr "السعر"
|
565 |
|
566 |
-
#: includes/admin/helpers/tables/class-fees-table.php:64
|
567 |
-
#: includes/admin/settings/class-settings-bootstrap.php:669
|
568 |
-
#: includes/admin/settings/class-settings-bootstrap.php:670
|
569 |
-
#: includes/helpers/class-app.php:92
|
570 |
-
#, fuzzy
|
571 |
-
msgid "Listings"
|
572 |
-
msgstr "الإعلانات"
|
573 |
-
|
574 |
#: includes/admin/helpers/tables/class-fees-table.php:155
|
575 |
#, fuzzy
|
576 |
msgid "Disable"
|
@@ -617,7 +732,7 @@ msgstr "رسوم افتراضية"
|
|
617 |
|
618 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
619 |
#: includes/fields/class-fieldtypes-social.php:135
|
620 |
-
#: templates/admin/csv-import.tpl.php:
|
621 |
#, fuzzy
|
622 |
msgid "Type"
|
623 |
msgstr "نوع"
|
@@ -656,8 +771,8 @@ msgstr "حسناً"
|
|
656 |
msgid "Missing tables: %s"
|
657 |
msgstr "الجداول المفقودة: %s"
|
658 |
|
659 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
660 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
661 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:140
|
662 |
#: templates/listing-contactform.tpl.php:33
|
663 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -665,68 +780,59 @@ msgstr "الجداول المفقودة: %s"
|
|
665 |
msgid "Email"
|
666 |
msgstr "البريد الإلكتروني: %s"
|
667 |
|
668 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
669 |
#, fuzzy
|
670 |
msgid "Module Settings"
|
671 |
msgstr "إعدادات"
|
672 |
|
673 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
674 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
675 |
#, fuzzy
|
676 |
msgid "Miscellaneous"
|
677 |
msgstr "إعدادات متنوعة"
|
678 |
|
679 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
680 |
#, fuzzy
|
681 |
msgid "License Key"
|
682 |
msgstr "تراخيص"
|
683 |
|
684 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
685 |
msgid "SEO"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
689 |
-
#: includes/class-assets.php:352
|
690 |
-
#: includes/fields/class-fieldtypes-textarea.php:200
|
691 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
692 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
693 |
-
#, fuzzy
|
694 |
-
msgid "No"
|
695 |
-
msgstr "لا"
|
696 |
-
|
697 |
-
#: includes/admin/settings/class-settings-bootstrap.php:256
|
698 |
#, fuzzy
|
699 |
msgid "Yes, and make it optional"
|
700 |
msgstr "الإسم العائلي مطلوب."
|
701 |
|
702 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
703 |
#, fuzzy
|
704 |
msgid "Yes, and make it required"
|
705 |
msgstr "الإسم العائلي مطلوب."
|
706 |
|
707 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
708 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
709 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
710 |
#, fuzzy
|
711 |
msgid "Terms and Conditions"
|
712 |
msgstr "شروط وأحكام"
|
713 |
|
714 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
715 |
#, fuzzy
|
716 |
msgid "User Agreement"
|
717 |
msgstr "عضو"
|
718 |
|
719 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
720 |
#, fuzzy
|
721 |
msgid "Display and require user agreement to Terms and Conditions"
|
722 |
msgstr "عرض وطلب موافقة العضو على الشروط والأحكام"
|
723 |
|
724 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
725 |
#, fuzzy
|
726 |
msgid "Data Collection"
|
727 |
msgstr "تجميع البيانات"
|
728 |
|
729 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
730 |
#, fuzzy
|
731 |
msgid ""
|
732 |
"Allow Business Directory to anonymously collect information about your "
|
@@ -735,21 +841,21 @@ msgstr ""
|
|
735 |
"تسمح لدليل الأعمال بجمع معلومات مجهولة حول الإضافات المثبتة، والقوالب وإصدار "
|
736 |
"ووردبريس الخاص بك؟"
|
737 |
|
738 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
739 |
msgid "Learn more"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
743 |
#, fuzzy
|
744 |
msgid "Searching"
|
745 |
msgstr "بحث"
|
746 |
|
747 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
748 |
#, fuzzy
|
749 |
msgid "Display advanced search form"
|
750 |
msgstr "بحث متقدم"
|
751 |
|
752 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
753 |
#, fuzzy
|
754 |
msgid ""
|
755 |
"Enabling this sacrifices result quality to improve speed. This is helpful if "
|
@@ -758,40 +864,35 @@ msgstr ""
|
|
758 |
"تمكين هذا يجعل \"دليل الأعمال\" يضحي بجودة النتيجة لتحسين السرعة. وهذا مفيد "
|
759 |
"إذا كنت على خطط استضافة مشتركة، حيث أداء قاعدة البيانات يعد مشكلة."
|
760 |
|
761 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
762 |
#, fuzzy
|
763 |
msgid "Quick search data"
|
764 |
msgstr "حقول البحث السريع"
|
765 |
|
766 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
767 |
msgid ""
|
768 |
"If no fields are selected, the following fields will be searched in Quick "
|
769 |
"Searches:"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
773 |
msgid ""
|
774 |
"The Quick Search is a single search box, but you may choose what data is "
|
775 |
"searched. Searching too many fields can result in very slow search "
|
776 |
"performance."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
780 |
-
#, fuzzy
|
781 |
-
msgid "Categories"
|
782 |
-
msgstr "التصنيفات"
|
783 |
-
|
784 |
-
#: includes/admin/settings/class-settings-bootstrap.php:430
|
785 |
#, fuzzy
|
786 |
msgid "Buttons"
|
787 |
msgstr "نمط زر القالب"
|
788 |
|
789 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
790 |
#, fuzzy
|
791 |
msgid "Sorting"
|
792 |
msgstr "إعدادات"
|
793 |
|
794 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
795 |
msgid ""
|
796 |
"Business Directory Plugin uses the standard WordPress comments. Most themes "
|
797 |
"allow for comments on posts, not pages. Some themes handle both. Since the "
|
@@ -800,70 +901,70 @@ msgid ""
|
|
800 |
"work, try the 3rd option."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
804 |
#, fuzzy
|
805 |
msgid "Include theme comment form (standard option)"
|
806 |
msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
|
807 |
|
808 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
809 |
#, fuzzy
|
810 |
msgid "Include directory comment form (use only if 2nd option does not work)"
|
811 |
msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
|
812 |
|
813 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
814 |
#, fuzzy
|
815 |
msgid "Prevent featured (sticky) status on directory pages?"
|
816 |
msgstr "حالة مميز (مثبت)"
|
817 |
|
818 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
819 |
#, fuzzy
|
820 |
msgid "Owner of anonymous listings"
|
821 |
msgstr "الذهاب إلى إعلانك"
|
822 |
|
823 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
824 |
#, fuzzy
|
825 |
msgid "Default listing status"
|
826 |
msgstr "إعلان العضو الافتراضي"
|
827 |
|
828 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
829 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
830 |
#, fuzzy
|
831 |
msgid "Pending (Require approval)"
|
832 |
msgstr "مفعل + ريثما يتم التجديد"
|
833 |
|
834 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
835 |
#, fuzzy
|
836 |
msgid "Message Defaults"
|
837 |
msgstr "إعادة تعيين الوضع الافتراضي"
|
838 |
|
839 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
840 |
#, fuzzy
|
841 |
msgid "Listing label"
|
842 |
msgstr "عنوان الإعلان: "
|
843 |
|
844 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
845 |
#, fuzzy
|
846 |
msgid "What is a single listing called?"
|
847 |
msgstr "إظهار هذه القيمة في مشاهدة الإعلان؟"
|
848 |
|
849 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
850 |
msgid "Listing label (Plural)"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
854 |
msgid "What are your listings called?"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
858 |
#, fuzzy
|
859 |
msgid "Directory label"
|
860 |
msgstr "وسم الدليل"
|
861 |
|
862 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
863 |
msgid "What should we call your directory?"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
867 |
#, fuzzy
|
868 |
msgid ""
|
869 |
"This text is displayed on the first page of the Submit Listing process. You "
|
@@ -874,54 +975,54 @@ msgstr ""
|
|
874 |
"استخدامه لإعطاء إرشادات حول تعبئة النموذج أو أي شيء تريد إعلام الأعضاء به "
|
875 |
"قبل أن يبدأوا."
|
876 |
|
877 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
878 |
#: templates/listing-contactform.tpl.php:30
|
879 |
#: templates/listing-flagging-form.tpl.php:35
|
880 |
#, fuzzy
|
881 |
msgid "Name"
|
882 |
msgstr "الإسم"
|
883 |
|
884 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
885 |
msgid "Show Buttons"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
889 |
#, fuzzy
|
890 |
-
msgid "Show the \"Directory\" and \"Return to Directory\" button
|
891 |
msgstr "إظهار زر \"الدليل\"."
|
892 |
|
893 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
894 |
msgid "Styling"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
898 |
#, fuzzy
|
899 |
msgid "Button style"
|
900 |
msgstr "نمط زر القالب"
|
901 |
|
902 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
903 |
#, fuzzy
|
904 |
msgid "Override WP theme button styling"
|
905 |
msgstr "نمط زر القالب"
|
906 |
|
907 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
908 |
msgid "Primary color"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
912 |
msgid "This is used for form buttons and form rootline."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
916 |
#, fuzzy
|
917 |
msgid "Show Thumbnail"
|
918 |
msgstr "عرض الصور المصغرة"
|
919 |
|
920 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
921 |
msgid "Coming Soon image"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
925 |
#: includes/fields/class-fieldtypes-social.php:89
|
926 |
#: includes/fields/class-fieldtypes-url.php:162
|
927 |
#: templates/email/listing-added.tpl.php:13
|
@@ -932,12 +1033,12 @@ msgstr ""
|
|
932 |
msgid "URL"
|
933 |
msgstr "رابط URL"
|
934 |
|
935 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
936 |
#, fuzzy
|
937 |
msgid "Thank you for your payment."
|
938 |
msgstr "رسالة الشكر على الدفع"
|
939 |
|
940 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
941 |
msgid ""
|
942 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
943 |
"collect payments in this currency."
|
@@ -951,22 +1052,22 @@ msgstr[3] ""
|
|
951 |
msgstr[4] ""
|
952 |
msgstr[5] ""
|
953 |
|
954 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
955 |
#, fuzzy
|
956 |
msgid "Email Notifications"
|
957 |
msgstr "تنبيهات البريد الإلكتروني"
|
958 |
|
959 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
960 |
#, fuzzy
|
961 |
msgid "Notify admin via email when..."
|
962 |
msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
|
963 |
|
964 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
965 |
#, fuzzy
|
966 |
msgid "CC this email address too"
|
967 |
msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
|
968 |
|
969 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
970 |
#, fuzzy
|
971 |
msgid ""
|
972 |
"You can modify the text template used for most of these emails in the "
|
@@ -974,44 +1075,44 @@ msgid ""
|
|
974 |
msgstr ""
|
975 |
"يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
|
976 |
|
977 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
978 |
#, fuzzy
|
979 |
msgid "Notify users via email when..."
|
980 |
msgstr "إعلام الأعضاء عن طريق البريد الإلكتروني عندما..."
|
981 |
|
982 |
#. translators: %s: email shortcode
|
983 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
984 |
#, fuzzy
|
985 |
msgid "Email: %s"
|
986 |
msgstr "البريد الإلكتروني: %s"
|
987 |
|
988 |
#. translators: %s: phone shortcode
|
989 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
990 |
#, fuzzy
|
991 |
msgid "Phone Number: %s"
|
992 |
msgstr "رقم الهاتف"
|
993 |
|
994 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
995 |
#, fuzzy
|
996 |
msgid "Sender's email address"
|
997 |
msgstr "إدخال بريدك إلكتروني"
|
998 |
|
999 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1000 |
#, fuzzy
|
1001 |
msgid "Sender's phone number"
|
1002 |
msgstr "إسم الكاتب"
|
1003 |
|
1004 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1005 |
msgid "Renewal and expiration"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1009 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1010 |
#, fuzzy
|
1011 |
msgid "Uninstall"
|
1012 |
msgstr "حذف"
|
1013 |
|
1014 |
-
#: includes/admin/settings/class-settings.php:
|
1015 |
msgid "%s cannot include spaces, commas, or &"
|
1016 |
msgstr ""
|
1017 |
|
@@ -1074,19 +1175,18 @@ msgstr "إضغط على \"إبدأ الترقية\" وانتظر حتى انته
|
|
1074 |
|
1075 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:21
|
1076 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:22
|
1077 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
1078 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:201
|
1079 |
#, fuzzy
|
1080 |
msgid "Business Directory - Featured Levels Migration"
|
1081 |
msgstr "دليل الأعمال - إعلانات مميزة"
|
1082 |
|
1083 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
1084 |
#: templates/admin/fees-form.tpl.php:17
|
1085 |
#, fuzzy
|
1086 |
msgid "Plan Label"
|
1087 |
msgstr "تسمية الحقل"
|
1088 |
|
1089 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
1090 |
#, fuzzy
|
1091 |
msgid "Duration"
|
1092 |
msgstr "المدة"
|
@@ -1160,7 +1260,7 @@ msgid ""
|
|
1160 |
"what we can do better?"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/class-assets.php:
|
1164 |
#: templates/admin/settings-reset.tpl.php:8
|
1165 |
#: templates/admin/themes-delete-confirm.tpl.php:21
|
1166 |
#: templates/listing-flagging-form.tpl.php:65
|
@@ -1168,30 +1268,16 @@ msgstr ""
|
|
1168 |
msgid "Cancel"
|
1169 |
msgstr "إلغاء"
|
1170 |
|
1171 |
-
#: includes/class-assets.php:
|
1172 |
#, fuzzy
|
1173 |
msgid "Continue"
|
1174 |
msgstr "متابعة"
|
1175 |
|
1176 |
-
#: includes/class-assets.php:
|
1177 |
msgid "Are you sure?"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/class-assets.php:
|
1181 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:88
|
1182 |
-
#, fuzzy
|
1183 |
-
msgid "Never"
|
1184 |
-
msgstr "أبداً"
|
1185 |
-
|
1186 |
-
#: includes/class-assets.php:351
|
1187 |
-
#: includes/fields/class-fieldtypes-textarea.php:201
|
1188 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
1189 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
1190 |
-
#, fuzzy
|
1191 |
-
msgid "Yes"
|
1192 |
-
msgstr "نعم"
|
1193 |
-
|
1194 |
-
#: includes/class-assets.php:361
|
1195 |
#, fuzzy
|
1196 |
msgid ""
|
1197 |
"Preview is only available after you've saved the first draft. This is due to "
|
@@ -1214,11 +1300,6 @@ msgstr "عرض الإعلان"
|
|
1214 |
msgid "Search Listings"
|
1215 |
msgstr "البحث في الإعلانات"
|
1216 |
|
1217 |
-
#: includes/class-cpt-integration.php:23
|
1218 |
-
#, fuzzy
|
1219 |
-
msgid "Directory Listings"
|
1220 |
-
msgstr "رابط لطيف لإعلانات الدليل"
|
1221 |
-
|
1222 |
#: includes/class-cpt-integration.php:24
|
1223 |
msgid "No listings found"
|
1224 |
msgstr "لم يتم العثور على إعلانات"
|
@@ -1555,39 +1636,39 @@ msgstr ""
|
|
1555 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
1556 |
"publiée."
|
1557 |
|
1558 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1559 |
#, fuzzy
|
1560 |
msgid "Listing Images"
|
1561 |
msgstr "صور الإعلانات"
|
1562 |
|
1563 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1564 |
msgid "Account Creation"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1568 |
#, fuzzy
|
1569 |
msgid "Go to \"Plans\""
|
1570 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
1571 |
|
1572 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1573 |
#, fuzzy
|
1574 |
msgid "Please choose a plan."
|
1575 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
1576 |
|
1577 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1578 |
msgid "Please check the form for errors, correct them and submit again."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1582 |
msgid "Create a user account on this site"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1586 |
#, fuzzy
|
1587 |
msgid "Username"
|
1588 |
msgstr "عضو"
|
1589 |
|
1590 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1591 |
#, fuzzy
|
1592 |
msgid "Clear Form"
|
1593 |
msgstr "مسح"
|
@@ -1653,12 +1734,8 @@ msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
|
1653 |
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
1654 |
|
1655 |
#: includes/fields/class-fieldtypes-select.php:262
|
1656 |
-
#: templates/admin/
|
1657 |
-
#: templates/admin/
|
1658 |
-
#: templates/admin/csv-import.tpl.php:150
|
1659 |
-
#: templates/admin/csv-import.tpl.php:163
|
1660 |
-
#: templates/admin/csv-import.tpl.php:215 templates/admin/fees-form.tpl.php:17
|
1661 |
-
#: templates/admin/fees-form.tpl.php:38 templates/admin/fees-form.tpl.php:58
|
1662 |
#, fuzzy
|
1663 |
msgid "required"
|
1664 |
msgstr "مطلوب"
|
@@ -1828,7 +1905,7 @@ msgstr "المصادقة على رقم صحيح"
|
|
1828 |
msgid "Telephone Number Validator"
|
1829 |
msgstr "المصادقة على رقم صحيح"
|
1830 |
|
1831 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
1832 |
#, fuzzy
|
1833 |
msgid "Field"
|
1834 |
msgstr "حقل"
|
@@ -1924,13 +2001,13 @@ msgid "Default Plan"
|
|
1924 |
msgstr "رسوم افتراضية"
|
1925 |
|
1926 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1927 |
-
#: includes/licensing.php:
|
1928 |
msgid ""
|
1929 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1930 |
"get updates."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: includes/licensing.php:
|
1934 |
#, fuzzy
|
1935 |
msgid "Licenses"
|
1936 |
msgstr "تراخيص"
|
@@ -2051,39 +2128,29 @@ msgstr "يرجى إدخال بريد إلكتروني صحيح."
|
|
2051 |
msgid "Congratulations %1$s! You have collected %2$d listings."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: includes/payment.php:
|
2055 |
msgid "We couldn't find a payment associated with the given subscription."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: includes/payment.php:
|
2059 |
msgid "The payment gateway \"<payment-gateway>\" is not available."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: includes/payment.php:
|
2063 |
#, fuzzy
|
2064 |
msgid "Gateway Transaction ID:"
|
2065 |
msgstr "transaction"
|
2066 |
|
2067 |
-
#: includes/payment.php:
|
2068 |
msgid "Bill To:"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: includes/payment.php:
|
2072 |
msgid "Print Receipt"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: includes/payment.php:180
|
2076 |
-
#, fuzzy
|
2077 |
-
msgid "Pending Abandonment"
|
2078 |
-
msgstr "في انتظار التخلي"
|
2079 |
-
|
2080 |
#: includes/payment.php:187
|
2081 |
#, fuzzy
|
2082 |
-
msgid "Abandoned"
|
2083 |
-
msgstr "متخلى عنه"
|
2084 |
-
|
2085 |
-
#: includes/payment.php:278
|
2086 |
-
#, fuzzy
|
2087 |
msgid "Return to plan selection"
|
2088 |
msgstr "الرجوع إلى الإعلان."
|
2089 |
|
@@ -2175,6 +2242,10 @@ msgstr ""
|
|
2175 |
msgid "There are currently no listings to show."
|
2176 |
msgstr "لا توجد حاليا إعلانات في الدليل."
|
2177 |
|
|
|
|
|
|
|
|
|
2178 |
#: templates/admin/csv-export.tpl.php:5
|
2179 |
#, fuzzy
|
2180 |
msgid ""
|
@@ -2186,7 +2257,24 @@ msgstr ""
|
|
2186 |
"المساحة الفارغة على القرص والذاكرة المتاحة إلى بي إتش بي. تحقق من سجلات "
|
2187 |
"الخطأ الخاص بك للحصول على التفاصيل."
|
2188 |
|
2189 |
-
#: templates/admin/csv-export.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2190 |
#, fuzzy
|
2191 |
msgid ""
|
2192 |
"If you plan to re-import the listings into your directory and don't want new "
|
@@ -2195,13 +2283,22 @@ msgstr ""
|
|
2195 |
"إذا كنت تخطط لإعادة استيراد الإعلانات إلى \"دليل الأعمال\" ولا تريد إنشاء "
|
2196 |
"أخرى جديدة، قم بتحديد هذا الخيار!"
|
2197 |
|
2198 |
-
#: templates/admin/csv-export.tpl.php:
|
|
|
2199 |
#, fuzzy
|
2200 |
msgid "CSV File Settings"
|
2201 |
msgstr "إعدادات ملف CSV"
|
2202 |
|
2203 |
-
#: templates/admin/csv-export.tpl.php:
|
2204 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2205 |
#, fuzzy
|
2206 |
msgid "Image Separator"
|
2207 |
msgstr "فاصلة الصورة "
|
@@ -2216,88 +2313,97 @@ msgstr ""
|
|
2216 |
"نوصي بشدة بقراءة <a>وثائق شرح استيراد CSV</a> أولاً لتساعدك على القيام "
|
2217 |
"بالأشياء بالترتيب الصحيح."
|
2218 |
|
2219 |
-
#: templates/admin/csv-import.tpl.php:
|
2220 |
#, fuzzy
|
2221 |
msgid "Import Files"
|
2222 |
msgstr "استيراد الملفات"
|
2223 |
|
2224 |
-
#: templates/admin/csv-import.tpl.php:
|
2225 |
#, fuzzy
|
2226 |
msgid "CSV File"
|
2227 |
msgstr "ملف CSV"
|
2228 |
|
2229 |
-
#: templates/admin/csv-import.tpl.php:
|
2230 |
#, fuzzy
|
2231 |
msgid "ZIP file containing images"
|
2232 |
msgstr "ملف مضغوط يحتوي على صور"
|
2233 |
|
2234 |
-
#: templates/admin/csv-import.tpl.php:
|
2235 |
#, fuzzy
|
2236 |
msgid "Column Separator"
|
2237 |
msgstr "فاصلة الأعمدة"
|
2238 |
|
2239 |
-
#: templates/admin/csv-import.tpl.php:
|
2240 |
msgid "TAB"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: templates/admin/csv-import.tpl.php:
|
2244 |
#, fuzzy
|
2245 |
msgid "Category Separator"
|
2246 |
msgstr "فاصلة التصنيف"
|
2247 |
|
2248 |
-
#: templates/admin/csv-import.tpl.php:
|
2249 |
#, fuzzy
|
2250 |
msgid "Import settings"
|
2251 |
msgstr "إعدادات الاستيراد"
|
2252 |
|
2253 |
-
#: templates/admin/csv-import.tpl.php:
|
2254 |
#, fuzzy
|
2255 |
msgid "Post status of new imported listings"
|
2256 |
msgstr "حالة مقالة الإعلانات المستوردة"
|
2257 |
|
2258 |
-
#: templates/admin/csv-import.tpl.php:
|
2259 |
#, fuzzy
|
2260 |
msgid "Post status of existing imported listings"
|
2261 |
msgstr "حالة مقالة الإعلانات المستوردة"
|
2262 |
|
2263 |
-
#: templates/admin/csv-import.tpl.php:
|
2264 |
#, fuzzy
|
2265 |
msgid "Missing categories handling"
|
2266 |
msgstr "معالجة التصنيفات المفقودة"
|
2267 |
|
2268 |
-
#: templates/admin/csv-import.tpl.php:
|
2269 |
#, fuzzy
|
2270 |
msgid "Auto-create categories"
|
2271 |
msgstr "الإنشاء التلقائي للتصنيفات"
|
2272 |
|
2273 |
-
#: templates/admin/csv-import.tpl.php:
|
2274 |
#, fuzzy
|
2275 |
msgid "Generate errors when a category is not found"
|
2276 |
msgstr "إنشاء أخطاء عند عدم العثور على تصنيف"
|
2277 |
|
2278 |
-
#: templates/admin/csv-import.tpl.php:
|
2279 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2280 |
#, fuzzy
|
2281 |
-
msgid "Assign listings to a user
|
2282 |
msgstr "تعيين إعلانات للعضو؟"
|
2283 |
|
2284 |
-
#: templates/admin/csv-import.tpl.php:
|
2285 |
#, fuzzy
|
2286 |
msgid "Default listing user"
|
2287 |
msgstr "إعلان العضو الافتراضي"
|
2288 |
|
2289 |
-
#: templates/admin/csv-import.tpl.php:
|
2290 |
#, fuzzy
|
2291 |
msgid ""
|
2292 |
"This user will be used if the username column is not present in the CSV file."
|
2293 |
msgstr "سيتم استخدام هذا العضو إذا كان عمود إسم المستخدم غير موجود في ملف CSV."
|
2294 |
|
2295 |
-
#: templates/admin/csv-import.tpl.php:
|
2296 |
#, fuzzy
|
2297 |
msgid "Number of listings imported on every cycle"
|
2298 |
msgstr "عدد الإعلانات للعرض"
|
2299 |
|
2300 |
-
#: templates/admin/csv-import.tpl.php:
|
2301 |
msgid ""
|
2302 |
"If you are having trouble importing listings due to memory problems, try "
|
2303 |
"reducing the import batch size to 5 or 1 and then re-attempt. This will "
|
@@ -2305,17 +2411,12 @@ msgid ""
|
|
2305 |
"success on shared hosting platforms and other resource-constrained servers."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: templates/admin/csv-import.tpl.php:
|
2309 |
#, fuzzy
|
2310 |
-
msgid "Disable email notifications during import
|
2311 |
msgstr "تعطيل تنبيهات البريد الإلكتروني أثناء عملية الاستيراد؟"
|
2312 |
|
2313 |
-
#: templates/admin/csv-import.tpl.php:
|
2314 |
-
#, fuzzy
|
2315 |
-
msgid "Disable email notifications."
|
2316 |
-
msgstr "تعطيل التنبيهات."
|
2317 |
-
|
2318 |
-
#: templates/admin/csv-import.tpl.php:316
|
2319 |
#, fuzzy
|
2320 |
msgid ""
|
2321 |
"The following are the valid header names to be used in the CSV file. "
|
@@ -2327,33 +2428,43 @@ msgstr ""
|
|
2327 |
"القيم (مثل تصنيف أو وسوم) عدة مرات في الملف. إضغط فوق <a href=\"%s\">\"انظر "
|
2328 |
"مثال لملف استيراد CSV\"</a> لمعرفة كيف يجب أن يبدو ملف الاستيراد."
|
2329 |
|
2330 |
-
#: templates/admin/csv-import.tpl.php:
|
2331 |
#, fuzzy
|
2332 |
msgid "Header name/label"
|
2333 |
msgstr "إسم رأس/التسمية"
|
2334 |
|
2335 |
-
#: templates/admin/csv-import.tpl.php:
|
2336 |
#, fuzzy
|
2337 |
msgid "Required?"
|
2338 |
msgstr "مطلوب؟"
|
2339 |
|
2340 |
-
#: templates/admin/csv-import.tpl.php:
|
2341 |
#, fuzzy
|
2342 |
msgid "Multivalued?"
|
2343 |
msgstr "متعدد القيم؟"
|
2344 |
|
2345 |
-
#: templates/admin/csv-import.tpl.php:
|
2346 |
#, fuzzy
|
2347 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2348 |
msgstr "لائحة مفصولة بفاصلة منقوطة لصور الإعلانات (من ملف مضغوط)"
|
2349 |
|
2350 |
-
#: templates/admin/csv-import.tpl.php:
|
2351 |
#, fuzzy
|
2352 |
msgid "Listing author's username"
|
2353 |
msgstr "إسم مستخدم كاتب الإعلان"
|
2354 |
|
2355 |
#: templates/admin/debug-info.tpl.php:5
|
2356 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2357 |
msgid ""
|
2358 |
"The following information can help our team debug possible problems with "
|
2359 |
"your setup."
|
@@ -2361,11 +2472,6 @@ msgstr ""
|
|
2361 |
"المعلومات التالية يمكن أن تساعد مطورين \"دليل الأعمال\" لتصحيح المشاكل "
|
2362 |
"المحتملة مع الإعدادات الخاص بك."
|
2363 |
|
2364 |
-
#: templates/admin/debug-info.tpl.php:8
|
2365 |
-
#, fuzzy
|
2366 |
-
msgid "Download Debug Information"
|
2367 |
-
msgstr "تحميل معلومات التصحيح"
|
2368 |
-
|
2369 |
#: templates/admin/fees-add-fee.tpl.php:4 templates/admin/fees-form.tpl.php:245
|
2370 |
#, fuzzy
|
2371 |
msgid "Add Plan"
|
@@ -2447,55 +2553,43 @@ msgstr ""
|
|
2447 |
msgid "Save Changes"
|
2448 |
msgstr "حفظ التعديلات"
|
2449 |
|
2450 |
-
#: templates/admin/fees-index.tpl.php:
|
2451 |
#, fuzzy
|
2452 |
msgid "Add New Plan"
|
2453 |
msgstr "إضافة إعلان جديد"
|
2454 |
|
2455 |
-
#: templates/admin/fees-index.tpl.php:
|
2456 |
#, fuzzy
|
2457 |
msgid "↑ Ascending"
|
2458 |
msgstr "↑ تصاعدي"
|
2459 |
|
2460 |
-
#: templates/admin/fees-index.tpl.php:
|
2461 |
#, fuzzy
|
2462 |
msgid "↓ Descending"
|
2463 |
msgstr "↓ تنازلي"
|
2464 |
|
2465 |
-
#: templates/admin/fees-index.tpl.php:
|
2466 |
msgid "Save front-end order"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: templates/admin/fees-index.tpl.php:
|
2470 |
#, fuzzy
|
2471 |
msgid "Drag and drop to re-order plans."
|
2472 |
msgstr "سحب وإسقاط لإعادة ترتيب الرسوم."
|
2473 |
|
2474 |
-
#: templates/admin/fees-index.tpl.php:
|
2475 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: templates/admin/fees-index.tpl.php:
|
2479 |
msgid "Add a payment gateway to increase conversion rates"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
#. translators: %s: payment gateway name */
|
2483 |
-
#: templates/admin/fees-index.tpl.php:
|
2484 |
-
msgid "Add the %s gateway as a payment option."
|
2485 |
-
msgstr ""
|
2486 |
-
|
2487 |
-
#: templates/admin/fees-index.tpl.php:96
|
2488 |
#, fuzzy
|
2489 |
-
msgid "
|
2490 |
-
msgstr "
|
2491 |
-
|
2492 |
-
#: templates/admin/fees-index.tpl.php:104
|
2493 |
-
msgid "Set up Authorize.net as a payment option."
|
2494 |
-
msgstr ""
|
2495 |
-
|
2496 |
-
#: templates/admin/fees-index.tpl.php:107
|
2497 |
-
msgid "Set Up"
|
2498 |
-
msgstr ""
|
2499 |
|
2500 |
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2501 |
#, fuzzy
|
@@ -2527,6 +2621,27 @@ msgstr "معاينة الاستمارة"
|
|
2527 |
msgid "Manage Theme Tags"
|
2528 |
msgstr "إدارة وسوم القالب"
|
2529 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2530 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2531 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2532 |
#: templates/login.tpl.php:71
|
@@ -2746,11 +2861,6 @@ msgstr "معاينة البريد الإلكتروني"
|
|
2746 |
msgid "Directory Settings"
|
2747 |
msgstr "رابط لطيف لإعلانات الدليل"
|
2748 |
|
2749 |
-
#: templates/admin/settings-page.tpl.php:8
|
2750 |
-
#: templates/admin/settings-reset.tpl.php:26
|
2751 |
-
msgid "Reset Defaults"
|
2752 |
-
msgstr "إعادة تعيين الوضع الافتراضي"
|
2753 |
-
|
2754 |
#: templates/admin/settings-reset.tpl.php:4
|
2755 |
#, fuzzy
|
2756 |
msgid "Directory Reset to Default"
|
@@ -2772,6 +2882,10 @@ msgstr "يرجى ملاحظة أنه سيتم فقدان كافة الإعداد
|
|
2772 |
msgid "Your existing listings will NOT be deleted doing this."
|
2773 |
msgstr ""
|
2774 |
|
|
|
|
|
|
|
|
|
2775 |
#: templates/admin/sidebar.tpl.php:7
|
2776 |
msgid "Need help?"
|
2777 |
msgstr ""
|
@@ -2868,9 +2982,13 @@ msgstr "اكتمال إلغاء التثبيت."
|
|
2868 |
msgid "Return to Dashboard."
|
2869 |
msgstr "الرجوع إلى لوحة تحكم ووردبرس"
|
2870 |
|
2871 |
-
|
|
|
|
|
|
|
|
|
2872 |
#: templates/admin/uninstall-confirm.tpl.php:43
|
2873 |
-
msgid "Go to %1$sPlugins
|
2874 |
msgstr ""
|
2875 |
|
2876 |
#. translators: %1$s: open italic html, %2$s: close italic html
|
@@ -2893,7 +3011,7 @@ msgstr ""
|
|
2893 |
|
2894 |
#. translators: %1$s: open link html, %2$s: close link html
|
2895 |
#: templates/admin/uninstall-confirm.tpl.php:65
|
2896 |
-
msgid "You can reinstall the plugin again under %1$sPlugins
|
2897 |
msgstr ""
|
2898 |
|
2899 |
#: templates/admin/uninstall-confirm.tpl.php:74
|
@@ -3341,27 +3459,27 @@ msgctxt "views"
|
|
3341 |
msgid "Find A Listing"
|
3342 |
msgstr "العثور على إعلان"
|
3343 |
|
3344 |
-
#: includes/admin/class-admin.php:
|
3345 |
msgctxt "drip pointer"
|
3346 |
msgid "Email Address:"
|
3347 |
msgstr "عنوان البريد الإلكتروني:"
|
3348 |
|
3349 |
-
#: includes/admin/class-admin.php:
|
3350 |
msgctxt "admin"
|
3351 |
msgid "Business Directory"
|
3352 |
msgstr "دليل الأعمال"
|
3353 |
|
3354 |
-
#: includes/admin/class-admin.php:
|
3355 |
msgctxt "admin"
|
3356 |
msgid "Untitled Menu"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: includes/admin/class-admin.php:
|
3360 |
msgctxt "admin"
|
3361 |
msgid "Dismiss this notice."
|
3362 |
msgstr "إخفاء هذا التنبيه."
|
3363 |
|
3364 |
-
#: includes/admin/class-admin.php:
|
3365 |
#, fuzzy
|
3366 |
msgctxt "admin"
|
3367 |
msgid "The listing has been updated."
|
@@ -3373,13 +3491,13 @@ msgstr[3] "تمت ترقية الإعلانات."
|
|
3373 |
msgstr[4] "تمت ترقية الإعلانات."
|
3374 |
msgstr[5] "تمت ترقية الإعلانات."
|
3375 |
|
3376 |
-
#: includes/admin/class-admin.php:
|
3377 |
#, fuzzy
|
3378 |
msgctxt "admin"
|
3379 |
msgid "The plan was successfully assigned."
|
3380 |
msgstr "تم تعيين الرسوم بنجاح."
|
3381 |
|
3382 |
-
#: includes/admin/class-admin.php:
|
3383 |
msgctxt "admin"
|
3384 |
msgid "Listing was renewed."
|
3385 |
msgid_plural "Listings were renewed."
|
@@ -3390,12 +3508,12 @@ msgstr[3] "تم تجديد الإعلانات."
|
|
3390 |
msgstr[4] "تم تجديد الإعلانات."
|
3391 |
msgstr[5] "تم تجديد الإعلانات."
|
3392 |
|
3393 |
-
#: includes/admin/class-admin.php:
|
3394 |
msgctxt "admin"
|
3395 |
msgid "Renewal email sent."
|
3396 |
msgstr "تم إرسال بريد التجديد."
|
3397 |
|
3398 |
-
#: includes/admin/class-admin.php:
|
3399 |
#, fuzzy
|
3400 |
msgctxt "admin"
|
3401 |
msgid "Listing report deleted."
|
@@ -3407,18 +3525,18 @@ msgstr[3] "إنتهاء صلاحية الإعلان"
|
|
3407 |
msgstr[4] "إنتهاء صلاحية الإعلان"
|
3408 |
msgstr[5] "إنتهاء صلاحية الإعلان"
|
3409 |
|
3410 |
-
#: includes/admin/class-admin.php:
|
3411 |
#, fuzzy
|
3412 |
msgctxt "admin"
|
3413 |
msgid "Access keys sent."
|
3414 |
msgstr "مفتاح الوصول"
|
3415 |
|
3416 |
-
#: includes/admin/class-admin.php:
|
3417 |
msgctxt "admin"
|
3418 |
msgid "The access keys couldn't be sent."
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#: includes/admin/class-admin.php:
|
3422 |
msgctxt "admin"
|
3423 |
msgid ""
|
3424 |
"<b>Business Directory Plugin</b> requires a page with the "
|
@@ -3427,7 +3545,7 @@ msgstr ""
|
|
3427 |
"<b>إضافة دليل الأعمال</b> تتطلب صفحة فيها الكود القصير "
|
3428 |
"<tt>[businessdirectory]</tt> لكي تعمل بشكل صحيح."
|
3429 |
|
3430 |
-
#: includes/admin/class-admin.php:
|
3431 |
msgctxt "admin"
|
3432 |
msgid ""
|
3433 |
"You can create this page by yourself or let Business Directory do this for "
|
@@ -3436,12 +3554,12 @@ msgstr ""
|
|
3436 |
"يمكنك إنشاء هذه الصفحة بنفسك أو ترك دليل الأعمال القيام بذلك نيابة عنك "
|
3437 |
"تلقائياً."
|
3438 |
|
3439 |
-
#: includes/admin/class-admin.php:
|
3440 |
msgctxt "admin"
|
3441 |
msgid "Create required pages for me"
|
3442 |
msgstr "إنشاء الصفحات المطلوب نيابة عني"
|
3443 |
|
3444 |
-
#: includes/admin/class-admin.php:
|
3445 |
msgctxt "admin"
|
3446 |
msgid ""
|
3447 |
"<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
|
@@ -3501,19 +3619,19 @@ msgctxt "admin"
|
|
3501 |
msgid "Create these required fields for me"
|
3502 |
msgstr "إنشاء هذه الحقول المطلوبة نيابة عني"
|
3503 |
|
3504 |
-
#: includes/admin/class-admin.php:
|
3505 |
#, fuzzy
|
3506 |
msgctxt "admin menu"
|
3507 |
msgid "Payment History"
|
3508 |
msgstr "سجل المدفوعات"
|
3509 |
|
3510 |
-
#: includes/admin/class-admin.php:
|
3511 |
#, fuzzy
|
3512 |
msgctxt "admin menu"
|
3513 |
msgid "Import & Export"
|
3514 |
msgstr "استيراد CSV"
|
3515 |
|
3516 |
-
#: includes/admin/class-admin.php:
|
3517 |
msgctxt "admin menu"
|
3518 |
msgid "Debug"
|
3519 |
msgstr "تصحيح الأخطاء"
|
@@ -3540,1489 +3658,1161 @@ msgctxt "admin confirm"
|
|
3540 |
msgid "Yes, I'm sure"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: includes/admin/controllers/class-admin-
|
3544 |
-
msgctxt "
|
3545 |
-
msgid "
|
3546 |
-
msgstr "
|
3547 |
|
3548 |
-
#: includes/admin/
|
3549 |
-
msgctxt "
|
3550 |
-
msgid "
|
3551 |
-
msgstr "
|
3552 |
|
3553 |
-
#: includes/admin/
|
3554 |
-
msgctxt "
|
3555 |
-
msgid "
|
3556 |
-
msgstr "
|
3557 |
|
3558 |
-
#: includes/admin/
|
3559 |
-
|
3560 |
-
|
3561 |
-
"
|
3562 |
-
"
|
3563 |
-
msgstr ""
|
3564 |
-
"تم اكتشاف خطأ أثناء التحقق من صحة ملف CSV للاستيراد. المرجو إصلاح هذا قبل "
|
3565 |
-
"المتابعة."
|
3566 |
|
3567 |
-
#: includes/admin/
|
3568 |
-
|
3569 |
-
|
3570 |
-
|
|
|
3571 |
|
3572 |
-
#: includes/admin/
|
3573 |
-
|
3574 |
-
|
3575 |
-
"
|
3576 |
-
"
|
3577 |
-
msgstr ""
|
3578 |
|
3579 |
-
#: includes/admin/helpers/
|
3580 |
-
msgctxt "admin
|
3581 |
-
msgid "
|
3582 |
-
msgstr "
|
3583 |
|
3584 |
-
#: includes/admin/helpers/
|
3585 |
-
msgctxt "admin
|
3586 |
-
msgid "
|
3587 |
-
msgstr "
|
3588 |
|
3589 |
-
#: includes/admin/helpers/
|
3590 |
-
|
3591 |
-
|
3592 |
-
|
|
|
3593 |
|
3594 |
-
#: includes/admin/helpers/
|
3595 |
-
msgctxt "admin
|
3596 |
-
msgid "
|
3597 |
-
msgstr "
|
3598 |
|
3599 |
-
#: includes/admin/helpers/
|
3600 |
-
|
3601 |
-
|
3602 |
-
|
|
|
3603 |
|
3604 |
-
#: includes/admin/helpers/
|
3605 |
-
|
3606 |
-
|
3607 |
-
|
|
|
3608 |
|
3609 |
-
#:
|
3610 |
-
msgctxt "admin
|
3611 |
-
msgid "
|
3612 |
-
msgstr "
|
3613 |
|
3614 |
-
#:
|
3615 |
-
msgctxt "admin
|
3616 |
-
msgid ""
|
3617 |
-
"
|
3618 |
-
"
|
3619 |
-
"
|
3620 |
-
msgstr ""
|
3621 |
-
|
3622 |
-
"
|
3623 |
-
"
|
3624 |
-
"التفاصيل."
|
3625 |
|
3626 |
-
#:
|
3627 |
-
|
3628 |
-
|
3629 |
-
|
3630 |
-
msgstr "← العودة إلى \"استيراد CSV\""
|
3631 |
|
3632 |
-
#:
|
3633 |
-
msgctxt "admin
|
3634 |
-
msgid "
|
3635 |
-
msgstr "
|
3636 |
|
3637 |
-
#:
|
3638 |
-
|
3639 |
-
|
3640 |
-
|
|
|
3641 |
|
3642 |
-
#:
|
3643 |
#, fuzzy
|
3644 |
-
msgctxt "admin
|
3645 |
-
msgid "
|
3646 |
-
msgstr "
|
3647 |
|
3648 |
-
#:
|
3649 |
-
|
3650 |
-
|
3651 |
-
|
|
|
3652 |
|
3653 |
-
#:
|
3654 |
-
|
3655 |
-
|
3656 |
-
|
|
|
3657 |
|
3658 |
-
#:
|
3659 |
-
msgctxt "admin
|
3660 |
-
msgid "
|
3661 |
-
msgstr "
|
3662 |
|
3663 |
-
#: templates/admin/
|
3664 |
-
msgctxt "admin
|
3665 |
-
msgid "
|
3666 |
-
msgstr "
|
3667 |
|
3668 |
-
#: templates/admin/
|
3669 |
-
|
3670 |
-
|
3671 |
-
|
|
|
3672 |
|
3673 |
-
#: templates/admin/
|
3674 |
-
msgctxt "admin
|
3675 |
-
msgid "
|
3676 |
-
msgstr "
|
3677 |
|
3678 |
-
#: templates/admin/
|
3679 |
-
|
3680 |
-
|
3681 |
-
|
|
|
3682 |
|
3683 |
-
#: templates/admin/
|
3684 |
-
msgctxt "admin
|
3685 |
-
msgid "
|
3686 |
-
msgstr "
|
3687 |
|
3688 |
-
#: templates/admin/
|
3689 |
-
|
3690 |
-
|
3691 |
-
|
|
|
3692 |
|
3693 |
-
#: templates/admin/
|
3694 |
-
msgctxt "admin
|
3695 |
-
msgid "
|
3696 |
-
msgstr "
|
3697 |
|
3698 |
-
#: templates/admin/
|
3699 |
-
msgctxt "admin
|
3700 |
-
msgid "
|
3701 |
-
msgstr "
|
3702 |
-
|
3703 |
-
#: templates/admin/csv-import-progress.tpl.php:65
|
3704 |
-
msgctxt "admin csv-import"
|
3705 |
-
msgid "Rows in file:"
|
3706 |
-
msgstr "السطور في ملف:"
|
3707 |
-
|
3708 |
-
#: templates/admin/csv-import-progress.tpl.php:68
|
3709 |
-
msgctxt "admin csv-import"
|
3710 |
-
msgid "Imported rows:"
|
3711 |
-
msgstr "السطور المستوردة:"
|
3712 |
-
|
3713 |
-
#: templates/admin/csv-import-progress.tpl.php:71
|
3714 |
-
msgctxt "admin csv-import"
|
3715 |
-
msgid "Rejected rows:"
|
3716 |
-
msgstr "السطور المرفوضة:"
|
3717 |
|
3718 |
-
#: templates/admin/
|
3719 |
-
|
3720 |
-
|
3721 |
-
|
|
|
3722 |
|
3723 |
-
#: templates/admin/
|
3724 |
-
msgctxt "admin
|
3725 |
-
msgid "
|
3726 |
-
msgstr "
|
3727 |
|
3728 |
-
#: templates/admin/
|
3729 |
-
|
3730 |
-
|
3731 |
-
|
|
|
3732 |
|
3733 |
-
#: templates/admin/
|
3734 |
-
|
3735 |
-
|
3736 |
-
|
|
|
3737 |
|
3738 |
-
#: templates/admin/
|
3739 |
-
|
3740 |
-
|
3741 |
-
|
|
|
3742 |
|
3743 |
-
#: templates/admin/
|
3744 |
-
msgctxt "admin
|
3745 |
-
msgid "
|
3746 |
-
msgstr "
|
3747 |
|
3748 |
-
#:
|
3749 |
-
msgctxt "admin
|
3750 |
-
msgid "
|
3751 |
-
msgstr "
|
3752 |
|
3753 |
-
#:
|
3754 |
-
|
3755 |
-
|
|
|
|
|
|
|
|
|
3756 |
msgstr ""
|
|
|
|
|
|
|
3757 |
|
3758 |
-
#:
|
3759 |
-
|
3760 |
-
|
3761 |
-
|
|
|
3762 |
|
3763 |
-
#:
|
3764 |
#, fuzzy
|
3765 |
-
msgctxt "admin
|
3766 |
-
msgid "
|
3767 |
-
msgstr "
|
3768 |
|
3769 |
-
#:
|
3770 |
-
|
3771 |
-
|
3772 |
-
|
|
|
3773 |
|
3774 |
-
#:
|
3775 |
-
|
3776 |
-
|
3777 |
-
|
|
|
3778 |
|
3779 |
-
#:
|
3780 |
-
|
3781 |
-
|
3782 |
-
|
|
|
3783 |
|
3784 |
-
#:
|
3785 |
-
msgctxt "admin
|
3786 |
-
msgid "
|
3787 |
-
msgstr "
|
3788 |
|
3789 |
-
#:
|
3790 |
-
msgctxt "admin
|
3791 |
-
msgid ""
|
3792 |
-
"Select a default user to be used if the username column is not present in "
|
3793 |
-
"the CSV file."
|
3794 |
msgstr ""
|
3795 |
-
"حدد العضو الافتراضي لاستخدامه إذا كان العمود إسم المستخدم غير موجود في ملف "
|
3796 |
-
"CSV."
|
3797 |
|
3798 |
-
#: templates/admin/
|
3799 |
-
msgctxt "admin
|
3800 |
-
msgid "
|
3801 |
-
msgstr "
|
3802 |
|
3803 |
-
#: templates/admin/
|
3804 |
-
|
3805 |
-
|
3806 |
-
|
|
|
3807 |
|
3808 |
-
#: templates/admin/
|
3809 |
#, fuzzy
|
3810 |
-
msgctxt "admin
|
3811 |
-
msgid ""
|
3812 |
-
"
|
3813 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3814 |
msgstr ""
|
3815 |
-
"تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود "
|
3816 |
-
"عند إضافة أو تحديث الإعلانات من مصادر خارجية."
|
3817 |
|
3818 |
-
#:
|
3819 |
-
msgctxt "
|
3820 |
-
msgid ""
|
3821 |
-
"Internal Sequence ID used to allow listing updates from external sources."
|
3822 |
msgstr ""
|
3823 |
-
"معرف (ID) تسلسل داخلي يستخدم للسماح للإعلان بالتحديثات من مصادر خارجية."
|
3824 |
|
3825 |
-
#:
|
3826 |
-
msgctxt "
|
3827 |
-
msgid ""
|
3828 |
-
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
3829 |
-
"adding or updating listings from external sources."
|
3830 |
msgstr ""
|
3831 |
-
"تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود "
|
3832 |
-
"عند إضافة أو تحديث الإعلانات من مصادر خارجية."
|
3833 |
|
3834 |
-
#: includes/
|
3835 |
#, fuzzy
|
3836 |
-
msgctxt "
|
3837 |
-
msgid "
|
3838 |
-
msgstr "
|
3839 |
|
3840 |
-
#: includes/
|
3841 |
#, fuzzy
|
3842 |
-
msgctxt "
|
3843 |
-
msgid "
|
3844 |
-
msgstr "
|
3845 |
|
3846 |
-
#: includes/
|
3847 |
-
|
3848 |
-
|
3849 |
-
|
|
|
3850 |
|
3851 |
-
#: includes/
|
3852 |
-
|
3853 |
-
|
3854 |
-
|
|
|
3855 |
|
3856 |
-
#: includes/
|
3857 |
-
|
3858 |
-
|
3859 |
-
|
|
|
3860 |
|
3861 |
-
#: includes/
|
3862 |
#, fuzzy
|
3863 |
-
msgctxt "
|
3864 |
-
msgid "
|
3865 |
-
msgstr "
|
3866 |
|
3867 |
-
#: includes/
|
3868 |
#, fuzzy
|
3869 |
-
msgctxt "
|
3870 |
-
msgid "
|
3871 |
-
msgstr "
|
3872 |
|
3873 |
-
#: includes/admin/controllers/class-admin-
|
3874 |
#, fuzzy
|
3875 |
-
msgctxt "
|
3876 |
-
msgid "
|
3877 |
-
msgstr "
|
3878 |
|
3879 |
-
#: includes/admin/
|
3880 |
-
|
3881 |
-
|
3882 |
-
|
|
|
3883 |
|
3884 |
-
#: includes/admin/
|
3885 |
-
|
3886 |
-
|
3887 |
-
|
|
|
3888 |
|
3889 |
-
#: includes/admin/
|
3890 |
#, fuzzy
|
3891 |
-
msgctxt "
|
3892 |
-
msgid "
|
3893 |
-
msgstr "
|
3894 |
|
3895 |
-
#: includes/admin/
|
3896 |
-
msgctxt "
|
3897 |
-
msgid "
|
3898 |
-
msgstr "
|
3899 |
|
3900 |
-
#: includes/admin/
|
3901 |
#, fuzzy
|
3902 |
-
msgctxt "
|
3903 |
-
msgid "
|
3904 |
-
msgstr "
|
3905 |
|
3906 |
-
#: includes/admin/
|
3907 |
#, fuzzy
|
3908 |
-
msgctxt "
|
3909 |
-
msgid "
|
3910 |
-
msgstr "
|
3911 |
-
|
3912 |
-
#: includes/admin/helpers/tables/class-fees-table.php:237
|
3913 |
-
msgctxt "fees admin"
|
3914 |
-
msgid "Forever"
|
3915 |
-
msgstr "دائما"
|
3916 |
|
3917 |
-
#: includes/admin/
|
3918 |
-
|
3919 |
-
|
3920 |
-
|
3921 |
-
msgstr
|
3922 |
-
msgstr[1] "%d يوم"
|
3923 |
-
msgstr[2] "%d يومين"
|
3924 |
-
msgstr[3] "%d أيام"
|
3925 |
-
msgstr[4] "%d يوم"
|
3926 |
-
msgstr[5] "%d يوم"
|
3927 |
|
3928 |
-
#: includes/admin/
|
3929 |
-
|
3930 |
-
|
3931 |
-
|
|
|
3932 |
|
3933 |
-
#: includes/admin/
|
3934 |
-
msgctxt "
|
3935 |
-
msgid "
|
|
|
|
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: includes/admin/
|
3939 |
#, fuzzy
|
3940 |
-
msgctxt "
|
3941 |
-
msgid "
|
3942 |
-
msgstr "
|
3943 |
|
3944 |
-
#: includes/admin/helpers/tables/class-
|
3945 |
#, fuzzy
|
3946 |
-
msgctxt "
|
3947 |
-
msgid "
|
3948 |
-
msgstr "
|
3949 |
|
3950 |
-
#: includes/admin/helpers/tables/class-payments-table.php:
|
3951 |
#, fuzzy
|
3952 |
-
msgctxt "
|
3953 |
-
msgid "
|
3954 |
-
msgstr "
|
3955 |
|
3956 |
-
#: includes/admin/helpers/tables/class-payments-table.php:
|
3957 |
#, fuzzy
|
3958 |
-
msgctxt "
|
3959 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3960 |
msgstr "سجل المدفوعات"
|
3961 |
|
3962 |
-
#: includes/admin/
|
3963 |
-
msgctxt "
|
3964 |
-
msgid "
|
3965 |
-
msgstr "
|
3966 |
|
3967 |
-
#:
|
3968 |
-
msgctxt "
|
3969 |
-
msgid "
|
|
|
|
|
|
|
|
|
3970 |
msgstr ""
|
|
|
|
|
|
|
|
|
3971 |
|
3972 |
-
#:
|
3973 |
-
|
3974 |
-
|
3975 |
-
|
3976 |
-
msgstr "تجديد قائمة في جميع فئات منتهية الصلاحية"
|
3977 |
|
3978 |
-
#:
|
3979 |
-
msgctxt "
|
3980 |
-
msgid "
|
3981 |
-
msgstr ""
|
3982 |
|
3983 |
-
#:
|
3984 |
-
|
3985 |
-
|
3986 |
-
|
3987 |
-
msgstr "يمكنك استخدام العناصر النائبة التالية:"
|
3988 |
|
3989 |
-
#:
|
3990 |
-
msgctxt "
|
3991 |
-
msgid "
|
3992 |
-
msgstr ""
|
3993 |
|
3994 |
-
#:
|
3995 |
-
|
3996 |
-
|
3997 |
-
|
3998 |
-
msgstr "السعر"
|
3999 |
|
4000 |
-
#:
|
4001 |
-
msgctxt "
|
4002 |
-
msgid "
|
4003 |
-
msgstr ""
|
4004 |
|
4005 |
-
#:
|
4006 |
-
msgctxt "
|
4007 |
-
msgid "
|
4008 |
-
msgstr ""
|
4009 |
|
4010 |
-
#:
|
4011 |
-
|
4012 |
-
|
4013 |
-
|
4014 |
-
msgstr "ترتيب فرز التصنيفات"
|
4015 |
|
4016 |
-
#:
|
4017 |
-
msgctxt "
|
4018 |
-
msgid "
|
4019 |
-
msgstr ""
|
4020 |
|
4021 |
-
#:
|
4022 |
#, fuzzy
|
4023 |
-
msgctxt "
|
4024 |
-
msgid "
|
4025 |
-
msgstr "
|
4026 |
|
4027 |
-
#:
|
4028 |
#, fuzzy
|
4029 |
-
msgctxt "
|
4030 |
-
msgid "
|
4031 |
-
msgstr "
|
4032 |
|
4033 |
-
#:
|
4034 |
-
|
4035 |
-
|
4036 |
-
|
4037 |
-
msgstr "السعر"
|
4038 |
|
4039 |
-
#:
|
4040 |
-
msgctxt "
|
4041 |
-
msgid "
|
4042 |
-
msgstr ""
|
4043 |
|
4044 |
-
#: includes/admin/
|
4045 |
-
msgctxt "admin
|
4046 |
-
msgid "
|
4047 |
-
msgstr "
|
4048 |
|
4049 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
|
|
4050 |
#, fuzzy
|
4051 |
-
msgctxt "admin
|
4052 |
-
msgid ""
|
4053 |
-
"
|
4054 |
-
|
4055 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4056 |
msgstr ""
|
4057 |
-
"هذا الإعلان لا يملك أي تصنيف معين. تصنيف واحد على الأقل (والرسوم الخاصة "
|
4058 |
-
"به) مطلوب من أجل تحديد الميزات المتوفرة لهذا الإعلان، زائد التعامل مع تجديد "
|
4059 |
-
"الاشتراك."
|
4060 |
|
4061 |
-
#: includes/
|
4062 |
-
|
4063 |
-
|
4064 |
-
|
4065 |
-
msgstr "أبداً"
|
4066 |
|
4067 |
-
#: includes/
|
4068 |
-
|
4069 |
-
msgctxt "admin
|
4070 |
-
msgid "
|
4071 |
-
msgstr "
|
4072 |
|
4073 |
-
#: includes/
|
4074 |
#, fuzzy
|
4075 |
-
msgctxt "admin
|
4076 |
-
msgid "
|
4077 |
-
msgstr "
|
4078 |
|
4079 |
-
#: includes/
|
4080 |
-
|
4081 |
-
|
4082 |
-
|
4083 |
-
msgstr "معلومات الرسوم"
|
4084 |
|
4085 |
-
#: includes/
|
4086 |
-
|
4087 |
-
|
4088 |
-
|
4089 |
-
msgstr "الدفع #%d"
|
4090 |
|
4091 |
-
#: includes/
|
4092 |
-
msgctxt "admin
|
4093 |
-
msgid "
|
4094 |
-
msgstr ""
|
4095 |
|
4096 |
-
#: includes/
|
4097 |
-
msgctxt "admin
|
4098 |
-
msgid "
|
4099 |
-
msgstr ""
|
4100 |
|
4101 |
-
#:
|
4102 |
-
msgctxt "admin
|
4103 |
-
msgid "
|
|
|
|
|
4104 |
msgstr ""
|
|
|
|
|
4105 |
|
4106 |
-
#:
|
4107 |
-
|
4108 |
-
|
4109 |
-
|
4110 |
-
msgstr "معلومات اضافية"
|
4111 |
|
4112 |
-
#:
|
4113 |
-
|
4114 |
-
|
4115 |
-
|
4116 |
-
msgstr "تمت ترقية الإعلان."
|
4117 |
|
4118 |
-
#:
|
4119 |
-
|
4120 |
-
|
4121 |
-
|
4122 |
-
|
|
|
4123 |
|
4124 |
-
#: includes/
|
4125 |
-
|
4126 |
-
|
4127 |
-
|
4128 |
-
|
|
|
4129 |
|
4130 |
-
#: includes/
|
4131 |
-
msgctxt "
|
4132 |
-
msgid "
|
4133 |
msgstr ""
|
4134 |
|
4135 |
-
#: includes/
|
4136 |
-
msgctxt "
|
4137 |
-
msgid "
|
|
|
|
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: includes/
|
4141 |
-
msgctxt "
|
4142 |
-
msgid "
|
|
|
|
|
4143 |
msgstr ""
|
4144 |
|
4145 |
-
#: includes/
|
4146 |
-
|
4147 |
-
|
4148 |
-
|
4149 |
-
msgstr "إكتمل"
|
4150 |
|
4151 |
-
#: includes/
|
4152 |
#, fuzzy
|
4153 |
-
msgctxt "
|
4154 |
-
msgid "
|
4155 |
-
msgstr "
|
4156 |
|
4157 |
-
#:
|
4158 |
-
|
4159 |
-
|
4160 |
-
|
4161 |
-
msgstr "إكتمل"
|
4162 |
|
4163 |
-
#:
|
4164 |
-
|
4165 |
-
|
4166 |
-
|
4167 |
-
|
|
|
4168 |
|
4169 |
-
#:
|
4170 |
-
|
4171 |
-
|
4172 |
-
|
4173 |
-
msgstr "منتهي الصلاحية"
|
4174 |
|
4175 |
-
#:
|
4176 |
-
|
4177 |
-
|
4178 |
-
|
4179 |
-
msgstr "مفعل + ريثما يتم التجديد"
|
4180 |
|
4181 |
-
#:
|
4182 |
-
|
4183 |
-
|
4184 |
-
|
4185 |
-
msgstr "متخلى عنه"
|
4186 |
|
4187 |
-
#:
|
4188 |
-
|
4189 |
-
|
4190 |
-
|
4191 |
-
msgstr "الدفع"
|
4192 |
|
4193 |
-
#:
|
4194 |
-
|
4195 |
-
|
4196 |
-
|
4197 |
-
msgstr "الدفع"
|
4198 |
|
4199 |
-
#:
|
4200 |
-
|
4201 |
-
|
4202 |
-
|
4203 |
-
msgstr "نشر إعلان"
|
4204 |
-
|
4205 |
-
#: includes/admin/controllers/class-admin-listings.php:636
|
4206 |
-
#, fuzzy
|
4207 |
-
msgctxt "admin actions"
|
4208 |
-
msgid "Mark as \"Pending Review\""
|
4209 |
-
msgstr " في الانتظار"
|
4210 |
|
4211 |
-
#:
|
4212 |
-
msgctxt "admin
|
4213 |
-
msgid "
|
4214 |
-
msgstr ""
|
4215 |
|
4216 |
-
#:
|
4217 |
-
|
4218 |
-
|
4219 |
-
|
4220 |
-
msgstr "تجديد الإعلان"
|
4221 |
|
4222 |
-
#:
|
4223 |
-
|
4224 |
-
|
4225 |
-
|
4226 |
-
msgstr "الإعلان منتهي التاريخ"
|
4227 |
|
4228 |
-
#:
|
4229 |
-
|
4230 |
-
|
4231 |
-
|
4232 |
-
msgstr "مفتاح الوصول"
|
4233 |
|
4234 |
-
#:
|
4235 |
-
|
4236 |
-
|
4237 |
-
|
4238 |
-
msgstr "المدفوعات ذات الصلة"
|
4239 |
|
4240 |
-
#:
|
4241 |
-
msgctxt "
|
4242 |
-
msgid ""
|
4243 |
-
"You're seeing payments related to listing: \"%1$s\" (ID #%2$d). <a>Click "
|
4244 |
-
"here</a> to see all payments."
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#:
|
4248 |
-
#, fuzzy
|
4249 |
-
msgctxt "payments admin"
|
4250 |
-
msgid "Payment details updated."
|
4251 |
-
msgstr "تفاصيل الدفع"
|
4252 |
-
|
4253 |
-
#: includes/admin/helpers/tables/class-payments-table.php:12
|
4254 |
-
#, fuzzy
|
4255 |
-
msgctxt "payments admin"
|
4256 |
-
msgid "payment"
|
4257 |
-
msgstr "الدفع"
|
4258 |
-
|
4259 |
-
#: includes/admin/helpers/tables/class-payments-table.php:13
|
4260 |
-
#, fuzzy
|
4261 |
-
msgctxt "payments admin"
|
4262 |
-
msgid "payments"
|
4263 |
-
msgstr "الدفع"
|
4264 |
-
|
4265 |
-
#: includes/admin/helpers/tables/class-payments-table.php:19
|
4266 |
#, fuzzy
|
4267 |
-
msgctxt "
|
4268 |
-
msgid "
|
4269 |
-
msgstr "
|
4270 |
|
4271 |
-
#:
|
4272 |
#, fuzzy
|
4273 |
-
msgctxt "
|
4274 |
-
msgid "
|
4275 |
-
msgstr "
|
4276 |
|
4277 |
-
#:
|
4278 |
#, fuzzy
|
4279 |
-
msgctxt "payments admin"
|
4280 |
-
msgid "View Payment History"
|
4281 |
-
msgstr "سجل المدفوعات"
|
4282 |
-
|
4283 |
-
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4284 |
msgctxt "form-fields admin"
|
4285 |
-
msgid "
|
4286 |
-
msgstr "
|
4287 |
|
4288 |
-
#:
|
4289 |
msgctxt "form-fields admin"
|
4290 |
-
msgid ""
|
4291 |
-
"<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
|
4292 |
-
"\" setting is disabled, display settings below will not be honored and this "
|
4293 |
-
"field will not be displayed on the frontend. If you want e-mail addresses to "
|
4294 |
-
"show on the frontend, you can <a>enable public display of e-mails</a>."
|
4295 |
msgstr ""
|
4296 |
-
"<b>هام</b>: نظرا لأن إعدادات \"<a>عرض حقول عنوان البريد الإلكتروني للعموم؟</"
|
4297 |
-
"a>\" معطلة، عرض الإعدادات أدناه لن يتم إظهاره ولن يتم عرض هذا الحقل على "
|
4298 |
-
"الواجهة. إذا كنت تريد إظهار عناوين البريد الإلكتروني في الواجهة، يمكنك "
|
4299 |
-
"<a>تمكين عرض البريد الإلكتروني للعموم</a>."
|
4300 |
-
|
4301 |
-
#: includes/admin/controllers/class-form-fields-admin.php:299
|
4302 |
-
msgctxt "form-fields admin"
|
4303 |
-
msgid "Field deleted."
|
4304 |
-
msgstr "تم حذف الحقل."
|
4305 |
|
4306 |
-
#:
|
4307 |
msgctxt "form-fields admin"
|
4308 |
-
msgid "
|
4309 |
-
msgstr "
|
4310 |
|
4311 |
-
#:
|
|
|
4312 |
msgctxt "form-fields admin"
|
4313 |
-
msgid "
|
4314 |
-
msgstr "
|
4315 |
|
4316 |
-
#:
|
4317 |
msgctxt "form-fields admin"
|
4318 |
-
msgid "
|
4319 |
-
msgstr "
|
4320 |
|
4321 |
-
#:
|
4322 |
msgctxt "form-fields admin"
|
4323 |
-
msgid "
|
4324 |
-
msgstr "
|
4325 |
|
4326 |
-
#:
|
4327 |
msgctxt "form-fields admin"
|
4328 |
-
msgid "
|
4329 |
-
msgstr "
|
4330 |
|
4331 |
-
#:
|
4332 |
msgctxt "form-fields admin"
|
4333 |
-
msgid "
|
4334 |
-
msgstr "
|
4335 |
|
4336 |
-
#:
|
4337 |
msgctxt "form-fields admin"
|
4338 |
-
msgid "
|
4339 |
-
msgstr "
|
4340 |
|
4341 |
-
#:
|
4342 |
msgctxt "form-fields admin"
|
4343 |
-
msgid "
|
4344 |
-
msgstr "
|
4345 |
|
4346 |
-
#:
|
4347 |
#, fuzzy
|
4348 |
msgctxt "form-fields admin"
|
4349 |
-
msgid "
|
4350 |
-
msgstr "
|
4351 |
|
4352 |
-
#:
|
4353 |
msgctxt "form-fields admin"
|
4354 |
-
msgid "
|
4355 |
-
msgstr "
|
4356 |
|
4357 |
-
#:
|
4358 |
msgctxt "form-fields admin"
|
4359 |
-
msgid "
|
4360 |
-
msgstr "
|
4361 |
|
4362 |
-
#:
|
4363 |
#, fuzzy
|
4364 |
msgctxt "form-fields admin"
|
4365 |
-
msgid "
|
4366 |
-
msgstr "
|
4367 |
-
|
4368 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:170
|
4369 |
-
msgctxt "form-fields admin"
|
4370 |
-
msgid "This field value is shown in the excerpt view of a listing."
|
4371 |
-
msgstr "قيمة هذا الحقل ظاهرة في عرض المقتطفات للإعلان."
|
4372 |
|
4373 |
-
#:
|
4374 |
msgctxt "form-fields admin"
|
4375 |
-
msgid "
|
4376 |
-
msgstr "
|
4377 |
|
4378 |
-
#:
|
4379 |
msgctxt "form-fields admin"
|
4380 |
-
msgid "
|
4381 |
-
msgstr "
|
4382 |
|
4383 |
-
#:
|
4384 |
msgctxt "form-fields admin"
|
4385 |
-
msgid "
|
4386 |
-
msgstr "
|
4387 |
|
4388 |
-
#:
|
4389 |
-
#, fuzzy
|
4390 |
msgctxt "form-fields admin"
|
4391 |
-
msgid "
|
4392 |
-
msgstr "
|
4393 |
|
4394 |
-
#:
|
4395 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:90
|
4396 |
msgctxt "form-fields admin"
|
4397 |
-
msgid "
|
4398 |
-
msgstr "
|
4399 |
|
4400 |
-
#:
|
4401 |
msgctxt "form-fields admin"
|
4402 |
-
msgid "
|
4403 |
-
msgstr ""
|
4404 |
|
4405 |
-
#:
|
4406 |
msgctxt "form-fields admin"
|
4407 |
-
msgid "
|
|
|
|
|
4408 |
msgstr ""
|
|
|
|
|
4409 |
|
4410 |
-
#:
|
4411 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:117
|
4412 |
msgctxt "form-fields admin"
|
4413 |
-
msgid "
|
4414 |
-
msgstr "
|
4415 |
|
4416 |
-
#: includes/
|
4417 |
#, fuzzy
|
4418 |
-
msgctxt "
|
4419 |
-
msgid "
|
4420 |
-
msgstr "
|
4421 |
-
|
4422 |
-
#: includes/fields/class-fieldtypes-textarea.php:193
|
4423 |
-
msgctxt "form-fields admin"
|
4424 |
-
msgid "Allow HTML input for this field?"
|
4425 |
-
msgstr "السماح بإدخال HTML لهذا الحقل؟"
|
4426 |
|
4427 |
-
#: includes/
|
4428 |
-
msgctxt "
|
4429 |
-
msgid "
|
4430 |
-
msgstr "
|
4431 |
-
|
4432 |
-
#: includes/fields/class-fieldtypes-textarea.php:206
|
4433 |
-
msgctxt "form-fields admin"
|
4434 |
-
msgid "Allow WordPress shortcodes in this field?"
|
4435 |
-
msgstr "السماح بالأكواد القصيرة لووردبريس في هذا الحقل؟"
|
4436 |
-
|
4437 |
-
#: includes/fields/class-fieldtypes-textarea.php:211
|
4438 |
-
msgctxt "form-fields admin"
|
4439 |
-
msgid "Display a WYSIWYG editor on the frontend?"
|
4440 |
-
msgstr "عرض محرر WYSIWYG في واجهة الموقع؟"
|
4441 |
|
4442 |
-
#: includes/
|
4443 |
-
msgctxt "
|
4444 |
msgid ""
|
4445 |
-
"
|
4446 |
-
"
|
4447 |
-
msgstr ""
|
4448 |
-
"<b>للأعضاء المتقدمين فقط!</b> إلا إذا كنت قيل لك بتغيير هذا، لا تبدل إلا إذا "
|
4449 |
-
"كنت تعرف ما تفعله."
|
4450 |
-
|
4451 |
-
#: includes/fields/class-fieldtypes-textarea.php:219
|
4452 |
-
msgctxt "form-fields admin"
|
4453 |
-
msgid "Apply \"the_content\" filter before displaying this field?"
|
4454 |
-
msgstr "تطبيق عامل تصفية \"the_content\" قبل عرض هذا الحقل؟"
|
4455 |
-
|
4456 |
-
#: includes/fields/class-fieldtypes-textarea.php:222
|
4457 |
-
msgctxt "form-fields admin"
|
4458 |
-
msgid "Use shortened version of Description field as excerpt"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: includes/
|
4462 |
-
msgctxt "
|
4463 |
-
msgid ""
|
4464 |
-
"
|
4465 |
-
"Description)"
|
4466 |
-
msgstr ""
|
4467 |
|
4468 |
-
#: includes/
|
4469 |
-
msgctxt "
|
4470 |
-
msgid ""
|
4471 |
-
"
|
4472 |
-
"shortened Long Description)"
|
4473 |
-
msgstr ""
|
4474 |
|
4475 |
-
#: includes/
|
4476 |
-
msgctxt "
|
4477 |
-
msgid "
|
4478 |
-
msgstr ""
|
4479 |
|
4480 |
-
#: includes/
|
4481 |
-
msgctxt "
|
4482 |
msgid ""
|
4483 |
-
"
|
4484 |
-
"
|
|
|
4485 |
msgstr ""
|
|
|
|
|
|
|
4486 |
|
4487 |
-
#: includes/
|
4488 |
-
msgctxt "
|
4489 |
-
msgid ""
|
4490 |
-
"
|
4491 |
-
"(only)"
|
4492 |
-
msgstr ""
|
4493 |
|
4494 |
-
#: includes/
|
4495 |
-
|
4496 |
-
|
4497 |
-
|
|
|
4498 |
|
4499 |
-
#: includes/
|
4500 |
#, fuzzy
|
4501 |
-
msgctxt "
|
4502 |
-
msgid "
|
4503 |
-
msgstr "
|
4504 |
|
4505 |
-
#:
|
4506 |
-
|
4507 |
-
|
4508 |
-
|
|
|
4509 |
|
4510 |
-
#:
|
4511 |
-
|
4512 |
-
|
4513 |
-
|
4514 |
-
|
4515 |
-
msgstr "مطلوب"
|
4516 |
|
4517 |
-
#:
|
4518 |
-
msgctxt "
|
4519 |
-
msgid "
|
4520 |
-
msgstr "
|
4521 |
|
4522 |
-
#:
|
4523 |
-
|
4524 |
-
|
4525 |
-
|
|
|
4526 |
|
4527 |
-
#:
|
4528 |
-
|
4529 |
-
|
4530 |
-
|
|
|
4531 |
|
4532 |
-
#:
|
4533 |
-
msgctxt "
|
4534 |
-
msgid "
|
4535 |
-
msgstr "
|
4536 |
|
4537 |
-
#:
|
4538 |
-
msgctxt "
|
4539 |
-
msgid "
|
4540 |
-
msgstr "
|
4541 |
|
4542 |
-
#:
|
4543 |
-
|
4544 |
-
|
4545 |
-
|
|
|
4546 |
|
4547 |
-
#:
|
4548 |
-
|
4549 |
-
|
4550 |
-
|
|
|
4551 |
|
4552 |
-
#:
|
4553 |
-
msgctxt "
|
4554 |
-
msgid "
|
4555 |
-
msgstr "
|
4556 |
|
4557 |
-
#:
|
4558 |
-
msgctxt "
|
4559 |
-
msgid "
|
4560 |
-
msgstr "
|
4561 |
|
4562 |
-
#:
|
4563 |
-
msgctxt "
|
4564 |
-
msgid "
|
4565 |
-
msgstr "
|
4566 |
|
4567 |
-
#:
|
4568 |
-
msgctxt "
|
4569 |
-
msgid "
|
4570 |
-
msgstr "
|
4571 |
|
4572 |
-
#:
|
4573 |
-
msgctxt "
|
4574 |
-
msgid "
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#:
|
|
|
|
|
4578 |
#, fuzzy
|
4579 |
-
msgctxt "
|
4580 |
-
msgid "
|
4581 |
-
msgstr "
|
4582 |
|
4583 |
-
#:
|
|
|
4584 |
#, fuzzy
|
4585 |
-
msgctxt "
|
4586 |
-
msgid "
|
4587 |
-
msgstr "
|
4588 |
|
4589 |
-
#:
|
4590 |
-
|
4591 |
-
|
4592 |
-
|
4593 |
-
msgstr "يمكنك استخدام العناصر النائبة التالية:"
|
4594 |
|
4595 |
-
#:
|
4596 |
-
msgctxt "
|
4597 |
-
msgid "
|
4598 |
-
msgstr ""
|
4599 |
|
4600 |
-
#:
|
4601 |
-
msgctxt "
|
4602 |
-
msgid "
|
4603 |
-
msgstr ""
|
4604 |
|
4605 |
-
#:
|
4606 |
-
|
4607 |
-
|
4608 |
-
|
4609 |
-
msgstr "عرض هذه القيمة في مشاهدة الإعلان."
|
4610 |
|
4611 |
-
#:
|
4612 |
-
msgctxt "
|
4613 |
-
msgid "
|
4614 |
-
msgstr "
|
4615 |
|
4616 |
-
#:
|
4617 |
-
msgctxt "form-fields admin"
|
4618 |
-
msgid "Display this value in post excerpt view."
|
4619 |
-
msgstr "عرض هذه القيمة في مشاهدة مقتطفات المقالة."
|
4620 |
-
|
4621 |
-
#: templates/admin/form-fields-addoredit.tpl.php:232
|
4622 |
-
msgctxt "form-fields admin"
|
4623 |
-
msgid "Show this value in listing view?"
|
4624 |
-
msgstr "إظهار هذه القيمة في مشاهدة الإعلان؟"
|
4625 |
-
|
4626 |
-
#: templates/admin/form-fields-addoredit.tpl.php:238
|
4627 |
-
msgctxt "form-fields admin"
|
4628 |
-
msgid "Display this value in the listing view."
|
4629 |
-
msgstr "عرض هذه القيمة في مشاهدة الإعلان."
|
4630 |
-
|
4631 |
-
#: templates/admin/form-fields-addoredit.tpl.php:244
|
4632 |
-
msgctxt "form-fields admin"
|
4633 |
-
msgid "Include this field in the search form?"
|
4634 |
-
msgstr "تضمين هذا الحقل في نموذج البحث؟"
|
4635 |
-
|
4636 |
-
#: templates/admin/form-fields-addoredit.tpl.php:250
|
4637 |
-
msgctxt "form-fields admin"
|
4638 |
-
msgid "Include this field in the search form."
|
4639 |
-
msgstr "تضمين هذا الحقل في نموذج البحث."
|
4640 |
-
|
4641 |
-
#: templates/admin/form-fields-addoredit.tpl.php:256
|
4642 |
-
#, fuzzy
|
4643 |
-
msgctxt "form-fields admin"
|
4644 |
-
msgid "Is this field required for searching?"
|
4645 |
-
msgstr "هل هذا الحقل مطلوب؟"
|
4646 |
-
|
4647 |
-
#: templates/admin/form-fields-addoredit.tpl.php:274
|
4648 |
-
msgctxt "form-fields admin"
|
4649 |
-
msgid "Hide this field's label?"
|
4650 |
-
msgstr "إخفاء تسمية هذا الحقل؟"
|
4651 |
-
|
4652 |
-
#: templates/admin/form-fields-addoredit.tpl.php:280
|
4653 |
-
msgctxt "form-fields admin"
|
4654 |
-
msgid "Hide this field's label when displaying it."
|
4655 |
-
msgstr "إخفاء تسمية هذا الحقل عند عرضه."
|
4656 |
-
|
4657 |
-
#: templates/admin/form-fields-addoredit.tpl.php:288
|
4658 |
-
#, fuzzy
|
4659 |
-
msgctxt "form-fields admin"
|
4660 |
-
msgid "Field privacy options"
|
4661 |
-
msgstr "خيارات عرض الحقل"
|
4662 |
-
|
4663 |
-
#: templates/admin/form-fields-addoredit.tpl.php:292
|
4664 |
-
msgctxt "form-fields admin"
|
4665 |
-
msgid "This field contains sensitive or private information?"
|
4666 |
-
msgstr ""
|
4667 |
-
|
4668 |
-
#: templates/admin/form-fields-addoredit.tpl.php:300
|
4669 |
-
msgctxt "form-fields admin"
|
4670 |
-
msgid "Add this field when exporting or deleting user's personal data."
|
4671 |
-
msgstr ""
|
4672 |
-
|
4673 |
-
#: templates/admin/form-fields-addoredit.tpl.php:309
|
4674 |
-
msgctxt "form-fields admin"
|
4675 |
-
msgid "Update Field"
|
4676 |
-
msgstr "تحديث الحقل"
|
4677 |
-
|
4678 |
-
#: templates/admin/form-fields-addoredit.tpl.php:311
|
4679 |
-
msgctxt "form-fields admin"
|
4680 |
-
msgid "Add Field"
|
4681 |
-
msgstr "إضافة حقل"
|
4682 |
-
|
4683 |
-
#: templates/admin/form-fields-tags.tpl.php:5
|
4684 |
-
msgctxt "form-fields admin"
|
4685 |
-
msgid "-- None --"
|
4686 |
-
msgstr "-- إختر --"
|
4687 |
-
|
4688 |
-
#: templates/admin/form-fields-tags.tpl.php:14
|
4689 |
-
msgctxt "form-fields admin"
|
4690 |
-
msgid "Theme Tags"
|
4691 |
-
msgstr "وسوم القالب"
|
4692 |
-
|
4693 |
-
#: templates/admin/form-fields-tags.tpl.php:19
|
4694 |
-
msgctxt "form-fields admin"
|
4695 |
-
msgid ""
|
4696 |
-
"Before you create fields, make sure you've mapped all of your EXISTING ones "
|
4697 |
-
"first, otherwise you'll appear to be \"missing data\" on your listings."
|
4698 |
-
msgstr ""
|
4699 |
-
"قبل إنشاء الحقول، تأكد من أنك قمت بتعيين كل الموجودين مسبقا، وإلا سوف تبدو "
|
4700 |
-
"\"بيانات مفقودة\" في إعلاناتك."
|
4701 |
-
|
4702 |
-
#: templates/admin/form-fields-tags.tpl.php:22
|
4703 |
-
msgctxt "form-fields admin"
|
4704 |
-
msgid "Create Missing Fields"
|
4705 |
-
msgstr "إنشاء الحقول المفقودة"
|
4706 |
-
|
4707 |
-
#: templates/admin/form-fields.tpl.php:21
|
4708 |
-
msgctxt "form-fields admin"
|
4709 |
-
msgid ""
|
4710 |
-
"Here, you can create new fields for your listings, edit or delete existing "
|
4711 |
-
"ones, change the order and visibility of the fields as well as configure "
|
4712 |
-
"special options for them."
|
4713 |
-
msgstr ""
|
4714 |
-
"هنا، يمكنك إنشاء حقول جديدة لإعلاناتك، تحرير أو حذف الموجود منها، وتغيير "
|
4715 |
-
"ترتيب وإبراز الحقول فضلا عن إعداد خيارات خاصة لهم."
|
4716 |
-
|
4717 |
-
#: templates/admin/form-fields.tpl.php:32
|
4718 |
-
msgctxt "form-fields admin"
|
4719 |
-
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
4720 |
-
msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
|
4721 |
-
|
4722 |
-
#: includes/admin/controllers/class-settings-admin.php:369
|
4723 |
-
#, fuzzy
|
4724 |
-
msgctxt "admin settings"
|
4725 |
-
msgid "Remove"
|
4726 |
-
msgstr "إزالة"
|
4727 |
-
|
4728 |
-
#: includes/admin/controllers/class-settings-admin.php:431
|
4729 |
-
msgctxt "admin settings"
|
4730 |
-
msgid "Valid placeholders: %s"
|
4731 |
-
msgstr "العناصر النائبة صالحة: %s"
|
4732 |
-
|
4733 |
-
#: includes/admin/settings/class-settings-bootstrap.php:101
|
4734 |
-
msgctxt "admin settings"
|
4735 |
-
msgid ""
|
4736 |
-
"IMPORTANT: subpages of the main directory page cannot be accesed while this "
|
4737 |
-
"setting is checked."
|
4738 |
-
msgstr ""
|
4739 |
-
|
4740 |
-
#: includes/admin/settings/class-settings-bootstrap.php:310
|
4741 |
-
msgctxt "admin settings"
|
4742 |
-
msgid "Above results"
|
4743 |
-
msgstr "أعلى النتائج"
|
4744 |
-
|
4745 |
-
#: includes/admin/settings/class-settings-bootstrap.php:311
|
4746 |
-
msgctxt "admin settings"
|
4747 |
-
msgid "Below results"
|
4748 |
-
msgstr "أسفل النتائج"
|
4749 |
-
|
4750 |
-
#: includes/admin/settings/class-settings-bootstrap.php:312
|
4751 |
-
msgctxt "admin settings"
|
4752 |
-
msgid "Don't show with results"
|
4753 |
-
msgstr "لا تظهر مع النتائج"
|
4754 |
-
|
4755 |
-
#: includes/admin/settings/class-settings-bootstrap.php:392
|
4756 |
-
msgctxt "admin settings"
|
4757 |
-
msgid ""
|
4758 |
-
"You have selected a textarea field to be included in quick searches. "
|
4759 |
-
"Searches involving those fields are very expensive and could result in "
|
4760 |
-
"timeouts and/or general slowness."
|
4761 |
-
msgstr ""
|
4762 |
-
"لقد حددت حقل إدراج نص ليتم تضمينها في عمليات البحث السريعة. عمليات البحث "
|
4763 |
-
"التي تنطوي على تلك الحقول تتطلب موارد كثيرة ويمكن أن تؤدي الى انتهاء المهلة "
|
4764 |
-
"و/ أو البطء العام."
|
4765 |
-
|
4766 |
-
#: includes/admin/settings/class-settings-bootstrap.php:552
|
4767 |
-
msgctxt "admin settings"
|
4768 |
-
msgid "Do not include comments in listings"
|
4769 |
-
msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
|
4770 |
-
|
4771 |
-
#: includes/admin/settings/class-settings-bootstrap.php:576
|
4772 |
-
#, fuzzy
|
4773 |
-
msgctxt "admin settings"
|
4774 |
-
msgid "Directory view."
|
4775 |
-
msgstr "الدليل"
|
4776 |
-
|
4777 |
-
#: includes/admin/settings/class-settings-bootstrap.php:577
|
4778 |
-
#, fuzzy
|
4779 |
-
msgctxt "admin settings"
|
4780 |
-
msgid "All Listings view."
|
4781 |
-
msgstr "مشاهدة جميع الإعلانات"
|
4782 |
-
|
4783 |
-
#: includes/admin/settings/class-settings-bootstrap.php:578
|
4784 |
-
#, fuzzy
|
4785 |
-
msgctxt "admin settings"
|
4786 |
-
msgid "Category view."
|
4787 |
-
msgstr "التصنيفات"
|
4788 |
-
|
4789 |
-
#: includes/admin/settings/class-settings-bootstrap.php:579
|
4790 |
-
#, fuzzy
|
4791 |
-
msgctxt "admin settings"
|
4792 |
-
msgid "Search view."
|
4793 |
-
msgstr "بحث"
|
4794 |
-
|
4795 |
-
#: includes/admin/settings/class-settings-bootstrap.php:706
|
4796 |
-
msgctxt "admin settings"
|
4797 |
-
msgid "Slug"
|
4798 |
-
msgstr "رابط لطيف"
|
4799 |
-
|
4800 |
-
#: includes/admin/settings/class-settings-bootstrap.php:719
|
4801 |
-
#: includes/admin/settings/class-settings-bootstrap.php:787
|
4802 |
-
msgctxt "admin settings"
|
4803 |
-
msgid "Ascending"
|
4804 |
-
msgstr "تصاعدي"
|
4805 |
-
|
4806 |
-
#: includes/admin/settings/class-settings-bootstrap.php:720
|
4807 |
-
#: includes/admin/settings/class-settings-bootstrap.php:788
|
4808 |
-
msgctxt "admin settings"
|
4809 |
-
msgid "Descending"
|
4810 |
-
msgstr "تنازلي"
|
4811 |
-
|
4812 |
-
#: includes/admin/settings/class-settings-bootstrap.php:753
|
4813 |
-
msgctxt "admin settings"
|
4814 |
-
msgid "Plan Custom Order can be changed under <a>Plans</a>"
|
4815 |
-
msgstr ""
|
4816 |
-
|
4817 |
-
#: includes/admin/settings/class-settings-bootstrap.php:766
|
4818 |
-
msgctxt "admin settings"
|
4819 |
-
msgid "Author"
|
4820 |
-
msgstr "الكاتب"
|
4821 |
-
|
4822 |
-
#: includes/admin/settings/class-settings-bootstrap.php:767
|
4823 |
-
#: includes/helpers/functions/general.php:1285
|
4824 |
-
msgctxt "admin settings"
|
4825 |
-
msgid "Date posted"
|
4826 |
-
msgstr "تاريخ النشر"
|
4827 |
-
|
4828 |
-
#: includes/admin/settings/class-settings-bootstrap.php:768
|
4829 |
-
#: includes/helpers/functions/general.php:1286
|
4830 |
-
msgctxt "admin settings"
|
4831 |
-
msgid "Date last modified"
|
4832 |
-
msgstr "تاريخ آخر تعديل"
|
4833 |
-
|
4834 |
-
#: includes/admin/settings/class-settings-bootstrap.php:769
|
4835 |
-
msgctxt "admin settings"
|
4836 |
-
msgid "Random"
|
4837 |
-
msgstr "عشوائية"
|
4838 |
-
|
4839 |
-
#: includes/admin/settings/class-settings-bootstrap.php:770
|
4840 |
-
msgctxt "admin settings"
|
4841 |
-
msgid "Paid first then free. Inside each group by date."
|
4842 |
-
msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة حسب التاريخ."
|
4843 |
-
|
4844 |
-
#: includes/admin/settings/class-settings-bootstrap.php:771
|
4845 |
-
msgctxt "admin settings"
|
4846 |
-
msgid "Paid first then free. Inside each group by title."
|
4847 |
-
msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة بعنوان."
|
4848 |
-
|
4849 |
-
#: includes/admin/settings/class-settings-bootstrap.php:772
|
4850 |
-
msgctxt "admin settings"
|
4851 |
-
msgid "Plan Custom Order, then Date"
|
4852 |
-
msgstr ""
|
4853 |
-
|
4854 |
-
#: includes/admin/settings/class-settings-bootstrap.php:773
|
4855 |
-
msgctxt "admin settings"
|
4856 |
-
msgid "Plan Custom Order, then Title"
|
4857 |
-
msgstr ""
|
4858 |
-
|
4859 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1037
|
4860 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1062
|
4861 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1086
|
4862 |
-
#, fuzzy
|
4863 |
-
msgctxt "admin settings"
|
4864 |
-
msgid "Excerpt view."
|
4865 |
-
msgstr "مقتطف"
|
4866 |
-
|
4867 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1063
|
4868 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1087
|
4869 |
-
#, fuzzy
|
4870 |
-
msgctxt "admin settings"
|
4871 |
-
msgid "Detail view."
|
4872 |
-
msgstr "الدليل"
|
4873 |
-
|
4874 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1158
|
4875 |
-
msgctxt "admin settings"
|
4876 |
-
msgid "Australian Dollar (AUD)"
|
4877 |
-
msgstr "الدولار الأسترالي (AUD)"
|
4878 |
-
|
4879 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1159
|
4880 |
-
msgctxt "admin settings"
|
4881 |
-
msgid "Brazilian Real (BRL)"
|
4882 |
-
msgstr "الريال البرازيلي (BRL)"
|
4883 |
-
|
4884 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1160
|
4885 |
-
msgctxt "admin settings"
|
4886 |
-
msgid "Canadian Dollar (CAD)"
|
4887 |
-
msgstr "الدولار الكندي (CAD)"
|
4888 |
-
|
4889 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1161
|
4890 |
-
msgctxt "admin settings"
|
4891 |
-
msgid "Czech Koruna (CZK)"
|
4892 |
-
msgstr "الكورونا التشيكية (CZK)"
|
4893 |
-
|
4894 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1162
|
4895 |
-
msgctxt "admin settings"
|
4896 |
-
msgid "Danish Krone (DKK)"
|
4897 |
-
msgstr "الكرونة الدانماركية (DKK)"
|
4898 |
-
|
4899 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1163
|
4900 |
msgctxt "admin settings"
|
4901 |
msgid "United Arab Emirates Dirham (AED)"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4905 |
msgctxt "admin settings"
|
4906 |
msgid "Euro (EUR)"
|
4907 |
msgstr "اليورو (EUR)"
|
4908 |
|
4909 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4910 |
msgctxt "admin settings"
|
4911 |
msgid "Hong Kong Dollar (HKD)"
|
4912 |
msgstr "دولار هونج كونج (HKD)"
|
4913 |
|
4914 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4915 |
msgctxt "admin settings"
|
4916 |
msgid "Hungarian Forint (HUF)"
|
4917 |
msgstr "الفورنت الهنغاري (HUF)"
|
4918 |
|
4919 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4920 |
msgctxt "admin settings"
|
4921 |
msgid "Israeli New Shequel (ILS)"
|
4922 |
msgstr "الشكيل الإسرائيلي الجديد (ILS)"
|
4923 |
|
4924 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4925 |
msgctxt "admin settings"
|
4926 |
msgid "Japanese Yen (JPY)"
|
4927 |
msgstr "الين الياباني (JPY)"
|
4928 |
|
4929 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4930 |
msgctxt "admin settings"
|
4931 |
msgid "Moroccan Dirham (MAD)"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4935 |
msgctxt "admin settings"
|
4936 |
msgid "Malasian Ringgit (MYR)"
|
4937 |
msgstr "الرينغيت الماليزي (MYR)"
|
4938 |
|
4939 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4940 |
msgctxt "admin settings"
|
4941 |
msgid "Mexican Peso (MXN)"
|
4942 |
msgstr "بيزو مكسيكي (MXN)"
|
4943 |
|
4944 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4945 |
msgctxt "admin settings"
|
4946 |
msgid "Norwegian Krone (NOK)"
|
4947 |
msgstr "الكرون النرويجي (NOK)"
|
4948 |
|
4949 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4950 |
msgctxt "admin settings"
|
4951 |
msgid "New Zealand Dollar (NZD)"
|
4952 |
msgstr "الدولار النيوزيلندي (NZD)"
|
4953 |
|
4954 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4955 |
msgctxt "admin settings"
|
4956 |
msgid "Philippine Peso (PHP)"
|
4957 |
msgstr "بيزو فلبيني (PHP)"
|
4958 |
|
4959 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4960 |
msgctxt "admin settings"
|
4961 |
msgid "Polish Zloty (PLN)"
|
4962 |
msgstr "الزلوتي البولندي (PLN)"
|
4963 |
|
4964 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4965 |
msgctxt "admin settings"
|
4966 |
msgid "Pound Sterling (GBP)"
|
4967 |
msgstr "الجنيه الإسترليني (GBP)"
|
4968 |
|
4969 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4970 |
msgctxt "admin settings"
|
4971 |
msgid "Singapore Dollar (SGD)"
|
4972 |
msgstr "دولار سنغافوري (SGD)"
|
4973 |
|
4974 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4975 |
msgctxt "admin settings"
|
4976 |
msgid "Swedish Krona (SEK)"
|
4977 |
msgstr "الكرونا السويدية (SEK)"
|
4978 |
|
4979 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4980 |
msgctxt "admin settings"
|
4981 |
msgid "Swiss Franc (CHF)"
|
4982 |
msgstr "الفرنك السويسري (CHF)"
|
4983 |
|
4984 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4985 |
msgctxt "admin settings"
|
4986 |
msgid "Taiwan Dollar (TWD)"
|
4987 |
msgstr "الدولار التايواني (TWD)"
|
4988 |
|
4989 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4990 |
msgctxt "admin settings"
|
4991 |
msgid "Thai Baht (THB)"
|
4992 |
msgstr "البات التايلندي (THB)"
|
4993 |
|
4994 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4995 |
msgctxt "admin settings"
|
4996 |
msgid "Turkish Lira (TRY)"
|
4997 |
msgstr "الليرة التركية (TRY)"
|
4998 |
|
4999 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5000 |
msgctxt "admin settings"
|
5001 |
msgid "U.S. Dollar (USD)"
|
5002 |
msgstr "الدولار الأمريكي (USD)"
|
5003 |
|
5004 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5005 |
msgctxt "admin settings"
|
5006 |
msgid "Show currency symbol on the left"
|
5007 |
msgstr "إظهار رمز العملة على اليسار"
|
5008 |
|
5009 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5010 |
msgctxt "admin settings"
|
5011 |
msgid "Show currency symbol on the right"
|
5012 |
msgstr "إظهار رمز العملة على اليمين"
|
5013 |
|
5014 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5015 |
msgctxt "admin settings"
|
5016 |
msgid "Do not show currency symbol"
|
5017 |
msgstr "عدم إظهار رمز العملة"
|
5018 |
|
5019 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5020 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5021 |
msgctxt "admin settings"
|
5022 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5023 |
msgstr ""
|
5024 |
|
5025 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5026 |
#, fuzzy
|
5027 |
msgctxt "admin settings"
|
5028 |
msgid ""
|
@@ -5032,122 +4822,122 @@ msgstr ""
|
|
5032 |
"الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا "
|
5033 |
"<a>تخصيص البريد الإلكتروني</a> الذي يتلقاه الأعضاء."
|
5034 |
|
5035 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5036 |
msgctxt "admin settings"
|
5037 |
msgid "Try listing's email field first, then author's email."
|
5038 |
msgstr "جرب البريد الإلكتروني للإعلانات أولاً، ثم البريد الإلكتروني للكاتب."
|
5039 |
|
5040 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5041 |
msgctxt "admin settings"
|
5042 |
msgid "Try author's email first and then listing's email field."
|
5043 |
msgstr "جرب البريد الإلكتروني للكاتب أولاً، ثم البريد الإلكتروني للإعلانات."
|
5044 |
|
5045 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5046 |
msgctxt "admin settings"
|
5047 |
msgid "Plain (text/plain)"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5051 |
msgctxt "admin settings"
|
5052 |
msgid "HTML (text/html)"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5056 |
msgctxt "admin settings"
|
5057 |
msgid "Both (multipart/alternative)"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5061 |
msgctxt "admin settings"
|
5062 |
msgid "A new listing is submitted."
|
5063 |
msgstr "يتم إضافة إعلان جديد"
|
5064 |
|
5065 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5066 |
msgctxt "admin settings"
|
5067 |
msgid "A listing is edited."
|
5068 |
msgstr "تم تحرير الإعلان"
|
5069 |
|
5070 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5071 |
msgctxt "admin settings"
|
5072 |
msgid "A listing expires."
|
5073 |
msgstr "الإعلان منتهي التاريخ"
|
5074 |
|
5075 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5076 |
#, fuzzy
|
5077 |
msgctxt "admin settings"
|
5078 |
msgid "A listing is renewed."
|
5079 |
msgstr "تم تحرير الإعلان"
|
5080 |
|
5081 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5082 |
#, fuzzy
|
5083 |
msgctxt "admin settings"
|
5084 |
msgid "A listing payment is completed."
|
5085 |
msgstr "تم تحرير الإعلان"
|
5086 |
|
5087 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5088 |
#, fuzzy
|
5089 |
msgctxt "admin settings"
|
5090 |
msgid "A listing has been reported as inappropriate."
|
5091 |
msgstr "تمت ترقية الإعلان."
|
5092 |
|
5093 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5094 |
msgctxt "admin settings"
|
5095 |
msgid "A contact message is sent to a listing's owner."
|
5096 |
msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
|
5097 |
|
5098 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5099 |
msgctxt "admin settings"
|
5100 |
msgid "Their listing is submitted."
|
5101 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5102 |
|
5103 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5104 |
msgctxt "admin settings"
|
5105 |
msgid "Their listing is approved/published."
|
5106 |
msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
|
5107 |
|
5108 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5109 |
#, fuzzy
|
5110 |
msgctxt "admin settings"
|
5111 |
msgid "A payment for their listing is completed."
|
5112 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5113 |
|
5114 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5115 |
#, fuzzy
|
5116 |
msgctxt "admin settings"
|
5117 |
msgid "Their listing expired or is about to expire."
|
5118 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
5119 |
|
5120 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5121 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5122 |
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5123 |
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5124 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
|
|
5125 |
msgctxt "admin settings"
|
5126 |
msgid "Listing's title"
|
5127 |
msgstr "عنوان الإعلان"
|
5128 |
|
5129 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5130 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5131 |
#, fuzzy
|
5132 |
msgctxt "admin settings"
|
5133 |
msgid "Listing's plan name"
|
5134 |
msgstr "إنتهاء صلاحية الإعلان"
|
5135 |
|
5136 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5137 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5138 |
#, fuzzy
|
5139 |
msgctxt "admin settings"
|
5140 |
msgid "Listing's plan description"
|
5141 |
msgstr "تحديد رسوم الإعلان"
|
5142 |
|
5143 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5144 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5145 |
#, fuzzy
|
5146 |
msgctxt "admin settings"
|
5147 |
msgid "Listing's plan details"
|
5148 |
msgstr "إنتهاء صلاحية الإعلان"
|
5149 |
|
5150 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5151 |
msgctxt "admin settings"
|
5152 |
msgid ""
|
5153 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5156,59 +4946,59 @@ msgstr ""
|
|
5156 |
"القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها "
|
5157 |
"من قبل العموم."
|
5158 |
|
5159 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5160 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5161 |
msgctxt "admin settings"
|
5162 |
msgid "Listing's URL"
|
5163 |
msgstr "عنوان URL الإعلان"
|
5164 |
|
5165 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5166 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5167 |
#, fuzzy
|
5168 |
msgctxt "admin settings"
|
5169 |
msgid "Listing's Access Key"
|
5170 |
msgstr "مفاتيح وصول الإعلان"
|
5171 |
|
5172 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5173 |
#, fuzzy
|
5174 |
msgctxt "admin settings"
|
5175 |
msgid "Sender's name"
|
5176 |
msgstr "إسم الكاتب"
|
5177 |
|
5178 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5179 |
#, fuzzy
|
5180 |
msgctxt "admin settings"
|
5181 |
msgid "Contact message"
|
5182 |
msgstr "رسالة اتصال الإعلان"
|
5183 |
|
5184 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5185 |
msgctxt "admin settings"
|
5186 |
msgid "Date and time the message was sent"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5190 |
#, fuzzy
|
5191 |
msgctxt "admin settings"
|
5192 |
msgid "Payment items details."
|
5193 |
msgstr "تفاصيل الدفع"
|
5194 |
|
5195 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5196 |
msgctxt "admin settings"
|
5197 |
msgid "URL where user can review and print payment receipt."
|
5198 |
msgstr ""
|
5199 |
|
5200 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5201 |
#, fuzzy
|
5202 |
msgctxt "admin settings"
|
5203 |
msgid "Gateway used to process listing's payment."
|
5204 |
msgstr "تعذر معالجة الدفع."
|
5205 |
|
5206 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5207 |
msgctxt "admin settings"
|
5208 |
msgid "Checkout URL link"
|
5209 |
msgstr "رابط URL إتمام الشراء"
|
5210 |
|
5211 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5212 |
#, fuzzy
|
5213 |
msgctxt "admin settings"
|
5214 |
msgid "Uploaded Image (no resize)"
|
@@ -5224,47 +5014,47 @@ msgctxt "admin settings"
|
|
5224 |
msgid "User registration date"
|
5225 |
msgstr "تاريخ تسجيل العضو"
|
5226 |
|
5227 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5228 |
#, fuzzy
|
5229 |
msgctxt "expiration notices"
|
5230 |
msgid "Add notice"
|
5231 |
msgstr "إضافة حقل"
|
5232 |
|
5233 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5234 |
msgctxt "expiration notices"
|
5235 |
msgid "No notices configured."
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5239 |
msgctxt "expiration notices"
|
5240 |
msgid "recurring and non-recurring"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5244 |
#, fuzzy
|
5245 |
msgctxt "expiration notices"
|
5246 |
msgid "recurring only"
|
5247 |
msgstr "(متكرر)"
|
5248 |
|
5249 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5250 |
#, fuzzy
|
5251 |
msgctxt "expiration notices"
|
5252 |
msgid "non-recurring only"
|
5253 |
msgstr "(متكرر)"
|
5254 |
|
5255 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5256 |
#, fuzzy
|
5257 |
msgctxt "expiration notices"
|
5258 |
msgid "Sent when a listing (%s) is renewed."
|
5259 |
msgstr "ترسل بعد أن يضاف الإعلان."
|
5260 |
|
5261 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5262 |
#, fuzzy
|
5263 |
msgctxt "expiration notices"
|
5264 |
msgid "Sent when a listing (%s) expires."
|
5265 |
msgstr "الإعلان منتهي التاريخ"
|
5266 |
|
5267 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5268 |
#, fuzzy
|
5269 |
msgctxt "expiration notices"
|
5270 |
msgid "%d day"
|
@@ -5276,7 +5066,7 @@ msgstr[3] "%d أيام"
|
|
5276 |
msgstr[4] "%d يوم"
|
5277 |
msgstr[5] "%d يوم"
|
5278 |
|
5279 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5280 |
msgctxt "expiration notices"
|
5281 |
msgid "%d week"
|
5282 |
msgid_plural "%d weeks"
|
@@ -5287,7 +5077,7 @@ msgstr[3] ""
|
|
5287 |
msgstr[4] ""
|
5288 |
msgstr[5] ""
|
5289 |
|
5290 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5291 |
msgctxt "expiration notices"
|
5292 |
msgid "%d month"
|
5293 |
msgid_plural "%d months"
|
@@ -5300,31 +5090,31 @@ msgstr[5] ""
|
|
5300 |
|
5301 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
5302 |
#. non-recuring only)
|
5303 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5304 |
msgctxt "expiration notices"
|
5305 |
msgid "Sent %1$s before a listing (%2$s) expires."
|
5306 |
msgstr ""
|
5307 |
|
5308 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
5309 |
#. non-recuring only)
|
5310 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5311 |
#, fuzzy
|
5312 |
msgctxt "expiration notices"
|
5313 |
msgid "Sent %1$s after a listing (%2$s) expires."
|
5314 |
msgstr "ترسل بعد أن يضاف الإعلان."
|
5315 |
|
5316 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5317 |
msgctxt "expiration notices"
|
5318 |
msgid "At the time of expiration"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5322 |
#, fuzzy
|
5323 |
msgctxt "expiration notices"
|
5324 |
msgid "Right after a successful renewal"
|
5325 |
msgstr "تم تعيين الرسوم بنجاح."
|
5326 |
|
5327 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5328 |
msgctxt "expiration notices"
|
5329 |
msgid "%d day before expiration"
|
5330 |
msgid_plural "%d days before expiration"
|
@@ -5335,7 +5125,7 @@ msgstr[3] ""
|
|
5335 |
msgstr[4] ""
|
5336 |
msgstr[5] ""
|
5337 |
|
5338 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5339 |
msgctxt "expiration notices"
|
5340 |
msgid "%d day after expiration"
|
5341 |
msgid_plural "%d days after expiration"
|
@@ -5346,7 +5136,7 @@ msgstr[3] ""
|
|
5346 |
msgstr[4] ""
|
5347 |
msgstr[5] ""
|
5348 |
|
5349 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5350 |
msgctxt "expiration notices"
|
5351 |
msgid "%d week before expiration"
|
5352 |
msgid_plural "%d weeks before expiration"
|
@@ -5357,7 +5147,7 @@ msgstr[3] ""
|
|
5357 |
msgstr[4] ""
|
5358 |
msgstr[5] ""
|
5359 |
|
5360 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5361 |
msgctxt "expiration notices"
|
5362 |
msgid "%d week after expiration"
|
5363 |
msgid_plural "%d weeks after expiration"
|
@@ -5368,7 +5158,7 @@ msgstr[3] ""
|
|
5368 |
msgstr[4] ""
|
5369 |
msgstr[5] ""
|
5370 |
|
5371 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5372 |
msgctxt "expiration notices"
|
5373 |
msgid "%d month before expiration"
|
5374 |
msgid_plural "%d months before expiration"
|
@@ -5379,7 +5169,7 @@ msgstr[3] ""
|
|
5379 |
msgstr[4] ""
|
5380 |
msgstr[5] ""
|
5381 |
|
5382 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5383 |
msgctxt "expiration notices"
|
5384 |
msgid "%d month after expiration"
|
5385 |
msgid_plural "%d months after expiration"
|
@@ -5390,84 +5180,84 @@ msgstr[3] ""
|
|
5390 |
msgstr[4] ""
|
5391 |
msgstr[5] ""
|
5392 |
|
5393 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5394 |
#, fuzzy
|
5395 |
msgctxt "expiration notices"
|
5396 |
msgid "Applies to"
|
5397 |
msgstr "Appliqué à"
|
5398 |
|
5399 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5400 |
msgctxt "expiration notices"
|
5401 |
msgid "Non-recurring listings"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5405 |
#, fuzzy
|
5406 |
msgctxt "expiration notices"
|
5407 |
msgid "Recurring listings"
|
5408 |
msgstr "الرجوع إلى الإعلان."
|
5409 |
|
5410 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5411 |
msgctxt "expiration notices"
|
5412 |
msgid "Recurring and non-recurring listings"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5416 |
msgctxt "expiration notices"
|
5417 |
msgid "When to send?"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5421 |
#, fuzzy
|
5422 |
msgctxt "settings"
|
5423 |
msgid "Site title (with link)"
|
5424 |
msgstr "إسم الموقع (مع الرابط)"
|
5425 |
|
5426 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5427 |
msgctxt "settings"
|
5428 |
msgid "Author's name"
|
5429 |
msgstr "إسم الكاتب"
|
5430 |
|
5431 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5432 |
msgctxt "settings"
|
5433 |
msgid "Listing's name (with link)"
|
5434 |
msgstr "إسم الإعلان (مع رابط)"
|
5435 |
|
5436 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5437 |
#, fuzzy
|
5438 |
msgctxt "settings"
|
5439 |
msgid "Listing's expiration date"
|
5440 |
msgstr "إنتهاء صلاحية الإعلان"
|
5441 |
|
5442 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5443 |
msgctxt "settings"
|
5444 |
msgid "Listing's renewal link, formatted with an anchor tag"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5448 |
msgctxt "settings"
|
5449 |
msgid "Listing's renewal URL, unformatted by any tags"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5453 |
#, fuzzy
|
5454 |
msgctxt "settings"
|
5455 |
msgid "Listing's categories"
|
5456 |
msgstr "عنوان الإعلان"
|
5457 |
|
5458 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5459 |
#, fuzzy
|
5460 |
msgctxt "settings"
|
5461 |
msgid "Listing's last payment date"
|
5462 |
msgstr "إنتهاء صلاحية الإعلان"
|
5463 |
|
5464 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5465 |
#, fuzzy
|
5466 |
msgctxt "settings"
|
5467 |
msgid "Listing's access key"
|
5468 |
msgstr "مفاتيح وصول الإعلان"
|
5469 |
|
5470 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5471 |
#, fuzzy
|
5472 |
msgctxt "settings"
|
5473 |
msgid "Settings reset to default."
|
@@ -5479,54 +5269,54 @@ msgctxt "settings"
|
|
5479 |
msgid "General"
|
5480 |
msgstr "عام"
|
5481 |
|
5482 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5483 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5484 |
#, fuzzy
|
5485 |
msgctxt "settings"
|
5486 |
msgid "Listings"
|
5487 |
msgstr "الإعلانات"
|
5488 |
|
5489 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5490 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5491 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5492 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5493 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5494 |
-
#: includes/admin/settings/class-settings.php:
|
5495 |
#, fuzzy
|
5496 |
msgctxt "settings"
|
5497 |
msgid "General Settings"
|
5498 |
msgstr "الإعدادات العامة"
|
5499 |
|
5500 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5501 |
#, fuzzy
|
5502 |
msgctxt "settings"
|
5503 |
msgid "Payment"
|
5504 |
msgstr "الدفع"
|
5505 |
|
5506 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5507 |
msgctxt "settings"
|
5508 |
msgid "Appearance"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5512 |
#, fuzzy
|
5513 |
msgctxt "settings"
|
5514 |
msgid "Permalink Settings"
|
5515 |
msgstr "إعدادات الرابط الثابت"
|
5516 |
|
5517 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5518 |
#, fuzzy
|
5519 |
msgctxt "settings"
|
5520 |
msgid "Directory Listings Slug"
|
5521 |
msgstr "رابط لطيف لإعلانات الدليل"
|
5522 |
|
5523 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5524 |
#, fuzzy
|
5525 |
msgctxt "settings"
|
5526 |
msgid "Categories Slug"
|
5527 |
msgstr "رابط لطيف للتصنيفات"
|
5528 |
|
5529 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5530 |
#, fuzzy
|
5531 |
msgctxt "settings"
|
5532 |
msgid ""
|
@@ -5535,13 +5325,13 @@ msgstr ""
|
|
5535 |
"لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"category\"، "
|
5536 |
"على سبيل المثال."
|
5537 |
|
5538 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5539 |
#, fuzzy
|
5540 |
msgctxt "settings"
|
5541 |
msgid "Tags Slug"
|
5542 |
msgstr "رابط لطيف للوسوم"
|
5543 |
|
5544 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5545 |
#, fuzzy
|
5546 |
msgctxt "settings"
|
5547 |
msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
|
@@ -5549,18 +5339,13 @@ msgstr ""
|
|
5549 |
"لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"tag\"، على "
|
5550 |
"سبيل المثال."
|
5551 |
|
5552 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5553 |
#, fuzzy
|
5554 |
msgctxt "settings"
|
5555 |
-
msgid "Remove listing ID from
|
5556 |
msgstr "إزالة معرف الإعلان من روابط URLs الدليل؟"
|
5557 |
|
5558 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5559 |
-
msgctxt "settings"
|
5560 |
-
msgid "Check this setting to remove the ID for better SEO."
|
5561 |
-
msgstr ""
|
5562 |
-
|
5563 |
-
#: includes/admin/settings/class-settings-bootstrap.php:101
|
5564 |
#, fuzzy
|
5565 |
msgctxt "settings"
|
5566 |
msgid ""
|
@@ -5571,72 +5356,72 @@ msgstr ""
|
|
5571 |
"الأعمال/1809/عنوان-الإعلان\". تحقق من هذا الإعداد لإزالة المعرف لأفضل أرشفة "
|
5572 |
"SEO."
|
5573 |
|
5574 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5575 |
#, fuzzy
|
5576 |
msgctxt "settings"
|
5577 |
msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
|
5578 |
msgstr "بحاجة إلى مفاتيح API ل reCAPTCHA؟ أحصل عليها <a>هنا</a>."
|
5579 |
|
5580 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5581 |
#, fuzzy
|
5582 |
msgctxt "settings"
|
5583 |
msgid "Use reCAPTCHA for contact forms"
|
5584 |
msgstr "إستخدم reCAPTCHA لاستمارة الاتصال"
|
5585 |
|
5586 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5587 |
#, fuzzy
|
5588 |
msgctxt "settings"
|
5589 |
-
msgid "
|
5590 |
msgstr "إيقاف reCAPTCHA للأعضاء الذين سجلوا الدخول؟"
|
5591 |
|
5592 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5593 |
#, fuzzy
|
5594 |
msgctxt "settings"
|
5595 |
msgid "Use reCAPTCHA for listing submits"
|
5596 |
msgstr "إستخدم reCAPTCHA أثناء إضافة إعلان"
|
5597 |
|
5598 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5599 |
#, fuzzy
|
5600 |
msgctxt "settings"
|
5601 |
msgid "Use reCAPTCHA for edit listings"
|
5602 |
msgstr "إستخدم reCAPTCHA في تعليقات الإعلان؟"
|
5603 |
|
5604 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5605 |
#, fuzzy
|
5606 |
msgctxt "settings"
|
5607 |
msgid "Use reCAPTCHA for report listings"
|
5608 |
msgstr "إستخدم reCAPTCHA في تعليقات الإعلان؟"
|
5609 |
|
5610 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5611 |
#, fuzzy
|
5612 |
msgctxt "settings"
|
5613 |
msgid "Use reCAPTCHA for listing comments"
|
5614 |
msgstr "إستخدم reCAPTCHA في تعليقات الإعلان؟"
|
5615 |
|
5616 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5617 |
#, fuzzy
|
5618 |
msgctxt "settings"
|
5619 |
msgid "reCAPTCHA Public Key"
|
5620 |
msgstr "مفتاح عام reCAPTCHA"
|
5621 |
|
5622 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5623 |
#, fuzzy
|
5624 |
msgctxt "settings"
|
5625 |
msgid "reCAPTCHA Private Key"
|
5626 |
msgstr "مفتاح خاص reCAPTCHA"
|
5627 |
|
5628 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5629 |
#, fuzzy
|
5630 |
msgctxt "settings"
|
5631 |
msgid "reCAPTCHA version"
|
5632 |
msgstr "إعدادات reCaptcha"
|
5633 |
|
5634 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5635 |
msgctxt "settings"
|
5636 |
msgid "reCAPTCHA V3 threshold score"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5640 |
msgctxt "settings"
|
5641 |
msgid ""
|
5642 |
"reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is "
|
@@ -5645,13 +5430,13 @@ msgid ""
|
|
5645 |
"this value will result in reCAPTCHA validation error."
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5649 |
#, fuzzy
|
5650 |
msgctxt "settings"
|
5651 |
msgid "Registration"
|
5652 |
msgstr "Enregistrement"
|
5653 |
|
5654 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5655 |
#, fuzzy
|
5656 |
msgctxt "settings"
|
5657 |
msgid ""
|
@@ -5665,24 +5450,24 @@ msgstr ""
|
|
5665 |
"الاتصال بعضوية الإضافة، واطلب منهم دعم معامل الاستعلام القياسي 'redirect_to' "
|
5666 |
"لووردبريس."
|
5667 |
|
5668 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5669 |
#, fuzzy
|
5670 |
msgctxt "settings"
|
5671 |
msgid "Require login to post listings"
|
5672 |
msgstr "يتطلب تسجيل الدخول لنشر الإعلانات؟"
|
5673 |
|
5674 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5675 |
msgctxt "settings"
|
5676 |
msgid "Allow anonymous users to edit/manage listings with an access key"
|
5677 |
msgstr ""
|
5678 |
|
5679 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5680 |
#, fuzzy
|
5681 |
msgctxt "settings"
|
5682 |
msgid "Login URL"
|
5683 |
msgstr "رابط تسجيل الدخول"
|
5684 |
|
5685 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5686 |
#, fuzzy
|
5687 |
msgctxt "settings"
|
5688 |
msgid "Only enter this if using a membership plugin or custom login page"
|
@@ -5690,18 +5475,18 @@ msgstr ""
|
|
5690 |
"رابط URL لصفحة تسجيل الدخول لعضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان "
|
5691 |
"هناك استخدام لعضوية الإضافة أو صفحة تسجيل دخول مخصصة."
|
5692 |
|
5693 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5694 |
msgctxt "settings"
|
5695 |
msgid "URL of your membership plugin's login page."
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5699 |
#, fuzzy
|
5700 |
msgctxt "settings"
|
5701 |
msgid "Registration URL"
|
5702 |
msgstr "رابط التسجيل"
|
5703 |
|
5704 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5705 |
#, fuzzy
|
5706 |
msgctxt "settings"
|
5707 |
msgid ""
|
@@ -5710,7 +5495,7 @@ msgstr ""
|
|
5710 |
"رابط URL لصفحة التسجيل في عضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان "
|
5711 |
"هناك استخدام لعضوية الإضافة أو صفحة تسجيل مخصصة."
|
5712 |
|
5713 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5714 |
#, fuzzy
|
5715 |
msgctxt "settings"
|
5716 |
msgid "URL of your membership plugin's registration page"
|
@@ -5718,12 +5503,12 @@ msgstr ""
|
|
5718 |
"رابط URL لصفحة التسجيل في عضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان "
|
5719 |
"هناك استخدام لعضوية الإضافة أو صفحة تسجيل مخصصة."
|
5720 |
|
5721 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5722 |
msgctxt "settings"
|
5723 |
msgid "Allow users to create accounts during listing submit"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5727 |
#, fuzzy
|
5728 |
msgctxt "settings"
|
5729 |
msgid ""
|
@@ -5733,56 +5518,56 @@ msgstr ""
|
|
5733 |
"أدخل النص أو عنوان URL يبدأ ب http. إذا كنت تستخدم عنوان URL، سيتم استبدال "
|
5734 |
"نص الأحكام والشروط برابط إلى الصفحة المناسبة."
|
5735 |
|
5736 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5737 |
#, fuzzy
|
5738 |
msgctxt "settings"
|
5739 |
msgid "Terms and Conditions text goes here"
|
5740 |
msgstr "نص الأحكام والشروط هنا..."
|
5741 |
|
5742 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5743 |
#, fuzzy
|
5744 |
msgctxt "settings"
|
5745 |
-
msgid "Enable high performance
|
5746 |
msgstr "تمكين عمليات البحث عالية الأداء؟"
|
5747 |
|
5748 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5749 |
#, fuzzy
|
5750 |
msgctxt "settings"
|
5751 |
msgid "Advanced"
|
5752 |
msgstr "متقدم"
|
5753 |
|
5754 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5755 |
#, fuzzy
|
5756 |
msgctxt "settings"
|
5757 |
msgid "Disable advanced CPT integration"
|
5758 |
msgstr "تعطيل التكامل CPT المتقدم؟"
|
5759 |
|
5760 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5761 |
#, fuzzy
|
5762 |
msgctxt "settings"
|
5763 |
msgid "Disable frontend listing submission"
|
5764 |
msgstr "تعطيل إضافة إعلان من واجهة الموقع؟"
|
5765 |
|
5766 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5767 |
msgctxt "settings"
|
5768 |
msgid ""
|
5769 |
"Prevents the Submit Listing button from showing on the main UI, but allows a "
|
5770 |
"shortcode for submit listing to function on other pages."
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5774 |
#, fuzzy
|
5775 |
msgctxt "settings"
|
5776 |
msgid "Contact Form"
|
5777 |
msgstr "مسح"
|
5778 |
|
5779 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5780 |
#, fuzzy
|
5781 |
msgctxt "settings"
|
5782 |
msgid "Listings per page"
|
5783 |
msgstr "الإعلانات حسب الصفحة"
|
5784 |
|
5785 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5786 |
#, fuzzy
|
5787 |
msgctxt "settings"
|
5788 |
msgid ""
|
@@ -5791,47 +5576,47 @@ msgid ""
|
|
5791 |
msgstr ""
|
5792 |
"عدد الإعلانات التي تظهر في كل صفحة. استخدام قيمة \"0\" لإظهار كل الإعلانات."
|
5793 |
|
5794 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5795 |
#, fuzzy
|
5796 |
msgctxt "settings"
|
5797 |
msgid "Turn on listing renewal option"
|
5798 |
msgstr "قم بتشغيل خيار تجديد الإعلان؟"
|
5799 |
|
5800 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5801 |
#, fuzzy
|
5802 |
msgctxt "settings"
|
5803 |
msgid "Open detailed view of listing in new tab"
|
5804 |
msgstr "فتح تفاصيل مشاهدة الإعلانات في علامة تبويب جديدة؟"
|
5805 |
|
5806 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5807 |
#, fuzzy
|
5808 |
msgctxt "settings"
|
5809 |
msgid "Include button to report listings"
|
5810 |
msgstr "يتطلب تسجيل الدخول لنشر الإعلانات؟"
|
5811 |
|
5812 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5813 |
msgctxt "settings"
|
5814 |
msgid "Enable report listing for registered users only"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5818 |
msgctxt "settings"
|
5819 |
msgid "Report listing option list"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5823 |
msgctxt "settings"
|
5824 |
msgid ""
|
5825 |
"Form option list to report a listing as inappropriate. One option per line."
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5829 |
#, fuzzy
|
5830 |
msgctxt "settings"
|
5831 |
msgid "Include listing contact form on listing pages"
|
5832 |
msgstr "إدراج الإعلان مع نموذج الاتصال في صفحات الإعلان؟"
|
5833 |
|
5834 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5835 |
#, fuzzy
|
5836 |
msgctxt "settings"
|
5837 |
msgid ""
|
@@ -5841,19 +5626,19 @@ msgstr ""
|
|
5841 |
"يسمح للزوار بالاتصال بكتاب الإعلان بشكل خاص. الكتاب سوف يتلقون رسائل عبر "
|
5842 |
"البريد الإلكتروني."
|
5843 |
|
5844 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5845 |
#, fuzzy
|
5846 |
msgctxt "settings"
|
5847 |
msgid "Require login for using the contact form"
|
5848 |
msgstr "يتطلب تسجيل الدخول لاستخدام نموذج الاتصال؟"
|
5849 |
|
5850 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5851 |
#, fuzzy
|
5852 |
msgctxt "settings"
|
5853 |
msgid "Maximum number of daily contact form submits from registered users"
|
5854 |
msgstr "الحد الأقصى لعدد إرسال الاتصالات يوميا"
|
5855 |
|
5856 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5857 |
#, fuzzy
|
5858 |
msgctxt "settings"
|
5859 |
msgid ""
|
@@ -5863,13 +5648,13 @@ msgstr ""
|
|
5863 |
"إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في "
|
5864 |
"اليوم الواحد."
|
5865 |
|
5866 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5867 |
#, fuzzy
|
5868 |
msgctxt "settings"
|
5869 |
msgid "Maximum number of contact form submits for each listing per day"
|
5870 |
msgstr "الحد الأقصى لعدد إرسال الاتصالات يوميا"
|
5871 |
|
5872 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5873 |
#, fuzzy
|
5874 |
msgctxt "settings"
|
5875 |
msgid ""
|
@@ -5879,25 +5664,25 @@ msgstr ""
|
|
5879 |
"إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في "
|
5880 |
"اليوم الواحد."
|
5881 |
|
5882 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5883 |
#, fuzzy
|
5884 |
msgctxt "settings"
|
5885 |
msgid "Include comment form on listing pages?"
|
5886 |
msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
|
5887 |
|
5888 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5889 |
#, fuzzy
|
5890 |
msgctxt "settings"
|
5891 |
msgid "Show listings under categories on main page"
|
5892 |
msgstr "إظهار الإعلانات تحت التصنيفات على الصفحة الرئيسية؟"
|
5893 |
|
5894 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5895 |
msgctxt "settings"
|
5896 |
msgid ""
|
5897 |
"Prevents featured listings from floating to the top of the selected page."
|
5898 |
msgstr ""
|
5899 |
|
5900 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5901 |
msgctxt "settings"
|
5902 |
msgid ""
|
5903 |
"The user ID or login of an existing user account. If login is not required "
|
@@ -5905,91 +5690,91 @@ msgid ""
|
|
5905 |
"that will not a be posting a listing is best."
|
5906 |
msgstr ""
|
5907 |
|
5908 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5909 |
#, fuzzy
|
5910 |
msgctxt "settings"
|
5911 |
msgid "Edit post status"
|
5912 |
msgstr "تعديل حالة الإعلان"
|
5913 |
|
5914 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5915 |
#, fuzzy
|
5916 |
msgctxt "settings"
|
5917 |
msgid "Status of deleted listings"
|
5918 |
msgstr "حالة الإعلانات المحذوفة"
|
5919 |
|
5920 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5921 |
#, fuzzy
|
5922 |
msgctxt "settings"
|
5923 |
msgid "Submit Listing instructions message"
|
5924 |
msgstr "إرسال رسالة تعليمات الإعلانات"
|
5925 |
|
5926 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5927 |
#, fuzzy
|
5928 |
msgctxt "settings"
|
5929 |
msgid "Order categories list by"
|
5930 |
msgstr "ترتيب قائمة التصنيفات حسب"
|
5931 |
|
5932 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5933 |
#, fuzzy
|
5934 |
msgctxt "settings"
|
5935 |
msgid "Sort order for categories"
|
5936 |
msgstr "ترتيب فرز التصنيفات"
|
5937 |
|
5938 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5939 |
#, fuzzy
|
5940 |
msgctxt "settings"
|
5941 |
msgid "Show category post count"
|
5942 |
msgstr "إظهار عدد إعلانات التصنيف؟"
|
5943 |
|
5944 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5945 |
#, fuzzy
|
5946 |
msgctxt "settings"
|
5947 |
msgid "Hide empty categories"
|
5948 |
msgstr "إخفاء التصنيفات الفارغة؟"
|
5949 |
|
5950 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5951 |
#, fuzzy
|
5952 |
msgctxt "settings"
|
5953 |
msgid "Show only parent categories in category list"
|
5954 |
msgstr "إظهار التصنيفات الأبوية فقط في قائمة التصنيف؟"
|
5955 |
|
5956 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5957 |
#, fuzzy
|
5958 |
msgctxt "settings"
|
5959 |
msgid "Order directory listings by"
|
5960 |
msgstr "ترتيب إعلانات الدليل حسب"
|
5961 |
|
5962 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5963 |
#, fuzzy
|
5964 |
msgctxt "settings"
|
5965 |
msgid "Sort directory listings by"
|
5966 |
msgstr "فرز إعلانات الدليل حسب"
|
5967 |
|
5968 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5969 |
#, fuzzy
|
5970 |
msgctxt "settings"
|
5971 |
msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
|
5972 |
msgstr "ترتيب تصاعدي من أ إلى ي، ترتيب تنازلي من ي إلى أ"
|
5973 |
|
5974 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5975 |
#, fuzzy
|
5976 |
msgctxt "settings"
|
5977 |
msgid "Enable sort bar"
|
5978 |
msgstr "تمكين شريط الفرز؟"
|
5979 |
|
5980 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5981 |
#, fuzzy
|
5982 |
msgctxt "settings"
|
5983 |
msgid "Sortbar Fields"
|
5984 |
msgstr "حقول شريط الفرز"
|
5985 |
|
5986 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5987 |
#, fuzzy
|
5988 |
msgctxt "settings"
|
5989 |
msgid "Show the \"Submit listing\" button"
|
5990 |
msgstr "إظهار زر \"إضافة إعلان\"."
|
5991 |
|
5992 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5993 |
msgctxt "settings"
|
5994 |
msgid ""
|
5995 |
"Hides the button used by the main UI to allow listing submission, but does "
|
@@ -5997,85 +5782,79 @@ msgid ""
|
|
5997 |
"customize the submit listing button on your own)"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6001 |
#, fuzzy
|
6002 |
msgctxt "settings"
|
6003 |
msgid "Show \"Search listings\""
|
6004 |
msgstr "إظهار \"البحث في الإعلانات\"."
|
6005 |
|
6006 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6007 |
#, fuzzy
|
6008 |
msgctxt "settings"
|
6009 |
msgid "Show the \"View Listings\" button"
|
6010 |
msgstr "إظهار زر \"مشاهدة الإعلانات\"."
|
6011 |
|
6012 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6013 |
#, fuzzy
|
6014 |
msgctxt "settings"
|
6015 |
msgid "Show the \"Manage Listings\" button"
|
6016 |
msgstr "إظهار زر \"مشاهدة الإعلانات\"."
|
6017 |
|
6018 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6019 |
-
#, fuzzy
|
6020 |
-
msgctxt "settings"
|
6021 |
-
msgid "Show the \"Directory\" button."
|
6022 |
-
msgstr "إظهار زر \"الدليل\"."
|
6023 |
-
|
6024 |
-
#: includes/admin/settings/class-settings-bootstrap.php:898
|
6025 |
#, fuzzy
|
6026 |
msgctxt "settings"
|
6027 |
msgid "Image Settings"
|
6028 |
msgstr "إعدادات الصورة"
|
6029 |
|
6030 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6031 |
#, fuzzy
|
6032 |
msgctxt "settings"
|
6033 |
msgid "Allow images"
|
6034 |
msgstr "السماح بالصور؟"
|
6035 |
|
6036 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6037 |
#, fuzzy
|
6038 |
msgctxt "settings"
|
6039 |
msgid "Min Image File Size (KB)"
|
6040 |
msgstr "أقل حجم لملف الصورة (KB)"
|
6041 |
|
6042 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6043 |
#, fuzzy
|
6044 |
msgctxt "settings"
|
6045 |
msgid "Max Image File Size (KB)"
|
6046 |
msgstr "أقصى حجم لملف الصورة (KB)"
|
6047 |
|
6048 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6049 |
#, fuzzy
|
6050 |
msgctxt "settings"
|
6051 |
msgid "Min image width (px)"
|
6052 |
msgstr "أقل عرض للصورة (px)"
|
6053 |
|
6054 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6055 |
#, fuzzy
|
6056 |
msgctxt "settings"
|
6057 |
msgid "Min image height (px)"
|
6058 |
msgstr "أقل ارتفاع للصورة (px)"
|
6059 |
|
6060 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6061 |
#, fuzzy
|
6062 |
msgctxt "settings"
|
6063 |
msgid "Max image width (px)"
|
6064 |
msgstr "أقصى عرض للصورة (px)"
|
6065 |
|
6066 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6067 |
#, fuzzy
|
6068 |
msgctxt "settings"
|
6069 |
msgid "Max image height (px)"
|
6070 |
msgstr "أقصى ارتفاع للصورة (px)"
|
6071 |
|
6072 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6073 |
#, fuzzy
|
6074 |
msgctxt "settings"
|
6075 |
msgid "Turn on thickbox/lightbox"
|
6076 |
msgstr "تشغيل thickbox/lightbox؟"
|
6077 |
|
6078 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6079 |
#, fuzzy
|
6080 |
msgctxt "settings"
|
6081 |
msgid ""
|
@@ -6084,31 +5863,31 @@ msgstr ""
|
|
6084 |
"قم بإلغاء التحديد إذا كان يتعارض مع العناصر الأخرى أو الإضافات المثبتة على "
|
6085 |
"موقعك"
|
6086 |
|
6087 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6088 |
#, fuzzy
|
6089 |
msgctxt "settings"
|
6090 |
msgid "Thumbnails"
|
6091 |
msgstr "الصور المصغرة"
|
6092 |
|
6093 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6094 |
#, fuzzy
|
6095 |
msgctxt "settings"
|
6096 |
msgid "Thumbnail width (px)"
|
6097 |
msgstr "عرض الصور المصغرة (px)"
|
6098 |
|
6099 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6100 |
#, fuzzy
|
6101 |
msgctxt "settings"
|
6102 |
msgid "Thumbnail height (px)"
|
6103 |
msgstr "ارتفاع الصورة المصغرة (px)"
|
6104 |
|
6105 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6106 |
#, fuzzy
|
6107 |
msgctxt "settings"
|
6108 |
msgid "Crop thumbnails to exact dimensions"
|
6109 |
msgstr "قطع الصور المصغرة للأبعاد المناسبة؟"
|
6110 |
|
6111 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6112 |
#, fuzzy
|
6113 |
msgctxt "settings"
|
6114 |
msgid ""
|
@@ -6122,18 +5901,18 @@ msgstr ""
|
|
6122 |
"تعديل الارتفاع بشكل متناسب. اعتماداً على الصور المرفوعة, قد تكون ارتفاعات "
|
6123 |
"الصور المصغرة مختلفة."
|
6124 |
|
6125 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6126 |
msgctxt "settings"
|
6127 |
msgid "Enforce image upload on submit/edit"
|
6128 |
msgstr ""
|
6129 |
|
6130 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6131 |
#, fuzzy
|
6132 |
msgctxt "settings"
|
6133 |
msgid "Default thumbnail image size"
|
6134 |
msgstr "إعلان العضو الافتراضي"
|
6135 |
|
6136 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6137 |
msgctxt "settings"
|
6138 |
msgid ""
|
6139 |
"This indicates the size of the thumbnail to be used both in excerpt and "
|
@@ -6142,93 +5921,93 @@ msgid ""
|
|
6142 |
"width as the starting point."
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6146 |
msgctxt "settings"
|
6147 |
msgid "Use \"Coming Soon\" photo for listings without any (primary) images?"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6151 |
msgctxt "settings"
|
6152 |
msgid "Display featured (sticky) badge"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6156 |
#, fuzzy
|
6157 |
msgctxt "settings"
|
6158 |
msgid "Featured Badge image"
|
6159 |
msgstr "وحدة المستويات المميزة"
|
6160 |
|
6161 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6162 |
#, fuzzy
|
6163 |
msgctxt "settings"
|
6164 |
msgid "Featured Badge URL"
|
6165 |
msgstr "وحدة المستويات المميزة"
|
6166 |
|
6167 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6168 |
msgctxt "settings"
|
6169 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6170 |
msgstr ""
|
6171 |
|
6172 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6173 |
#, fuzzy
|
6174 |
msgctxt "settings"
|
6175 |
msgid "Fee Order"
|
6176 |
msgstr "ترتيب"
|
6177 |
|
6178 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6179 |
#, fuzzy
|
6180 |
msgctxt "settings"
|
6181 |
msgid "Put payment gateways in test mode"
|
6182 |
msgstr "وضع بوابات الدفع في وضع الاختبار؟"
|
6183 |
|
6184 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6185 |
#, fuzzy
|
6186 |
msgctxt "settings"
|
6187 |
msgid "Currency Code"
|
6188 |
msgstr "رمز العملة"
|
6189 |
|
6190 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6191 |
#, fuzzy
|
6192 |
msgctxt "settings"
|
6193 |
msgid "Currency Symbol"
|
6194 |
msgstr "رمز العملة"
|
6195 |
|
6196 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6197 |
#, fuzzy
|
6198 |
msgctxt "settings"
|
6199 |
msgid "Currency symbol display"
|
6200 |
msgstr "عرض رمز العملة"
|
6201 |
|
6202 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6203 |
msgctxt "settings"
|
6204 |
msgid "Include plan description in receipt"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6208 |
#, fuzzy
|
6209 |
msgctxt "settings"
|
6210 |
msgid "Thank you for payment message"
|
6211 |
msgstr "رسالة الشكر على الدفع"
|
6212 |
|
6213 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6214 |
#, fuzzy
|
6215 |
msgctxt "settings"
|
6216 |
msgid "Ask users to come back for abandoned payments"
|
6217 |
msgstr "أطلب من الأعضاء العودة للمدفوعات المتخلى عنها؟"
|
6218 |
|
6219 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6220 |
#, fuzzy
|
6221 |
msgctxt "settings"
|
6222 |
msgid "Listing abandonment threshold (hours)"
|
6223 |
msgstr "عتبة التخلي على الإعلان (ساعات)"
|
6224 |
|
6225 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6226 |
#, fuzzy
|
6227 |
msgctxt "settings"
|
6228 |
msgid "Display email address fields publicly"
|
6229 |
msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
|
6230 |
|
6231 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6232 |
#, fuzzy
|
6233 |
msgctxt "settings"
|
6234 |
msgid ""
|
@@ -6240,13 +6019,13 @@ msgstr ""
|
|
6240 |
"لأن هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين "
|
6241 |
"البريد للاستخدام في المستقبل."
|
6242 |
|
6243 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6244 |
#, fuzzy
|
6245 |
msgctxt "settings"
|
6246 |
msgid "How to determine the listing's email address?"
|
6247 |
msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
|
6248 |
|
6249 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6250 |
#, fuzzy
|
6251 |
msgctxt "settings"
|
6252 |
msgid ""
|
@@ -6256,12 +6035,12 @@ msgstr ""
|
|
6256 |
"هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج "
|
6257 |
"الاتصال أو عندما ينتهي تاريخ الإعلانات."
|
6258 |
|
6259 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6260 |
msgctxt "settings"
|
6261 |
msgid "Email Content-Type header"
|
6262 |
msgstr ""
|
6263 |
|
6264 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6265 |
msgctxt "settings"
|
6266 |
msgid ""
|
6267 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -6270,43 +6049,43 @@ msgid ""
|
|
6270 |
"then \"Both\"."
|
6271 |
msgstr ""
|
6272 |
|
6273 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6274 |
#, fuzzy
|
6275 |
msgctxt "settings"
|
6276 |
msgid "Templates"
|
6277 |
msgstr "قوالب البريد الإلكتروني"
|
6278 |
|
6279 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6280 |
#, fuzzy
|
6281 |
msgctxt "settings"
|
6282 |
msgid "Email confirmation message"
|
6283 |
msgstr "رسالة تأكيد البريد الإلكتروني"
|
6284 |
|
6285 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6286 |
#, fuzzy
|
6287 |
msgctxt "settings"
|
6288 |
msgid "Sent after a listing has been submitted."
|
6289 |
msgstr "ترسل بعد أن يضاف الإعلان."
|
6290 |
|
6291 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6292 |
#, fuzzy
|
6293 |
msgctxt "settings"
|
6294 |
msgid "Listing published message"
|
6295 |
msgstr "رسالة نشر الإعلان"
|
6296 |
|
6297 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6298 |
#, fuzzy
|
6299 |
msgctxt "settings"
|
6300 |
msgid "Sent when the listing has been published or approved by an admin."
|
6301 |
msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
|
6302 |
|
6303 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6304 |
#, fuzzy
|
6305 |
msgctxt "settings"
|
6306 |
msgid "Listing Contact Message"
|
6307 |
msgstr "رسالة اتصال الإعلان"
|
6308 |
|
6309 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6310 |
#, fuzzy
|
6311 |
msgctxt "settings"
|
6312 |
msgid ""
|
@@ -6316,36 +6095,36 @@ msgstr ""
|
|
6316 |
"ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات "
|
6317 |
"الإعلانات الخاصة بهم."
|
6318 |
|
6319 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6320 |
#, fuzzy
|
6321 |
msgctxt "settings"
|
6322 |
msgid "Payment completed message"
|
6323 |
msgstr "رسالة تذكير بالتخلي عن الدفع"
|
6324 |
|
6325 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6326 |
#, fuzzy
|
6327 |
msgctxt "settings"
|
6328 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6329 |
msgstr "ترسل أحيانا بعد أن يتخلي الأعضاء عن الدفعة المنتظرة."
|
6330 |
|
6331 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6332 |
#, fuzzy
|
6333 |
msgctxt "settings"
|
6334 |
msgid "Payment abandoned reminder message"
|
6335 |
msgstr "رسالة تذكير بالتخلي عن الدفع"
|
6336 |
|
6337 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6338 |
msgctxt "settings"
|
6339 |
msgid "Cropped"
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: includes/admin/settings/class-settings.php:
|
6343 |
-
#: includes/admin/settings/class-settings.php:
|
6344 |
msgctxt "settings"
|
6345 |
msgid "\"%s\" can not be empty."
|
6346 |
msgstr ""
|
6347 |
|
6348 |
-
#: includes/admin/settings/class-settings.php:
|
6349 |
msgctxt "settings"
|
6350 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6351 |
msgstr ""
|
@@ -6377,12 +6156,12 @@ msgctxt "themes"
|
|
6377 |
msgid "Could not change the active theme to \"%s\"."
|
6378 |
msgstr "تعذر تغيير القالب النشط إلى \"%s\"."
|
6379 |
|
6380 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6381 |
msgctxt "themes"
|
6382 |
msgid "Active theme changed to \"%s\"."
|
6383 |
msgstr "القالب النشط تغير إلى \"%s\"."
|
6384 |
|
6385 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6386 |
msgctxt "themes"
|
6387 |
msgid ""
|
6388 |
"%s requires that you tag your existing fields to match some places we want "
|
@@ -6391,54 +6170,54 @@ msgstr ""
|
|
6391 |
"%s يتطلب أن تضيف وسوم في الحقول الموجودة الخاصة بك لمطابقة بعض الأماكن لأننا "
|
6392 |
"نريد وضع البيانات الخاصة بك في القالب. وفيما يلي الحقول التي نظن أنها مفقودة."
|
6393 |
|
6394 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6395 |
msgctxt "themes"
|
6396 |
msgid "Map My Fields"
|
6397 |
msgstr "أنشئ خريطة لحقولي"
|
6398 |
|
6399 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6400 |
msgctxt "themes"
|
6401 |
msgid "Suggested fields created successfully."
|
6402 |
msgstr " تم إنشاء الحقول المقترحة بنجاح."
|
6403 |
|
6404 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6405 |
msgctxt "themes"
|
6406 |
msgid "Theme installed successfully."
|
6407 |
msgstr "تم تثبيت القالب بنجاح."
|
6408 |
|
6409 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6410 |
#, fuzzy
|
6411 |
msgctxt "themes"
|
6412 |
msgid "Theme was deleted successfully."
|
6413 |
msgstr "تم حذف القالب بنجاح."
|
6414 |
|
6415 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6416 |
msgctxt "themes"
|
6417 |
msgid "Could not delete theme directory. Check permissions."
|
6418 |
msgstr "تعذر حذف مجلد القالب. تحقق من الصلاحيات."
|
6419 |
|
6420 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6421 |
msgctxt "themes"
|
6422 |
msgid "Please upload a valid theme file."
|
6423 |
msgstr "المرجو رفع ملف قالب صالح."
|
6424 |
|
6425 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6426 |
msgctxt "themes"
|
6427 |
msgid "Could not move \"%s\" to a temporary directory."
|
6428 |
msgstr "لا يمكن نقل \"%s\" إلى مجلد مؤقت."
|
6429 |
|
6430 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6431 |
msgctxt "themes"
|
6432 |
msgid "Activate your <a>license key</a> to use this theme."
|
6433 |
msgstr "فعِّل <a>مفتاح الترخيص</a> الخاص بك لاستخدام هذا القالب."
|
6434 |
|
6435 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6436 |
#, fuzzy
|
6437 |
msgctxt "themes"
|
6438 |
msgid "Invalid theme ID"
|
6439 |
msgstr "معرف حقل غير صالح"
|
6440 |
|
6441 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6442 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6443 |
msgctxt "themes"
|
6444 |
msgid "Could not update theme: %s"
|
@@ -6507,196 +6286,429 @@ msgstr ""
|
|
6507 |
"حاول تعطيل إضافات أخرى أولاً و/أو زيادة قيم التوجيهات 'memory_limit' و "
|
6508 |
"'max_execution_time' في الخادم الخاص بك بتعديل ملف الإعدادات php.ini."
|
6509 |
|
6510 |
-
#: templates/admin/csv-export.tpl.php:
|
6511 |
msgctxt "admin csv-export"
|
6512 |
msgid "Export settings"
|
6513 |
msgstr "إعدادات التصدير"
|
6514 |
|
6515 |
-
#: templates/admin/csv-export.tpl.php:
|
6516 |
msgctxt "admin csv-export"
|
6517 |
msgid "Which listings to export?"
|
6518 |
msgstr "أي لائحة تريد التصدير؟"
|
6519 |
|
6520 |
-
#: templates/admin/csv-export.tpl.php:
|
6521 |
-
msgctxt "admin csv-export"
|
6522 |
-
msgid "All"
|
6523 |
-
msgstr "الكل"
|
6524 |
-
|
6525 |
-
#: templates/admin/csv-export.tpl.php:38
|
6526 |
msgctxt "admin csv-export"
|
6527 |
msgid "Active Only"
|
6528 |
msgstr "المفعل فقط"
|
6529 |
|
6530 |
-
#: templates/admin/csv-export.tpl.php:
|
6531 |
msgctxt "admin csv-export"
|
6532 |
msgid "Active + Pending Renewal"
|
6533 |
msgstr "مفعل + ريثما يتم التجديد"
|
6534 |
|
6535 |
-
#: templates/admin/csv-export.tpl.php:
|
6536 |
-
msgctxt "admin csv-export"
|
6537 |
-
msgid "Export images
|
6538 |
-
msgstr "تصدير
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6539 |
|
6540 |
-
#: templates/admin/csv-
|
6541 |
-
msgctxt "admin csv-
|
6542 |
-
msgid "
|
6543 |
-
msgstr "
|
6544 |
|
6545 |
-
#: templates/admin/csv-
|
6546 |
-
msgctxt "admin csv-
|
6547 |
-
msgid ""
|
6548 |
-
"
|
6549 |
-
"both a CSV file and listing images."
|
6550 |
-
msgstr ""
|
6551 |
-
"عند اختيار الخانة، بدلاً من مجرد ملف CSV سيتم إنشاء ملف مضغوط مع ملف CSV "
|
6552 |
-
"ولائحة الصور."
|
6553 |
|
6554 |
-
#: templates/admin/csv-
|
6555 |
-
msgctxt "admin csv-
|
6556 |
-
msgid "
|
6557 |
-
msgstr "
|
6558 |
|
6559 |
-
#: templates/admin/csv-
|
6560 |
-
msgctxt "admin csv-
|
6561 |
-
msgid "
|
6562 |
-
msgstr "
|
6563 |
|
6564 |
-
#: templates/admin/csv-
|
6565 |
-
msgctxt "admin csv-
|
6566 |
-
msgid "
|
6567 |
-
msgstr "
|
6568 |
|
6569 |
-
#: templates/admin/csv-
|
6570 |
-
msgctxt "admin csv-
|
6571 |
-
msgid "
|
6572 |
-
msgstr "
|
6573 |
|
6574 |
-
#: templates/admin/csv-
|
6575 |
-
|
6576 |
-
|
6577 |
-
|
6578 |
-
msgstr "صور الإعلانات"
|
6579 |
|
6580 |
-
#: templates/admin/csv-
|
6581 |
-
|
6582 |
-
|
6583 |
-
|
6584 |
-
msgstr "إنتهاء صلاحية الإعلان"
|
6585 |
|
6586 |
-
#: templates/admin/csv-
|
6587 |
-
|
6588 |
-
|
6589 |
-
|
6590 |
-
msgstr "صور الإعلانات"
|
6591 |
|
6592 |
-
#: templates/admin/csv-
|
6593 |
-
msgctxt "admin csv-
|
6594 |
-
msgid "
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#: templates/admin/csv-
|
6598 |
-
msgctxt "admin csv-
|
6599 |
-
msgid "
|
6600 |
msgstr ""
|
6601 |
|
6602 |
-
#: templates/admin/csv-
|
6603 |
-
|
6604 |
-
|
6605 |
-
|
|
|
6606 |
|
6607 |
-
#: templates/admin/csv-
|
6608 |
-
msgctxt "admin csv-
|
6609 |
msgid ""
|
6610 |
-
"
|
6611 |
-
"
|
6612 |
-
"edit the CSV file, we need to generate different versions of the file for "
|
6613 |
-
"each operating system."
|
6614 |
msgstr ""
|
|
|
|
|
6615 |
|
6616 |
-
#: templates/admin/csv-
|
6617 |
-
msgctxt "admin csv-
|
6618 |
-
msgid "
|
6619 |
-
msgstr "
|
6620 |
-
|
6621 |
-
#: templates/admin/csv-export.tpl.php:141
|
6622 |
-
msgctxt "admin csv-export"
|
6623 |
-
msgid "Export Listings"
|
6624 |
-
msgstr "الإعلانات المصدرة"
|
6625 |
|
6626 |
-
#: templates/admin/csv-
|
6627 |
-
msgctxt "admin csv-
|
6628 |
-
msgid "
|
6629 |
-
msgstr "
|
6630 |
|
6631 |
-
#: templates/admin/csv-
|
6632 |
-
|
|
|
6633 |
msgid ""
|
6634 |
-
"
|
6635 |
-
"
|
6636 |
msgstr ""
|
6637 |
-
"
|
6638 |
-
|
6639 |
-
#: templates/admin/csv-export.tpl.php:151
|
6640 |
-
msgctxt "admin csv-export"
|
6641 |
-
msgid "No. of listings:"
|
6642 |
-
msgstr "أرقام الإعلانات:"
|
6643 |
-
|
6644 |
-
#: templates/admin/csv-export.tpl.php:153
|
6645 |
-
msgctxt "admin csv-export"
|
6646 |
-
msgid "Approximate export file size:"
|
6647 |
-
msgstr "الحجم التقريبي لملف التصدير:"
|
6648 |
-
|
6649 |
-
#: templates/admin/csv-export.tpl.php:160
|
6650 |
-
msgctxt "admin csv-export"
|
6651 |
-
msgid "Cancel Export"
|
6652 |
-
msgstr "إلغاء التصدير"
|
6653 |
-
|
6654 |
-
#: templates/admin/csv-export.tpl.php:165
|
6655 |
-
msgctxt "admin csv-export"
|
6656 |
-
msgid "Export Complete"
|
6657 |
-
msgstr "تم التصدير"
|
6658 |
|
6659 |
-
#: templates/admin/csv-
|
6660 |
-
msgctxt "admin csv-
|
6661 |
msgid ""
|
6662 |
-
"
|
6663 |
-
"
|
6664 |
-
|
6665 |
-
|
6666 |
-
#: templates/admin/csv-export.tpl.php:171
|
6667 |
-
#, fuzzy
|
6668 |
-
msgctxt "admin csv-export"
|
6669 |
-
msgid "Download %1$s (%2$s)"
|
6670 |
-
msgstr "تحميل %s (%s)"
|
6671 |
|
6672 |
-
#: templates/admin/csv-
|
6673 |
-
msgctxt "admin csv-
|
6674 |
msgid ""
|
6675 |
-
"
|
6676 |
-
"
|
6677 |
msgstr ""
|
6678 |
-
"
|
6679 |
-
"
|
6680 |
-
|
6681 |
-
#: templates/admin/csv-export.tpl.php:180
|
6682 |
-
msgctxt "admin csv-export"
|
6683 |
-
msgid "Cleanup"
|
6684 |
-
msgstr "نظف"
|
6685 |
-
|
6686 |
-
#: templates/admin/csv-export.tpl.php:185
|
6687 |
-
msgctxt "admin csv-export"
|
6688 |
-
msgid "Export Canceled"
|
6689 |
-
msgstr "ألغي التصدير"
|
6690 |
-
|
6691 |
-
#: templates/admin/csv-export.tpl.php:186
|
6692 |
-
msgctxt "admin csv-export"
|
6693 |
-
msgid "The export has been canceled."
|
6694 |
-
msgstr "تم إلغاء التصدير"
|
6695 |
-
|
6696 |
-
#: templates/admin/csv-export.tpl.php:187
|
6697 |
-
msgctxt "admin csv-export"
|
6698 |
-
msgid "← Return to CSV Export"
|
6699 |
-
msgstr "← العودة إلى تصدير CSV"
|
6700 |
|
6701 |
#: includes/admin/csv-import.php:304
|
6702 |
#, fuzzy
|
@@ -6849,41 +6861,41 @@ msgctxt "admin fees table"
|
|
6849 |
msgid "All"
|
6850 |
msgstr "الكل"
|
6851 |
|
6852 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6853 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6854 |
msgctxt "post status"
|
6855 |
msgid "Published"
|
6856 |
msgstr "نشرت"
|
6857 |
|
6858 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6859 |
msgctxt "post status"
|
6860 |
msgid "Draft"
|
6861 |
msgstr "مسودة"
|
6862 |
|
6863 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6864 |
msgctxt "post status"
|
6865 |
msgid "Trash"
|
6866 |
msgstr "سلة المهملات"
|
6867 |
|
6868 |
#. translators: %s: url shortcode
|
6869 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6870 |
msgctxt "contact email"
|
6871 |
msgid "You have received a reply from your listing at %s."
|
6872 |
msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
|
6873 |
|
6874 |
#. translators: %s: name shortcode
|
6875 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6876 |
msgctxt "contact email"
|
6877 |
msgid "Name: %s"
|
6878 |
msgstr "الإسم: %s"
|
6879 |
|
6880 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6881 |
msgctxt "contact email"
|
6882 |
msgid "Message:"
|
6883 |
msgstr "الرسالة:"
|
6884 |
|
6885 |
#. translators: %s: date shortcode
|
6886 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6887 |
msgctxt "contact email"
|
6888 |
msgid "Time: %s"
|
6889 |
msgstr "الوقت: %s"
|
@@ -7032,13 +7044,13 @@ msgctxt "listings-api"
|
|
7032 |
msgid "Featured Listing"
|
7033 |
msgstr "إعلان مميز"
|
7034 |
|
7035 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7036 |
#, fuzzy
|
7037 |
msgctxt "migrate-18"
|
7038 |
msgid "Featured Levels migration is complete."
|
7039 |
msgstr "وحدة المستويات المميزة"
|
7040 |
|
7041 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7042 |
msgctxt "migrate-18"
|
7043 |
msgid ""
|
7044 |
"Business Directory <b>version 5.0</b> is changing how Featured Levels plugin "
|
@@ -7046,7 +7058,7 @@ msgid ""
|
|
7046 |
"confusing notion of a \"featured level\" that was limited to sticky listings."
|
7047 |
msgstr ""
|
7048 |
|
7049 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7050 |
msgctxt "migrate-18"
|
7051 |
msgid ""
|
7052 |
"We need to migrate your existing \"featured levels\" to plans for use by the "
|
@@ -7056,7 +7068,7 @@ msgid ""
|
|
7056 |
"link> and <cancel-link>cancel migration</cancel-link>."
|
7057 |
msgstr ""
|
7058 |
|
7059 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7060 |
msgctxt "migrate-18"
|
7061 |
msgid ""
|
7062 |
"Before we do the migration, we need to ask a few simple questions to move "
|
@@ -7064,58 +7076,58 @@ msgid ""
|
|
7064 |
"plan\" that is right for you."
|
7065 |
msgstr ""
|
7066 |
|
7067 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7068 |
msgctxt "migrate-18"
|
7069 |
msgid "Move to: "
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7073 |
msgctxt "migrate-18"
|
7074 |
msgid "New plan summary"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7078 |
#, fuzzy
|
7079 |
msgctxt "migrate-18"
|
7080 |
msgid "Perform migration"
|
7081 |
msgstr "معلومات الرسوم"
|
7082 |
|
7083 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7084 |
#, fuzzy
|
7085 |
msgctxt "migrate-18"
|
7086 |
msgid "Business Directory Plugin - Featured Levels migration required."
|
7087 |
msgstr "دليل الأعمال - إعلانات مميزة"
|
7088 |
|
7089 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7090 |
msgctxt "migrate-18"
|
7091 |
msgid ""
|
7092 |
"Featured levels were removed in 5.0. You need to perform your <a>Featured "
|
7093 |
"Levels migration here</a>."
|
7094 |
msgstr ""
|
7095 |
|
7096 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7097 |
#, fuzzy
|
7098 |
msgctxt "upgrade-18"
|
7099 |
msgid "← Return to Directory dashboard"
|
7100 |
msgstr "← الرجوع إلى الدليل."
|
7101 |
|
7102 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7103 |
msgctxt "upgrade-18"
|
7104 |
msgid "Configure Plan"
|
7105 |
msgstr ""
|
7106 |
|
7107 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7108 |
#, fuzzy
|
7109 |
msgctxt "upgrade-18"
|
7110 |
msgid "Featured Level"
|
7111 |
msgstr "وحدة المستويات المميزة"
|
7112 |
|
7113 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7114 |
msgctxt "upgrade-18"
|
7115 |
msgid "What to do with it?"
|
7116 |
msgstr ""
|
7117 |
|
7118 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7119 |
#, fuzzy
|
7120 |
msgctxt "upgrade-18"
|
7121 |
msgid "%d listing is on this level."
|
@@ -7127,39 +7139,39 @@ msgstr[3] "تم تحرير الإعلان"
|
|
7127 |
msgstr[4] "تم تحرير الإعلان"
|
7128 |
msgstr[5] "تم تحرير الإعلان"
|
7129 |
|
7130 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7131 |
msgctxt "upgrade-18"
|
7132 |
msgid "Select an option"
|
7133 |
msgstr ""
|
7134 |
|
7135 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7136 |
#, fuzzy
|
7137 |
msgctxt "upgrade-18"
|
7138 |
msgid "Remove \"sticky\" status for listings."
|
7139 |
msgstr "حالة مقالة الإعلانات المستوردة"
|
7140 |
|
7141 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7142 |
msgctxt "upgrade-18"
|
7143 |
msgid "Remove this (old) level, and leave the listing on the old plan."
|
7144 |
msgstr ""
|
7145 |
|
7146 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7147 |
msgctxt "upgrade-18"
|
7148 |
msgid "May change \"sticky\" status depending on plan."
|
7149 |
msgstr ""
|
7150 |
|
7151 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7152 |
msgctxt "upgrade-18"
|
7153 |
msgid "Move listings with this level to existing plan."
|
7154 |
msgstr ""
|
7155 |
|
7156 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7157 |
#, fuzzy
|
7158 |
msgctxt "upgrade-18"
|
7159 |
msgid "Keep \"sticky\" status of listings."
|
7160 |
msgstr "حالة مقالة الإعلانات المستوردة"
|
7161 |
|
7162 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7163 |
msgctxt "upgrade-18"
|
7164 |
msgid "Replace this level with a new plan."
|
7165 |
msgstr ""
|
@@ -7592,7 +7604,7 @@ msgstr ""
|
|
7592 |
"إعلانات بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. "
|
7593 |
"إذا كنت لا تريد ذلك، إضغط <a>هنا</a> لتغيير الإعداد."
|
7594 |
|
7595 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7596 |
msgctxt "templates"
|
7597 |
msgid ""
|
7598 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
@@ -7601,27 +7613,27 @@ msgstr ""
|
|
7601 |
"<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
|
7602 |
"محددة في الإعدادات؟"
|
7603 |
|
7604 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7605 |
msgctxt "templates"
|
7606 |
msgid ""
|
7607 |
"Listing submission has been disabled. Contact the administrator for details."
|
7608 |
msgstr ""
|
7609 |
|
7610 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7611 |
msgctxt "templates"
|
7612 |
msgid ""
|
7613 |
"<b>There are no Plans available</b>, without a plan site users can't submit "
|
7614 |
"a listing. %s to create a plan"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7618 |
msgctxt "templates"
|
7619 |
msgid ""
|
7620 |
"Listing submission is not available at the moment. Contact the administrator "
|
7621 |
"for details."
|
7622 |
msgstr ""
|
7623 |
|
7624 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7625 |
msgctxt "templates"
|
7626 |
msgid ""
|
7627 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7629,12 +7641,12 @@ msgid ""
|
|
7629 |
"an existing field"
|
7630 |
msgstr ""
|
7631 |
|
7632 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7633 |
msgctxt "templates"
|
7634 |
msgid "Please agree to the Terms and Conditions."
|
7635 |
msgstr "يرجى الموافقة على الشروط والأحكام."
|
7636 |
|
7637 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7638 |
#, fuzzy
|
7639 |
msgctxt "templates"
|
7640 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
@@ -7943,78 +7955,78 @@ msgctxt "search"
|
|
7943 |
msgid "\"%s\" is required."
|
7944 |
msgstr "%s مطلوب."
|
7945 |
|
7946 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7947 |
msgctxt "submit listing"
|
7948 |
msgid "Click this field to add categories"
|
7949 |
msgstr ""
|
7950 |
|
7951 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7952 |
#, fuzzy
|
7953 |
msgctxt "submit listing"
|
7954 |
msgid "Complete Listing"
|
7955 |
msgstr "حذف الإعلان"
|
7956 |
|
7957 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7958 |
#, fuzzy
|
7959 |
msgctxt "submit listing"
|
7960 |
msgid "Continue to Payment"
|
7961 |
msgstr "الدفعة الأولية"
|
7962 |
|
7963 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7964 |
msgctxt "submit listing"
|
7965 |
msgid "Please wait a moment!"
|
7966 |
msgstr ""
|
7967 |
|
7968 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7969 |
msgctxt "submit listing"
|
7970 |
msgid "Something went wrong!"
|
7971 |
msgstr ""
|
7972 |
|
7973 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7974 |
#, fuzzy
|
7975 |
msgctxt "submit listing"
|
7976 |
msgid "No listing ID was specified."
|
7977 |
msgstr "تم تحرير الإعلان"
|
7978 |
|
7979 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7980 |
#, fuzzy
|
7981 |
msgctxt "submit listing"
|
7982 |
msgid "You can't edit this listing."
|
7983 |
msgstr "التصنيفات لهذا الإعلان"
|
7984 |
|
7985 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7986 |
msgctxt "submit listing"
|
7987 |
msgid ""
|
7988 |
"This listing can't be edited at this time because it has no plan associated. "
|
7989 |
"Please <a>edit the listing</a> on the backend and associate it to a plan."
|
7990 |
msgstr ""
|
7991 |
|
7992 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7993 |
msgctxt "submit listing"
|
7994 |
msgid ""
|
7995 |
"This listing can't be edited at this time. Please try again later or contact "
|
7996 |
"the admin if the problem persists."
|
7997 |
msgstr ""
|
7998 |
|
7999 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8000 |
#, fuzzy
|
8001 |
msgctxt "submit listing"
|
8002 |
msgid "You're logged in as admin, payment will be skipped."
|
8003 |
msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
|
8004 |
|
8005 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8006 |
#, fuzzy
|
8007 |
msgctxt "submit listing"
|
8008 |
msgid "Category selection"
|
8009 |
msgstr "إختيار تصنيف"
|
8010 |
|
8011 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8012 |
#, fuzzy
|
8013 |
msgctxt "submit listing"
|
8014 |
msgid "Category & plan selection"
|
8015 |
msgstr "إختيار تصنيف"
|
8016 |
|
8017 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8018 |
#, fuzzy
|
8019 |
msgctxt "submit listing"
|
8020 |
msgid "Can not submit a listing at this moment. Please try again later."
|
@@ -8022,47 +8034,47 @@ msgstr ""
|
|
8022 |
"لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
|
8023 |
"أخرى لاحقاً."
|
8024 |
|
8025 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8026 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8027 |
#, fuzzy
|
8028 |
msgctxt "submit listing"
|
8029 |
msgid "Please select a category."
|
8030 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
8031 |
|
8032 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8033 |
msgctxt "submit listing"
|
8034 |
msgid "Current active plan is disabled. Please select another plan."
|
8035 |
msgstr ""
|
8036 |
|
8037 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8038 |
msgctxt "submit listing"
|
8039 |
msgid "Please choose a valid category for your plan."
|
8040 |
msgstr ""
|
8041 |
|
8042 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8043 |
#, fuzzy
|
8044 |
msgctxt "submit listing"
|
8045 |
msgid "Please choose a valid plan for your category selection."
|
8046 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
8047 |
|
8048 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8049 |
#, fuzzy
|
8050 |
msgctxt "submit listing"
|
8051 |
msgid "Please enter your desired username."
|
8052 |
msgstr "يرجى إدخال إسمك."
|
8053 |
|
8054 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8055 |
#, fuzzy
|
8056 |
msgctxt "submit listing"
|
8057 |
msgid "Please enter the e-mail for your new account."
|
8058 |
msgstr "يرجى إدخال إسمك."
|
8059 |
|
8060 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8061 |
msgctxt "submit listing"
|
8062 |
msgid "The username you chose is already in use. Please use a different one."
|
8063 |
msgstr ""
|
8064 |
|
8065 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8066 |
msgctxt "submit listing"
|
8067 |
msgid "The e-mail address you chose for your account is already in use."
|
8068 |
msgstr ""
|
@@ -8073,7 +8085,7 @@ msgctxt "submit listing"
|
|
8073 |
msgid "Listing submitted by admin. Payment skipped."
|
8074 |
msgstr "Poster annonce(paiement initial)"
|
8075 |
|
8076 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8077 |
msgctxt "listing submit"
|
8078 |
msgid ""
|
8079 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8582,7 +8594,7 @@ msgctxt "payment summary"
|
|
8582 |
msgid "%s. Imported Listing."
|
8583 |
msgstr "استيراد الإعلانات"
|
8584 |
|
8585 |
-
#: includes/payment.php:
|
8586 |
#, fuzzy
|
8587 |
msgctxt "payments"
|
8588 |
msgid "Payment #%s"
|
@@ -8598,12 +8610,12 @@ msgctxt "utils"
|
|
8598 |
msgid "Error while uploading file"
|
8599 |
msgstr "حدث خطأ أثناء رفع الملف."
|
8600 |
|
8601 |
-
#: includes/utils.php:
|
8602 |
msgctxt "utils"
|
8603 |
msgid "File type \"%s\" is not allowed"
|
8604 |
msgstr "غير مسموح بنوع الملف \"%s\""
|
8605 |
|
8606 |
-
#: includes/utils.php:
|
8607 |
msgctxt "utils"
|
8608 |
msgid ""
|
8609 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8706,10 +8718,39 @@ msgctxt "widgets"
|
|
8706 |
msgid "Display the following fields in the form."
|
8707 |
msgstr "عرض الحقول التالية في النموذج."
|
8708 |
|
8709 |
-
#: templates/admin/
|
8710 |
-
|
8711 |
-
|
8712 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8713 |
|
8714 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:127
|
8715 |
#, fuzzy
|
@@ -8801,7 +8842,7 @@ msgctxt "uninstall"
|
|
8801 |
msgid "Uninstall Plugin"
|
8802 |
msgstr "إلغاء تثبيت الإضافة"
|
8803 |
|
8804 |
-
#: templates/admin/uninstall-confirm.tpl.php:
|
8805 |
#, fuzzy
|
8806 |
msgctxt "uninstall"
|
8807 |
msgid "Uninstalling Business Directory Plugin will do the following:"
|
@@ -8825,13 +8866,6 @@ msgctxt "uninstall"
|
|
8825 |
msgid "Remove ALL directory settings"
|
8826 |
msgstr "فرز إعلانات الدليل حسب"
|
8827 |
|
8828 |
-
#: templates/admin/uninstall-confirm.tpl.php:25
|
8829 |
-
msgctxt "uninstall"
|
8830 |
-
msgid ""
|
8831 |
-
"Remove ALL premium module configuration data (regions, maps, ratings, "
|
8832 |
-
"featured levels)"
|
8833 |
-
msgstr ""
|
8834 |
-
|
8835 |
#: templates/admin/uninstall-confirm.tpl.php:26
|
8836 |
msgctxt "uninstall"
|
8837 |
msgid "Deactivate the plugin from the file system"
|
@@ -8992,6 +9026,60 @@ msgctxt "send-access-keys"
|
|
8992 |
msgid "Continue"
|
8993 |
msgstr "متابعة"
|
8994 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8995 |
#, fuzzy
|
8996 |
#~ msgid "Fee Label"
|
8997 |
#~ msgstr "تسمية الرسوم"
|
@@ -9078,13 +9166,6 @@ msgstr "متابعة"
|
|
9078 |
#~ msgid "Paid"
|
9079 |
#~ msgstr "تم الدفع"
|
9080 |
|
9081 |
-
#, fuzzy
|
9082 |
-
#~ msgid "Manage Options"
|
9083 |
-
#~ msgstr "إدارة الخيارات"
|
9084 |
-
|
9085 |
-
#~ msgid "Manage Paid Listings"
|
9086 |
-
#~ msgstr "إدارة الإعلانات المدفوعة"
|
9087 |
-
|
9088 |
#, fuzzy
|
9089 |
#~ msgctxt "settings"
|
9090 |
#~ msgid "Turn On payments?"
|
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-03-31 18:58:23+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"
|
42 |
msgid "Selected"
|
43 |
msgstr "قائمة منسدلة"
|
44 |
|
45 |
+
#: includes/admin/admin-pages.php:44 includes/admin/admin-pages.php:474
|
46 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
47 |
+
#: includes/admin/settings/class-settings-bootstrap.php:695
|
48 |
+
#: includes/admin/settings/class-settings-bootstrap.php:696
|
49 |
+
#: includes/helpers/class-app.php:92
|
50 |
+
#, fuzzy
|
51 |
+
msgid "Listings"
|
52 |
+
msgstr "الإعلانات"
|
53 |
+
|
54 |
+
#: includes/admin/admin-pages.php:51
|
55 |
+
#, fuzzy
|
56 |
+
msgid "Add New Listing"
|
57 |
+
msgstr "إضافة إعلان جديد"
|
58 |
+
|
59 |
+
#: includes/admin/admin-pages.php:70
|
60 |
+
#: includes/admin/settings/class-settings-bootstrap.php:450
|
61 |
+
#, fuzzy
|
62 |
+
msgid "Categories"
|
63 |
+
msgstr "التصنيفات"
|
64 |
+
|
65 |
+
#: includes/admin/admin-pages.php:72
|
66 |
+
#, fuzzy
|
67 |
+
msgid "Add New Category"
|
68 |
+
msgstr "التصنيف"
|
69 |
+
|
70 |
+
#: includes/admin/admin-pages.php:87
|
71 |
+
#: includes/admin/controllers/class-form-fields-admin.php:346
|
72 |
+
#, fuzzy
|
73 |
+
msgid "Tags"
|
74 |
+
msgstr "الوسوم"
|
75 |
+
|
76 |
+
#: includes/admin/admin-pages.php:89
|
77 |
+
#, fuzzy
|
78 |
+
msgid "Add New Tag"
|
79 |
+
msgstr "إضافة إعلان جديد"
|
80 |
+
|
81 |
+
#: includes/admin/admin-pages.php:104
|
82 |
+
#, fuzzy
|
83 |
+
msgid "Edit Category"
|
84 |
+
msgstr "تصنيف المقالة"
|
85 |
+
|
86 |
+
#: includes/admin/admin-pages.php:106
|
87 |
+
#, fuzzy
|
88 |
+
msgid "Back to Categories"
|
89 |
+
msgstr "تصنيفات الدليل"
|
90 |
+
|
91 |
+
#: includes/admin/admin-pages.php:120
|
92 |
+
#, fuzzy
|
93 |
+
msgid "Edit Tag"
|
94 |
+
msgstr "تم الدفع"
|
95 |
+
|
96 |
+
#: includes/admin/admin-pages.php:122
|
97 |
+
#, fuzzy
|
98 |
+
msgid "Back to Tags"
|
99 |
+
msgstr "وسوم الدليل"
|
100 |
+
|
101 |
+
#. translators: %s: Search query.
|
102 |
+
#: includes/admin/admin-pages.php:186
|
103 |
+
#, fuzzy
|
104 |
+
msgid "Search results for: %s"
|
105 |
+
msgstr "نتائج البحث"
|
106 |
+
|
107 |
+
#: includes/admin/admin-pages.php:473 includes/admin/class-admin.php:487
|
108 |
+
#, fuzzy
|
109 |
+
msgid "Directory Content"
|
110 |
+
msgstr "تصنيف الدليل"
|
111 |
+
|
112 |
+
#: includes/admin/admin-pages.php:479 includes/admin/class-admin.php:309
|
113 |
+
#: includes/admin/settings/class-settings-bootstrap.php:707
|
114 |
+
#: includes/admin/settings/class-settings-bootstrap.php:708
|
115 |
+
#: includes/helpers/class-app.php:93
|
116 |
+
#: includes/helpers/functions/templates-ui.php:307
|
117 |
+
msgid "Directory"
|
118 |
+
msgstr "الدليل"
|
119 |
+
|
120 |
+
#: includes/admin/class-admin.php:198
|
121 |
#, fuzzy
|
122 |
msgid ""
|
123 |
"Find out how to create a compelling, thriving business directory from "
|
127 |
"(مجانا) مكونة من 5 أجزاء (ترسل عبر البريد الإلكتروني). أحصل على وحدة ممتازة "
|
128 |
"(premium module) مجانا بمجرد تسجيلك."
|
129 |
|
130 |
+
#: includes/admin/class-admin.php:207
|
131 |
#, fuzzy
|
132 |
msgid "Want to know the Secrets of Building an Awesome Business Directory?"
|
133 |
msgstr "هل تريد معرفة \"أسرار بناء\" \"دليل أعمال مدهش\"؟"
|
134 |
|
135 |
+
#: includes/admin/class-admin.php:209
|
136 |
#, fuzzy
|
137 |
msgid "Yes, please!"
|
138 |
msgstr "نعم، من فضلك!"
|
139 |
|
140 |
+
#: includes/admin/class-admin.php:211 includes/admin/tracking.php:215
|
141 |
#, fuzzy
|
142 |
msgid "No, thanks"
|
143 |
msgstr "لا، شكرًا"
|
144 |
|
145 |
+
#: includes/admin/class-admin.php:244
|
146 |
#, fuzzy
|
147 |
msgid "You're all set. Visit your new %1$sBusiness Directory%2$s page."
|
148 |
msgstr "أنت مستعد. قم بزيارة صفحة <a>دليل الأعمال</a> الجديدة."
|
149 |
|
150 |
+
#: includes/admin/class-admin.php:272
|
151 |
#, fuzzy
|
152 |
msgid "Invalid email address."
|
153 |
msgstr "عنوان البريد الإلكتروني غير صالح!"
|
154 |
|
155 |
+
#: includes/admin/class-admin.php:308
|
156 |
#, fuzzy
|
157 |
msgid "Business Directory Admin"
|
158 |
msgstr "مدير دليل الأعمال"
|
159 |
|
160 |
+
#: includes/admin/class-admin.php:320 templates/admin/fees-index.tpl.php:5
|
161 |
+
#: templates/admin/home.tpl.php:65
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
msgid "Plans"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/admin/class-admin.php:323 templates/admin/form-fields.tpl.php:20
|
166 |
+
#: templates/admin/home.tpl.php:60
|
167 |
#, fuzzy
|
168 |
msgid "Form Fields"
|
169 |
msgstr "حقول الاستمارة"
|
170 |
|
171 |
+
#: includes/admin/class-admin.php:352 includes/admin/class-admin.php:353
|
172 |
#: includes/licensing.php:229
|
173 |
#, fuzzy
|
174 |
msgid "Modules"
|
175 |
msgstr "(جميع الوحدات)"
|
176 |
|
177 |
+
#: includes/admin/class-admin.php:353
|
178 |
#, fuzzy
|
179 |
msgid "Business Directory"
|
180 |
msgstr "دليل الأعمال"
|
181 |
|
182 |
+
#: includes/admin/class-admin.php:486 includes/class-cpt-integration.php:23
|
183 |
+
#, fuzzy
|
184 |
+
msgid "Directory Listings"
|
185 |
+
msgstr "رابط لطيف لإعلانات الدليل"
|
186 |
+
|
187 |
+
#: includes/admin/class-admin.php:1015
|
188 |
#, fuzzy
|
189 |
msgid "Could not send renewal email."
|
190 |
msgstr "إرسال رسالة بريد إلكتروني بخصوص التجديد للعضو"
|
191 |
|
192 |
+
#: includes/admin/class-admin.php:1149
|
193 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:129
|
194 |
#: includes/admin/helpers/tables/class-payments-table.php:54
|
195 |
#: templates/email/listing-added.tpl.php:7
|
196 |
#: templates/email/listing-edited.tpl.php:13
|
199 |
msgid "ID"
|
200 |
msgstr "المعرف"
|
201 |
|
202 |
+
#: includes/admin/class-admin.php:1151 includes/admin/class-admin.php:1159
|
203 |
+
#: includes/admin/settings/class-settings-bootstrap.php:733
|
204 |
#, fuzzy
|
205 |
msgid "Listing Count"
|
206 |
msgstr "عدد الإعلانات"
|
207 |
|
208 |
+
#: includes/admin/class-admin.php:1316
|
209 |
#, fuzzy
|
210 |
msgid ""
|
211 |
"We noticed you want your Business Directory users to register before posting "
|
284 |
msgid "Are you sure you want to do this?"
|
285 |
msgstr "هل أنت متأكد من أنك تريد عمل هذا؟"
|
286 |
|
287 |
+
#: includes/admin/controllers/class-admin-csv.php:38
|
288 |
+
#, fuzzy
|
289 |
+
msgid "Import"
|
290 |
+
msgstr "استيراد CSV"
|
291 |
+
|
292 |
+
#: includes/admin/controllers/class-admin-csv.php:42
|
293 |
+
#, fuzzy
|
294 |
+
msgid "Export"
|
295 |
+
msgstr "تصدير CSV"
|
296 |
+
|
297 |
+
#: includes/admin/controllers/class-admin-csv.php:50
|
298 |
+
#, fuzzy
|
299 |
+
msgid "See an example CSV import file"
|
300 |
+
msgstr "مشاهدة مثال لملف استيراد CSV"
|
301 |
+
|
302 |
+
#: includes/admin/controllers/class-admin-csv.php:54
|
303 |
+
#: templates/admin/csv-import.tpl.php:285
|
304 |
#, fuzzy
|
305 |
msgid "Help"
|
306 |
msgstr "المساعدة"
|
307 |
|
308 |
#: includes/admin/controllers/class-admin-fees.php:47
|
309 |
#: includes/admin/helpers/tables/class-payments-table.php:57
|
310 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:277
|
311 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:73
|
312 |
#: templates/admin/payments-details.tpl.php:113
|
313 |
#: templates/email/listing-payment-completed.tpl.php:21
|
318 |
|
319 |
#: includes/admin/controllers/class-admin-fees.php:49
|
320 |
#: includes/admin/helpers/tables/class-fees-table.php:65
|
321 |
+
#: includes/admin/settings/class-settings-bootstrap.php:923
|
322 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:279
|
323 |
#, fuzzy
|
324 |
msgid "Images"
|
325 |
msgstr "الصور"
|
326 |
|
327 |
+
#: includes/admin/controllers/class-admin-fees.php:79
|
328 |
+
#, fuzzy
|
329 |
+
msgid "Upgrade"
|
330 |
+
msgstr "ترقية إلى %s"
|
331 |
+
|
332 |
+
#: includes/admin/controllers/class-admin-fees.php:90
|
333 |
+
msgid "Set Up"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: includes/admin/controllers/class-admin-fees.php:153
|
337 |
#, fuzzy
|
338 |
msgid "Plan added."
|
339 |
msgstr "الرسوم حدثت."
|
340 |
|
341 |
+
#: includes/admin/controllers/class-admin-fees.php:157
|
342 |
+
#: includes/admin/controllers/class-admin-fees.php:172
|
343 |
#, fuzzy
|
344 |
msgid "Plan updated."
|
345 |
msgstr "الرسوم حدثت."
|
346 |
|
347 |
+
#: includes/admin/controllers/class-admin-fees.php:192
|
348 |
msgid "%1$sClick here to update image limits%2$s of %3$s existing listings."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: includes/admin/controllers/class-admin-fees.php:193
|
352 |
#, fuzzy
|
353 |
msgid "Update listing image limits?"
|
354 |
msgstr "الاحتفاظ بصور الإعلانات الموجودة؟"
|
355 |
|
356 |
+
#: includes/admin/controllers/class-admin-fees.php:214
|
357 |
#, fuzzy
|
358 |
msgid "Plan not found."
|
359 |
msgstr "الرسوم حدثت."
|
360 |
|
361 |
+
#: includes/admin/controllers/class-admin-fees.php:218
|
362 |
#, fuzzy
|
363 |
msgid "Plan listings updated."
|
364 |
msgstr "الرسوم حدثت."
|
365 |
|
366 |
+
#: includes/admin/controllers/class-admin-fees.php:296
|
367 |
msgid "Cannot disable plan. At least one plan should be enabled"
|
368 |
msgstr ""
|
369 |
|
370 |
#: includes/admin/controllers/class-admin-listings.php:187
|
371 |
+
#: includes/controllers/pages/class-submit-listing.php:514
|
372 |
#: templates/email/listing-reported.tpl.php:7
|
373 |
msgid "Listing Information"
|
374 |
msgstr "معلومات حول الإعلان"
|
411 |
msgid "Delete Listing"
|
412 |
msgstr "حذف الإعلان"
|
413 |
|
414 |
+
#: includes/admin/controllers/class-admin-listings.php:733
|
415 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:88
|
416 |
+
#, fuzzy
|
417 |
+
msgid "Never"
|
418 |
+
msgstr "أبداً"
|
419 |
+
|
420 |
+
#: includes/admin/controllers/class-admin-listings.php:744
|
421 |
+
#: includes/admin/controllers/class-admin-listings.php:745
|
422 |
+
#: includes/fields/class-fieldtypes-textarea.php:201
|
423 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
424 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
425 |
+
#, fuzzy
|
426 |
+
msgid "Yes"
|
427 |
+
msgstr "نعم"
|
428 |
+
|
429 |
+
#: includes/admin/controllers/class-admin-listings.php:744
|
430 |
+
#: includes/admin/controllers/class-admin-listings.php:745
|
431 |
+
#: includes/admin/settings/class-settings-bootstrap.php:276
|
432 |
+
#: includes/fields/class-fieldtypes-textarea.php:200
|
433 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
434 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
435 |
+
#, fuzzy
|
436 |
+
msgid "No"
|
437 |
+
msgstr "لا"
|
438 |
+
|
439 |
#: includes/admin/controllers/class-form-fields-admin.php:32
|
440 |
#, fuzzy
|
441 |
msgid ""
|
446 |
"الأعمال للقيام بذلك نيابة عنك تلقائياً."
|
447 |
|
448 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
449 |
+
#: includes/controllers/pages/class-submit-listing.php:844
|
450 |
#, fuzzy
|
451 |
msgid "Go to \"Form Fields\""
|
452 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
463 |
msgstr ""
|
464 |
|
465 |
#: includes/admin/controllers/class-form-fields-admin.php:342
|
466 |
+
#: includes/admin/settings/class-settings-bootstrap.php:791
|
467 |
#: templates/email/listing-added.tpl.php:10
|
468 |
#: templates/email/listing-edited.tpl.php:16
|
469 |
#: templates/email/listing-reported.tpl.php:11
|
489 |
msgid "Content"
|
490 |
msgstr "المحتوى"
|
491 |
|
|
|
|
|
|
|
|
|
|
|
492 |
#: includes/admin/controllers/class-form-fields-admin.php:347
|
493 |
#: includes/form-fields.php:445
|
494 |
#: includes/helpers/class-field-display-list.php:247
|
555 |
msgid "Website"
|
556 |
msgstr "موقع الأنترنيت"
|
557 |
|
558 |
+
#: includes/admin/controllers/class-settings-admin.php:609
|
559 |
msgid "Your license key provides access to new features and updates."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/admin/controllers/class-settings-admin.php:611
|
563 |
#, fuzzy
|
564 |
msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
565 |
msgstr "لماذا قمت بحذف إضافة دليل الأعمال؟"
|
566 |
|
567 |
+
#: includes/admin/controllers/class-settings-admin.php:669
|
568 |
#: includes/admin/helpers/tables/class-fees-table.php:180
|
569 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
570 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
611 |
|
612 |
#: includes/admin/helpers/class-listing-information-metabox.php:15
|
613 |
#: includes/admin/helpers/tables/class-payments-table.php:53
|
614 |
+
#: includes/admin/settings/class-settings-bootstrap.php:683
|
615 |
+
#: includes/admin/settings/class-settings-bootstrap.php:684
|
616 |
#: includes/helpers/class-app.php:91
|
617 |
#: templates/admin/payments-details.tpl.php:53
|
618 |
#, fuzzy
|
655 |
msgid "Upgrade Now"
|
656 |
msgstr "ترقية إلى %s"
|
657 |
|
658 |
+
#: includes/admin/helpers/class-notices.php:30
|
659 |
+
#, fuzzy
|
660 |
+
msgid "Hide notifications"
|
661 |
+
msgstr "تنبيهات البريد الإلكتروني"
|
662 |
+
|
663 |
#: includes/admin/helpers/csv/class-csv-import.php:676
|
664 |
#, fuzzy
|
665 |
msgid "Listing imported by admin. Payment skipped."
|
686 |
msgid "Pricing"
|
687 |
msgstr "السعر"
|
688 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
689 |
#: includes/admin/helpers/tables/class-fees-table.php:155
|
690 |
#, fuzzy
|
691 |
msgid "Disable"
|
732 |
|
733 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
734 |
#: includes/fields/class-fieldtypes-social.php:135
|
735 |
+
#: templates/admin/csv-import.tpl.php:301
|
736 |
#, fuzzy
|
737 |
msgid "Type"
|
738 |
msgstr "نوع"
|
771 |
msgid "Missing tables: %s"
|
772 |
msgstr "الجداول المفقودة: %s"
|
773 |
|
774 |
+
#: includes/admin/settings/class-settings-bootstrap.php:17
|
775 |
+
#: includes/controllers/pages/class-submit-listing.php:1250
|
776 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:140
|
777 |
#: templates/listing-contactform.tpl.php:33
|
778 |
#: templates/listing-flagging-form.tpl.php:39
|
780 |
msgid "Email"
|
781 |
msgstr "البريد الإلكتروني: %s"
|
782 |
|
783 |
+
#: includes/admin/settings/class-settings-bootstrap.php:31
|
784 |
#, fuzzy
|
785 |
msgid "Module Settings"
|
786 |
msgstr "إعدادات"
|
787 |
|
788 |
+
#: includes/admin/settings/class-settings-bootstrap.php:35
|
789 |
+
#: includes/admin/settings/class-settings-bootstrap.php:309
|
790 |
#, fuzzy
|
791 |
msgid "Miscellaneous"
|
792 |
msgstr "إعدادات متنوعة"
|
793 |
|
794 |
+
#: includes/admin/settings/class-settings-bootstrap.php:51
|
795 |
#, fuzzy
|
796 |
msgid "License Key"
|
797 |
msgstr "تراخيص"
|
798 |
|
799 |
+
#: includes/admin/settings/class-settings-bootstrap.php:72
|
800 |
msgid "SEO"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/admin/settings/class-settings-bootstrap.php:277
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
#, fuzzy
|
805 |
msgid "Yes, and make it optional"
|
806 |
msgstr "الإسم العائلي مطلوب."
|
807 |
|
808 |
+
#: includes/admin/settings/class-settings-bootstrap.php:278
|
809 |
#, fuzzy
|
810 |
msgid "Yes, and make it required"
|
811 |
msgstr "الإسم العائلي مطلوب."
|
812 |
|
813 |
+
#: includes/admin/settings/class-settings-bootstrap.php:285
|
814 |
+
#: includes/admin/settings/class-settings-bootstrap.php:299
|
815 |
+
#: includes/controllers/pages/class-submit-listing.php:527
|
816 |
#, fuzzy
|
817 |
msgid "Terms and Conditions"
|
818 |
msgstr "شروط وأحكام"
|
819 |
|
820 |
+
#: includes/admin/settings/class-settings-bootstrap.php:290
|
821 |
#, fuzzy
|
822 |
msgid "User Agreement"
|
823 |
msgstr "عضو"
|
824 |
|
825 |
+
#: includes/admin/settings/class-settings-bootstrap.php:291
|
826 |
#, fuzzy
|
827 |
msgid "Display and require user agreement to Terms and Conditions"
|
828 |
msgstr "عرض وطلب موافقة العضو على الشروط والأحكام"
|
829 |
|
830 |
+
#: includes/admin/settings/class-settings-bootstrap.php:315
|
831 |
#, fuzzy
|
832 |
msgid "Data Collection"
|
833 |
msgstr "تجميع البيانات"
|
834 |
|
835 |
+
#: includes/admin/settings/class-settings-bootstrap.php:316
|
836 |
#, fuzzy
|
837 |
msgid ""
|
838 |
"Allow Business Directory to anonymously collect information about your "
|
841 |
"تسمح لدليل الأعمال بجمع معلومات مجهولة حول الإضافات المثبتة، والقوالب وإصدار "
|
842 |
"ووردبريس الخاص بك؟"
|
843 |
|
844 |
+
#: includes/admin/settings/class-settings-bootstrap.php:317
|
845 |
msgid "Learn more"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/admin/settings/class-settings-bootstrap.php:323
|
849 |
#, fuzzy
|
850 |
msgid "Searching"
|
851 |
msgstr "بحث"
|
852 |
|
853 |
+
#: includes/admin/settings/class-settings-bootstrap.php:328
|
854 |
#, fuzzy
|
855 |
msgid "Display advanced search form"
|
856 |
msgstr "بحث متقدم"
|
857 |
|
858 |
+
#: includes/admin/settings/class-settings-bootstrap.php:346
|
859 |
#, fuzzy
|
860 |
msgid ""
|
861 |
"Enabling this sacrifices result quality to improve speed. This is helpful if "
|
864 |
"تمكين هذا يجعل \"دليل الأعمال\" يضحي بجودة النتيجة لتحسين السرعة. وهذا مفيد "
|
865 |
"إذا كنت على خطط استضافة مشتركة، حيث أداء قاعدة البيانات يعد مشكلة."
|
866 |
|
867 |
+
#: includes/admin/settings/class-settings-bootstrap.php:391
|
868 |
#, fuzzy
|
869 |
msgid "Quick search data"
|
870 |
msgstr "حقول البحث السريع"
|
871 |
|
872 |
+
#: includes/admin/settings/class-settings-bootstrap.php:417
|
873 |
msgid ""
|
874 |
"If no fields are selected, the following fields will be searched in Quick "
|
875 |
"Searches:"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/admin/settings/class-settings-bootstrap.php:419
|
879 |
msgid ""
|
880 |
"The Quick Search is a single search box, but you may choose what data is "
|
881 |
"searched. Searching too many fields can result in very slow search "
|
882 |
"performance."
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: includes/admin/settings/class-settings-bootstrap.php:452
|
|
|
|
|
|
|
|
|
|
|
886 |
#, fuzzy
|
887 |
msgid "Buttons"
|
888 |
msgstr "نمط زر القالب"
|
889 |
|
890 |
+
#: includes/admin/settings/class-settings-bootstrap.php:454
|
891 |
#, fuzzy
|
892 |
msgid "Sorting"
|
893 |
msgstr "إعدادات"
|
894 |
|
895 |
+
#: includes/admin/settings/class-settings-bootstrap.php:571
|
896 |
msgid ""
|
897 |
"Business Directory Plugin uses the standard WordPress comments. Most themes "
|
898 |
"allow for comments on posts, not pages. Some themes handle both. Since the "
|
901 |
"work, try the 3rd option."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/admin/settings/class-settings-bootstrap.php:575
|
905 |
#, fuzzy
|
906 |
msgid "Include theme comment form (standard option)"
|
907 |
msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
|
908 |
|
909 |
+
#: includes/admin/settings/class-settings-bootstrap.php:576
|
910 |
#, fuzzy
|
911 |
msgid "Include directory comment form (use only if 2nd option does not work)"
|
912 |
msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
|
913 |
|
914 |
+
#: includes/admin/settings/class-settings-bootstrap.php:594
|
915 |
#, fuzzy
|
916 |
msgid "Prevent featured (sticky) status on directory pages?"
|
917 |
msgstr "حالة مميز (مثبت)"
|
918 |
|
919 |
+
#: includes/admin/settings/class-settings-bootstrap.php:622
|
920 |
#, fuzzy
|
921 |
msgid "Owner of anonymous listings"
|
922 |
msgstr "الذهاب إلى إعلانك"
|
923 |
|
924 |
+
#: includes/admin/settings/class-settings-bootstrap.php:638
|
925 |
#, fuzzy
|
926 |
msgid "Default listing status"
|
927 |
msgstr "إعلان العضو الافتراضي"
|
928 |
|
929 |
+
#: includes/admin/settings/class-settings-bootstrap.php:642
|
930 |
+
#: includes/admin/settings/class-settings-bootstrap.php:655
|
931 |
#, fuzzy
|
932 |
msgid "Pending (Require approval)"
|
933 |
msgstr "مفعل + ريثما يتم التجديد"
|
934 |
|
935 |
+
#: includes/admin/settings/class-settings-bootstrap.php:676
|
936 |
#, fuzzy
|
937 |
msgid "Message Defaults"
|
938 |
msgstr "إعادة تعيين الوضع الافتراضي"
|
939 |
|
940 |
+
#: includes/admin/settings/class-settings-bootstrap.php:681
|
941 |
#, fuzzy
|
942 |
msgid "Listing label"
|
943 |
msgstr "عنوان الإعلان: "
|
944 |
|
945 |
+
#: includes/admin/settings/class-settings-bootstrap.php:682
|
946 |
#, fuzzy
|
947 |
msgid "What is a single listing called?"
|
948 |
msgstr "إظهار هذه القيمة في مشاهدة الإعلان؟"
|
949 |
|
950 |
+
#: includes/admin/settings/class-settings-bootstrap.php:693
|
951 |
msgid "Listing label (Plural)"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: includes/admin/settings/class-settings-bootstrap.php:694
|
955 |
msgid "What are your listings called?"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/admin/settings/class-settings-bootstrap.php:705
|
959 |
#, fuzzy
|
960 |
msgid "Directory label"
|
961 |
msgstr "وسم الدليل"
|
962 |
|
963 |
+
#: includes/admin/settings/class-settings-bootstrap.php:706
|
964 |
msgid "What should we call your directory?"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/admin/settings/class-settings-bootstrap.php:718
|
968 |
#, fuzzy
|
969 |
msgid ""
|
970 |
"This text is displayed on the first page of the Submit Listing process. You "
|
975 |
"استخدامه لإعطاء إرشادات حول تعبئة النموذج أو أي شيء تريد إعلام الأعضاء به "
|
976 |
"قبل أن يبدأوا."
|
977 |
|
978 |
+
#: includes/admin/settings/class-settings-bootstrap.php:731
|
979 |
#: templates/listing-contactform.tpl.php:30
|
980 |
#: templates/listing-flagging-form.tpl.php:35
|
981 |
#, fuzzy
|
982 |
msgid "Name"
|
983 |
msgstr "الإسم"
|
984 |
|
985 |
+
#: includes/admin/settings/class-settings-bootstrap.php:846
|
986 |
msgid "Show Buttons"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: includes/admin/settings/class-settings-bootstrap.php:889
|
990 |
#, fuzzy
|
991 |
+
msgid "Show the \"Directory\" and \"Return to Directory\" button"
|
992 |
msgstr "إظهار زر \"الدليل\"."
|
993 |
|
994 |
+
#: includes/admin/settings/class-settings-bootstrap.php:896
|
995 |
msgid "Styling"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/admin/settings/class-settings-bootstrap.php:902
|
999 |
#, fuzzy
|
1000 |
msgid "Button style"
|
1001 |
msgstr "نمط زر القالب"
|
1002 |
|
1003 |
+
#: includes/admin/settings/class-settings-bootstrap.php:905
|
1004 |
#, fuzzy
|
1005 |
msgid "Override WP theme button styling"
|
1006 |
msgstr "نمط زر القالب"
|
1007 |
|
1008 |
+
#: includes/admin/settings/class-settings-bootstrap.php:913
|
1009 |
msgid "Primary color"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: includes/admin/settings/class-settings-bootstrap.php:916
|
1013 |
msgid "This is used for form buttons and form rootline."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1070
|
1017 |
#, fuzzy
|
1018 |
msgid "Show Thumbnail"
|
1019 |
msgstr "عرض الصور المصغرة"
|
1020 |
|
1021 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1106
|
1022 |
msgid "Coming Soon image"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1143
|
1026 |
#: includes/fields/class-fieldtypes-social.php:89
|
1027 |
#: includes/fields/class-fieldtypes-url.php:162
|
1028 |
#: templates/email/listing-added.tpl.php:13
|
1033 |
msgid "URL"
|
1034 |
msgstr "رابط URL"
|
1035 |
|
1036 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1262
|
1037 |
#, fuzzy
|
1038 |
msgid "Thank you for your payment."
|
1039 |
msgstr "رسالة الشكر على الدفع"
|
1040 |
|
1041 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
1042 |
msgid ""
|
1043 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
1044 |
"collect payments in this currency."
|
1052 |
msgstr[4] ""
|
1053 |
msgstr[5] ""
|
1054 |
|
1055 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1378
|
1056 |
#, fuzzy
|
1057 |
msgid "Email Notifications"
|
1058 |
msgstr "تنبيهات البريد الإلكتروني"
|
1059 |
|
1060 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
1061 |
#, fuzzy
|
1062 |
msgid "Notify admin via email when..."
|
1063 |
msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
|
1064 |
|
1065 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1401
|
1066 |
#, fuzzy
|
1067 |
msgid "CC this email address too"
|
1068 |
msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
|
1069 |
|
1070 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
1071 |
#, fuzzy
|
1072 |
msgid ""
|
1073 |
"You can modify the text template used for most of these emails in the "
|
1075 |
msgstr ""
|
1076 |
"يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
|
1077 |
|
1078 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1415
|
1079 |
#, fuzzy
|
1080 |
msgid "Notify users via email when..."
|
1081 |
msgstr "إعلام الأعضاء عن طريق البريد الإلكتروني عندما..."
|
1082 |
|
1083 |
#. translators: %s: email shortcode
|
1084 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1482
|
1085 |
#, fuzzy
|
1086 |
msgid "Email: %s"
|
1087 |
msgstr "البريد الإلكتروني: %s"
|
1088 |
|
1089 |
#. translators: %s: phone shortcode
|
1090 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1485
|
1091 |
#, fuzzy
|
1092 |
msgid "Phone Number: %s"
|
1093 |
msgstr "رقم الهاتف"
|
1094 |
|
1095 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
1096 |
#, fuzzy
|
1097 |
msgid "Sender's email address"
|
1098 |
msgstr "إدخال بريدك إلكتروني"
|
1099 |
|
1100 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
1101 |
#, fuzzy
|
1102 |
msgid "Sender's phone number"
|
1103 |
msgstr "إسم الكاتب"
|
1104 |
|
1105 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1562
|
1106 |
msgid "Renewal and expiration"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1698
|
1110 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1111 |
#, fuzzy
|
1112 |
msgid "Uninstall"
|
1113 |
msgstr "حذف"
|
1114 |
|
1115 |
+
#: includes/admin/settings/class-settings.php:519
|
1116 |
msgid "%s cannot include spaces, commas, or &"
|
1117 |
msgstr ""
|
1118 |
|
1175 |
|
1176 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:21
|
1177 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:22
|
1178 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:189
|
|
|
1179 |
#, fuzzy
|
1180 |
msgid "Business Directory - Featured Levels Migration"
|
1181 |
msgstr "دليل الأعمال - إعلانات مميزة"
|
1182 |
|
1183 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
1184 |
#: templates/admin/fees-form.tpl.php:17
|
1185 |
#, fuzzy
|
1186 |
msgid "Plan Label"
|
1187 |
msgstr "تسمية الحقل"
|
1188 |
|
1189 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:278
|
1190 |
#, fuzzy
|
1191 |
msgid "Duration"
|
1192 |
msgstr "المدة"
|
1260 |
"what we can do better?"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/class-assets.php:191 templates/admin/settings-email.tpl.php:103
|
1264 |
#: templates/admin/settings-reset.tpl.php:8
|
1265 |
#: templates/admin/themes-delete-confirm.tpl.php:21
|
1266 |
#: templates/listing-flagging-form.tpl.php:65
|
1268 |
msgid "Cancel"
|
1269 |
msgstr "إلغاء"
|
1270 |
|
1271 |
+
#: includes/class-assets.php:192
|
1272 |
#, fuzzy
|
1273 |
msgid "Continue"
|
1274 |
msgstr "متابعة"
|
1275 |
|
1276 |
+
#: includes/class-assets.php:193
|
1277 |
msgid "Are you sure?"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/class-assets.php:357
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1281 |
#, fuzzy
|
1282 |
msgid ""
|
1283 |
"Preview is only available after you've saved the first draft. This is due to "
|
1300 |
msgid "Search Listings"
|
1301 |
msgstr "البحث في الإعلانات"
|
1302 |
|
|
|
|
|
|
|
|
|
|
|
1303 |
#: includes/class-cpt-integration.php:24
|
1304 |
msgid "No listings found"
|
1305 |
msgstr "لم يتم العثور على إعلانات"
|
1636 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
1637 |
"publiée."
|
1638 |
|
1639 |
+
#: includes/controllers/pages/class-submit-listing.php:560
|
1640 |
#, fuzzy
|
1641 |
msgid "Listing Images"
|
1642 |
msgstr "صور الإعلانات"
|
1643 |
|
1644 |
+
#: includes/controllers/pages/class-submit-listing.php:628
|
1645 |
msgid "Account Creation"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: includes/controllers/pages/class-submit-listing.php:827
|
1649 |
#, fuzzy
|
1650 |
msgid "Go to \"Plans\""
|
1651 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
1652 |
|
1653 |
+
#: includes/controllers/pages/class-submit-listing.php:883
|
1654 |
#, fuzzy
|
1655 |
msgid "Please choose a plan."
|
1656 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
1657 |
|
1658 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1659 |
msgid "Please check the form for errors, correct them and submit again."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: includes/controllers/pages/class-submit-listing.php:1234
|
1663 |
msgid "Create a user account on this site"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: includes/controllers/pages/class-submit-listing.php:1241
|
1667 |
#, fuzzy
|
1668 |
msgid "Username"
|
1669 |
msgstr "عضو"
|
1670 |
|
1671 |
+
#: includes/controllers/pages/class-submit-listing.php:1263
|
1672 |
#, fuzzy
|
1673 |
msgid "Clear Form"
|
1674 |
msgstr "مسح"
|
1734 |
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
1735 |
|
1736 |
#: includes/fields/class-fieldtypes-select.php:262
|
1737 |
+
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1738 |
+
#: templates/admin/fees-form.tpl.php:58
|
|
|
|
|
|
|
|
|
1739 |
#, fuzzy
|
1740 |
msgid "required"
|
1741 |
msgstr "مطلوب"
|
1905 |
msgid "Telephone Number Validator"
|
1906 |
msgstr "المصادقة على رقم صحيح"
|
1907 |
|
1908 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:300
|
1909 |
#, fuzzy
|
1910 |
msgid "Field"
|
1911 |
msgstr "حقل"
|
2001 |
msgstr "رسوم افتراضية"
|
2002 |
|
2003 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2004 |
+
#: includes/licensing.php:151
|
2005 |
msgid ""
|
2006 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
2007 |
"get updates."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: includes/licensing.php:203 includes/licensing.php:208
|
2011 |
#, fuzzy
|
2012 |
msgid "Licenses"
|
2013 |
msgstr "تراخيص"
|
2128 |
msgid "Congratulations %1$s! You have collected %2$d listings."
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: includes/payment.php:30
|
2132 |
msgid "We couldn't find a payment associated with the given subscription."
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: includes/payment.php:37
|
2136 |
msgid "The payment gateway \"<payment-gateway>\" is not available."
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: includes/payment.php:65
|
2140 |
#, fuzzy
|
2141 |
msgid "Gateway Transaction ID:"
|
2142 |
msgstr "transaction"
|
2143 |
|
2144 |
+
#: includes/payment.php:77
|
2145 |
msgid "Bill To:"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: includes/payment.php:88
|
2149 |
msgid "Print Receipt"
|
2150 |
msgstr ""
|
2151 |
|
|
|
|
|
|
|
|
|
|
|
2152 |
#: includes/payment.php:187
|
2153 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
2154 |
msgid "Return to plan selection"
|
2155 |
msgstr "الرجوع إلى الإعلان."
|
2156 |
|
2242 |
msgid "There are currently no listings to show."
|
2243 |
msgstr "لا توجد حاليا إعلانات في الدليل."
|
2244 |
|
2245 |
+
#: templates/admin/_admin-menu.php:42
|
2246 |
+
msgid "Minimize Navigation"
|
2247 |
+
msgstr ""
|
2248 |
+
|
2249 |
#: templates/admin/csv-export.tpl.php:5
|
2250 |
#, fuzzy
|
2251 |
msgid ""
|
2257 |
"المساحة الفارغة على القرص والذاكرة المتاحة إلى بي إتش بي. تحقق من سجلات "
|
2258 |
"الخطأ الخاص بك للحصول على التفاصيل."
|
2259 |
|
2260 |
+
#: templates/admin/csv-export.tpl.php:40
|
2261 |
+
#, fuzzy
|
2262 |
+
msgid "All"
|
2263 |
+
msgstr "الكل"
|
2264 |
+
|
2265 |
+
#: templates/admin/csv-export.tpl.php:53
|
2266 |
+
#, fuzzy
|
2267 |
+
msgid "Create a ZIP file with both a CSV file and listing images."
|
2268 |
+
msgstr ""
|
2269 |
+
"عند اختيار الخانة، بدلاً من مجرد ملف CSV سيتم إنشاء ملف مضغوط مع ملف CSV "
|
2270 |
+
"ولائحة الصور."
|
2271 |
+
|
2272 |
+
#: templates/admin/csv-export.tpl.php:58
|
2273 |
+
#, fuzzy
|
2274 |
+
msgid "Additional metadata to export"
|
2275 |
+
msgstr "بيانات تعريف إضافية للتصدير:"
|
2276 |
+
|
2277 |
+
#: templates/admin/csv-export.tpl.php:68
|
2278 |
#, fuzzy
|
2279 |
msgid ""
|
2280 |
"If you plan to re-import the listings into your directory and don't want new "
|
2283 |
"إذا كنت تخطط لإعادة استيراد الإعلانات إلى \"دليل الأعمال\" ولا تريد إنشاء "
|
2284 |
"أخرى جديدة، قم بتحديد هذا الخيار!"
|
2285 |
|
2286 |
+
#: templates/admin/csv-export.tpl.php:122
|
2287 |
+
#: templates/admin/csv-import.tpl.php:111
|
2288 |
#, fuzzy
|
2289 |
msgid "CSV File Settings"
|
2290 |
msgstr "إعدادات ملف CSV"
|
2291 |
|
2292 |
+
#: templates/admin/csv-export.tpl.php:132
|
2293 |
+
msgid ""
|
2294 |
+
"Windows and macOS versions of MS Excel handle CSV files differently. To make "
|
2295 |
+
"sure all your listings information is displayed properly when you view or "
|
2296 |
+
"edit the CSV file, we need to generate different versions of the file for "
|
2297 |
+
"each operating system."
|
2298 |
+
msgstr ""
|
2299 |
+
|
2300 |
+
#: templates/admin/csv-export.tpl.php:153
|
2301 |
+
#: templates/admin/csv-import.tpl.php:147
|
2302 |
#, fuzzy
|
2303 |
msgid "Image Separator"
|
2304 |
msgstr "فاصلة الصورة "
|
2313 |
"نوصي بشدة بقراءة <a>وثائق شرح استيراد CSV</a> أولاً لتساعدك على القيام "
|
2314 |
"بالأشياء بالترتيب الصحيح."
|
2315 |
|
2316 |
+
#: templates/admin/csv-import.tpl.php:46
|
2317 |
#, fuzzy
|
2318 |
msgid "Import Files"
|
2319 |
msgstr "استيراد الملفات"
|
2320 |
|
2321 |
+
#: templates/admin/csv-import.tpl.php:51
|
2322 |
#, fuzzy
|
2323 |
msgid "CSV File"
|
2324 |
msgstr "ملف CSV"
|
2325 |
|
2326 |
+
#: templates/admin/csv-import.tpl.php:80
|
2327 |
#, fuzzy
|
2328 |
msgid "ZIP file containing images"
|
2329 |
msgstr "ملف مضغوط يحتوي على صور"
|
2330 |
|
2331 |
+
#: templates/admin/csv-import.tpl.php:117
|
2332 |
#, fuzzy
|
2333 |
msgid "Column Separator"
|
2334 |
msgstr "فاصلة الأعمدة"
|
2335 |
|
2336 |
+
#: templates/admin/csv-import.tpl.php:140
|
2337 |
msgid "TAB"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: templates/admin/csv-import.tpl.php:158
|
2341 |
#, fuzzy
|
2342 |
msgid "Category Separator"
|
2343 |
msgstr "فاصلة التصنيف"
|
2344 |
|
2345 |
+
#: templates/admin/csv-import.tpl.php:169
|
2346 |
#, fuzzy
|
2347 |
msgid "Import settings"
|
2348 |
msgstr "إعدادات الاستيراد"
|
2349 |
|
2350 |
+
#: templates/admin/csv-import.tpl.php:174
|
2351 |
#, fuzzy
|
2352 |
msgid "Post status of new imported listings"
|
2353 |
msgstr "حالة مقالة الإعلانات المستوردة"
|
2354 |
|
2355 |
+
#: templates/admin/csv-import.tpl.php:189
|
2356 |
#, fuzzy
|
2357 |
msgid "Post status of existing imported listings"
|
2358 |
msgstr "حالة مقالة الإعلانات المستوردة"
|
2359 |
|
2360 |
+
#: templates/admin/csv-import.tpl.php:206
|
2361 |
#, fuzzy
|
2362 |
msgid "Missing categories handling"
|
2363 |
msgstr "معالجة التصنيفات المفقودة"
|
2364 |
|
2365 |
+
#: templates/admin/csv-import.tpl.php:212
|
2366 |
#, fuzzy
|
2367 |
msgid "Auto-create categories"
|
2368 |
msgstr "الإنشاء التلقائي للتصنيفات"
|
2369 |
|
2370 |
+
#: templates/admin/csv-import.tpl.php:217
|
2371 |
#, fuzzy
|
2372 |
msgid "Generate errors when a category is not found"
|
2373 |
msgstr "إنشاء أخطاء عند عدم العثور على تصنيف"
|
2374 |
|
2375 |
+
#: templates/admin/csv-import.tpl.php:225
|
2376 |
+
#, fuzzy
|
2377 |
+
msgid "Keep existing images"
|
2378 |
+
msgstr "الاحتفاظ بالصور الموجودة."
|
2379 |
+
|
2380 |
+
#: templates/admin/csv-import.tpl.php:228
|
2381 |
+
#, fuzzy
|
2382 |
+
msgid "Appends new images while keeping current ones."
|
2383 |
+
msgstr "إلحاق الصور الجديدة مع الاحتفاظ بالموجودة حاليا."
|
2384 |
+
|
2385 |
+
#: templates/admin/csv-import.tpl.php:236
|
2386 |
#, fuzzy
|
2387 |
+
msgid "Assign listings to a user"
|
2388 |
msgstr "تعيين إعلانات للعضو؟"
|
2389 |
|
2390 |
+
#: templates/admin/csv-import.tpl.php:248
|
2391 |
#, fuzzy
|
2392 |
msgid "Default listing user"
|
2393 |
msgstr "إعلان العضو الافتراضي"
|
2394 |
|
2395 |
+
#: templates/admin/csv-import.tpl.php:250
|
2396 |
#, fuzzy
|
2397 |
msgid ""
|
2398 |
"This user will be used if the username column is not present in the CSV file."
|
2399 |
msgstr "سيتم استخدام هذا العضو إذا كان عمود إسم المستخدم غير موجود في ملف CSV."
|
2400 |
|
2401 |
+
#: templates/admin/csv-import.tpl.php:257
|
2402 |
#, fuzzy
|
2403 |
msgid "Number of listings imported on every cycle"
|
2404 |
msgstr "عدد الإعلانات للعرض"
|
2405 |
|
2406 |
+
#: templates/admin/csv-import.tpl.php:259
|
2407 |
msgid ""
|
2408 |
"If you are having trouble importing listings due to memory problems, try "
|
2409 |
"reducing the import batch size to 5 or 1 and then re-attempt. This will "
|
2411 |
"success on shared hosting platforms and other resource-constrained servers."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: templates/admin/csv-import.tpl.php:271
|
2415 |
#, fuzzy
|
2416 |
+
msgid "Disable email notifications during import"
|
2417 |
msgstr "تعطيل تنبيهات البريد الإلكتروني أثناء عملية الاستيراد؟"
|
2418 |
|
2419 |
+
#: templates/admin/csv-import.tpl.php:290
|
|
|
|
|
|
|
|
|
|
|
2420 |
#, fuzzy
|
2421 |
msgid ""
|
2422 |
"The following are the valid header names to be used in the CSV file. "
|
2428 |
"القيم (مثل تصنيف أو وسوم) عدة مرات في الملف. إضغط فوق <a href=\"%s\">\"انظر "
|
2429 |
"مثال لملف استيراد CSV\"</a> لمعرفة كيف يجب أن يبدو ملف الاستيراد."
|
2430 |
|
2431 |
+
#: templates/admin/csv-import.tpl.php:299
|
2432 |
#, fuzzy
|
2433 |
msgid "Header name/label"
|
2434 |
msgstr "إسم رأس/التسمية"
|
2435 |
|
2436 |
+
#: templates/admin/csv-import.tpl.php:302
|
2437 |
#, fuzzy
|
2438 |
msgid "Required?"
|
2439 |
msgstr "مطلوب؟"
|
2440 |
|
2441 |
+
#: templates/admin/csv-import.tpl.php:303
|
2442 |
#, fuzzy
|
2443 |
msgid "Multivalued?"
|
2444 |
msgstr "متعدد القيم؟"
|
2445 |
|
2446 |
+
#: templates/admin/csv-import.tpl.php:335
|
2447 |
#, fuzzy
|
2448 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2449 |
msgstr "لائحة مفصولة بفاصلة منقوطة لصور الإعلانات (من ملف مضغوط)"
|
2450 |
|
2451 |
+
#: templates/admin/csv-import.tpl.php:342
|
2452 |
#, fuzzy
|
2453 |
msgid "Listing author's username"
|
2454 |
msgstr "إسم مستخدم كاتب الإعلان"
|
2455 |
|
2456 |
#: templates/admin/debug-info.tpl.php:5
|
2457 |
#, fuzzy
|
2458 |
+
msgid "Debug"
|
2459 |
+
msgstr "تصحيح الأخطاء"
|
2460 |
+
|
2461 |
+
#: templates/admin/debug-info.tpl.php:8
|
2462 |
+
#, fuzzy
|
2463 |
+
msgid "Download Debug Information"
|
2464 |
+
msgstr "تحميل معلومات التصحيح"
|
2465 |
+
|
2466 |
+
#: templates/admin/debug-info.tpl.php:18
|
2467 |
+
#, fuzzy
|
2468 |
msgid ""
|
2469 |
"The following information can help our team debug possible problems with "
|
2470 |
"your setup."
|
2472 |
"المعلومات التالية يمكن أن تساعد مطورين \"دليل الأعمال\" لتصحيح المشاكل "
|
2473 |
"المحتملة مع الإعدادات الخاص بك."
|
2474 |
|
|
|
|
|
|
|
|
|
|
|
2475 |
#: templates/admin/fees-add-fee.tpl.php:4 templates/admin/fees-form.tpl.php:245
|
2476 |
#, fuzzy
|
2477 |
msgid "Add Plan"
|
2553 |
msgid "Save Changes"
|
2554 |
msgstr "حفظ التعديلات"
|
2555 |
|
2556 |
+
#: templates/admin/fees-index.tpl.php:7
|
2557 |
#, fuzzy
|
2558 |
msgid "Add New Plan"
|
2559 |
msgstr "إضافة إعلان جديد"
|
2560 |
|
2561 |
+
#: templates/admin/fees-index.tpl.php:27
|
2562 |
#, fuzzy
|
2563 |
msgid "↑ Ascending"
|
2564 |
msgstr "↑ تصاعدي"
|
2565 |
|
2566 |
+
#: templates/admin/fees-index.tpl.php:28
|
2567 |
#, fuzzy
|
2568 |
msgid "↓ Descending"
|
2569 |
msgstr "↓ تنازلي"
|
2570 |
|
2571 |
+
#: templates/admin/fees-index.tpl.php:36
|
2572 |
msgid "Save front-end order"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: templates/admin/fees-index.tpl.php:40
|
2576 |
#, fuzzy
|
2577 |
msgid "Drag and drop to re-order plans."
|
2578 |
msgstr "سحب وإسقاط لإعادة ترتيب الرسوم."
|
2579 |
|
2580 |
+
#: templates/admin/fees-index.tpl.php:56
|
2581 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: templates/admin/fees-index.tpl.php:58
|
2585 |
msgid "Add a payment gateway to increase conversion rates"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
#. translators: %s: payment gateway name */
|
2589 |
+
#: templates/admin/fees-index.tpl.php:75
|
|
|
|
|
|
|
|
|
2590 |
#, fuzzy
|
2591 |
+
msgid "Add %s as a payment option."
|
2592 |
+
msgstr "[%s] تنبيه الإعلان الجديد"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2593 |
|
2594 |
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2595 |
#, fuzzy
|
2621 |
msgid "Manage Theme Tags"
|
2622 |
msgstr "إدارة وسوم القالب"
|
2623 |
|
2624 |
+
#: templates/admin/form-fields.tpl.php:27
|
2625 |
+
msgid ""
|
2626 |
+
"Create new fields, edit existing fields, change the field order and "
|
2627 |
+
"visibility."
|
2628 |
+
msgstr ""
|
2629 |
+
|
2630 |
+
#. translators: %1$s open link, %2$s close link
|
2631 |
+
#: templates/admin/form-fields.tpl.php:35
|
2632 |
+
#, fuzzy
|
2633 |
+
msgid "Please see the %1$sForm Fields documentation%2$s for more details."
|
2634 |
+
msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
|
2635 |
+
|
2636 |
+
#: templates/admin/home.tpl.php:55
|
2637 |
+
#, fuzzy
|
2638 |
+
msgid "Manage Options"
|
2639 |
+
msgstr "إدارة الخيارات"
|
2640 |
+
|
2641 |
+
#: templates/admin/home.tpl.php:74
|
2642 |
+
msgid "Manage Paid Listings"
|
2643 |
+
msgstr "إدارة الإعلانات المدفوعة"
|
2644 |
+
|
2645 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2646 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2647 |
#: templates/login.tpl.php:71
|
2861 |
msgid "Directory Settings"
|
2862 |
msgstr "رابط لطيف لإعلانات الدليل"
|
2863 |
|
|
|
|
|
|
|
|
|
|
|
2864 |
#: templates/admin/settings-reset.tpl.php:4
|
2865 |
#, fuzzy
|
2866 |
msgid "Directory Reset to Default"
|
2882 |
msgid "Your existing listings will NOT be deleted doing this."
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: templates/admin/settings-reset.tpl.php:26
|
2886 |
+
msgid "Reset Defaults"
|
2887 |
+
msgstr "إعادة تعيين الوضع الافتراضي"
|
2888 |
+
|
2889 |
#: templates/admin/sidebar.tpl.php:7
|
2890 |
msgid "Need help?"
|
2891 |
msgstr ""
|
2982 |
msgid "Return to Dashboard."
|
2983 |
msgstr "الرجوع إلى لوحة تحكم ووردبرس"
|
2984 |
|
2985 |
+
#: templates/admin/uninstall-confirm.tpl.php:25
|
2986 |
+
msgid "Remove ALL module data (regions, maps, ratings, featured levels)"
|
2987 |
+
msgstr ""
|
2988 |
+
|
2989 |
+
#. translators: %1$s: open link html, %2$s: close link html
|
2990 |
#: templates/admin/uninstall-confirm.tpl.php:43
|
2991 |
+
msgid "Go to %1$sPlugins > Installed Plugins%2$s"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
#. translators: %1$s: open italic html, %2$s: close italic html
|
3011 |
|
3012 |
#. translators: %1$s: open link html, %2$s: close link html
|
3013 |
#: templates/admin/uninstall-confirm.tpl.php:65
|
3014 |
+
msgid "You can reinstall the plugin again under %1$sPlugins > Add New%2$s"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
#: templates/admin/uninstall-confirm.tpl.php:74
|
3459 |
msgid "Find A Listing"
|
3460 |
msgstr "العثور على إعلان"
|
3461 |
|
3462 |
+
#: includes/admin/class-admin.php:200
|
3463 |
msgctxt "drip pointer"
|
3464 |
msgid "Email Address:"
|
3465 |
msgstr "عنوان البريد الإلكتروني:"
|
3466 |
|
3467 |
+
#: includes/admin/class-admin.php:232
|
3468 |
msgctxt "admin"
|
3469 |
msgid "Business Directory"
|
3470 |
msgstr "دليل الأعمال"
|
3471 |
|
3472 |
+
#: includes/admin/class-admin.php:504
|
3473 |
msgctxt "admin"
|
3474 |
msgid "Untitled Menu"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: includes/admin/class-admin.php:848
|
3478 |
msgctxt "admin"
|
3479 |
msgid "Dismiss this notice."
|
3480 |
msgstr "إخفاء هذا التنبيه."
|
3481 |
|
3482 |
+
#: includes/admin/class-admin.php:953 includes/admin/class-admin.php:963
|
3483 |
#, fuzzy
|
3484 |
msgctxt "admin"
|
3485 |
msgid "The listing has been updated."
|
3491 |
msgstr[4] "تمت ترقية الإعلانات."
|
3492 |
msgstr[5] "تمت ترقية الإعلانات."
|
3493 |
|
3494 |
+
#: includes/admin/class-admin.php:989
|
3495 |
#, fuzzy
|
3496 |
msgctxt "admin"
|
3497 |
msgid "The plan was successfully assigned."
|
3498 |
msgstr "تم تعيين الرسوم بنجاح."
|
3499 |
|
3500 |
+
#: includes/admin/class-admin.php:999
|
3501 |
msgctxt "admin"
|
3502 |
msgid "Listing was renewed."
|
3503 |
msgid_plural "Listings were renewed."
|
3508 |
msgstr[4] "تم تجديد الإعلانات."
|
3509 |
msgstr[5] "تم تجديد الإعلانات."
|
3510 |
|
3511 |
+
#: includes/admin/class-admin.php:1011
|
3512 |
msgctxt "admin"
|
3513 |
msgid "Renewal email sent."
|
3514 |
msgstr "تم إرسال بريد التجديد."
|
3515 |
|
3516 |
+
#: includes/admin/class-admin.php:1024
|
3517 |
#, fuzzy
|
3518 |
msgctxt "admin"
|
3519 |
msgid "Listing report deleted."
|
3525 |
msgstr[4] "إنتهاء صلاحية الإعلان"
|
3526 |
msgstr[5] "إنتهاء صلاحية الإعلان"
|
3527 |
|
3528 |
+
#: includes/admin/class-admin.php:1073
|
3529 |
#, fuzzy
|
3530 |
msgctxt "admin"
|
3531 |
msgid "Access keys sent."
|
3532 |
msgstr "مفتاح الوصول"
|
3533 |
|
3534 |
+
#: includes/admin/class-admin.php:1075
|
3535 |
msgctxt "admin"
|
3536 |
msgid "The access keys couldn't be sent."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: includes/admin/class-admin.php:1233
|
3540 |
msgctxt "admin"
|
3541 |
msgid ""
|
3542 |
"<b>Business Directory Plugin</b> requires a page with the "
|
3545 |
"<b>إضافة دليل الأعمال</b> تتطلب صفحة فيها الكود القصير "
|
3546 |
"<tt>[businessdirectory]</tt> لكي تعمل بشكل صحيح."
|
3547 |
|
3548 |
+
#: includes/admin/class-admin.php:1235
|
3549 |
msgctxt "admin"
|
3550 |
msgid ""
|
3551 |
"You can create this page by yourself or let Business Directory do this for "
|
3554 |
"يمكنك إنشاء هذه الصفحة بنفسك أو ترك دليل الأعمال القيام بذلك نيابة عنك "
|
3555 |
"تلقائياً."
|
3556 |
|
3557 |
+
#: includes/admin/class-admin.php:1240
|
3558 |
msgctxt "admin"
|
3559 |
msgid "Create required pages for me"
|
3560 |
msgstr "إنشاء الصفحات المطلوب نيابة عني"
|
3561 |
|
3562 |
+
#: includes/admin/class-admin.php:1293
|
3563 |
msgctxt "admin"
|
3564 |
msgid ""
|
3565 |
"<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
|
3619 |
msgid "Create these required fields for me"
|
3620 |
msgstr "إنشاء هذه الحقول المطلوبة نيابة عني"
|
3621 |
|
3622 |
+
#: includes/admin/class-admin.php:327
|
3623 |
#, fuzzy
|
3624 |
msgctxt "admin menu"
|
3625 |
msgid "Payment History"
|
3626 |
msgstr "سجل المدفوعات"
|
3627 |
|
3628 |
+
#: includes/admin/class-admin.php:330
|
3629 |
#, fuzzy
|
3630 |
msgctxt "admin menu"
|
3631 |
msgid "Import & Export"
|
3632 |
msgstr "استيراد CSV"
|
3633 |
|
3634 |
+
#: includes/admin/class-admin.php:333
|
3635 |
msgctxt "admin menu"
|
3636 |
msgid "Debug"
|
3637 |
msgstr "تصحيح الأخطاء"
|
3658 |
msgid "Yes, I'm sure"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: includes/admin/controllers/class-admin-fees.php:46
|
3662 |
+
msgctxt "fees order"
|
3663 |
+
msgid "Label"
|
3664 |
+
msgstr "التسمية"
|
3665 |
|
3666 |
+
#: includes/admin/controllers/class-admin-fees.php:48
|
3667 |
+
msgctxt "fees order"
|
3668 |
+
msgid "Duration"
|
3669 |
+
msgstr "المدة"
|
3670 |
|
3671 |
+
#: includes/admin/controllers/class-admin-fees.php:50
|
3672 |
+
msgctxt "fees order"
|
3673 |
+
msgid "Custom Order"
|
3674 |
+
msgstr "ترتيب مخصص"
|
3675 |
|
3676 |
+
#: includes/admin/controllers/class-admin-fees.php:282
|
3677 |
+
#, fuzzy
|
3678 |
+
msgctxt "fees admin"
|
3679 |
+
msgid "Plan \"%s\" deleted."
|
3680 |
+
msgstr "الرسوم حذفت."
|
|
|
|
|
|
|
3681 |
|
3682 |
+
#: includes/admin/controllers/class-admin-fees.php:294
|
3683 |
+
#, fuzzy
|
3684 |
+
msgctxt "fees admin"
|
3685 |
+
msgid "Plan enabled."
|
3686 |
+
msgstr "رسوم معطلة."
|
3687 |
|
3688 |
+
#: includes/admin/controllers/class-admin-fees.php:294
|
3689 |
+
#, fuzzy
|
3690 |
+
msgctxt "fees admin"
|
3691 |
+
msgid "Plan disabled."
|
3692 |
+
msgstr "رسوم معطلة."
|
|
|
3693 |
|
3694 |
+
#: includes/admin/helpers/tables/class-fees-table.php:20
|
3695 |
+
msgctxt "fees admin"
|
3696 |
+
msgid "fee"
|
3697 |
+
msgstr "الرسم"
|
3698 |
|
3699 |
+
#: includes/admin/helpers/tables/class-fees-table.php:21
|
3700 |
+
msgctxt "fees admin"
|
3701 |
+
msgid "fees"
|
3702 |
+
msgstr "الرسوم"
|
3703 |
|
3704 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3705 |
+
#, fuzzy
|
3706 |
+
msgctxt "fees admin"
|
3707 |
+
msgid "Attributes"
|
3708 |
+
msgstr "سمات الحقل"
|
3709 |
|
3710 |
+
#: includes/admin/helpers/tables/class-fees-table.php:140
|
3711 |
+
msgctxt "fees admin"
|
3712 |
+
msgid "Edit"
|
3713 |
+
msgstr "تحرير"
|
3714 |
|
3715 |
+
#: includes/admin/helpers/tables/class-fees-table.php:213
|
3716 |
+
#, fuzzy
|
3717 |
+
msgctxt "fees admin"
|
3718 |
+
msgid "Variable"
|
3719 |
+
msgstr "تعطيل"
|
3720 |
|
3721 |
+
#: includes/admin/helpers/tables/class-fees-table.php:218
|
3722 |
+
#, fuzzy
|
3723 |
+
msgctxt "fees admin"
|
3724 |
+
msgid "%1$s + %2$s per category"
|
3725 |
+
msgstr "Frais \"%s\" pour catégorie \"%s\""
|
3726 |
|
3727 |
+
#: includes/admin/helpers/tables/class-fees-table.php:237
|
3728 |
+
msgctxt "fees admin"
|
3729 |
+
msgid "Forever"
|
3730 |
+
msgstr "دائما"
|
3731 |
|
3732 |
+
#: includes/admin/helpers/tables/class-fees-table.php:239
|
3733 |
+
msgctxt "fees admin"
|
3734 |
+
msgid "%d day"
|
3735 |
+
msgid_plural "%d days"
|
3736 |
+
msgstr[0] "%d يوم"
|
3737 |
+
msgstr[1] "%d يوم"
|
3738 |
+
msgstr[2] "%d يومين"
|
3739 |
+
msgstr[3] "%d أيام"
|
3740 |
+
msgstr[4] "%d يوم"
|
3741 |
+
msgstr[5] "%d يوم"
|
|
|
3742 |
|
3743 |
+
#: includes/admin/helpers/tables/class-fees-table.php:270
|
3744 |
+
msgctxt "fees admin"
|
3745 |
+
msgid "All categories"
|
3746 |
+
msgstr "جميع التصنيفات"
|
|
|
3747 |
|
3748 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3749 |
+
msgctxt "fees admin"
|
3750 |
+
msgid "Sticky"
|
3751 |
+
msgstr ""
|
3752 |
|
3753 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3754 |
+
#, fuzzy
|
3755 |
+
msgctxt "fees admin"
|
3756 |
+
msgid "Recurring"
|
3757 |
+
msgstr "(متكرر)"
|
3758 |
|
3759 |
+
#: includes/admin/helpers/tables/class-fees-table.php:307
|
3760 |
#, fuzzy
|
3761 |
+
msgctxt "fees admin"
|
3762 |
+
msgid "Private"
|
3763 |
+
msgstr "قم بالتفعيل"
|
3764 |
|
3765 |
+
#: includes/admin/helpers/tables/class-payments-table.php:55
|
3766 |
+
#, fuzzy
|
3767 |
+
msgctxt "fees admin"
|
3768 |
+
msgid "Date"
|
3769 |
+
msgstr "Date"
|
3770 |
|
3771 |
+
#: includes/admin/helpers/tables/class-payments-table.php:56
|
3772 |
+
#, fuzzy
|
3773 |
+
msgctxt "fees admin"
|
3774 |
+
msgid "Payment History"
|
3775 |
+
msgstr "سجل المدفوعات"
|
3776 |
|
3777 |
+
#: includes/admin/helpers/tables/class-payments-table.php:58
|
3778 |
+
msgctxt "fees admin"
|
3779 |
+
msgid "Status"
|
3780 |
+
msgstr "الحالة"
|
3781 |
|
3782 |
+
#: templates/admin/fees-form.tpl.php:138
|
3783 |
+
msgctxt "fees admin"
|
3784 |
+
msgid "Plan Category Policy:"
|
3785 |
+
msgstr ""
|
3786 |
|
3787 |
+
#: templates/admin/fees-form.tpl.php:143
|
3788 |
+
#, fuzzy
|
3789 |
+
msgctxt "fees admin"
|
3790 |
+
msgid "Plan applies to all categories"
|
3791 |
+
msgstr "تجديد قائمة في جميع فئات منتهية الصلاحية"
|
3792 |
|
3793 |
+
#: templates/admin/fees-form.tpl.php:144
|
3794 |
+
msgctxt "fees admin"
|
3795 |
+
msgid "Plan applies to only certain categories"
|
3796 |
+
msgstr ""
|
3797 |
|
3798 |
+
#: templates/admin/fees-form.tpl.php:148
|
3799 |
+
#, fuzzy
|
3800 |
+
msgctxt "fees admin"
|
3801 |
+
msgid "Limit plan to the following categories:"
|
3802 |
+
msgstr "يمكنك استخدام العناصر النائبة التالية:"
|
3803 |
|
3804 |
+
#: templates/admin/fees-form.tpl.php:172
|
3805 |
+
msgctxt "fees admin"
|
3806 |
+
msgid "Click to add categories to the selection."
|
3807 |
+
msgstr ""
|
3808 |
|
3809 |
+
#: templates/admin/fees-form.tpl.php:186
|
3810 |
+
#, fuzzy
|
3811 |
+
msgctxt "fees admin"
|
3812 |
+
msgid "Pricing"
|
3813 |
+
msgstr "السعر"
|
3814 |
|
3815 |
+
#: templates/admin/fees-form.tpl.php:194
|
3816 |
+
msgctxt "fees admin"
|
3817 |
+
msgid "Pricing model"
|
3818 |
+
msgstr ""
|
3819 |
|
3820 |
+
#: templates/admin/fees-form.tpl.php:198
|
3821 |
+
msgctxt "fees admin"
|
3822 |
+
msgid "Flat price"
|
3823 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3824 |
|
3825 |
+
#: templates/admin/fees-form.tpl.php:199
|
3826 |
+
#, fuzzy
|
3827 |
+
msgctxt "fees admin"
|
3828 |
+
msgid "Different price for different categories"
|
3829 |
+
msgstr "ترتيب فرز التصنيفات"
|
3830 |
|
3831 |
+
#: templates/admin/fees-form.tpl.php:200
|
3832 |
+
msgctxt "fees admin"
|
3833 |
+
msgid "Base price plus an extra amount per category"
|
3834 |
+
msgstr ""
|
3835 |
|
3836 |
+
#: templates/admin/fees-form.tpl.php:206
|
3837 |
+
#, fuzzy
|
3838 |
+
msgctxt "fees admin"
|
3839 |
+
msgid "Plan Price"
|
3840 |
+
msgstr "السعر"
|
3841 |
|
3842 |
+
#: templates/admin/fees-form.tpl.php:214
|
3843 |
+
#, fuzzy
|
3844 |
+
msgctxt "fees admin"
|
3845 |
+
msgid "Prices per category"
|
3846 |
+
msgstr "إزالة التصنيف"
|
3847 |
|
3848 |
+
#: templates/admin/fees-form.tpl.php:220
|
3849 |
+
#, fuzzy
|
3850 |
+
msgctxt "fees admin"
|
3851 |
+
msgid "Price"
|
3852 |
+
msgstr "السعر"
|
3853 |
|
3854 |
+
#: templates/admin/fees-form.tpl.php:234
|
3855 |
+
msgctxt "fees admin"
|
3856 |
+
msgid "Extra amount (per category)"
|
3857 |
+
msgstr ""
|
3858 |
|
3859 |
+
#: includes/admin/controllers/class-admin-listings.php:62
|
3860 |
+
msgctxt "admin category filter"
|
3861 |
+
msgid "All categories"
|
3862 |
+
msgstr "جميع التصنيفات"
|
3863 |
|
3864 |
+
#: includes/admin/controllers/class-admin-listings.php:177
|
3865 |
+
#, fuzzy
|
3866 |
+
msgctxt "admin listings"
|
3867 |
+
msgid ""
|
3868 |
+
"This listing doesn't have a plan assigned. This is required in order to "
|
3869 |
+
"determine the features available to this listing, as well as handling "
|
3870 |
+
"renewals."
|
3871 |
msgstr ""
|
3872 |
+
"هذا الإعلان لا يملك أي تصنيف معين. تصنيف واحد على الأقل (والرسوم الخاصة "
|
3873 |
+
"به) مطلوب من أجل تحديد الميزات المتوفرة لهذا الإعلان، زائد التعامل مع تجديد "
|
3874 |
+
"الاشتراك."
|
3875 |
|
3876 |
+
#: includes/admin/controllers/class-admin-listings.php:313
|
3877 |
+
#, fuzzy
|
3878 |
+
msgctxt "admin listings"
|
3879 |
+
msgid "Never"
|
3880 |
+
msgstr "أبداً"
|
3881 |
|
3882 |
+
#: includes/admin/controllers/class-admin-listings.php:343
|
3883 |
#, fuzzy
|
3884 |
+
msgctxt "admin listings"
|
3885 |
+
msgid "Recurring"
|
3886 |
+
msgstr "(متكرر)"
|
3887 |
|
3888 |
+
#: includes/admin/controllers/class-admin-listings.php:347
|
3889 |
+
#, fuzzy
|
3890 |
+
msgctxt "admin listings"
|
3891 |
+
msgid "Free"
|
3892 |
+
msgstr "مجاني"
|
3893 |
|
3894 |
+
#: includes/admin/controllers/class-admin-listings.php:351
|
3895 |
+
#, fuzzy
|
3896 |
+
msgctxt "admin listings"
|
3897 |
+
msgid "Payment Not Found"
|
3898 |
+
msgstr "معلومات الرسوم"
|
3899 |
|
3900 |
+
#: includes/admin/controllers/class-admin-listings.php:355
|
3901 |
+
#, fuzzy
|
3902 |
+
msgctxt "admin listings"
|
3903 |
+
msgid "Payment %s"
|
3904 |
+
msgstr "الدفع #%d"
|
3905 |
|
3906 |
+
#: includes/admin/controllers/class-admin-listings.php:364
|
3907 |
+
msgctxt "admin listings"
|
3908 |
+
msgid "Reported"
|
3909 |
+
msgstr ""
|
3910 |
|
3911 |
+
#: includes/admin/controllers/class-admin-listings.php:702
|
3912 |
+
msgctxt "admin listings"
|
3913 |
+
msgid "Listing's payment history successfully deleted"
|
|
|
|
|
3914 |
msgstr ""
|
|
|
|
|
3915 |
|
3916 |
+
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:29
|
3917 |
+
msgctxt "admin listings"
|
3918 |
+
msgid "Selected Option: "
|
3919 |
+
msgstr ""
|
3920 |
|
3921 |
+
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:33
|
3922 |
+
#, fuzzy
|
3923 |
+
msgctxt "admin listings"
|
3924 |
+
msgid "Aditional Info: "
|
3925 |
+
msgstr "معلومات اضافية"
|
3926 |
|
3927 |
+
#: templates/admin/metaboxes-listing-flagging.tpl.php:8
|
3928 |
#, fuzzy
|
3929 |
+
msgctxt "admin listings"
|
3930 |
+
msgid "This listing has not been reported."
|
3931 |
+
msgstr "تمت ترقية الإعلان."
|
3932 |
+
|
3933 |
+
#: templates/admin/metaboxes-listing-flagging.tpl.php:30
|
3934 |
+
#, fuzzy
|
3935 |
+
msgctxt "admin listings"
|
3936 |
+
msgid "Clear listing reports."
|
3937 |
+
msgstr "الإعلان منتهي التاريخ"
|
3938 |
+
|
3939 |
+
#: includes/admin/controllers/class-admin-listings.php:324
|
3940 |
+
#, fuzzy
|
3941 |
+
msgctxt "listing attribute"
|
3942 |
+
msgid "No Plan"
|
3943 |
+
msgstr "تم الدفع"
|
3944 |
+
|
3945 |
+
#: includes/admin/controllers/class-admin-listings.php:425
|
3946 |
+
msgctxt "listing status"
|
3947 |
+
msgid "Reported"
|
3948 |
msgstr ""
|
|
|
|
|
3949 |
|
3950 |
+
#: includes/models/class-listing.php:970
|
3951 |
+
msgctxt "listing status"
|
3952 |
+
msgid "Unknown"
|
|
|
3953 |
msgstr ""
|
|
|
3954 |
|
3955 |
+
#: includes/models/class-listing.php:971
|
3956 |
+
msgctxt "listing status"
|
3957 |
+
msgid "Legacy"
|
|
|
|
|
3958 |
msgstr ""
|
|
|
|
|
3959 |
|
3960 |
+
#: includes/models/class-listing.php:972
|
3961 |
#, fuzzy
|
3962 |
+
msgctxt "listing status"
|
3963 |
+
msgid "Incomplete"
|
3964 |
+
msgstr "إكتمل"
|
3965 |
|
3966 |
+
#: includes/models/class-listing.php:973
|
3967 |
#, fuzzy
|
3968 |
+
msgctxt "listing status"
|
3969 |
+
msgid "Pending Payment"
|
3970 |
+
msgstr "في انتظار التخلي"
|
3971 |
|
3972 |
+
#: includes/models/class-listing.php:974
|
3973 |
+
#, fuzzy
|
3974 |
+
msgctxt "listing status"
|
3975 |
+
msgid "Complete"
|
3976 |
+
msgstr "إكتمل"
|
3977 |
|
3978 |
+
#: includes/models/class-listing.php:975
|
3979 |
+
#, fuzzy
|
3980 |
+
msgctxt "listing status"
|
3981 |
+
msgid "Pending Upgrade"
|
3982 |
+
msgstr " في انتظار الترقية"
|
3983 |
|
3984 |
+
#: includes/models/class-listing.php:976
|
3985 |
+
#, fuzzy
|
3986 |
+
msgctxt "listing status"
|
3987 |
+
msgid "Expired"
|
3988 |
+
msgstr "منتهي الصلاحية"
|
3989 |
|
3990 |
+
#: includes/models/class-listing.php:977
|
3991 |
#, fuzzy
|
3992 |
+
msgctxt "listing status"
|
3993 |
+
msgid "Pending Renewal"
|
3994 |
+
msgstr "مفعل + ريثما يتم التجديد"
|
3995 |
|
3996 |
+
#: includes/models/class-listing.php:978
|
3997 |
#, fuzzy
|
3998 |
+
msgctxt "listing status"
|
3999 |
+
msgid "Abandoned"
|
4000 |
+
msgstr "متخلى عنه"
|
4001 |
|
4002 |
+
#: includes/admin/controllers/class-admin-listings.php:493
|
4003 |
#, fuzzy
|
4004 |
+
msgctxt "admin actions"
|
4005 |
+
msgid "View Payments"
|
4006 |
+
msgstr "الدفع"
|
4007 |
|
4008 |
+
#: includes/admin/controllers/class-admin-listings.php:498
|
4009 |
+
#, fuzzy
|
4010 |
+
msgctxt "admin actions"
|
4011 |
+
msgid "View Payment"
|
4012 |
+
msgstr "الدفع"
|
4013 |
|
4014 |
+
#: includes/admin/controllers/class-admin-listings.php:635
|
4015 |
+
#, fuzzy
|
4016 |
+
msgctxt "admin actions"
|
4017 |
+
msgid "Publish listings"
|
4018 |
+
msgstr "نشر إعلان"
|
4019 |
|
4020 |
+
#: includes/admin/controllers/class-admin-listings.php:636
|
4021 |
#, fuzzy
|
4022 |
+
msgctxt "admin actions"
|
4023 |
+
msgid "Mark as \"Pending Review\""
|
4024 |
+
msgstr " في الانتظار"
|
4025 |
|
4026 |
+
#: includes/admin/controllers/class-admin-listings.php:637
|
4027 |
+
msgctxt "admin actions"
|
4028 |
+
msgid "Hide from directory (mark as \"Draft\")"
|
4029 |
+
msgstr ""
|
4030 |
|
4031 |
+
#: includes/admin/controllers/class-admin-listings.php:639
|
4032 |
#, fuzzy
|
4033 |
+
msgctxt "admin actions"
|
4034 |
+
msgid "Renew listings"
|
4035 |
+
msgstr "تجديد الإعلان"
|
4036 |
|
4037 |
+
#: includes/admin/controllers/class-admin-listings.php:640
|
4038 |
#, fuzzy
|
4039 |
+
msgctxt "admin actions"
|
4040 |
+
msgid "Set listings as \"Expired\""
|
4041 |
+
msgstr "الإعلان منتهي التاريخ"
|
|
|
|
|
|
|
|
|
|
|
4042 |
|
4043 |
+
#: includes/admin/controllers/class-admin-listings.php:647
|
4044 |
+
#, fuzzy
|
4045 |
+
msgctxt "admin actions"
|
4046 |
+
msgid "Send access keys"
|
4047 |
+
msgstr "مفتاح الوصول"
|
|
|
|
|
|
|
|
|
|
|
4048 |
|
4049 |
+
#: includes/admin/controllers/class-admin-payments.php:18
|
4050 |
+
#, fuzzy
|
4051 |
+
msgctxt "payments admin"
|
4052 |
+
msgid "Payment deleted."
|
4053 |
+
msgstr "المدفوعات ذات الصلة"
|
4054 |
|
4055 |
+
#: includes/admin/controllers/class-admin-payments.php:36
|
4056 |
+
msgctxt "payments admin"
|
4057 |
+
msgid ""
|
4058 |
+
"You're seeing payments related to listing: \"%1$s\" (ID #%2$d). <a>Click "
|
4059 |
+
"here</a> to see all payments."
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: includes/admin/controllers/class-admin-payments.php:55
|
4063 |
#, fuzzy
|
4064 |
+
msgctxt "payments admin"
|
4065 |
+
msgid "Payment details updated."
|
4066 |
+
msgstr "تفاصيل الدفع"
|
4067 |
|
4068 |
+
#: includes/admin/helpers/tables/class-payments-table.php:12
|
4069 |
#, fuzzy
|
4070 |
+
msgctxt "payments admin"
|
4071 |
+
msgid "payment"
|
4072 |
+
msgstr "الدفع"
|
4073 |
|
4074 |
+
#: includes/admin/helpers/tables/class-payments-table.php:13
|
4075 |
#, fuzzy
|
4076 |
+
msgctxt "payments admin"
|
4077 |
+
msgid "payments"
|
4078 |
+
msgstr "الدفع"
|
4079 |
|
4080 |
+
#: includes/admin/helpers/tables/class-payments-table.php:19
|
4081 |
#, fuzzy
|
4082 |
+
msgctxt "payments admin"
|
4083 |
+
msgid "No payments found."
|
4084 |
+
msgstr "لم يتم العثور على أي إعلانات."
|
4085 |
+
|
4086 |
+
#: includes/admin/helpers/tables/class-payments-table.php:32
|
4087 |
+
#, fuzzy
|
4088 |
+
msgctxt "payments admin"
|
4089 |
+
msgid "All"
|
4090 |
+
msgstr "الكل"
|
4091 |
+
|
4092 |
+
#: includes/admin/helpers/tables/class-payments-table.php:124
|
4093 |
+
#, fuzzy
|
4094 |
+
msgctxt "payments admin"
|
4095 |
+
msgid "View Payment History"
|
4096 |
msgstr "سجل المدفوعات"
|
4097 |
|
4098 |
+
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4099 |
+
msgctxt "form-fields admin"
|
4100 |
+
msgid "Form fields updated."
|
4101 |
+
msgstr "تم تحديث الاستمارة."
|
4102 |
|
4103 |
+
#: includes/admin/controllers/class-form-fields-admin.php:208
|
4104 |
+
msgctxt "form-fields admin"
|
4105 |
+
msgid ""
|
4106 |
+
"<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
|
4107 |
+
"\" setting is disabled, display settings below will not be honored and this "
|
4108 |
+
"field will not be displayed on the frontend. If you want e-mail addresses to "
|
4109 |
+
"show on the frontend, you can <a>enable public display of e-mails</a>."
|
4110 |
msgstr ""
|
4111 |
+
"<b>هام</b>: نظرا لأن إعدادات \"<a>عرض حقول عنوان البريد الإلكتروني للعموم؟</"
|
4112 |
+
"a>\" معطلة، عرض الإعدادات أدناه لن يتم إظهاره ولن يتم عرض هذا الحقل على "
|
4113 |
+
"الواجهة. إذا كنت تريد إظهار عناوين البريد الإلكتروني في الواجهة، يمكنك "
|
4114 |
+
"<a>تمكين عرض البريد الإلكتروني للعموم</a>."
|
4115 |
|
4116 |
+
#: includes/admin/controllers/class-form-fields-admin.php:299
|
4117 |
+
msgctxt "form-fields admin"
|
4118 |
+
msgid "Field deleted."
|
4119 |
+
msgstr "تم حذف الحقل."
|
|
|
4120 |
|
4121 |
+
#: includes/admin/controllers/class-form-fields-admin.php:329
|
4122 |
+
msgctxt "form-fields admin"
|
4123 |
+
msgid "Required fields created successfully."
|
4124 |
+
msgstr "الحقول المطلوبة أنشئت بنجاح."
|
4125 |
|
4126 |
+
#: includes/admin/controllers/class-form-fields-admin.php:381
|
4127 |
+
msgctxt "form-fields admin"
|
4128 |
+
msgid "Tags updated."
|
4129 |
+
msgstr "تم تحديث الوسوم"
|
|
|
4130 |
|
4131 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:20
|
4132 |
+
msgctxt "form-fields admin"
|
4133 |
+
msgid "form field"
|
4134 |
+
msgstr "حقل الاستمارة"
|
4135 |
|
4136 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:21
|
4137 |
+
msgctxt "form-fields admin"
|
4138 |
+
msgid "form fields"
|
4139 |
+
msgstr "حقول الاستمارة"
|
|
|
4140 |
|
4141 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:29
|
4142 |
+
msgctxt "form-fields admin"
|
4143 |
+
msgid "Order"
|
4144 |
+
msgstr "ترتيب"
|
4145 |
|
4146 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:30
|
4147 |
+
msgctxt "form-fields admin"
|
4148 |
+
msgid "Label / Association"
|
4149 |
+
msgstr "تسمية/رابطة"
|
4150 |
|
4151 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:32
|
4152 |
+
msgctxt "form-fields admin"
|
4153 |
+
msgid "Validator"
|
4154 |
+
msgstr "مدقق"
|
|
|
4155 |
|
4156 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:33
|
4157 |
+
msgctxt "form-fields admin"
|
4158 |
+
msgid "Field Attributes"
|
4159 |
+
msgstr "سمات الحقل"
|
4160 |
|
4161 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:135
|
4162 |
#, fuzzy
|
4163 |
+
msgctxt "form-fields admin"
|
4164 |
+
msgid "Shortname"
|
4165 |
+
msgstr "إسم الكاتب"
|
4166 |
|
4167 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:158
|
4168 |
#, fuzzy
|
4169 |
+
msgctxt "form-fields admin"
|
4170 |
+
msgid "Private"
|
4171 |
+
msgstr "قم بالتفعيل"
|
4172 |
|
4173 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:165
|
4174 |
+
msgctxt "form-fields admin"
|
4175 |
+
msgid "This field value is shown in the excerpt view of a listing."
|
4176 |
+
msgstr "قيمة هذا الحقل ظاهرة في عرض المقتطفات للإعلان."
|
|
|
4177 |
|
4178 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:166
|
4179 |
+
msgctxt "form-fields admin"
|
4180 |
+
msgid "In Excerpt"
|
4181 |
+
msgstr "في مقتطف"
|
4182 |
|
4183 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:173
|
4184 |
+
msgctxt "form-fields admin"
|
4185 |
+
msgid "This field value is shown in the single view of a listing."
|
4186 |
+
msgstr "قيمة هذا الحقل ظاهرة في العرض المفرد للإعلان."
|
4187 |
|
4188 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:174
|
4189 |
+
msgctxt "form-fields admin"
|
4190 |
+
msgid "In Listing"
|
4191 |
+
msgstr "في الإعلان"
|
4192 |
+
|
4193 |
+
#: includes/fields/class-fieldtypes-checkbox.php:92
|
4194 |
#, fuzzy
|
4195 |
+
msgctxt "form-fields admin"
|
4196 |
+
msgid "Select All"
|
4197 |
+
msgstr "قائمة منسدلة"
|
4198 |
+
|
4199 |
+
#: includes/fields/class-fieldtypes-checkbox.php:110
|
4200 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:90
|
4201 |
+
msgctxt "form-fields admin"
|
4202 |
+
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4203 |
+
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
4204 |
+
|
4205 |
+
#: includes/fields/class-fieldtypes-checkbox.php:122
|
4206 |
+
msgctxt "form-fields admin"
|
4207 |
+
msgid "Include \"Select all\"?"
|
4208 |
msgstr ""
|
|
|
|
|
|
|
4209 |
|
4210 |
+
#: includes/fields/class-fieldtypes-checkbox.php:126
|
4211 |
+
msgctxt "form-fields admin"
|
4212 |
+
msgid "Display \"Select all\" option among options above."
|
4213 |
+
msgstr ""
|
|
|
4214 |
|
4215 |
+
#: includes/fields/class-fieldtypes-checkbox.php:142
|
4216 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:117
|
4217 |
+
msgctxt "form-fields admin"
|
4218 |
+
msgid "Field list of options is required."
|
4219 |
+
msgstr "قائمة خيارات الحقل مطلوبة."
|
4220 |
|
4221 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
4222 |
#, fuzzy
|
4223 |
+
msgctxt "form-fields admin"
|
4224 |
+
msgid "Field Caption required?"
|
4225 |
+
msgstr "تسمية الحقل مطلوب."
|
4226 |
|
4227 |
+
#: includes/fields/class-fieldtypes-textarea.php:193
|
4228 |
+
msgctxt "form-fields admin"
|
4229 |
+
msgid "Allow HTML input for this field?"
|
4230 |
+
msgstr "السماح بإدخال HTML لهذا الحقل؟"
|
|
|
4231 |
|
4232 |
+
#: includes/fields/class-fieldtypes-textarea.php:196
|
4233 |
+
msgctxt "form-fields admin"
|
4234 |
+
msgid "Allow IFRAME tags in content?"
|
4235 |
+
msgstr "السماح لوسوم IFRAME في المحتوى؟"
|
|
|
4236 |
|
4237 |
+
#: includes/fields/class-fieldtypes-textarea.php:206
|
4238 |
+
msgctxt "form-fields admin"
|
4239 |
+
msgid "Allow WordPress shortcodes in this field?"
|
4240 |
+
msgstr "السماح بالأكواد القصيرة لووردبريس في هذا الحقل؟"
|
4241 |
|
4242 |
+
#: includes/fields/class-fieldtypes-textarea.php:211
|
4243 |
+
msgctxt "form-fields admin"
|
4244 |
+
msgid "Display a WYSIWYG editor on the frontend?"
|
4245 |
+
msgstr "عرض محرر WYSIWYG في واجهة الموقع؟"
|
4246 |
|
4247 |
+
#: includes/fields/class-fieldtypes-textarea.php:218
|
4248 |
+
msgctxt "form-fields admin"
|
4249 |
+
msgid ""
|
4250 |
+
"<b>Advanced users only!</b> Unless you've been told to change this, don't "
|
4251 |
+
"switch it unless you know what you're doing."
|
4252 |
msgstr ""
|
4253 |
+
"<b>للأعضاء المتقدمين فقط!</b> إلا إذا كنت قيل لك بتغيير هذا، لا تبدل إلا إذا "
|
4254 |
+
"كنت تعرف ما تفعله."
|
4255 |
|
4256 |
+
#: includes/fields/class-fieldtypes-textarea.php:219
|
4257 |
+
msgctxt "form-fields admin"
|
4258 |
+
msgid "Apply \"the_content\" filter before displaying this field?"
|
4259 |
+
msgstr "تطبيق عامل تصفية \"the_content\" قبل عرض هذا الحقل؟"
|
|
|
4260 |
|
4261 |
+
#: includes/fields/class-fieldtypes-textarea.php:222
|
4262 |
+
msgctxt "form-fields admin"
|
4263 |
+
msgid "Use shortened version of Description field as excerpt"
|
4264 |
+
msgstr ""
|
|
|
4265 |
|
4266 |
+
#: includes/fields/class-fieldtypes-textarea.php:223
|
4267 |
+
msgctxt "form-fields admin"
|
4268 |
+
msgid ""
|
4269 |
+
"Enable always (override the Short Description given with a shortened Long "
|
4270 |
+
"Description)"
|
4271 |
+
msgstr ""
|
4272 |
|
4273 |
+
#: includes/fields/class-fieldtypes-textarea.php:224
|
4274 |
+
msgctxt "form-fields admin"
|
4275 |
+
msgid ""
|
4276 |
+
"Enable conditionally (override ONLY when Short Description is empty with a "
|
4277 |
+
"shortened Long Description)"
|
4278 |
+
msgstr ""
|
4279 |
|
4280 |
+
#: includes/fields/class-fieldtypes-textarea.php:225
|
4281 |
+
msgctxt "form-fields admin"
|
4282 |
+
msgid "Disable (use the Short Description all the time, empty or not)"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: includes/fields/class-fieldtypes-textarea.php:227
|
4286 |
+
msgctxt "form-fields admin"
|
4287 |
+
msgid ""
|
4288 |
+
"Truncates the description field to the value set here. To display all of the "
|
4289 |
+
"description, set to 0."
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: includes/fields/class-fieldtypes-textarea.php:228
|
4293 |
+
msgctxt "form-fields admin"
|
4294 |
+
msgid ""
|
4295 |
+
"Number of Characters from Short Description/Excerpt to Display in List View "
|
4296 |
+
"(only)"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
+
#: includes/fields/class-fieldtypes-textarea.php:233
|
4300 |
+
msgctxt "form-fields admin"
|
4301 |
+
msgid "Automatically generate excerpt from content field?"
|
4302 |
+
msgstr "تلقائياً إنشاء مقتطفات من حقل المحتوى؟"
|
|
|
4303 |
|
4304 |
+
#: includes/fields/class-fieldtypes-twitter.php:83
|
4305 |
#, fuzzy
|
4306 |
+
msgctxt "form-fields admin"
|
4307 |
+
msgid "Show followers count?"
|
4308 |
+
msgstr "إظهار عدد إعلانات التصنيف؟"
|
4309 |
|
4310 |
+
#: templates/admin/form-fields-addoredit.tpl.php:29
|
4311 |
+
msgctxt "form-fields admin"
|
4312 |
+
msgid "Field Association"
|
4313 |
+
msgstr "رابطة الحقل"
|
|
|
4314 |
|
4315 |
+
#: templates/admin/form-fields-addoredit.tpl.php:29
|
4316 |
+
#: templates/admin/form-fields-addoredit.tpl.php:54
|
4317 |
+
#: templates/admin/form-fields-addoredit.tpl.php:77
|
4318 |
+
msgctxt "form-fields admin"
|
4319 |
+
msgid "required"
|
4320 |
+
msgstr "مطلوب"
|
4321 |
|
4322 |
+
#: templates/admin/form-fields-addoredit.tpl.php:54
|
4323 |
+
msgctxt "form-fields admin"
|
4324 |
+
msgid "Field Type"
|
4325 |
+
msgstr "نوع الحقل"
|
|
|
4326 |
|
4327 |
+
#: templates/admin/form-fields-addoredit.tpl.php:77
|
4328 |
+
msgctxt "form-fields admin"
|
4329 |
+
msgid "Field Label"
|
4330 |
+
msgstr "تسمية الحقل"
|
|
|
4331 |
|
4332 |
+
#: templates/admin/form-fields-addoredit.tpl.php:87
|
4333 |
+
msgctxt "form-fields admin"
|
4334 |
+
msgid "Field description"
|
4335 |
+
msgstr "وصف الحقل"
|
|
|
4336 |
|
4337 |
+
#: templates/admin/form-fields-addoredit.tpl.php:87
|
4338 |
+
msgctxt "form-fields admin"
|
4339 |
+
msgid "optional"
|
4340 |
+
msgstr "إختياري"
|
|
|
4341 |
|
4342 |
+
#: templates/admin/form-fields-addoredit.tpl.php:104
|
4343 |
+
msgctxt "form-fields admin"
|
4344 |
+
msgid "Field-specific settings"
|
4345 |
+
msgstr "إعدادات حقل خاص"
|
|
|
4346 |
|
4347 |
+
#: templates/admin/form-fields-addoredit.tpl.php:113
|
4348 |
+
msgctxt "form-fields admin"
|
4349 |
+
msgid "Field validation options"
|
4350 |
+
msgstr "خيارات التحقق من صحة الحقل"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4351 |
|
4352 |
+
#: templates/admin/form-fields-addoredit.tpl.php:117
|
4353 |
+
msgctxt "form-fields admin"
|
4354 |
+
msgid "Field Validator"
|
4355 |
+
msgstr "مصادقة الحقول"
|
4356 |
|
4357 |
+
#: templates/admin/form-fields-addoredit.tpl.php:121
|
4358 |
+
msgctxt "form-fields admin"
|
4359 |
+
msgid "No validation"
|
4360 |
+
msgstr "لا يوجد تحقق من الصحة"
|
|
|
4361 |
|
4362 |
+
#: templates/admin/form-fields-addoredit.tpl.php:143
|
4363 |
+
msgctxt "form-fields admin"
|
4364 |
+
msgid "Is field required?"
|
4365 |
+
msgstr "هل هذا الحقل مطلوب؟"
|
|
|
4366 |
|
4367 |
+
#: templates/admin/form-fields-addoredit.tpl.php:149
|
4368 |
+
msgctxt "form-fields admin"
|
4369 |
+
msgid "This field is required."
|
4370 |
+
msgstr "هذا الحقل مطلوب."
|
|
|
4371 |
|
4372 |
+
#: templates/admin/form-fields-addoredit.tpl.php:157
|
4373 |
+
msgctxt "form-fields admin"
|
4374 |
+
msgid "Field display options"
|
4375 |
+
msgstr "خيارات عرض الحقل"
|
|
|
4376 |
|
4377 |
+
#: templates/admin/form-fields-addoredit.tpl.php:161
|
4378 |
+
msgctxt "form-fields admin"
|
4379 |
+
msgid "Field Category Policy:"
|
|
|
|
|
4380 |
msgstr ""
|
4381 |
|
4382 |
+
#: templates/admin/form-fields-addoredit.tpl.php:166
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4383 |
#, fuzzy
|
4384 |
+
msgctxt "form-fields admin"
|
4385 |
+
msgid "Field applies to all categories"
|
4386 |
+
msgstr "تجديد قائمة في جميع فئات منتهية الصلاحية"
|
4387 |
|
4388 |
+
#: templates/admin/form-fields-addoredit.tpl.php:167
|
4389 |
#, fuzzy
|
4390 |
+
msgctxt "form-fields admin"
|
4391 |
+
msgid "Field applies to only certain categories"
|
4392 |
+
msgstr "تجديد قائمة في جميع فئات منتهية الصلاحية"
|
4393 |
|
4394 |
+
#: templates/admin/form-fields-addoredit.tpl.php:171
|
4395 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
4396 |
msgctxt "form-fields admin"
|
4397 |
+
msgid "Limit field to the following categories:"
|
4398 |
+
msgstr "يمكنك استخدام العناصر النائبة التالية:"
|
4399 |
|
4400 |
+
#: templates/admin/form-fields-addoredit.tpl.php:195
|
4401 |
msgctxt "form-fields admin"
|
4402 |
+
msgid "Click to add categories to the selection."
|
|
|
|
|
|
|
|
|
4403 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4404 |
|
4405 |
+
#: templates/admin/form-fields-addoredit.tpl.php:208
|
4406 |
msgctxt "form-fields admin"
|
4407 |
+
msgid "Show this field to admin users only?"
|
4408 |
+
msgstr ""
|
4409 |
|
4410 |
+
#: templates/admin/form-fields-addoredit.tpl.php:214
|
4411 |
+
#, fuzzy
|
4412 |
msgctxt "form-fields admin"
|
4413 |
+
msgid "Display this field to admin users only in the edit listing view."
|
4414 |
+
msgstr "عرض هذه القيمة في مشاهدة الإعلان."
|
4415 |
|
4416 |
+
#: templates/admin/form-fields-addoredit.tpl.php:220
|
4417 |
msgctxt "form-fields admin"
|
4418 |
+
msgid "Show this value in excerpt view?"
|
4419 |
+
msgstr "إظهار هذه القيمة في مشاهدة المقتطفات؟"
|
4420 |
|
4421 |
+
#: templates/admin/form-fields-addoredit.tpl.php:226
|
4422 |
msgctxt "form-fields admin"
|
4423 |
+
msgid "Display this value in post excerpt view."
|
4424 |
+
msgstr "عرض هذه القيمة في مشاهدة مقتطفات المقالة."
|
4425 |
|
4426 |
+
#: templates/admin/form-fields-addoredit.tpl.php:232
|
4427 |
msgctxt "form-fields admin"
|
4428 |
+
msgid "Show this value in listing view?"
|
4429 |
+
msgstr "إظهار هذه القيمة في مشاهدة الإعلان؟"
|
4430 |
|
4431 |
+
#: templates/admin/form-fields-addoredit.tpl.php:238
|
4432 |
msgctxt "form-fields admin"
|
4433 |
+
msgid "Display this value in the listing view."
|
4434 |
+
msgstr "عرض هذه القيمة في مشاهدة الإعلان."
|
4435 |
|
4436 |
+
#: templates/admin/form-fields-addoredit.tpl.php:244
|
4437 |
msgctxt "form-fields admin"
|
4438 |
+
msgid "Include this field in the search form?"
|
4439 |
+
msgstr "تضمين هذا الحقل في نموذج البحث؟"
|
4440 |
|
4441 |
+
#: templates/admin/form-fields-addoredit.tpl.php:250
|
4442 |
msgctxt "form-fields admin"
|
4443 |
+
msgid "Include this field in the search form."
|
4444 |
+
msgstr "تضمين هذا الحقل في نموذج البحث."
|
4445 |
|
4446 |
+
#: templates/admin/form-fields-addoredit.tpl.php:256
|
4447 |
#, fuzzy
|
4448 |
msgctxt "form-fields admin"
|
4449 |
+
msgid "Is this field required for searching?"
|
4450 |
+
msgstr "هل هذا الحقل مطلوب؟"
|
4451 |
|
4452 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
4453 |
msgctxt "form-fields admin"
|
4454 |
+
msgid "Hide this field's label?"
|
4455 |
+
msgstr "إخفاء تسمية هذا الحقل؟"
|
4456 |
|
4457 |
+
#: templates/admin/form-fields-addoredit.tpl.php:280
|
4458 |
msgctxt "form-fields admin"
|
4459 |
+
msgid "Hide this field's label when displaying it."
|
4460 |
+
msgstr "إخفاء تسمية هذا الحقل عند عرضه."
|
4461 |
|
4462 |
+
#: templates/admin/form-fields-addoredit.tpl.php:288
|
4463 |
#, fuzzy
|
4464 |
msgctxt "form-fields admin"
|
4465 |
+
msgid "Field privacy options"
|
4466 |
+
msgstr "خيارات عرض الحقل"
|
|
|
|
|
|
|
|
|
|
|
4467 |
|
4468 |
+
#: templates/admin/form-fields-addoredit.tpl.php:292
|
4469 |
msgctxt "form-fields admin"
|
4470 |
+
msgid "This field contains sensitive or private information?"
|
4471 |
+
msgstr ""
|
4472 |
|
4473 |
+
#: templates/admin/form-fields-addoredit.tpl.php:300
|
4474 |
msgctxt "form-fields admin"
|
4475 |
+
msgid "Add this field when exporting or deleting user's personal data."
|
4476 |
+
msgstr ""
|
4477 |
|
4478 |
+
#: templates/admin/form-fields-addoredit.tpl.php:309
|
4479 |
msgctxt "form-fields admin"
|
4480 |
+
msgid "Update Field"
|
4481 |
+
msgstr "تحديث الحقل"
|
4482 |
|
4483 |
+
#: templates/admin/form-fields-addoredit.tpl.php:311
|
|
|
4484 |
msgctxt "form-fields admin"
|
4485 |
+
msgid "Add Field"
|
4486 |
+
msgstr "إضافة حقل"
|
4487 |
|
4488 |
+
#: templates/admin/form-fields-tags.tpl.php:5
|
|
|
4489 |
msgctxt "form-fields admin"
|
4490 |
+
msgid "-- None --"
|
4491 |
+
msgstr "-- إختر --"
|
4492 |
|
4493 |
+
#: templates/admin/form-fields-tags.tpl.php:14
|
4494 |
msgctxt "form-fields admin"
|
4495 |
+
msgid "Theme Tags"
|
4496 |
+
msgstr "وسوم القالب"
|
4497 |
|
4498 |
+
#: templates/admin/form-fields-tags.tpl.php:19
|
4499 |
msgctxt "form-fields admin"
|
4500 |
+
msgid ""
|
4501 |
+
"Before you create fields, make sure you've mapped all of your EXISTING ones "
|
4502 |
+
"first, otherwise you'll appear to be \"missing data\" on your listings."
|
4503 |
msgstr ""
|
4504 |
+
"قبل إنشاء الحقول، تأكد من أنك قمت بتعيين كل الموجودين مسبقا، وإلا سوف تبدو "
|
4505 |
+
"\"بيانات مفقودة\" في إعلاناتك."
|
4506 |
|
4507 |
+
#: templates/admin/form-fields-tags.tpl.php:22
|
|
|
4508 |
msgctxt "form-fields admin"
|
4509 |
+
msgid "Create Missing Fields"
|
4510 |
+
msgstr "إنشاء الحقول المفقودة"
|
4511 |
|
4512 |
+
#: includes/admin/controllers/class-settings-admin.php:516
|
4513 |
#, fuzzy
|
4514 |
+
msgctxt "admin settings"
|
4515 |
+
msgid "Remove"
|
4516 |
+
msgstr "إزالة"
|
|
|
|
|
|
|
|
|
|
|
4517 |
|
4518 |
+
#: includes/admin/controllers/class-settings-admin.php:570
|
4519 |
+
msgctxt "admin settings"
|
4520 |
+
msgid "Valid placeholders: %s"
|
4521 |
+
msgstr "العناصر النائبة صالحة: %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4522 |
|
4523 |
+
#: includes/admin/settings/class-settings-bootstrap.php:114
|
4524 |
+
msgctxt "admin settings"
|
4525 |
msgid ""
|
4526 |
+
"IMPORTANT: subpages of the main directory page cannot be accesed while this "
|
4527 |
+
"setting is checked."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: includes/admin/settings/class-settings-bootstrap.php:331
|
4531 |
+
msgctxt "admin settings"
|
4532 |
+
msgid "Above results"
|
4533 |
+
msgstr "أعلى النتائج"
|
|
|
|
|
4534 |
|
4535 |
+
#: includes/admin/settings/class-settings-bootstrap.php:332
|
4536 |
+
msgctxt "admin settings"
|
4537 |
+
msgid "Below results"
|
4538 |
+
msgstr "أسفل النتائج"
|
|
|
|
|
4539 |
|
4540 |
+
#: includes/admin/settings/class-settings-bootstrap.php:333
|
4541 |
+
msgctxt "admin settings"
|
4542 |
+
msgid "Don't show with results"
|
4543 |
+
msgstr "لا تظهر مع النتائج"
|
4544 |
|
4545 |
+
#: includes/admin/settings/class-settings-bootstrap.php:414
|
4546 |
+
msgctxt "admin settings"
|
4547 |
msgid ""
|
4548 |
+
"You have selected a textarea field to be included in quick searches. "
|
4549 |
+
"Searches involving those fields are very expensive and could result in "
|
4550 |
+
"timeouts and/or general slowness."
|
4551 |
msgstr ""
|
4552 |
+
"لقد حددت حقل إدراج نص ليتم تضمينها في عمليات البحث السريعة. عمليات البحث "
|
4553 |
+
"التي تنطوي على تلك الحقول تتطلب موارد كثيرة ويمكن أن تؤدي الى انتهاء المهلة "
|
4554 |
+
"و/ أو البطء العام."
|
4555 |
|
4556 |
+
#: includes/admin/settings/class-settings-bootstrap.php:574
|
4557 |
+
msgctxt "admin settings"
|
4558 |
+
msgid "Do not include comments in listings"
|
4559 |
+
msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
|
|
|
|
|
4560 |
|
4561 |
+
#: includes/admin/settings/class-settings-bootstrap.php:598
|
4562 |
+
#, fuzzy
|
4563 |
+
msgctxt "admin settings"
|
4564 |
+
msgid "Directory view."
|
4565 |
+
msgstr "الدليل"
|
4566 |
|
4567 |
+
#: includes/admin/settings/class-settings-bootstrap.php:599
|
4568 |
#, fuzzy
|
4569 |
+
msgctxt "admin settings"
|
4570 |
+
msgid "All Listings view."
|
4571 |
+
msgstr "مشاهدة جميع الإعلانات"
|
4572 |
|
4573 |
+
#: includes/admin/settings/class-settings-bootstrap.php:600
|
4574 |
+
#, fuzzy
|
4575 |
+
msgctxt "admin settings"
|
4576 |
+
msgid "Category view."
|
4577 |
+
msgstr "التصنيفات"
|
4578 |
|
4579 |
+
#: includes/admin/settings/class-settings-bootstrap.php:601
|
4580 |
+
#, fuzzy
|
4581 |
+
msgctxt "admin settings"
|
4582 |
+
msgid "Search view."
|
4583 |
+
msgstr "بحث"
|
|
|
4584 |
|
4585 |
+
#: includes/admin/settings/class-settings-bootstrap.php:732
|
4586 |
+
msgctxt "admin settings"
|
4587 |
+
msgid "Slug"
|
4588 |
+
msgstr "رابط لطيف"
|
4589 |
|
4590 |
+
#: includes/admin/settings/class-settings-bootstrap.php:745
|
4591 |
+
#: includes/admin/settings/class-settings-bootstrap.php:813
|
4592 |
+
msgctxt "admin settings"
|
4593 |
+
msgid "Ascending"
|
4594 |
+
msgstr "تصاعدي"
|
4595 |
|
4596 |
+
#: includes/admin/settings/class-settings-bootstrap.php:746
|
4597 |
+
#: includes/admin/settings/class-settings-bootstrap.php:814
|
4598 |
+
msgctxt "admin settings"
|
4599 |
+
msgid "Descending"
|
4600 |
+
msgstr "تنازلي"
|
4601 |
|
4602 |
+
#: includes/admin/settings/class-settings-bootstrap.php:779
|
4603 |
+
msgctxt "admin settings"
|
4604 |
+
msgid "Plan Custom Order can be changed under <a>Plans</a>"
|
4605 |
+
msgstr ""
|
4606 |
|
4607 |
+
#: includes/admin/settings/class-settings-bootstrap.php:792
|
4608 |
+
msgctxt "admin settings"
|
4609 |
+
msgid "Author"
|
4610 |
+
msgstr "الكاتب"
|
4611 |
|
4612 |
+
#: includes/admin/settings/class-settings-bootstrap.php:793
|
4613 |
+
#: includes/helpers/functions/general.php:1285
|
4614 |
+
msgctxt "admin settings"
|
4615 |
+
msgid "Date posted"
|
4616 |
+
msgstr "تاريخ النشر"
|
4617 |
|
4618 |
+
#: includes/admin/settings/class-settings-bootstrap.php:794
|
4619 |
+
#: includes/helpers/functions/general.php:1286
|
4620 |
+
msgctxt "admin settings"
|
4621 |
+
msgid "Date last modified"
|
4622 |
+
msgstr "تاريخ آخر تعديل"
|
4623 |
|
4624 |
+
#: includes/admin/settings/class-settings-bootstrap.php:795
|
4625 |
+
msgctxt "admin settings"
|
4626 |
+
msgid "Random"
|
4627 |
+
msgstr "عشوائية"
|
4628 |
|
4629 |
+
#: includes/admin/settings/class-settings-bootstrap.php:796
|
4630 |
+
msgctxt "admin settings"
|
4631 |
+
msgid "Paid first then free. Inside each group by date."
|
4632 |
+
msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة حسب التاريخ."
|
4633 |
|
4634 |
+
#: includes/admin/settings/class-settings-bootstrap.php:797
|
4635 |
+
msgctxt "admin settings"
|
4636 |
+
msgid "Paid first then free. Inside each group by title."
|
4637 |
+
msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة بعنوان."
|
4638 |
|
4639 |
+
#: includes/admin/settings/class-settings-bootstrap.php:798
|
4640 |
+
msgctxt "admin settings"
|
4641 |
+
msgid "Plan Custom Order, then Date"
|
4642 |
+
msgstr ""
|
4643 |
|
4644 |
+
#: includes/admin/settings/class-settings-bootstrap.php:799
|
4645 |
+
msgctxt "admin settings"
|
4646 |
+
msgid "Plan Custom Order, then Title"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1071
|
4650 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1096
|
4651 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1120
|
4652 |
#, fuzzy
|
4653 |
+
msgctxt "admin settings"
|
4654 |
+
msgid "Excerpt view."
|
4655 |
+
msgstr "مقتطف"
|
4656 |
|
4657 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1097
|
4658 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1121
|
4659 |
#, fuzzy
|
4660 |
+
msgctxt "admin settings"
|
4661 |
+
msgid "Detail view."
|
4662 |
+
msgstr "الدليل"
|
4663 |
|
4664 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1192
|
4665 |
+
msgctxt "admin settings"
|
4666 |
+
msgid "Australian Dollar (AUD)"
|
4667 |
+
msgstr "الدولار الأسترالي (AUD)"
|
|
|
4668 |
|
4669 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
4670 |
+
msgctxt "admin settings"
|
4671 |
+
msgid "Brazilian Real (BRL)"
|
4672 |
+
msgstr "الريال البرازيلي (BRL)"
|
4673 |
|
4674 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1194
|
4675 |
+
msgctxt "admin settings"
|
4676 |
+
msgid "Canadian Dollar (CAD)"
|
4677 |
+
msgstr "الدولار الكندي (CAD)"
|
4678 |
|
4679 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1195
|
4680 |
+
msgctxt "admin settings"
|
4681 |
+
msgid "Czech Koruna (CZK)"
|
4682 |
+
msgstr "الكورونا التشيكية (CZK)"
|
|
|
4683 |
|
4684 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1196
|
4685 |
+
msgctxt "admin settings"
|
4686 |
+
msgid "Danish Krone (DKK)"
|
4687 |
+
msgstr "الكرونة الدانماركية (DKK)"
|
4688 |
|
4689 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1197
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4690 |
msgctxt "admin settings"
|
4691 |
msgid "United Arab Emirates Dirham (AED)"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1198
|
4695 |
msgctxt "admin settings"
|
4696 |
msgid "Euro (EUR)"
|
4697 |
msgstr "اليورو (EUR)"
|
4698 |
|
4699 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1199
|
4700 |
msgctxt "admin settings"
|
4701 |
msgid "Hong Kong Dollar (HKD)"
|
4702 |
msgstr "دولار هونج كونج (HKD)"
|
4703 |
|
4704 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1200
|
4705 |
msgctxt "admin settings"
|
4706 |
msgid "Hungarian Forint (HUF)"
|
4707 |
msgstr "الفورنت الهنغاري (HUF)"
|
4708 |
|
4709 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1201
|
4710 |
msgctxt "admin settings"
|
4711 |
msgid "Israeli New Shequel (ILS)"
|
4712 |
msgstr "الشكيل الإسرائيلي الجديد (ILS)"
|
4713 |
|
4714 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
4715 |
msgctxt "admin settings"
|
4716 |
msgid "Japanese Yen (JPY)"
|
4717 |
msgstr "الين الياباني (JPY)"
|
4718 |
|
4719 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1203
|
4720 |
msgctxt "admin settings"
|
4721 |
msgid "Moroccan Dirham (MAD)"
|
4722 |
msgstr ""
|
4723 |
|
4724 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1204
|
4725 |
msgctxt "admin settings"
|
4726 |
msgid "Malasian Ringgit (MYR)"
|
4727 |
msgstr "الرينغيت الماليزي (MYR)"
|
4728 |
|
4729 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4730 |
msgctxt "admin settings"
|
4731 |
msgid "Mexican Peso (MXN)"
|
4732 |
msgstr "بيزو مكسيكي (MXN)"
|
4733 |
|
4734 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4735 |
msgctxt "admin settings"
|
4736 |
msgid "Norwegian Krone (NOK)"
|
4737 |
msgstr "الكرون النرويجي (NOK)"
|
4738 |
|
4739 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
4740 |
msgctxt "admin settings"
|
4741 |
msgid "New Zealand Dollar (NZD)"
|
4742 |
msgstr "الدولار النيوزيلندي (NZD)"
|
4743 |
|
4744 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1208
|
4745 |
msgctxt "admin settings"
|
4746 |
msgid "Philippine Peso (PHP)"
|
4747 |
msgstr "بيزو فلبيني (PHP)"
|
4748 |
|
4749 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1209
|
4750 |
msgctxt "admin settings"
|
4751 |
msgid "Polish Zloty (PLN)"
|
4752 |
msgstr "الزلوتي البولندي (PLN)"
|
4753 |
|
4754 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1210
|
4755 |
msgctxt "admin settings"
|
4756 |
msgid "Pound Sterling (GBP)"
|
4757 |
msgstr "الجنيه الإسترليني (GBP)"
|
4758 |
|
4759 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1211
|
4760 |
msgctxt "admin settings"
|
4761 |
msgid "Singapore Dollar (SGD)"
|
4762 |
msgstr "دولار سنغافوري (SGD)"
|
4763 |
|
4764 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1212
|
4765 |
msgctxt "admin settings"
|
4766 |
msgid "Swedish Krona (SEK)"
|
4767 |
msgstr "الكرونا السويدية (SEK)"
|
4768 |
|
4769 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1213
|
4770 |
msgctxt "admin settings"
|
4771 |
msgid "Swiss Franc (CHF)"
|
4772 |
msgstr "الفرنك السويسري (CHF)"
|
4773 |
|
4774 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1214
|
4775 |
msgctxt "admin settings"
|
4776 |
msgid "Taiwan Dollar (TWD)"
|
4777 |
msgstr "الدولار التايواني (TWD)"
|
4778 |
|
4779 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1215
|
4780 |
msgctxt "admin settings"
|
4781 |
msgid "Thai Baht (THB)"
|
4782 |
msgstr "البات التايلندي (THB)"
|
4783 |
|
4784 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
4785 |
msgctxt "admin settings"
|
4786 |
msgid "Turkish Lira (TRY)"
|
4787 |
msgstr "الليرة التركية (TRY)"
|
4788 |
|
4789 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1217
|
4790 |
msgctxt "admin settings"
|
4791 |
msgid "U.S. Dollar (USD)"
|
4792 |
msgstr "الدولار الأمريكي (USD)"
|
4793 |
|
4794 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1241
|
4795 |
msgctxt "admin settings"
|
4796 |
msgid "Show currency symbol on the left"
|
4797 |
msgstr "إظهار رمز العملة على اليسار"
|
4798 |
|
4799 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1242
|
4800 |
msgctxt "admin settings"
|
4801 |
msgid "Show currency symbol on the right"
|
4802 |
msgstr "إظهار رمز العملة على اليمين"
|
4803 |
|
4804 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1243
|
4805 |
msgctxt "admin settings"
|
4806 |
msgid "Do not show currency symbol"
|
4807 |
msgstr "عدم إظهار رمز العملة"
|
4808 |
|
4809 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4810 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1288
|
4811 |
msgctxt "admin settings"
|
4812 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4813 |
msgstr ""
|
4814 |
|
4815 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1326
|
4816 |
#, fuzzy
|
4817 |
msgctxt "admin settings"
|
4818 |
msgid ""
|
4822 |
"الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا "
|
4823 |
"<a>تخصيص البريد الإلكتروني</a> الذي يتلقاه الأعضاء."
|
4824 |
|
4825 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
4826 |
msgctxt "admin settings"
|
4827 |
msgid "Try listing's email field first, then author's email."
|
4828 |
msgstr "جرب البريد الإلكتروني للإعلانات أولاً، ثم البريد الإلكتروني للكاتب."
|
4829 |
|
4830 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1357
|
4831 |
msgctxt "admin settings"
|
4832 |
msgid "Try author's email first and then listing's email field."
|
4833 |
msgstr "جرب البريد الإلكتروني للكاتب أولاً، ثم البريد الإلكتروني للإعلانات."
|
4834 |
|
4835 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1370
|
4836 |
msgctxt "admin settings"
|
4837 |
msgid "Plain (text/plain)"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
4841 |
msgctxt "admin settings"
|
4842 |
msgid "HTML (text/html)"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1372
|
4846 |
msgctxt "admin settings"
|
4847 |
msgid "Both (multipart/alternative)"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
4851 |
msgctxt "admin settings"
|
4852 |
msgid "A new listing is submitted."
|
4853 |
msgstr "يتم إضافة إعلان جديد"
|
4854 |
|
4855 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1387
|
4856 |
msgctxt "admin settings"
|
4857 |
msgid "A listing is edited."
|
4858 |
msgstr "تم تحرير الإعلان"
|
4859 |
|
4860 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1388
|
4861 |
msgctxt "admin settings"
|
4862 |
msgid "A listing expires."
|
4863 |
msgstr "الإعلان منتهي التاريخ"
|
4864 |
|
4865 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1389
|
4866 |
#, fuzzy
|
4867 |
msgctxt "admin settings"
|
4868 |
msgid "A listing is renewed."
|
4869 |
msgstr "تم تحرير الإعلان"
|
4870 |
|
4871 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1390
|
4872 |
#, fuzzy
|
4873 |
msgctxt "admin settings"
|
4874 |
msgid "A listing payment is completed."
|
4875 |
msgstr "تم تحرير الإعلان"
|
4876 |
|
4877 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1391
|
4878 |
#, fuzzy
|
4879 |
msgctxt "admin settings"
|
4880 |
msgid "A listing has been reported as inappropriate."
|
4881 |
msgstr "تمت ترقية الإعلان."
|
4882 |
|
4883 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
4884 |
msgctxt "admin settings"
|
4885 |
msgid "A contact message is sent to a listing's owner."
|
4886 |
msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
|
4887 |
|
4888 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1419
|
4889 |
msgctxt "admin settings"
|
4890 |
msgid "Their listing is submitted."
|
4891 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
4892 |
|
4893 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
4894 |
msgctxt "admin settings"
|
4895 |
msgid "Their listing is approved/published."
|
4896 |
msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
|
4897 |
|
4898 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1421
|
4899 |
#, fuzzy
|
4900 |
msgctxt "admin settings"
|
4901 |
msgid "A payment for their listing is completed."
|
4902 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
4903 |
|
4904 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1422
|
4905 |
#, fuzzy
|
4906 |
msgctxt "admin settings"
|
4907 |
msgid "Their listing expired or is about to expire."
|
4908 |
msgstr "يتم إضافة الإعلان الخاص بهم"
|
4909 |
|
4910 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
|
|
4911 |
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
4912 |
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
4913 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1531
|
4914 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1550
|
4915 |
msgctxt "admin settings"
|
4916 |
msgid "Listing's title"
|
4917 |
msgstr "عنوان الإعلان"
|
4918 |
|
4919 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1441
|
4920 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1532
|
4921 |
#, fuzzy
|
4922 |
msgctxt "admin settings"
|
4923 |
msgid "Listing's plan name"
|
4924 |
msgstr "إنتهاء صلاحية الإعلان"
|
4925 |
|
4926 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1442
|
4927 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1533
|
4928 |
#, fuzzy
|
4929 |
msgctxt "admin settings"
|
4930 |
msgid "Listing's plan description"
|
4931 |
msgstr "تحديد رسوم الإعلان"
|
4932 |
|
4933 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
4934 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1534
|
4935 |
#, fuzzy
|
4936 |
msgctxt "admin settings"
|
4937 |
msgid "Listing's plan details"
|
4938 |
msgstr "إنتهاء صلاحية الإعلان"
|
4939 |
|
4940 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1456
|
4941 |
msgctxt "admin settings"
|
4942 |
msgid ""
|
4943 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4946 |
"القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها "
|
4947 |
"من قبل العموم."
|
4948 |
|
4949 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
4950 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1494
|
4951 |
msgctxt "admin settings"
|
4952 |
msgid "Listing's URL"
|
4953 |
msgstr "عنوان URL الإعلان"
|
4954 |
|
4955 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
4956 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
4957 |
#, fuzzy
|
4958 |
msgctxt "admin settings"
|
4959 |
msgid "Listing's Access Key"
|
4960 |
msgstr "مفاتيح وصول الإعلان"
|
4961 |
|
4962 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
4963 |
#, fuzzy
|
4964 |
msgctxt "admin settings"
|
4965 |
msgid "Sender's name"
|
4966 |
msgstr "إسم الكاتب"
|
4967 |
|
4968 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
4969 |
#, fuzzy
|
4970 |
msgctxt "admin settings"
|
4971 |
msgid "Contact message"
|
4972 |
msgstr "رسالة اتصال الإعلان"
|
4973 |
|
4974 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
4975 |
msgctxt "admin settings"
|
4976 |
msgid "Date and time the message was sent"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1535
|
4980 |
#, fuzzy
|
4981 |
msgctxt "admin settings"
|
4982 |
msgid "Payment items details."
|
4983 |
msgstr "تفاصيل الدفع"
|
4984 |
|
4985 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1536
|
4986 |
msgctxt "admin settings"
|
4987 |
msgid "URL where user can review and print payment receipt."
|
4988 |
msgstr ""
|
4989 |
|
4990 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1537
|
4991 |
#, fuzzy
|
4992 |
msgctxt "admin settings"
|
4993 |
msgid "Gateway used to process listing's payment."
|
4994 |
msgstr "تعذر معالجة الدفع."
|
4995 |
|
4996 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1551
|
4997 |
msgctxt "admin settings"
|
4998 |
msgid "Checkout URL link"
|
4999 |
msgstr "رابط URL إتمام الشراء"
|
5000 |
|
5001 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1653
|
5002 |
#, fuzzy
|
5003 |
msgctxt "admin settings"
|
5004 |
msgid "Uploaded Image (no resize)"
|
5014 |
msgid "User registration date"
|
5015 |
msgstr "تاريخ تسجيل العضو"
|
5016 |
|
5017 |
+
#: includes/admin/controllers/class-settings-admin.php:636
|
5018 |
#, fuzzy
|
5019 |
msgctxt "expiration notices"
|
5020 |
msgid "Add notice"
|
5021 |
msgstr "إضافة حقل"
|
5022 |
|
5023 |
+
#: includes/admin/controllers/class-settings-admin.php:655
|
5024 |
msgctxt "expiration notices"
|
5025 |
msgid "No notices configured."
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: includes/admin/controllers/class-settings-admin.php:697
|
5029 |
msgctxt "expiration notices"
|
5030 |
msgid "recurring and non-recurring"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
+
#: includes/admin/controllers/class-settings-admin.php:699
|
5034 |
#, fuzzy
|
5035 |
msgctxt "expiration notices"
|
5036 |
msgid "recurring only"
|
5037 |
msgstr "(متكرر)"
|
5038 |
|
5039 |
+
#: includes/admin/controllers/class-settings-admin.php:701
|
5040 |
#, fuzzy
|
5041 |
msgctxt "expiration notices"
|
5042 |
msgid "non-recurring only"
|
5043 |
msgstr "(متكرر)"
|
5044 |
|
5045 |
+
#: includes/admin/controllers/class-settings-admin.php:705
|
5046 |
#, fuzzy
|
5047 |
msgctxt "expiration notices"
|
5048 |
msgid "Sent when a listing (%s) is renewed."
|
5049 |
msgstr "ترسل بعد أن يضاف الإعلان."
|
5050 |
|
5051 |
+
#: includes/admin/controllers/class-settings-admin.php:710
|
5052 |
#, fuzzy
|
5053 |
msgctxt "expiration notices"
|
5054 |
msgid "Sent when a listing (%s) expires."
|
5055 |
msgstr "الإعلان منتهي التاريخ"
|
5056 |
|
5057 |
+
#: includes/admin/controllers/class-settings-admin.php:718
|
5058 |
#, fuzzy
|
5059 |
msgctxt "expiration notices"
|
5060 |
msgid "%d day"
|
5066 |
msgstr[4] "%d يوم"
|
5067 |
msgstr[5] "%d يوم"
|
5068 |
|
5069 |
+
#: includes/admin/controllers/class-settings-admin.php:721
|
5070 |
msgctxt "expiration notices"
|
5071 |
msgid "%d week"
|
5072 |
msgid_plural "%d weeks"
|
5077 |
msgstr[4] ""
|
5078 |
msgstr[5] ""
|
5079 |
|
5080 |
+
#: includes/admin/controllers/class-settings-admin.php:724
|
5081 |
msgctxt "expiration notices"
|
5082 |
msgid "%d month"
|
5083 |
msgid_plural "%d months"
|
5090 |
|
5091 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
5092 |
#. non-recuring only)
|
5093 |
+
#: includes/admin/controllers/class-settings-admin.php:730
|
5094 |
msgctxt "expiration notices"
|
5095 |
msgid "Sent %1$s before a listing (%2$s) expires."
|
5096 |
msgstr ""
|
5097 |
|
5098 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
5099 |
#. non-recuring only)
|
5100 |
+
#: includes/admin/controllers/class-settings-admin.php:733
|
5101 |
#, fuzzy
|
5102 |
msgctxt "expiration notices"
|
5103 |
msgid "Sent %1$s after a listing (%2$s) expires."
|
5104 |
msgstr "ترسل بعد أن يضاف الإعلان."
|
5105 |
|
5106 |
+
#: includes/admin/controllers/class-settings-admin.php:750
|
5107 |
msgctxt "expiration notices"
|
5108 |
msgid "At the time of expiration"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: includes/admin/controllers/class-settings-admin.php:751
|
5112 |
#, fuzzy
|
5113 |
msgctxt "expiration notices"
|
5114 |
msgid "Right after a successful renewal"
|
5115 |
msgstr "تم تعيين الرسوم بنجاح."
|
5116 |
|
5117 |
+
#: includes/admin/controllers/class-settings-admin.php:762
|
5118 |
msgctxt "expiration notices"
|
5119 |
msgid "%d day before expiration"
|
5120 |
msgid_plural "%d days before expiration"
|
5125 |
msgstr[4] ""
|
5126 |
msgstr[5] ""
|
5127 |
|
5128 |
+
#: includes/admin/controllers/class-settings-admin.php:762
|
5129 |
msgctxt "expiration notices"
|
5130 |
msgid "%d day after expiration"
|
5131 |
msgid_plural "%d days after expiration"
|
5136 |
msgstr[4] ""
|
5137 |
msgstr[5] ""
|
5138 |
|
5139 |
+
#: includes/admin/controllers/class-settings-admin.php:765
|
5140 |
msgctxt "expiration notices"
|
5141 |
msgid "%d week before expiration"
|
5142 |
msgid_plural "%d weeks before expiration"
|
5147 |
msgstr[4] ""
|
5148 |
msgstr[5] ""
|
5149 |
|
5150 |
+
#: includes/admin/controllers/class-settings-admin.php:765
|
5151 |
msgctxt "expiration notices"
|
5152 |
msgid "%d week after expiration"
|
5153 |
msgid_plural "%d weeks after expiration"
|
5158 |
msgstr[4] ""
|
5159 |
msgstr[5] ""
|
5160 |
|
5161 |
+
#: includes/admin/controllers/class-settings-admin.php:768
|
5162 |
msgctxt "expiration notices"
|
5163 |
msgid "%d month before expiration"
|
5164 |
msgid_plural "%d months before expiration"
|
5169 |
msgstr[4] ""
|
5170 |
msgstr[5] ""
|
5171 |
|
5172 |
+
#: includes/admin/controllers/class-settings-admin.php:768
|
5173 |
msgctxt "expiration notices"
|
5174 |
msgid "%d month after expiration"
|
5175 |
msgid_plural "%d months after expiration"
|
5180 |
msgstr[4] ""
|
5181 |
msgstr[5] ""
|
5182 |
|
5183 |
+
#: includes/admin/controllers/class-settings-admin.php:795
|
5184 |
#, fuzzy
|
5185 |
msgctxt "expiration notices"
|
5186 |
msgid "Applies to"
|
5187 |
msgstr "Appliqué à"
|
5188 |
|
5189 |
+
#: includes/admin/controllers/class-settings-admin.php:798
|
5190 |
msgctxt "expiration notices"
|
5191 |
msgid "Non-recurring listings"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: includes/admin/controllers/class-settings-admin.php:799
|
5195 |
#, fuzzy
|
5196 |
msgctxt "expiration notices"
|
5197 |
msgid "Recurring listings"
|
5198 |
msgstr "الرجوع إلى الإعلان."
|
5199 |
|
5200 |
+
#: includes/admin/controllers/class-settings-admin.php:800
|
5201 |
msgctxt "expiration notices"
|
5202 |
msgid "Recurring and non-recurring listings"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
+
#: includes/admin/controllers/class-settings-admin.php:805
|
5206 |
msgctxt "expiration notices"
|
5207 |
msgid "When to send?"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: includes/admin/controllers/class-settings-admin.php:672
|
5211 |
#, fuzzy
|
5212 |
msgctxt "settings"
|
5213 |
msgid "Site title (with link)"
|
5214 |
msgstr "إسم الموقع (مع الرابط)"
|
5215 |
|
5216 |
+
#: includes/admin/controllers/class-settings-admin.php:673
|
5217 |
msgctxt "settings"
|
5218 |
msgid "Author's name"
|
5219 |
msgstr "إسم الكاتب"
|
5220 |
|
5221 |
+
#: includes/admin/controllers/class-settings-admin.php:674
|
5222 |
msgctxt "settings"
|
5223 |
msgid "Listing's name (with link)"
|
5224 |
msgstr "إسم الإعلان (مع رابط)"
|
5225 |
|
5226 |
+
#: includes/admin/controllers/class-settings-admin.php:675
|
5227 |
#, fuzzy
|
5228 |
msgctxt "settings"
|
5229 |
msgid "Listing's expiration date"
|
5230 |
msgstr "إنتهاء صلاحية الإعلان"
|
5231 |
|
5232 |
+
#: includes/admin/controllers/class-settings-admin.php:676
|
5233 |
msgctxt "settings"
|
5234 |
msgid "Listing's renewal link, formatted with an anchor tag"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
+
#: includes/admin/controllers/class-settings-admin.php:677
|
5238 |
msgctxt "settings"
|
5239 |
msgid "Listing's renewal URL, unformatted by any tags"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: includes/admin/controllers/class-settings-admin.php:678
|
5243 |
#, fuzzy
|
5244 |
msgctxt "settings"
|
5245 |
msgid "Listing's categories"
|
5246 |
msgstr "عنوان الإعلان"
|
5247 |
|
5248 |
+
#: includes/admin/controllers/class-settings-admin.php:679
|
5249 |
#, fuzzy
|
5250 |
msgctxt "settings"
|
5251 |
msgid "Listing's last payment date"
|
5252 |
msgstr "إنتهاء صلاحية الإعلان"
|
5253 |
|
5254 |
+
#: includes/admin/controllers/class-settings-admin.php:680
|
5255 |
#, fuzzy
|
5256 |
msgctxt "settings"
|
5257 |
msgid "Listing's access key"
|
5258 |
msgstr "مفاتيح وصول الإعلان"
|
5259 |
|
5260 |
+
#: includes/admin/controllers/class-settings-admin.php:837
|
5261 |
#, fuzzy
|
5262 |
msgctxt "settings"
|
5263 |
msgid "Settings reset to default."
|
5269 |
msgid "General"
|
5270 |
msgstr "عام"
|
5271 |
|
5272 |
+
#: includes/admin/settings/class-settings-bootstrap.php:12
|
5273 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1055
|
5274 |
#, fuzzy
|
5275 |
msgctxt "settings"
|
5276 |
msgid "Listings"
|
5277 |
msgstr "الإعلانات"
|
5278 |
|
5279 |
+
#: includes/admin/settings/class-settings-bootstrap.php:15
|
5280 |
+
#: includes/admin/settings/class-settings-bootstrap.php:20
|
5281 |
+
#: includes/admin/settings/class-settings-bootstrap.php:25
|
5282 |
+
#: includes/admin/settings/class-settings-bootstrap.php:50
|
5283 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1337
|
5284 |
+
#: includes/admin/settings/class-settings.php:345
|
5285 |
#, fuzzy
|
5286 |
msgctxt "settings"
|
5287 |
msgid "General Settings"
|
5288 |
msgstr "الإعدادات العامة"
|
5289 |
|
5290 |
+
#: includes/admin/settings/class-settings-bootstrap.php:22
|
5291 |
#, fuzzy
|
5292 |
msgctxt "settings"
|
5293 |
msgid "Payment"
|
5294 |
msgstr "الدفع"
|
5295 |
|
5296 |
+
#: includes/admin/settings/class-settings-bootstrap.php:27
|
5297 |
msgctxt "settings"
|
5298 |
msgid "Appearance"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: includes/admin/settings/class-settings-bootstrap.php:73
|
5302 |
#, fuzzy
|
5303 |
msgctxt "settings"
|
5304 |
msgid "Permalink Settings"
|
5305 |
msgstr "إعدادات الرابط الثابت"
|
5306 |
|
5307 |
+
#: includes/admin/settings/class-settings-bootstrap.php:78
|
5308 |
#, fuzzy
|
5309 |
msgctxt "settings"
|
5310 |
msgid "Directory Listings Slug"
|
5311 |
msgstr "رابط لطيف لإعلانات الدليل"
|
5312 |
|
5313 |
+
#: includes/admin/settings/class-settings-bootstrap.php:88
|
5314 |
#, fuzzy
|
5315 |
msgctxt "settings"
|
5316 |
msgid "Categories Slug"
|
5317 |
msgstr "رابط لطيف للتصنيفات"
|
5318 |
|
5319 |
+
#: includes/admin/settings/class-settings-bootstrap.php:89
|
5320 |
#, fuzzy
|
5321 |
msgctxt "settings"
|
5322 |
msgid ""
|
5325 |
"لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"category\"، "
|
5326 |
"على سبيل المثال."
|
5327 |
|
5328 |
+
#: includes/admin/settings/class-settings-bootstrap.php:100
|
5329 |
#, fuzzy
|
5330 |
msgctxt "settings"
|
5331 |
msgid "Tags Slug"
|
5332 |
msgstr "رابط لطيف للوسوم"
|
5333 |
|
5334 |
+
#: includes/admin/settings/class-settings-bootstrap.php:101
|
5335 |
#, fuzzy
|
5336 |
msgctxt "settings"
|
5337 |
msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
|
5339 |
"لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"tag\"، على "
|
5340 |
"سبيل المثال."
|
5341 |
|
5342 |
+
#: includes/admin/settings/class-settings-bootstrap.php:113
|
5343 |
#, fuzzy
|
5344 |
msgctxt "settings"
|
5345 |
+
msgid "Remove listing ID from URLs for better SEO"
|
5346 |
msgstr "إزالة معرف الإعلان من روابط URLs الدليل؟"
|
5347 |
|
5348 |
+
#: includes/admin/settings/class-settings-bootstrap.php:114
|
|
|
|
|
|
|
|
|
|
|
5349 |
#, fuzzy
|
5350 |
msgctxt "settings"
|
5351 |
msgid ""
|
5356 |
"الأعمال/1809/عنوان-الإعلان\". تحقق من هذا الإعداد لإزالة المعرف لأفضل أرشفة "
|
5357 |
"SEO."
|
5358 |
|
5359 |
+
#: includes/admin/settings/class-settings-bootstrap.php:125
|
5360 |
#, fuzzy
|
5361 |
msgctxt "settings"
|
5362 |
msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
|
5363 |
msgstr "بحاجة إلى مفاتيح API ل reCAPTCHA؟ أحصل عليها <a>هنا</a>."
|
5364 |
|
5365 |
+
#: includes/admin/settings/class-settings-bootstrap.php:132
|
5366 |
#, fuzzy
|
5367 |
msgctxt "settings"
|
5368 |
msgid "Use reCAPTCHA for contact forms"
|
5369 |
msgstr "إستخدم reCAPTCHA لاستمارة الاتصال"
|
5370 |
|
5371 |
+
#: includes/admin/settings/class-settings-bootstrap.php:140
|
5372 |
#, fuzzy
|
5373 |
msgctxt "settings"
|
5374 |
+
msgid "Use reCAPTCHA only for logged-out users"
|
5375 |
msgstr "إيقاف reCAPTCHA للأعضاء الذين سجلوا الدخول؟"
|
5376 |
|
5377 |
+
#: includes/admin/settings/class-settings-bootstrap.php:148
|
5378 |
#, fuzzy
|
5379 |
msgctxt "settings"
|
5380 |
msgid "Use reCAPTCHA for listing submits"
|
5381 |
msgstr "إستخدم reCAPTCHA أثناء إضافة إعلان"
|
5382 |
|
5383 |
+
#: includes/admin/settings/class-settings-bootstrap.php:156
|
5384 |
#, fuzzy
|
5385 |
msgctxt "settings"
|
5386 |
msgid "Use reCAPTCHA for edit listings"
|
5387 |
msgstr "إستخدم reCAPTCHA في تعليقات الإعلان؟"
|
5388 |
|
5389 |
+
#: includes/admin/settings/class-settings-bootstrap.php:164
|
5390 |
#, fuzzy
|
5391 |
msgctxt "settings"
|
5392 |
msgid "Use reCAPTCHA for report listings"
|
5393 |
msgstr "إستخدم reCAPTCHA في تعليقات الإعلان؟"
|
5394 |
|
5395 |
+
#: includes/admin/settings/class-settings-bootstrap.php:172
|
5396 |
#, fuzzy
|
5397 |
msgctxt "settings"
|
5398 |
msgid "Use reCAPTCHA for listing comments"
|
5399 |
msgstr "إستخدم reCAPTCHA في تعليقات الإعلان؟"
|
5400 |
|
5401 |
+
#: includes/admin/settings/class-settings-bootstrap.php:180
|
5402 |
#, fuzzy
|
5403 |
msgctxt "settings"
|
5404 |
msgid "reCAPTCHA Public Key"
|
5405 |
msgstr "مفتاح عام reCAPTCHA"
|
5406 |
|
5407 |
+
#: includes/admin/settings/class-settings-bootstrap.php:189
|
5408 |
#, fuzzy
|
5409 |
msgctxt "settings"
|
5410 |
msgid "reCAPTCHA Private Key"
|
5411 |
msgstr "مفتاح خاص reCAPTCHA"
|
5412 |
|
5413 |
+
#: includes/admin/settings/class-settings-bootstrap.php:198
|
5414 |
#, fuzzy
|
5415 |
msgctxt "settings"
|
5416 |
msgid "reCAPTCHA version"
|
5417 |
msgstr "إعدادات reCaptcha"
|
5418 |
|
5419 |
+
#: includes/admin/settings/class-settings-bootstrap.php:215
|
5420 |
msgctxt "settings"
|
5421 |
msgid "reCAPTCHA V3 threshold score"
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: includes/admin/settings/class-settings-bootstrap.php:220
|
5425 |
msgctxt "settings"
|
5426 |
msgid ""
|
5427 |
"reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is "
|
5430 |
"this value will result in reCAPTCHA validation error."
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: includes/admin/settings/class-settings-bootstrap.php:229
|
5434 |
#, fuzzy
|
5435 |
msgctxt "settings"
|
5436 |
msgid "Registration"
|
5437 |
msgstr "Enregistrement"
|
5438 |
|
5439 |
+
#: includes/admin/settings/class-settings-bootstrap.php:229
|
5440 |
#, fuzzy
|
5441 |
msgctxt "settings"
|
5442 |
msgid ""
|
5450 |
"الاتصال بعضوية الإضافة، واطلب منهم دعم معامل الاستعلام القياسي 'redirect_to' "
|
5451 |
"لووردبريس."
|
5452 |
|
5453 |
+
#: includes/admin/settings/class-settings-bootstrap.php:234
|
5454 |
#, fuzzy
|
5455 |
msgctxt "settings"
|
5456 |
msgid "Require login to post listings"
|
5457 |
msgstr "يتطلب تسجيل الدخول لنشر الإعلانات؟"
|
5458 |
|
5459 |
+
#: includes/admin/settings/class-settings-bootstrap.php:243
|
5460 |
msgctxt "settings"
|
5461 |
msgid "Allow anonymous users to edit/manage listings with an access key"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
+
#: includes/admin/settings/class-settings-bootstrap.php:251
|
5465 |
#, fuzzy
|
5466 |
msgctxt "settings"
|
5467 |
msgid "Login URL"
|
5468 |
msgstr "رابط تسجيل الدخول"
|
5469 |
|
5470 |
+
#: includes/admin/settings/class-settings-bootstrap.php:252
|
5471 |
#, fuzzy
|
5472 |
msgctxt "settings"
|
5473 |
msgid "Only enter this if using a membership plugin or custom login page"
|
5475 |
"رابط URL لصفحة تسجيل الدخول لعضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان "
|
5476 |
"هناك استخدام لعضوية الإضافة أو صفحة تسجيل دخول مخصصة."
|
5477 |
|
5478 |
+
#: includes/admin/settings/class-settings-bootstrap.php:253
|
5479 |
msgctxt "settings"
|
5480 |
msgid "URL of your membership plugin's login page."
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: includes/admin/settings/class-settings-bootstrap.php:262
|
5484 |
#, fuzzy
|
5485 |
msgctxt "settings"
|
5486 |
msgid "Registration URL"
|
5487 |
msgstr "رابط التسجيل"
|
5488 |
|
5489 |
+
#: includes/admin/settings/class-settings-bootstrap.php:263
|
5490 |
#, fuzzy
|
5491 |
msgctxt "settings"
|
5492 |
msgid ""
|
5495 |
"رابط URL لصفحة التسجيل في عضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان "
|
5496 |
"هناك استخدام لعضوية الإضافة أو صفحة تسجيل مخصصة."
|
5497 |
|
5498 |
+
#: includes/admin/settings/class-settings-bootstrap.php:264
|
5499 |
#, fuzzy
|
5500 |
msgctxt "settings"
|
5501 |
msgid "URL of your membership plugin's registration page"
|
5503 |
"رابط URL لصفحة التسجيل في عضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان "
|
5504 |
"هناك استخدام لعضوية الإضافة أو صفحة تسجيل مخصصة."
|
5505 |
|
5506 |
+
#: includes/admin/settings/class-settings-bootstrap.php:273
|
5507 |
msgctxt "settings"
|
5508 |
msgid "Allow users to create accounts during listing submit"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: includes/admin/settings/class-settings-bootstrap.php:300
|
5512 |
#, fuzzy
|
5513 |
msgctxt "settings"
|
5514 |
msgid ""
|
5518 |
"أدخل النص أو عنوان URL يبدأ ب http. إذا كنت تستخدم عنوان URL، سيتم استبدال "
|
5519 |
"نص الأحكام والشروط برابط إلى الصفحة المناسبة."
|
5520 |
|
5521 |
+
#: includes/admin/settings/class-settings-bootstrap.php:302
|
5522 |
#, fuzzy
|
5523 |
msgctxt "settings"
|
5524 |
msgid "Terms and Conditions text goes here"
|
5525 |
msgstr "نص الأحكام والشروط هنا..."
|
5526 |
|
5527 |
+
#: includes/admin/settings/class-settings-bootstrap.php:345
|
5528 |
#, fuzzy
|
5529 |
msgctxt "settings"
|
5530 |
+
msgid "Enable high performance search"
|
5531 |
msgstr "تمكين عمليات البحث عالية الأداء؟"
|
5532 |
|
5533 |
+
#: includes/admin/settings/class-settings-bootstrap.php:354
|
5534 |
#, fuzzy
|
5535 |
msgctxt "settings"
|
5536 |
msgid "Advanced"
|
5537 |
msgstr "متقدم"
|
5538 |
|
5539 |
+
#: includes/admin/settings/class-settings-bootstrap.php:360
|
5540 |
#, fuzzy
|
5541 |
msgctxt "settings"
|
5542 |
msgid "Disable advanced CPT integration"
|
5543 |
msgstr "تعطيل التكامل CPT المتقدم؟"
|
5544 |
|
5545 |
+
#: includes/admin/settings/class-settings-bootstrap.php:369
|
5546 |
#, fuzzy
|
5547 |
msgctxt "settings"
|
5548 |
msgid "Disable frontend listing submission"
|
5549 |
msgstr "تعطيل إضافة إعلان من واجهة الموقع؟"
|
5550 |
|
5551 |
+
#: includes/admin/settings/class-settings-bootstrap.php:370
|
5552 |
msgctxt "settings"
|
5553 |
msgid ""
|
5554 |
"Prevents the Submit Listing button from showing on the main UI, but allows a "
|
5555 |
"shortcode for submit listing to function on other pages."
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: includes/admin/settings/class-settings-bootstrap.php:451
|
5559 |
#, fuzzy
|
5560 |
msgctxt "settings"
|
5561 |
msgid "Contact Form"
|
5562 |
msgstr "مسح"
|
5563 |
|
5564 |
+
#: includes/admin/settings/class-settings-bootstrap.php:460
|
5565 |
#, fuzzy
|
5566 |
msgctxt "settings"
|
5567 |
msgid "Listings per page"
|
5568 |
msgstr "الإعلانات حسب الصفحة"
|
5569 |
|
5570 |
+
#: includes/admin/settings/class-settings-bootstrap.php:461
|
5571 |
#, fuzzy
|
5572 |
msgctxt "settings"
|
5573 |
msgid ""
|
5576 |
msgstr ""
|
5577 |
"عدد الإعلانات التي تظهر في كل صفحة. استخدام قيمة \"0\" لإظهار كل الإعلانات."
|
5578 |
|
5579 |
+
#: includes/admin/settings/class-settings-bootstrap.php:473
|
5580 |
#, fuzzy
|
5581 |
msgctxt "settings"
|
5582 |
msgid "Turn on listing renewal option"
|
5583 |
msgstr "قم بتشغيل خيار تجديد الإعلان؟"
|
5584 |
|
5585 |
+
#: includes/admin/settings/class-settings-bootstrap.php:482
|
5586 |
#, fuzzy
|
5587 |
msgctxt "settings"
|
5588 |
msgid "Open detailed view of listing in new tab"
|
5589 |
msgstr "فتح تفاصيل مشاهدة الإعلانات في علامة تبويب جديدة؟"
|
5590 |
|
5591 |
+
#: includes/admin/settings/class-settings-bootstrap.php:492
|
5592 |
#, fuzzy
|
5593 |
msgctxt "settings"
|
5594 |
msgid "Include button to report listings"
|
5595 |
msgstr "يتطلب تسجيل الدخول لنشر الإعلانات؟"
|
5596 |
|
5597 |
+
#: includes/admin/settings/class-settings-bootstrap.php:501
|
5598 |
msgctxt "settings"
|
5599 |
msgid "Enable report listing for registered users only"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: includes/admin/settings/class-settings-bootstrap.php:511
|
5603 |
msgctxt "settings"
|
5604 |
msgid "Report listing option list"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: includes/admin/settings/class-settings-bootstrap.php:512
|
5608 |
msgctxt "settings"
|
5609 |
msgid ""
|
5610 |
"Form option list to report a listing as inappropriate. One option per line."
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: includes/admin/settings/class-settings-bootstrap.php:523
|
5614 |
#, fuzzy
|
5615 |
msgctxt "settings"
|
5616 |
msgid "Include listing contact form on listing pages"
|
5617 |
msgstr "إدراج الإعلان مع نموذج الاتصال في صفحات الإعلان؟"
|
5618 |
|
5619 |
+
#: includes/admin/settings/class-settings-bootstrap.php:524
|
5620 |
#, fuzzy
|
5621 |
msgctxt "settings"
|
5622 |
msgid ""
|
5626 |
"يسمح للزوار بالاتصال بكتاب الإعلان بشكل خاص. الكتاب سوف يتلقون رسائل عبر "
|
5627 |
"البريد الإلكتروني."
|
5628 |
|
5629 |
+
#: includes/admin/settings/class-settings-bootstrap.php:533
|
5630 |
#, fuzzy
|
5631 |
msgctxt "settings"
|
5632 |
msgid "Require login for using the contact form"
|
5633 |
msgstr "يتطلب تسجيل الدخول لاستخدام نموذج الاتصال؟"
|
5634 |
|
5635 |
+
#: includes/admin/settings/class-settings-bootstrap.php:544
|
5636 |
#, fuzzy
|
5637 |
msgctxt "settings"
|
5638 |
msgid "Maximum number of daily contact form submits from registered users"
|
5639 |
msgstr "الحد الأقصى لعدد إرسال الاتصالات يوميا"
|
5640 |
|
5641 |
+
#: includes/admin/settings/class-settings-bootstrap.php:545
|
5642 |
#, fuzzy
|
5643 |
msgctxt "settings"
|
5644 |
msgid ""
|
5648 |
"إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في "
|
5649 |
"اليوم الواحد."
|
5650 |
|
5651 |
+
#: includes/admin/settings/class-settings-bootstrap.php:557
|
5652 |
#, fuzzy
|
5653 |
msgctxt "settings"
|
5654 |
msgid "Maximum number of contact form submits for each listing per day"
|
5655 |
msgstr "الحد الأقصى لعدد إرسال الاتصالات يوميا"
|
5656 |
|
5657 |
+
#: includes/admin/settings/class-settings-bootstrap.php:558
|
5658 |
#, fuzzy
|
5659 |
msgctxt "settings"
|
5660 |
msgid ""
|
5664 |
"إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في "
|
5665 |
"اليوم الواحد."
|
5666 |
|
5667 |
+
#: includes/admin/settings/class-settings-bootstrap.php:570
|
5668 |
#, fuzzy
|
5669 |
msgctxt "settings"
|
5670 |
msgid "Include comment form on listing pages?"
|
5671 |
msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
|
5672 |
|
5673 |
+
#: includes/admin/settings/class-settings-bootstrap.php:585
|
5674 |
#, fuzzy
|
5675 |
msgctxt "settings"
|
5676 |
msgid "Show listings under categories on main page"
|
5677 |
msgstr "إظهار الإعلانات تحت التصنيفات على الصفحة الرئيسية؟"
|
5678 |
|
5679 |
+
#: includes/admin/settings/class-settings-bootstrap.php:595
|
5680 |
msgctxt "settings"
|
5681 |
msgid ""
|
5682 |
"Prevents featured listings from floating to the top of the selected page."
|
5683 |
msgstr ""
|
5684 |
|
5685 |
+
#: includes/admin/settings/class-settings-bootstrap.php:625
|
5686 |
msgctxt "settings"
|
5687 |
msgid ""
|
5688 |
"The user ID or login of an existing user account. If login is not required "
|
5690 |
"that will not a be posting a listing is best."
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: includes/admin/settings/class-settings-bootstrap.php:651
|
5694 |
#, fuzzy
|
5695 |
msgctxt "settings"
|
5696 |
msgid "Edit post status"
|
5697 |
msgstr "تعديل حالة الإعلان"
|
5698 |
|
5699 |
+
#: includes/admin/settings/class-settings-bootstrap.php:666
|
5700 |
#, fuzzy
|
5701 |
msgctxt "settings"
|
5702 |
msgid "Status of deleted listings"
|
5703 |
msgstr "حالة الإعلانات المحذوفة"
|
5704 |
|
5705 |
+
#: includes/admin/settings/class-settings-bootstrap.php:717
|
5706 |
#, fuzzy
|
5707 |
msgctxt "settings"
|
5708 |
msgid "Submit Listing instructions message"
|
5709 |
msgstr "إرسال رسالة تعليمات الإعلانات"
|
5710 |
|
5711 |
+
#: includes/admin/settings/class-settings-bootstrap.php:728
|
5712 |
#, fuzzy
|
5713 |
msgctxt "settings"
|
5714 |
msgid "Order categories list by"
|
5715 |
msgstr "ترتيب قائمة التصنيفات حسب"
|
5716 |
|
5717 |
+
#: includes/admin/settings/class-settings-bootstrap.php:742
|
5718 |
#, fuzzy
|
5719 |
msgctxt "settings"
|
5720 |
msgid "Sort order for categories"
|
5721 |
msgstr "ترتيب فرز التصنيفات"
|
5722 |
|
5723 |
+
#: includes/admin/settings/class-settings-bootstrap.php:755
|
5724 |
#, fuzzy
|
5725 |
msgctxt "settings"
|
5726 |
msgid "Show category post count"
|
5727 |
msgstr "إظهار عدد إعلانات التصنيف؟"
|
5728 |
|
5729 |
+
#: includes/admin/settings/class-settings-bootstrap.php:764
|
5730 |
#, fuzzy
|
5731 |
msgctxt "settings"
|
5732 |
msgid "Hide empty categories"
|
5733 |
msgstr "إخفاء التصنيفات الفارغة؟"
|
5734 |
|
5735 |
+
#: includes/admin/settings/class-settings-bootstrap.php:773
|
5736 |
#, fuzzy
|
5737 |
msgctxt "settings"
|
5738 |
msgid "Show only parent categories in category list"
|
5739 |
msgstr "إظهار التصنيفات الأبوية فقط في قائمة التصنيف؟"
|
5740 |
|
5741 |
+
#: includes/admin/settings/class-settings-bootstrap.php:785
|
5742 |
#, fuzzy
|
5743 |
msgctxt "settings"
|
5744 |
msgid "Order directory listings by"
|
5745 |
msgstr "ترتيب إعلانات الدليل حسب"
|
5746 |
|
5747 |
+
#: includes/admin/settings/class-settings-bootstrap.php:809
|
5748 |
#, fuzzy
|
5749 |
msgctxt "settings"
|
5750 |
msgid "Sort directory listings by"
|
5751 |
msgstr "فرز إعلانات الدليل حسب"
|
5752 |
|
5753 |
+
#: includes/admin/settings/class-settings-bootstrap.php:810
|
5754 |
#, fuzzy
|
5755 |
msgctxt "settings"
|
5756 |
msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
|
5757 |
msgstr "ترتيب تصاعدي من أ إلى ي، ترتيب تنازلي من ي إلى أ"
|
5758 |
|
5759 |
+
#: includes/admin/settings/class-settings-bootstrap.php:823
|
5760 |
#, fuzzy
|
5761 |
msgctxt "settings"
|
5762 |
msgid "Enable sort bar"
|
5763 |
msgstr "تمكين شريط الفرز؟"
|
5764 |
|
5765 |
+
#: includes/admin/settings/class-settings-bootstrap.php:832
|
5766 |
#, fuzzy
|
5767 |
msgctxt "settings"
|
5768 |
msgid "Sortbar Fields"
|
5769 |
msgstr "حقول شريط الفرز"
|
5770 |
|
5771 |
+
#: includes/admin/settings/class-settings-bootstrap.php:851
|
5772 |
#, fuzzy
|
5773 |
msgctxt "settings"
|
5774 |
msgid "Show the \"Submit listing\" button"
|
5775 |
msgstr "إظهار زر \"إضافة إعلان\"."
|
5776 |
|
5777 |
+
#: includes/admin/settings/class-settings-bootstrap.php:852
|
5778 |
msgctxt "settings"
|
5779 |
msgid ""
|
5780 |
"Hides the button used by the main UI to allow listing submission, but does "
|
5782 |
"customize the submit listing button on your own)"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
+
#: includes/admin/settings/class-settings-bootstrap.php:862
|
5786 |
#, fuzzy
|
5787 |
msgctxt "settings"
|
5788 |
msgid "Show \"Search listings\""
|
5789 |
msgstr "إظهار \"البحث في الإعلانات\"."
|
5790 |
|
5791 |
+
#: includes/admin/settings/class-settings-bootstrap.php:871
|
5792 |
#, fuzzy
|
5793 |
msgctxt "settings"
|
5794 |
msgid "Show the \"View Listings\" button"
|
5795 |
msgstr "إظهار زر \"مشاهدة الإعلانات\"."
|
5796 |
|
5797 |
+
#: includes/admin/settings/class-settings-bootstrap.php:880
|
5798 |
#, fuzzy
|
5799 |
msgctxt "settings"
|
5800 |
msgid "Show the \"Manage Listings\" button"
|
5801 |
msgstr "إظهار زر \"مشاهدة الإعلانات\"."
|
5802 |
|
5803 |
+
#: includes/admin/settings/class-settings-bootstrap.php:924
|
|
|
|
|
|
|
|
|
|
|
|
|
5804 |
#, fuzzy
|
5805 |
msgctxt "settings"
|
5806 |
msgid "Image Settings"
|
5807 |
msgstr "إعدادات الصورة"
|
5808 |
|
5809 |
+
#: includes/admin/settings/class-settings-bootstrap.php:929
|
5810 |
#, fuzzy
|
5811 |
msgctxt "settings"
|
5812 |
msgid "Allow images"
|
5813 |
msgstr "السماح بالصور؟"
|
5814 |
|
5815 |
+
#: includes/admin/settings/class-settings-bootstrap.php:940
|
5816 |
#, fuzzy
|
5817 |
msgctxt "settings"
|
5818 |
msgid "Min Image File Size (KB)"
|
5819 |
msgstr "أقل حجم لملف الصورة (KB)"
|
5820 |
|
5821 |
+
#: includes/admin/settings/class-settings-bootstrap.php:952
|
5822 |
#, fuzzy
|
5823 |
msgctxt "settings"
|
5824 |
msgid "Max Image File Size (KB)"
|
5825 |
msgstr "أقصى حجم لملف الصورة (KB)"
|
5826 |
|
5827 |
+
#: includes/admin/settings/class-settings-bootstrap.php:964
|
5828 |
#, fuzzy
|
5829 |
msgctxt "settings"
|
5830 |
msgid "Min image width (px)"
|
5831 |
msgstr "أقل عرض للصورة (px)"
|
5832 |
|
5833 |
+
#: includes/admin/settings/class-settings-bootstrap.php:974
|
5834 |
#, fuzzy
|
5835 |
msgctxt "settings"
|
5836 |
msgid "Min image height (px)"
|
5837 |
msgstr "أقل ارتفاع للصورة (px)"
|
5838 |
|
5839 |
+
#: includes/admin/settings/class-settings-bootstrap.php:988
|
5840 |
#, fuzzy
|
5841 |
msgctxt "settings"
|
5842 |
msgid "Max image width (px)"
|
5843 |
msgstr "أقصى عرض للصورة (px)"
|
5844 |
|
5845 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1000
|
5846 |
#, fuzzy
|
5847 |
msgctxt "settings"
|
5848 |
msgid "Max image height (px)"
|
5849 |
msgstr "أقصى ارتفاع للصورة (px)"
|
5850 |
|
5851 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1012
|
5852 |
#, fuzzy
|
5853 |
msgctxt "settings"
|
5854 |
msgid "Turn on thickbox/lightbox"
|
5855 |
msgstr "تشغيل thickbox/lightbox؟"
|
5856 |
|
5857 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1013
|
5858 |
#, fuzzy
|
5859 |
msgctxt "settings"
|
5860 |
msgid ""
|
5863 |
"قم بإلغاء التحديد إذا كان يتعارض مع العناصر الأخرى أو الإضافات المثبتة على "
|
5864 |
"موقعك"
|
5865 |
|
5866 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1019
|
5867 |
#, fuzzy
|
5868 |
msgctxt "settings"
|
5869 |
msgid "Thumbnails"
|
5870 |
msgstr "الصور المصغرة"
|
5871 |
|
5872 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1026
|
5873 |
#, fuzzy
|
5874 |
msgctxt "settings"
|
5875 |
msgid "Thumbnail width (px)"
|
5876 |
msgstr "عرض الصور المصغرة (px)"
|
5877 |
|
5878 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1038
|
5879 |
#, fuzzy
|
5880 |
msgctxt "settings"
|
5881 |
msgid "Thumbnail height (px)"
|
5882 |
msgstr "ارتفاع الصورة المصغرة (px)"
|
5883 |
|
5884 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1048
|
5885 |
#, fuzzy
|
5886 |
msgctxt "settings"
|
5887 |
msgid "Crop thumbnails to exact dimensions"
|
5888 |
msgstr "قطع الصور المصغرة للأبعاد المناسبة؟"
|
5889 |
|
5890 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1049
|
5891 |
#, fuzzy
|
5892 |
msgctxt "settings"
|
5893 |
msgid ""
|
5901 |
"تعديل الارتفاع بشكل متناسب. اعتماداً على الصور المرفوعة, قد تكون ارتفاعات "
|
5902 |
"الصور المصغرة مختلفة."
|
5903 |
|
5904 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1060
|
5905 |
msgctxt "settings"
|
5906 |
msgid "Enforce image upload on submit/edit"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1081
|
5910 |
#, fuzzy
|
5911 |
msgctxt "settings"
|
5912 |
msgid "Default thumbnail image size"
|
5913 |
msgstr "إعلان العضو الافتراضي"
|
5914 |
|
5915 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1084
|
5916 |
msgctxt "settings"
|
5917 |
msgid ""
|
5918 |
"This indicates the size of the thumbnail to be used both in excerpt and "
|
5921 |
"width as the starting point."
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1093
|
5925 |
msgctxt "settings"
|
5926 |
msgid "Use \"Coming Soon\" photo for listings without any (primary) images?"
|
5927 |
msgstr ""
|
5928 |
|
5929 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1117
|
5930 |
msgctxt "settings"
|
5931 |
msgid "Display featured (sticky) badge"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1131
|
5935 |
#, fuzzy
|
5936 |
msgctxt "settings"
|
5937 |
msgid "Featured Badge image"
|
5938 |
msgstr "وحدة المستويات المميزة"
|
5939 |
|
5940 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1141
|
5941 |
#, fuzzy
|
5942 |
msgctxt "settings"
|
5943 |
msgid "Featured Badge URL"
|
5944 |
msgstr "وحدة المستويات المميزة"
|
5945 |
|
5946 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1142
|
5947 |
msgctxt "settings"
|
5948 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5949 |
msgstr ""
|
5950 |
|
5951 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1166
|
5952 |
#, fuzzy
|
5953 |
msgctxt "settings"
|
5954 |
msgid "Fee Order"
|
5955 |
msgstr "ترتيب"
|
5956 |
|
5957 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1179
|
5958 |
#, fuzzy
|
5959 |
msgctxt "settings"
|
5960 |
msgid "Put payment gateways in test mode"
|
5961 |
msgstr "وضع بوابات الدفع في وضع الاختبار؟"
|
5962 |
|
5963 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1189
|
5964 |
#, fuzzy
|
5965 |
msgctxt "settings"
|
5966 |
msgid "Currency Code"
|
5967 |
msgstr "رمز العملة"
|
5968 |
|
5969 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1228
|
5970 |
#, fuzzy
|
5971 |
msgctxt "settings"
|
5972 |
msgid "Currency Symbol"
|
5973 |
msgstr "رمز العملة"
|
5974 |
|
5975 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1238
|
5976 |
#, fuzzy
|
5977 |
msgctxt "settings"
|
5978 |
msgid "Currency symbol display"
|
5979 |
msgstr "عرض رمز العملة"
|
5980 |
|
5981 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5982 |
msgctxt "settings"
|
5983 |
msgid "Include plan description in receipt"
|
5984 |
msgstr ""
|
5985 |
|
5986 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1261
|
5987 |
#, fuzzy
|
5988 |
msgctxt "settings"
|
5989 |
msgid "Thank you for payment message"
|
5990 |
msgstr "رسالة الشكر على الدفع"
|
5991 |
|
5992 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1314
|
5993 |
#, fuzzy
|
5994 |
msgctxt "settings"
|
5995 |
msgid "Ask users to come back for abandoned payments"
|
5996 |
msgstr "أطلب من الأعضاء العودة للمدفوعات المتخلى عنها؟"
|
5997 |
|
5998 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1325
|
5999 |
#, fuzzy
|
6000 |
msgctxt "settings"
|
6001 |
msgid "Listing abandonment threshold (hours)"
|
6002 |
msgstr "عتبة التخلي على الإعلان (ساعات)"
|
6003 |
|
6004 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
6005 |
#, fuzzy
|
6006 |
msgctxt "settings"
|
6007 |
msgid "Display email address fields publicly"
|
6008 |
msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
|
6009 |
|
6010 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1343
|
6011 |
#, fuzzy
|
6012 |
msgctxt "settings"
|
6013 |
msgid ""
|
6019 |
"لأن هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين "
|
6020 |
"البريد للاستخدام في المستقبل."
|
6021 |
|
6022 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
6023 |
#, fuzzy
|
6024 |
msgctxt "settings"
|
6025 |
msgid "How to determine the listing's email address?"
|
6026 |
msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
|
6027 |
|
6028 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
6029 |
#, fuzzy
|
6030 |
msgctxt "settings"
|
6031 |
msgid ""
|
6035 |
"هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج "
|
6036 |
"الاتصال أو عندما ينتهي تاريخ الإعلانات."
|
6037 |
|
6038 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1366
|
6039 |
msgctxt "settings"
|
6040 |
msgid "Email Content-Type header"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1367
|
6044 |
msgctxt "settings"
|
6045 |
msgid ""
|
6046 |
"Use this setting to control the format of the emails explicitly. Some "
|
6049 |
"then \"Both\"."
|
6050 |
msgstr ""
|
6051 |
|
6052 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1428
|
6053 |
#, fuzzy
|
6054 |
msgctxt "settings"
|
6055 |
msgid "Templates"
|
6056 |
msgstr "قوالب البريد الإلكتروني"
|
6057 |
|
6058 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1433
|
6059 |
#, fuzzy
|
6060 |
msgctxt "settings"
|
6061 |
msgid "Email confirmation message"
|
6062 |
msgstr "رسالة تأكيد البريد الإلكتروني"
|
6063 |
|
6064 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
6065 |
#, fuzzy
|
6066 |
msgctxt "settings"
|
6067 |
msgid "Sent after a listing has been submitted."
|
6068 |
msgstr "ترسل بعد أن يضاف الإعلان."
|
6069 |
|
6070 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1452
|
6071 |
#, fuzzy
|
6072 |
msgctxt "settings"
|
6073 |
msgid "Listing published message"
|
6074 |
msgstr "رسالة نشر الإعلان"
|
6075 |
|
6076 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1453
|
6077 |
#, fuzzy
|
6078 |
msgctxt "settings"
|
6079 |
msgid "Sent when the listing has been published or approved by an admin."
|
6080 |
msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
|
6081 |
|
6082 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1470
|
6083 |
#, fuzzy
|
6084 |
msgctxt "settings"
|
6085 |
msgid "Listing Contact Message"
|
6086 |
msgstr "رسالة اتصال الإعلان"
|
6087 |
|
6088 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1471
|
6089 |
#, fuzzy
|
6090 |
msgctxt "settings"
|
6091 |
msgid ""
|
6095 |
"ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات "
|
6096 |
"الإعلانات الخاصة بهم."
|
6097 |
|
6098 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1511
|
6099 |
#, fuzzy
|
6100 |
msgctxt "settings"
|
6101 |
msgid "Payment completed message"
|
6102 |
msgstr "رسالة تذكير بالتخلي عن الدفع"
|
6103 |
|
6104 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
6105 |
#, fuzzy
|
6106 |
msgctxt "settings"
|
6107 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6108 |
msgstr "ترسل أحيانا بعد أن يتخلي الأعضاء عن الدفعة المنتظرة."
|
6109 |
|
6110 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1548
|
6111 |
#, fuzzy
|
6112 |
msgctxt "settings"
|
6113 |
msgid "Payment abandoned reminder message"
|
6114 |
msgstr "رسالة تذكير بالتخلي عن الدفع"
|
6115 |
|
6116 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1674
|
6117 |
msgctxt "settings"
|
6118 |
msgid "Cropped"
|
6119 |
msgstr ""
|
6120 |
|
6121 |
+
#: includes/admin/settings/class-settings.php:499
|
6122 |
+
#: includes/admin/settings/class-settings.php:510
|
6123 |
msgctxt "settings"
|
6124 |
msgid "\"%s\" can not be empty."
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: includes/admin/settings/class-settings.php:527
|
6128 |
msgctxt "settings"
|
6129 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6130 |
msgstr ""
|
6156 |
msgid "Could not change the active theme to \"%s\"."
|
6157 |
msgstr "تعذر تغيير القالب النشط إلى \"%s\"."
|
6158 |
|
6159 |
+
#: includes/admin/controllers/class-themes-admin.php:150
|
6160 |
msgctxt "themes"
|
6161 |
msgid "Active theme changed to \"%s\"."
|
6162 |
msgstr "القالب النشط تغير إلى \"%s\"."
|
6163 |
|
6164 |
+
#: includes/admin/controllers/class-themes-admin.php:153
|
6165 |
msgctxt "themes"
|
6166 |
msgid ""
|
6167 |
"%s requires that you tag your existing fields to match some places we want "
|
6170 |
"%s يتطلب أن تضيف وسوم في الحقول الموجودة الخاصة بك لمطابقة بعض الأماكن لأننا "
|
6171 |
"نريد وضع البيانات الخاصة بك في القالب. وفيما يلي الحقول التي نظن أنها مفقودة."
|
6172 |
|
6173 |
+
#: includes/admin/controllers/class-themes-admin.php:164
|
6174 |
msgctxt "themes"
|
6175 |
msgid "Map My Fields"
|
6176 |
msgstr "أنشئ خريطة لحقولي"
|
6177 |
|
6178 |
+
#: includes/admin/controllers/class-themes-admin.php:172
|
6179 |
msgctxt "themes"
|
6180 |
msgid "Suggested fields created successfully."
|
6181 |
msgstr " تم إنشاء الحقول المقترحة بنجاح."
|
6182 |
|
6183 |
+
#: includes/admin/controllers/class-themes-admin.php:175
|
6184 |
msgctxt "themes"
|
6185 |
msgid "Theme installed successfully."
|
6186 |
msgstr "تم تثبيت القالب بنجاح."
|
6187 |
|
6188 |
+
#: includes/admin/controllers/class-themes-admin.php:178
|
6189 |
#, fuzzy
|
6190 |
msgctxt "themes"
|
6191 |
msgid "Theme was deleted successfully."
|
6192 |
msgstr "تم حذف القالب بنجاح."
|
6193 |
|
6194 |
+
#: includes/admin/controllers/class-themes-admin.php:181
|
6195 |
msgctxt "themes"
|
6196 |
msgid "Could not delete theme directory. Check permissions."
|
6197 |
msgstr "تعذر حذف مجلد القالب. تحقق من الصلاحيات."
|
6198 |
|
6199 |
+
#: includes/admin/controllers/class-themes-admin.php:234
|
6200 |
msgctxt "themes"
|
6201 |
msgid "Please upload a valid theme file."
|
6202 |
msgstr "المرجو رفع ملف قالب صالح."
|
6203 |
|
6204 |
+
#: includes/admin/controllers/class-themes-admin.php:243
|
6205 |
msgctxt "themes"
|
6206 |
msgid "Could not move \"%s\" to a temporary directory."
|
6207 |
msgstr "لا يمكن نقل \"%s\" إلى مجلد مؤقت."
|
6208 |
|
6209 |
+
#: includes/admin/controllers/class-themes-admin.php:329
|
6210 |
msgctxt "themes"
|
6211 |
msgid "Activate your <a>license key</a> to use this theme."
|
6212 |
msgstr "فعِّل <a>مفتاح الترخيص</a> الخاص بك لاستخدام هذا القالب."
|
6213 |
|
6214 |
+
#: includes/admin/controllers/class-themes-admin.php:372
|
6215 |
#, fuzzy
|
6216 |
msgctxt "themes"
|
6217 |
msgid "Invalid theme ID"
|
6218 |
msgstr "معرف حقل غير صالح"
|
6219 |
|
6220 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6221 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6222 |
msgctxt "themes"
|
6223 |
msgid "Could not update theme: %s"
|
6286 |
"حاول تعطيل إضافات أخرى أولاً و/أو زيادة قيم التوجيهات 'memory_limit' و "
|
6287 |
"'max_execution_time' في الخادم الخاص بك بتعديل ملف الإعدادات php.ini."
|
6288 |
|
6289 |
+
#: templates/admin/csv-export.tpl.php:30
|
6290 |
msgctxt "admin csv-export"
|
6291 |
msgid "Export settings"
|
6292 |
msgstr "إعدادات التصدير"
|
6293 |
|
6294 |
+
#: templates/admin/csv-export.tpl.php:36
|
6295 |
msgctxt "admin csv-export"
|
6296 |
msgid "Which listings to export?"
|
6297 |
msgstr "أي لائحة تريد التصدير؟"
|
6298 |
|
6299 |
+
#: templates/admin/csv-export.tpl.php:41
|
|
|
|
|
|
|
|
|
|
|
6300 |
msgctxt "admin csv-export"
|
6301 |
msgid "Active Only"
|
6302 |
msgstr "المفعل فقط"
|
6303 |
|
6304 |
+
#: templates/admin/csv-export.tpl.php:42
|
6305 |
msgctxt "admin csv-export"
|
6306 |
msgid "Active + Pending Renewal"
|
6307 |
msgstr "مفعل + ريثما يتم التجديد"
|
6308 |
|
6309 |
+
#: templates/admin/csv-export.tpl.php:50
|
6310 |
+
msgctxt "admin csv-export"
|
6311 |
+
msgid "Export images"
|
6312 |
+
msgstr "تصدير الصور"
|
6313 |
+
|
6314 |
+
#: templates/admin/csv-export.tpl.php:65
|
6315 |
+
msgctxt "admin csv-export"
|
6316 |
+
msgid "Include unique IDs for each listing (sequence_id column)."
|
6317 |
+
msgstr "تتضمن معرفات (IDs) فريدة لكل إعلان (عمود sequence_id)."
|
6318 |
+
|
6319 |
+
#: templates/admin/csv-export.tpl.php:78
|
6320 |
+
msgctxt "admin csv-export"
|
6321 |
+
msgid "Author information (username)"
|
6322 |
+
msgstr "معلومات الكاتب (إسم المستخدم)"
|
6323 |
+
|
6324 |
+
#: templates/admin/csv-export.tpl.php:88
|
6325 |
+
msgctxt "admin csv-export"
|
6326 |
+
msgid "Listing expiration date"
|
6327 |
+
msgstr "إنتهاء صلاحية الإعلان"
|
6328 |
+
|
6329 |
+
#: templates/admin/csv-export.tpl.php:97
|
6330 |
+
#, fuzzy
|
6331 |
+
msgctxt "admin csv-export"
|
6332 |
+
msgid "Listing created date"
|
6333 |
+
msgstr "صور الإعلانات"
|
6334 |
+
|
6335 |
+
#: templates/admin/csv-export.tpl.php:106
|
6336 |
+
#, fuzzy
|
6337 |
+
msgctxt "admin csv-export"
|
6338 |
+
msgid "Listing last updated date"
|
6339 |
+
msgstr "إنتهاء صلاحية الإعلان"
|
6340 |
+
|
6341 |
+
#: templates/admin/csv-export.tpl.php:115
|
6342 |
+
#, fuzzy
|
6343 |
+
msgctxt "admin csv-export"
|
6344 |
+
msgid "Listing T&C acceptance date"
|
6345 |
+
msgstr "صور الإعلانات"
|
6346 |
+
|
6347 |
+
#: templates/admin/csv-export.tpl.php:128
|
6348 |
+
msgctxt "admin csv-export"
|
6349 |
+
msgid "What operating system will you use to edit the CSV file?"
|
6350 |
+
msgstr ""
|
6351 |
+
|
6352 |
+
#: templates/admin/csv-export.tpl.php:140
|
6353 |
+
msgctxt "admin csv-export"
|
6354 |
+
msgid "Windows"
|
6355 |
+
msgstr ""
|
6356 |
+
|
6357 |
+
#: templates/admin/csv-export.tpl.php:148
|
6358 |
+
msgctxt "admin csv-export"
|
6359 |
+
msgid "macOS"
|
6360 |
+
msgstr ""
|
6361 |
+
|
6362 |
+
#: templates/admin/csv-export.tpl.php:162
|
6363 |
+
msgctxt "admin csv-export"
|
6364 |
+
msgid "Category Separator"
|
6365 |
+
msgstr "فاصلة التصنيف"
|
6366 |
+
|
6367 |
+
#: templates/admin/csv-export.tpl.php:172
|
6368 |
+
msgctxt "admin csv-export"
|
6369 |
+
msgid "Export Listings"
|
6370 |
+
msgstr "الإعلانات المصدرة"
|
6371 |
+
|
6372 |
+
#: templates/admin/csv-export.tpl.php:178
|
6373 |
+
msgctxt "admin csv-export"
|
6374 |
+
msgid "Export in Progress..."
|
6375 |
+
msgstr "جاري التصدير..."
|
6376 |
+
|
6377 |
+
#: templates/admin/csv-export.tpl.php:179
|
6378 |
+
msgctxt "admin csv-export"
|
6379 |
+
msgid ""
|
6380 |
+
"Your export file is being prepared. Please <u>do not leave</u> this page "
|
6381 |
+
"until the export finishes."
|
6382 |
+
msgstr ""
|
6383 |
+
"جاري إعداد ملف التصدير. المرجو <u>عدم ترك</u> هذه الصفحة حتى انتهاء التصدير."
|
6384 |
+
|
6385 |
+
#: templates/admin/csv-export.tpl.php:182
|
6386 |
+
msgctxt "admin csv-export"
|
6387 |
+
msgid "No. of listings:"
|
6388 |
+
msgstr "أرقام الإعلانات:"
|
6389 |
+
|
6390 |
+
#: templates/admin/csv-export.tpl.php:184
|
6391 |
+
msgctxt "admin csv-export"
|
6392 |
+
msgid "Approximate export file size:"
|
6393 |
+
msgstr "الحجم التقريبي لملف التصدير:"
|
6394 |
+
|
6395 |
+
#: templates/admin/csv-export.tpl.php:191
|
6396 |
+
msgctxt "admin csv-export"
|
6397 |
+
msgid "Cancel Export"
|
6398 |
+
msgstr "إلغاء التصدير"
|
6399 |
+
|
6400 |
+
#: templates/admin/csv-export.tpl.php:196
|
6401 |
+
msgctxt "admin csv-export"
|
6402 |
+
msgid "Export Complete"
|
6403 |
+
msgstr "تم التصدير"
|
6404 |
+
|
6405 |
+
#: templates/admin/csv-export.tpl.php:197
|
6406 |
+
msgctxt "admin csv-export"
|
6407 |
+
msgid ""
|
6408 |
+
"Your export file has been successfully created and it is now ready for "
|
6409 |
+
"download."
|
6410 |
+
msgstr "تم بنجاح إنشاء ملف التصدير، والآن جاهز للتحميل."
|
6411 |
+
|
6412 |
+
#: templates/admin/csv-export.tpl.php:202
|
6413 |
+
#, fuzzy
|
6414 |
+
msgctxt "admin csv-export"
|
6415 |
+
msgid "Download %1$s (%2$s)"
|
6416 |
+
msgstr "تحميل %s (%s)"
|
6417 |
+
|
6418 |
+
#: templates/admin/csv-export.tpl.php:210
|
6419 |
+
msgctxt "admin csv-export"
|
6420 |
+
msgid ""
|
6421 |
+
"Click \"Cleanup\" once the file has been downloaded in order to remove all "
|
6422 |
+
"temporary data created by Business Directory during the export process."
|
6423 |
+
msgstr ""
|
6424 |
+
"إضغط على \"تنظيف\" بعد تحميل الملف بغية إزالة جميع البيانات المؤقتة التي تم "
|
6425 |
+
"إنشاؤها بواسطة \"دليل الأعمال\" أثناء عملية التصدير."
|
6426 |
+
|
6427 |
+
#: templates/admin/csv-export.tpl.php:211
|
6428 |
+
msgctxt "admin csv-export"
|
6429 |
+
msgid "Cleanup"
|
6430 |
+
msgstr "نظف"
|
6431 |
+
|
6432 |
+
#: templates/admin/csv-export.tpl.php:216
|
6433 |
+
msgctxt "admin csv-export"
|
6434 |
+
msgid "Export Canceled"
|
6435 |
+
msgstr "ألغي التصدير"
|
6436 |
+
|
6437 |
+
#: templates/admin/csv-export.tpl.php:217
|
6438 |
+
msgctxt "admin csv-export"
|
6439 |
+
msgid "The export has been canceled."
|
6440 |
+
msgstr "تم إلغاء التصدير"
|
6441 |
+
|
6442 |
+
#: templates/admin/csv-export.tpl.php:218
|
6443 |
+
msgctxt "admin csv-export"
|
6444 |
+
msgid "← Return to CSV Export"
|
6445 |
+
msgstr "← العودة إلى تصدير CSV"
|
6446 |
+
|
6447 |
+
#: includes/admin/csv-import.php:177
|
6448 |
+
msgctxt "admin csv-import"
|
6449 |
+
msgid "Whatever"
|
6450 |
+
msgstr "أيا كان"
|
6451 |
+
|
6452 |
+
#: includes/admin/csv-import.php:348
|
6453 |
+
msgctxt "admin csv-import"
|
6454 |
+
msgid "Please upload or select a CSV file."
|
6455 |
+
msgstr "المرجو رفع أو حدد ملف CSV."
|
6456 |
+
|
6457 |
+
#: includes/admin/csv-import.php:377
|
6458 |
+
msgctxt "admin csv-import"
|
6459 |
+
msgid ""
|
6460 |
+
"An error was detected while validating the CSV file for import. Please fix "
|
6461 |
+
"this before proceeding."
|
6462 |
+
msgstr ""
|
6463 |
+
"تم اكتشاف خطأ أثناء التحقق من صحة ملف CSV للاستيراد. المرجو إصلاح هذا قبل "
|
6464 |
+
"المتابعة."
|
6465 |
+
|
6466 |
+
#: includes/admin/csv-import.php:386
|
6467 |
+
msgctxt "admin csv-import"
|
6468 |
+
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6469 |
+
msgstr "الاستيراد في \"وضع الاختبار\". لن يتم إدراج أي شيء في قاعدة البيانات."
|
6470 |
+
|
6471 |
+
#: includes/admin/helpers/csv/class-csv-import.php:533
|
6472 |
+
msgctxt "admin csv-import"
|
6473 |
+
msgid ""
|
6474 |
+
"Could not create listing category \"<category-name>\". The operation failed "
|
6475 |
+
"with the following error: <error-message>."
|
6476 |
+
msgstr ""
|
6477 |
+
|
6478 |
+
#: includes/admin/helpers/csv/class-csv-import.php:539
|
6479 |
+
msgctxt "admin csv-import"
|
6480 |
+
msgid "Could not create listing category \"%s\""
|
6481 |
+
msgstr "لا يمكن إنشاء تصنيف الإعلان \"%s\""
|
6482 |
+
|
6483 |
+
#: includes/admin/helpers/csv/class-csv-import.php:730
|
6484 |
+
msgctxt "admin csv-import"
|
6485 |
+
msgid "Username \"%s\" does not exist"
|
6486 |
+
msgstr "إسم المستخدم \"%s\" غير موجود"
|
6487 |
+
|
6488 |
+
#: includes/admin/helpers/csv/class-csv-import.php:757
|
6489 |
+
msgctxt "admin csv-import"
|
6490 |
+
msgid "There is no Plan with ID = <fee-id>"
|
6491 |
+
msgstr ""
|
6492 |
+
|
6493 |
+
#: includes/admin/helpers/csv/class-csv-import.php:788
|
6494 |
+
msgctxt "admin csv-import"
|
6495 |
+
msgid "Missing required field: %s"
|
6496 |
+
msgstr "حقل مطلوب مفقود: %s"
|
6497 |
+
|
6498 |
+
#: includes/admin/helpers/csv/class-csv-import.php:833
|
6499 |
+
msgctxt "admin csv-import"
|
6500 |
+
msgid "Listing category \"%s\" does not exist"
|
6501 |
+
msgstr "تصنيف الإعلان \"%s\" غير موجود"
|
6502 |
+
|
6503 |
+
#: includes/admin/helpers/csv/class-csv-import.php:907
|
6504 |
+
msgctxt "admin csv-import"
|
6505 |
+
msgid "The string <string> couldn't be converted into a valid date."
|
6506 |
+
msgstr ""
|
6507 |
+
|
6508 |
+
#: templates/admin/csv-import-progress.tpl.php:5
|
6509 |
+
msgctxt "admin csv-import"
|
6510 |
+
msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
|
6511 |
+
msgstr "حدث خطأ فادح أثناء عملية الاستيراد. وكان السبب الذي أعطي: \"%s\"."
|
6512 |
+
|
6513 |
+
#: templates/admin/csv-import-progress.tpl.php:9
|
6514 |
+
msgctxt "admin csv-import"
|
6515 |
+
msgid ""
|
6516 |
+
"A fatal error occurred during the import. If connection wasn't lost during "
|
6517 |
+
"the import, please make sure that you have enough free disk space and memory "
|
6518 |
+
"available to PHP. Check your error logs for details."
|
6519 |
+
msgstr ""
|
6520 |
+
"حدث خطأ فادح أثناء عملية الاستيراد. إذا لم يكن الاتصال قد قطع أثناء عملية "
|
6521 |
+
"الاستيراد، الرجاء التأكد من أن لديك ما يكفي من المساحة الفارغة على القرص "
|
6522 |
+
"والذاكرة المتاحة إلى بي إتش بي. تحقق من سجلات الخطأ الخاص بك للحصول على "
|
6523 |
+
"التفاصيل."
|
6524 |
+
|
6525 |
+
#: templates/admin/csv-import-progress.tpl.php:12
|
6526 |
+
#: templates/admin/csv-import-progress.tpl.php:19
|
6527 |
+
msgctxt "admin csv-import"
|
6528 |
+
msgid "← Return to CSV Import"
|
6529 |
+
msgstr "← العودة إلى \"استيراد CSV\""
|
6530 |
+
|
6531 |
+
#: templates/admin/csv-import-progress.tpl.php:17
|
6532 |
+
msgctxt "admin csv-import"
|
6533 |
+
msgid "Import Canceled"
|
6534 |
+
msgstr "ألغي الاستيراد"
|
6535 |
+
|
6536 |
+
#: templates/admin/csv-import-progress.tpl.php:18
|
6537 |
+
msgctxt "admin csv-import"
|
6538 |
+
msgid "The import has been canceled."
|
6539 |
+
msgstr "تم إلغاء الاستيراد."
|
6540 |
+
|
6541 |
+
#: templates/admin/csv-import-progress.tpl.php:25
|
6542 |
+
#, fuzzy
|
6543 |
+
msgctxt "admin csv-import"
|
6544 |
+
msgid "Import Progress"
|
6545 |
+
msgstr "تقدم الاستيراد"
|
6546 |
+
|
6547 |
+
#: templates/admin/csv-import-progress.tpl.php:28
|
6548 |
+
msgctxt "admin csv-import"
|
6549 |
+
msgid "Files"
|
6550 |
+
msgstr "ملفات"
|
6551 |
+
|
6552 |
+
#: templates/admin/csv-import-progress.tpl.php:31
|
6553 |
+
msgctxt "admin csv-import"
|
6554 |
+
msgid "Rows in file"
|
6555 |
+
msgstr "السطور في ملف"
|
6556 |
+
|
6557 |
+
#: templates/admin/csv-import-progress.tpl.php:34
|
6558 |
+
msgctxt "admin csv-import"
|
6559 |
+
msgid "Progress"
|
6560 |
+
msgstr "التقدم"
|
6561 |
+
|
6562 |
+
#: templates/admin/csv-import-progress.tpl.php:38
|
6563 |
+
msgctxt "admin csv-import"
|
6564 |
+
msgid "Import has not started. Click \"Start Import\" to begin."
|
6565 |
+
msgstr "لم يبدأ الاستيراد. إضغط على \"استيراد\" للبدء."
|
6566 |
+
|
6567 |
+
#: templates/admin/csv-import-progress.tpl.php:39
|
6568 |
+
msgctxt "admin csv-import"
|
6569 |
+
msgid "Importing CSV file..."
|
6570 |
+
msgstr "استيراد ملف CSV..."
|
6571 |
+
|
6572 |
+
#: templates/admin/csv-import-progress.tpl.php:45
|
6573 |
+
msgctxt "admin csv-import"
|
6574 |
+
msgid "Start Import"
|
6575 |
+
msgstr "بدء الاستيراد"
|
6576 |
+
|
6577 |
+
#: templates/admin/csv-import-progress.tpl.php:46
|
6578 |
+
msgctxt "admin csv-import"
|
6579 |
+
msgid "Cancel Import"
|
6580 |
+
msgstr "إلغاء الاستيراد"
|
6581 |
+
|
6582 |
+
#: templates/admin/csv-import-progress.tpl.php:53
|
6583 |
+
msgctxt "admin csv-import"
|
6584 |
+
msgid "Import finished"
|
6585 |
+
msgstr "إنتهاء الاستيراد"
|
6586 |
+
|
6587 |
+
#: templates/admin/csv-import-progress.tpl.php:56
|
6588 |
+
msgctxt "admin csv-import"
|
6589 |
+
msgid "Import was completed successfully."
|
6590 |
+
msgstr "تم الاستيراد بنجاح."
|
6591 |
+
|
6592 |
+
#: templates/admin/csv-import-progress.tpl.php:60
|
6593 |
+
msgctxt "admin csv-import"
|
6594 |
+
msgid "Import was completed but some rows were rejected."
|
6595 |
+
msgstr "تم إكمال عملية الاستيراد ولكن رفضت بعض السطور."
|
6596 |
+
|
6597 |
+
#: templates/admin/csv-import-progress.tpl.php:63
|
6598 |
+
msgctxt "admin csv-import"
|
6599 |
+
msgid "Import Summary"
|
6600 |
+
msgstr "ملخص الاستيراد"
|
6601 |
+
|
6602 |
+
#: templates/admin/csv-import-progress.tpl.php:65
|
6603 |
+
msgctxt "admin csv-import"
|
6604 |
+
msgid "Rows in file:"
|
6605 |
+
msgstr "السطور في ملف:"
|
6606 |
|
6607 |
+
#: templates/admin/csv-import-progress.tpl.php:68
|
6608 |
+
msgctxt "admin csv-import"
|
6609 |
+
msgid "Imported rows:"
|
6610 |
+
msgstr "السطور المستوردة:"
|
6611 |
|
6612 |
+
#: templates/admin/csv-import-progress.tpl.php:71
|
6613 |
+
msgctxt "admin csv-import"
|
6614 |
+
msgid "Rejected rows:"
|
6615 |
+
msgstr "السطور المرفوضة:"
|
|
|
|
|
|
|
|
|
6616 |
|
6617 |
+
#: templates/admin/csv-import-progress.tpl.php:76
|
6618 |
+
msgctxt "admin csv-import"
|
6619 |
+
msgid "Import Warnings"
|
6620 |
+
msgstr "تحذيرات الاستيراد "
|
6621 |
|
6622 |
+
#: templates/admin/csv-import-progress.tpl.php:79
|
6623 |
+
msgctxt "admin csv-import"
|
6624 |
+
msgid "Line #"
|
6625 |
+
msgstr "سطر #"
|
6626 |
|
6627 |
+
#: templates/admin/csv-import-progress.tpl.php:80
|
6628 |
+
msgctxt "admin csv-import"
|
6629 |
+
msgid "Line"
|
6630 |
+
msgstr "سطر"
|
6631 |
|
6632 |
+
#: templates/admin/csv-import-progress.tpl.php:81
|
6633 |
+
msgctxt "admin csv-import"
|
6634 |
+
msgid "Warning"
|
6635 |
+
msgstr "تحذير"
|
6636 |
|
6637 |
+
#: templates/admin/csv-import.tpl.php:27
|
6638 |
+
msgctxt "admin csv-import"
|
6639 |
+
msgid "Here, you can import data into your directory using the CSV format."
|
6640 |
+
msgstr "هنا، يمكنك استيراد البيانات إلى الدليل الخاص بك باستخدام تنسيق CSV."
|
|
|
6641 |
|
6642 |
+
#: templates/admin/csv-import.tpl.php:61 templates/admin/csv-import.tpl.php:90
|
6643 |
+
msgctxt "admin csv-import"
|
6644 |
+
msgid "... or <a>select a file uploaded to the imports folder</a>"
|
6645 |
+
msgstr ".. أو <a>حدد ملفا تم تحميله إلى مجلد الاستراد</a>"
|
|
|
6646 |
|
6647 |
+
#: templates/admin/csv-import.tpl.php:71 templates/admin/csv-import.tpl.php:101
|
6648 |
+
msgctxt "admin csv-import"
|
6649 |
+
msgid "(Upload new file)"
|
6650 |
+
msgstr "(رفع ملف جديد)"
|
|
|
6651 |
|
6652 |
+
#: templates/admin/csv-import.tpl.php:126
|
6653 |
+
msgctxt "admin csv-import"
|
6654 |
+
msgid "Comma (,)"
|
6655 |
msgstr ""
|
6656 |
|
6657 |
+
#: templates/admin/csv-import.tpl.php:133
|
6658 |
+
msgctxt "admin csv-import"
|
6659 |
+
msgid "Semicolon (;)"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: templates/admin/csv-import.tpl.php:192
|
6663 |
+
#, fuzzy
|
6664 |
+
msgctxt "admin csv-import"
|
6665 |
+
msgid "Preserve existing status"
|
6666 |
+
msgstr "الإعلانات"
|
6667 |
|
6668 |
+
#: templates/admin/csv-import.tpl.php:243
|
6669 |
+
msgctxt "admin csv-import"
|
6670 |
msgid ""
|
6671 |
+
"Select a default user to be used if the username column is not present in "
|
6672 |
+
"the CSV file."
|
|
|
|
|
6673 |
msgstr ""
|
6674 |
+
"حدد العضو الافتراضي لاستخدامه إذا كان العمود إسم المستخدم غير موجود في ملف "
|
6675 |
+
"CSV."
|
6676 |
|
6677 |
+
#: templates/admin/csv-import.tpl.php:277
|
6678 |
+
msgctxt "admin csv-import"
|
6679 |
+
msgid "Test Import"
|
6680 |
+
msgstr "اختبار الاستيراد"
|
|
|
|
|
|
|
|
|
|
|
6681 |
|
6682 |
+
#: templates/admin/csv-import.tpl.php:278
|
6683 |
+
msgctxt "admin csv-import"
|
6684 |
+
msgid "Import Listings"
|
6685 |
+
msgstr "استيراد الإعلانات"
|
6686 |
|
6687 |
+
#: templates/admin/csv-import.tpl.php:328
|
6688 |
+
#, fuzzy
|
6689 |
+
msgctxt "admin csv-import"
|
6690 |
msgid ""
|
6691 |
+
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6692 |
+
"updating listings from external sources."
|
6693 |
msgstr ""
|
6694 |
+
"تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود "
|
6695 |
+
"عند إضافة أو تحديث الإعلانات من مصادر خارجية."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6696 |
|
6697 |
+
#: templates/admin/csv-import.tpl.php:349
|
6698 |
+
msgctxt "admin csv-import"
|
6699 |
msgid ""
|
6700 |
+
"Internal Sequence ID used to allow listing updates from external sources."
|
6701 |
+
msgstr ""
|
6702 |
+
"معرف (ID) تسلسل داخلي يستخدم للسماح للإعلان بالتحديثات من مصادر خارجية."
|
|
|
|
|
|
|
|
|
|
|
|
|
6703 |
|
6704 |
+
#: templates/admin/csv-import.tpl.php:356
|
6705 |
+
msgctxt "admin csv-import"
|
6706 |
msgid ""
|
6707 |
+
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6708 |
+
"adding or updating listings from external sources."
|
6709 |
msgstr ""
|
6710 |
+
"تاريخ انتهاء صلاحية الإعلان بهذا التنسيق YYYY-MM-dd. \"استخدام\" هذا العمود "
|
6711 |
+
"عند إضافة أو تحديث الإعلانات من مصادر خارجية."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6712 |
|
6713 |
#: includes/admin/csv-import.php:304
|
6714 |
#, fuzzy
|
6861 |
msgid "All"
|
6862 |
msgstr "الكل"
|
6863 |
|
6864 |
+
#: includes/admin/settings/class-settings-bootstrap.php:641
|
6865 |
+
#: includes/admin/settings/class-settings-bootstrap.php:654
|
6866 |
msgctxt "post status"
|
6867 |
msgid "Published"
|
6868 |
msgstr "نشرت"
|
6869 |
|
6870 |
+
#: includes/admin/settings/class-settings-bootstrap.php:669
|
6871 |
msgctxt "post status"
|
6872 |
msgid "Draft"
|
6873 |
msgstr "مسودة"
|
6874 |
|
6875 |
+
#: includes/admin/settings/class-settings-bootstrap.php:670
|
6876 |
msgctxt "post status"
|
6877 |
msgid "Trash"
|
6878 |
msgstr "سلة المهملات"
|
6879 |
|
6880 |
#. translators: %s: url shortcode
|
6881 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
6882 |
msgctxt "contact email"
|
6883 |
msgid "You have received a reply from your listing at %s."
|
6884 |
msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
|
6885 |
|
6886 |
#. translators: %s: name shortcode
|
6887 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1479
|
6888 |
msgctxt "contact email"
|
6889 |
msgid "Name: %s"
|
6890 |
msgstr "الإسم: %s"
|
6891 |
|
6892 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1487
|
6893 |
msgctxt "contact email"
|
6894 |
msgid "Message:"
|
6895 |
msgstr "الرسالة:"
|
6896 |
|
6897 |
#. translators: %s: date shortcode
|
6898 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1491
|
6899 |
msgctxt "contact email"
|
6900 |
msgid "Time: %s"
|
6901 |
msgstr "الوقت: %s"
|
7044 |
msgid "Featured Listing"
|
7045 |
msgstr "إعلان مميز"
|
7046 |
|
7047 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:198
|
7048 |
#, fuzzy
|
7049 |
msgctxt "migrate-18"
|
7050 |
msgid "Featured Levels migration is complete."
|
7051 |
msgstr "وحدة المستويات المميزة"
|
7052 |
|
7053 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:214
|
7054 |
msgctxt "migrate-18"
|
7055 |
msgid ""
|
7056 |
"Business Directory <b>version 5.0</b> is changing how Featured Levels plugin "
|
7058 |
"confusing notion of a \"featured level\" that was limited to sticky listings."
|
7059 |
msgstr ""
|
7060 |
|
7061 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:216
|
7062 |
msgctxt "migrate-18"
|
7063 |
msgid ""
|
7064 |
"We need to migrate your existing \"featured levels\" to plans for use by the "
|
7068 |
"link> and <cancel-link>cancel migration</cancel-link>."
|
7069 |
msgstr ""
|
7070 |
|
7071 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:218
|
7072 |
msgctxt "migrate-18"
|
7073 |
msgid ""
|
7074 |
"Before we do the migration, we need to ask a few simple questions to move "
|
7076 |
"plan\" that is right for you."
|
7077 |
msgstr ""
|
7078 |
|
7079 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:263
|
7080 |
msgctxt "migrate-18"
|
7081 |
msgid "Move to: "
|
7082 |
msgstr ""
|
7083 |
|
7084 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:273
|
7085 |
msgctxt "migrate-18"
|
7086 |
msgid "New plan summary"
|
7087 |
msgstr ""
|
7088 |
|
7089 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:300
|
7090 |
#, fuzzy
|
7091 |
msgctxt "migrate-18"
|
7092 |
msgid "Perform migration"
|
7093 |
msgstr "معلومات الرسوم"
|
7094 |
|
7095 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:345
|
7096 |
#, fuzzy
|
7097 |
msgctxt "migrate-18"
|
7098 |
msgid "Business Directory Plugin - Featured Levels migration required."
|
7099 |
msgstr "دليل الأعمال - إعلانات مميزة"
|
7100 |
|
7101 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:350
|
7102 |
msgctxt "migrate-18"
|
7103 |
msgid ""
|
7104 |
"Featured levels were removed in 5.0. You need to perform your <a>Featured "
|
7105 |
"Levels migration here</a>."
|
7106 |
msgstr ""
|
7107 |
|
7108 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:200
|
7109 |
#, fuzzy
|
7110 |
msgctxt "upgrade-18"
|
7111 |
msgid "← Return to Directory dashboard"
|
7112 |
msgstr "← الرجوع إلى الدليل."
|
7113 |
|
7114 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:210
|
7115 |
msgctxt "upgrade-18"
|
7116 |
msgid "Configure Plan"
|
7117 |
msgstr ""
|
7118 |
|
7119 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:235
|
7120 |
#, fuzzy
|
7121 |
msgctxt "upgrade-18"
|
7122 |
msgid "Featured Level"
|
7123 |
msgstr "وحدة المستويات المميزة"
|
7124 |
|
7125 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:236
|
7126 |
msgctxt "upgrade-18"
|
7127 |
msgid "What to do with it?"
|
7128 |
msgstr ""
|
7129 |
|
7130 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:245
|
7131 |
#, fuzzy
|
7132 |
msgctxt "upgrade-18"
|
7133 |
msgid "%d listing is on this level."
|
7139 |
msgstr[4] "تم تحرير الإعلان"
|
7140 |
msgstr[5] "تم تحرير الإعلان"
|
7141 |
|
7142 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:249
|
7143 |
msgctxt "upgrade-18"
|
7144 |
msgid "Select an option"
|
7145 |
msgstr ""
|
7146 |
|
7147 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:250
|
7148 |
#, fuzzy
|
7149 |
msgctxt "upgrade-18"
|
7150 |
msgid "Remove \"sticky\" status for listings."
|
7151 |
msgstr "حالة مقالة الإعلانات المستوردة"
|
7152 |
|
7153 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:250
|
7154 |
msgctxt "upgrade-18"
|
7155 |
msgid "Remove this (old) level, and leave the listing on the old plan."
|
7156 |
msgstr ""
|
7157 |
|
7158 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:253
|
7159 |
msgctxt "upgrade-18"
|
7160 |
msgid "May change \"sticky\" status depending on plan."
|
7161 |
msgstr ""
|
7162 |
|
7163 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:253
|
7164 |
msgctxt "upgrade-18"
|
7165 |
msgid "Move listings with this level to existing plan."
|
7166 |
msgstr ""
|
7167 |
|
7168 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:256
|
7169 |
#, fuzzy
|
7170 |
msgctxt "upgrade-18"
|
7171 |
msgid "Keep \"sticky\" status of listings."
|
7172 |
msgstr "حالة مقالة الإعلانات المستوردة"
|
7173 |
|
7174 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:256
|
7175 |
msgctxt "upgrade-18"
|
7176 |
msgid "Replace this level with a new plan."
|
7177 |
msgstr ""
|
7604 |
"إعلانات بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. "
|
7605 |
"إذا كنت لا تريد ذلك، إضغط <a>هنا</a> لتغيير الإعداد."
|
7606 |
|
7607 |
+
#: includes/controllers/pages/class-submit-listing.php:420
|
7608 |
msgctxt "templates"
|
7609 |
msgid ""
|
7610 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7613 |
"<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
|
7614 |
"محددة في الإعدادات؟"
|
7615 |
|
7616 |
+
#: includes/controllers/pages/class-submit-listing.php:422
|
7617 |
msgctxt "templates"
|
7618 |
msgid ""
|
7619 |
"Listing submission has been disabled. Contact the administrator for details."
|
7620 |
msgstr ""
|
7621 |
|
7622 |
+
#: includes/controllers/pages/class-submit-listing.php:820
|
7623 |
msgctxt "templates"
|
7624 |
msgid ""
|
7625 |
"<b>There are no Plans available</b>, without a plan site users can't submit "
|
7626 |
"a listing. %s to create a plan"
|
7627 |
msgstr ""
|
7628 |
|
7629 |
+
#: includes/controllers/pages/class-submit-listing.php:834
|
7630 |
msgctxt "templates"
|
7631 |
msgid ""
|
7632 |
"Listing submission is not available at the moment. Contact the administrator "
|
7633 |
"for details."
|
7634 |
msgstr ""
|
7635 |
|
7636 |
+
#: includes/controllers/pages/class-submit-listing.php:837
|
7637 |
msgctxt "templates"
|
7638 |
msgid ""
|
7639 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7641 |
"an existing field"
|
7642 |
msgstr ""
|
7643 |
|
7644 |
+
#: includes/controllers/pages/class-submit-listing.php:1284
|
7645 |
msgctxt "templates"
|
7646 |
msgid "Please agree to the Terms and Conditions."
|
7647 |
msgstr "يرجى الموافقة على الشروط والأحكام."
|
7648 |
|
7649 |
+
#: includes/controllers/pages/class-submit-listing.php:1298
|
7650 |
#, fuzzy
|
7651 |
msgctxt "templates"
|
7652 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7955 |
msgid "\"%s\" is required."
|
7956 |
msgstr "%s مطلوب."
|
7957 |
|
7958 |
+
#: includes/controllers/pages/class-submit-listing.php:69
|
7959 |
msgctxt "submit listing"
|
7960 |
msgid "Click this field to add categories"
|
7961 |
msgstr ""
|
7962 |
|
7963 |
+
#: includes/controllers/pages/class-submit-listing.php:70
|
7964 |
#, fuzzy
|
7965 |
msgctxt "submit listing"
|
7966 |
msgid "Complete Listing"
|
7967 |
msgstr "حذف الإعلان"
|
7968 |
|
7969 |
+
#: includes/controllers/pages/class-submit-listing.php:71
|
7970 |
#, fuzzy
|
7971 |
msgctxt "submit listing"
|
7972 |
msgid "Continue to Payment"
|
7973 |
msgstr "الدفعة الأولية"
|
7974 |
|
7975 |
+
#: includes/controllers/pages/class-submit-listing.php:73
|
7976 |
msgctxt "submit listing"
|
7977 |
msgid "Please wait a moment!"
|
7978 |
msgstr ""
|
7979 |
|
7980 |
+
#: includes/controllers/pages/class-submit-listing.php:74
|
7981 |
msgctxt "submit listing"
|
7982 |
msgid "Something went wrong!"
|
7983 |
msgstr ""
|
7984 |
|
7985 |
+
#: includes/controllers/pages/class-submit-listing.php:99
|
7986 |
#, fuzzy
|
7987 |
msgctxt "submit listing"
|
7988 |
msgid "No listing ID was specified."
|
7989 |
msgstr "تم تحرير الإعلان"
|
7990 |
|
7991 |
+
#: includes/controllers/pages/class-submit-listing.php:101
|
7992 |
#, fuzzy
|
7993 |
msgctxt "submit listing"
|
7994 |
msgid "You can't edit this listing."
|
7995 |
msgstr "التصنيفات لهذا الإعلان"
|
7996 |
|
7997 |
+
#: includes/controllers/pages/class-submit-listing.php:164
|
7998 |
msgctxt "submit listing"
|
7999 |
msgid ""
|
8000 |
"This listing can't be edited at this time because it has no plan associated. "
|
8001 |
"Please <a>edit the listing</a> on the backend and associate it to a plan."
|
8002 |
msgstr ""
|
8003 |
|
8004 |
+
#: includes/controllers/pages/class-submit-listing.php:170
|
8005 |
msgctxt "submit listing"
|
8006 |
msgid ""
|
8007 |
"This listing can't be edited at this time. Please try again later or contact "
|
8008 |
"the admin if the problem persists."
|
8009 |
msgstr ""
|
8010 |
|
8011 |
+
#: includes/controllers/pages/class-submit-listing.php:194
|
8012 |
#, fuzzy
|
8013 |
msgctxt "submit listing"
|
8014 |
msgid "You're logged in as admin, payment will be skipped."
|
8015 |
msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
|
8016 |
|
8017 |
+
#: includes/controllers/pages/class-submit-listing.php:509
|
8018 |
#, fuzzy
|
8019 |
msgctxt "submit listing"
|
8020 |
msgid "Category selection"
|
8021 |
msgstr "إختيار تصنيف"
|
8022 |
|
8023 |
+
#: includes/controllers/pages/class-submit-listing.php:509
|
8024 |
#, fuzzy
|
8025 |
msgctxt "submit listing"
|
8026 |
msgid "Category & plan selection"
|
8027 |
msgstr "إختيار تصنيف"
|
8028 |
|
8029 |
+
#: includes/controllers/pages/class-submit-listing.php:817
|
8030 |
#, fuzzy
|
8031 |
msgctxt "submit listing"
|
8032 |
msgid "Can not submit a listing at this moment. Please try again later."
|
8034 |
"لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
|
8035 |
"أخرى لاحقاً."
|
8036 |
|
8037 |
+
#: includes/controllers/pages/class-submit-listing.php:866
|
8038 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
8039 |
#, fuzzy
|
8040 |
msgctxt "submit listing"
|
8041 |
msgid "Please select a category."
|
8042 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
8043 |
|
8044 |
+
#: includes/controllers/pages/class-submit-listing.php:890
|
8045 |
msgctxt "submit listing"
|
8046 |
msgid "Current active plan is disabled. Please select another plan."
|
8047 |
msgstr ""
|
8048 |
|
8049 |
+
#: includes/controllers/pages/class-submit-listing.php:892
|
8050 |
msgctxt "submit listing"
|
8051 |
msgid "Please choose a valid category for your plan."
|
8052 |
msgstr ""
|
8053 |
|
8054 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
8055 |
#, fuzzy
|
8056 |
msgctxt "submit listing"
|
8057 |
msgid "Please choose a valid plan for your category selection."
|
8058 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
8059 |
|
8060 |
+
#: includes/controllers/pages/class-submit-listing.php:1204
|
8061 |
#, fuzzy
|
8062 |
msgctxt "submit listing"
|
8063 |
msgid "Please enter your desired username."
|
8064 |
msgstr "يرجى إدخال إسمك."
|
8065 |
|
8066 |
+
#: includes/controllers/pages/class-submit-listing.php:1209
|
8067 |
#, fuzzy
|
8068 |
msgctxt "submit listing"
|
8069 |
msgid "Please enter the e-mail for your new account."
|
8070 |
msgstr "يرجى إدخال إسمك."
|
8071 |
|
8072 |
+
#: includes/controllers/pages/class-submit-listing.php:1214
|
8073 |
msgctxt "submit listing"
|
8074 |
msgid "The username you chose is already in use. Please use a different one."
|
8075 |
msgstr ""
|
8076 |
|
8077 |
+
#: includes/controllers/pages/class-submit-listing.php:1219
|
8078 |
msgctxt "submit listing"
|
8079 |
msgid "The e-mail address you chose for your account is already in use."
|
8080 |
msgstr ""
|
8085 |
msgid "Listing submitted by admin. Payment skipped."
|
8086 |
msgstr "Poster annonce(paiement initial)"
|
8087 |
|
8088 |
+
#: includes/controllers/pages/class-submit-listing.php:1159
|
8089 |
msgctxt "listing submit"
|
8090 |
msgid ""
|
8091 |
"Image upload is required, please provide at least one image and submit again."
|
8594 |
msgid "%s. Imported Listing."
|
8595 |
msgstr "استيراد الإعلانات"
|
8596 |
|
8597 |
+
#: includes/payment.php:57
|
8598 |
#, fuzzy
|
8599 |
msgctxt "payments"
|
8600 |
msgid "Payment #%s"
|
8610 |
msgid "Error while uploading file"
|
8611 |
msgstr "حدث خطأ أثناء رفع الملف."
|
8612 |
|
8613 |
+
#: includes/utils.php:407 includes/utils.php:413
|
8614 |
msgctxt "utils"
|
8615 |
msgid "File type \"%s\" is not allowed"
|
8616 |
msgstr "غير مسموح بنوع الملف \"%s\""
|
8617 |
|
8618 |
+
#: includes/utils.php:664
|
8619 |
msgctxt "utils"
|
8620 |
msgid ""
|
8621 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8718 |
msgid "Display the following fields in the form."
|
8719 |
msgstr "عرض الحقول التالية في النموذج."
|
8720 |
|
8721 |
+
#: templates/admin/home.tpl.php:12
|
8722 |
+
#, fuzzy
|
8723 |
+
msgctxt "admin home"
|
8724 |
+
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8725 |
+
msgstr "Business Directory Plugin"
|
8726 |
+
|
8727 |
+
#: templates/admin/home.tpl.php:15
|
8728 |
+
msgctxt "admin home"
|
8729 |
+
msgid ""
|
8730 |
+
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8731 |
+
"let's jump right in!"
|
8732 |
+
msgstr ""
|
8733 |
+
|
8734 |
+
#: templates/admin/home.tpl.php:28
|
8735 |
+
msgctxt "admin home"
|
8736 |
+
msgid ""
|
8737 |
+
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8738 |
+
"while setting things up."
|
8739 |
+
msgstr ""
|
8740 |
+
|
8741 |
+
#: templates/admin/home.tpl.php:36
|
8742 |
+
msgctxt "admin home"
|
8743 |
+
msgid ""
|
8744 |
+
"We have some quick-start scenarios that you will find useful regarding setup "
|
8745 |
+
"and configuration <a>here</a>."
|
8746 |
+
msgstr ""
|
8747 |
+
|
8748 |
+
#: templates/admin/home.tpl.php:45
|
8749 |
+
msgctxt "admin home"
|
8750 |
+
msgid ""
|
8751 |
+
"If you have questions, please post a comment on <a>support forum</a> and "
|
8752 |
+
"we'll answer it within 24 hours most days."
|
8753 |
+
msgstr ""
|
8754 |
|
8755 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:127
|
8756 |
#, fuzzy
|
8842 |
msgid "Uninstall Plugin"
|
8843 |
msgstr "إلغاء تثبيت الإضافة"
|
8844 |
|
8845 |
+
#: templates/admin/uninstall-confirm.tpl.php:18
|
8846 |
#, fuzzy
|
8847 |
msgctxt "uninstall"
|
8848 |
msgid "Uninstalling Business Directory Plugin will do the following:"
|
8866 |
msgid "Remove ALL directory settings"
|
8867 |
msgstr "فرز إعلانات الدليل حسب"
|
8868 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8869 |
#: templates/admin/uninstall-confirm.tpl.php:26
|
8870 |
msgctxt "uninstall"
|
8871 |
msgid "Deactivate the plugin from the file system"
|
9026 |
msgid "Continue"
|
9027 |
msgstr "متابعة"
|
9028 |
|
9029 |
+
#, fuzzy
|
9030 |
+
#~ msgid "Pending Abandonment"
|
9031 |
+
#~ msgstr "في انتظار التخلي"
|
9032 |
+
|
9033 |
+
#, fuzzy
|
9034 |
+
#~ msgid "Abandoned"
|
9035 |
+
#~ msgstr "متخلى عنه"
|
9036 |
+
|
9037 |
+
#, fuzzy
|
9038 |
+
#~ msgid "Disable email notifications."
|
9039 |
+
#~ msgstr "تعطيل التنبيهات."
|
9040 |
+
|
9041 |
+
#~ msgctxt "admin csv-import"
|
9042 |
+
#~ msgid "Keep existing listing images?"
|
9043 |
+
#~ msgstr "الاحتفاظ بصور الإعلانات الموجودة؟"
|
9044 |
+
|
9045 |
+
#~ msgctxt "admin csv-import"
|
9046 |
+
#~ msgid "Use a default user for listings?"
|
9047 |
+
#~ msgstr "استخدام العضو الافتراضي للإعلانات؟"
|
9048 |
+
|
9049 |
+
#~ msgctxt "form-fields admin"
|
9050 |
+
#~ msgid "Required"
|
9051 |
+
#~ msgstr "مطلوب"
|
9052 |
+
|
9053 |
+
#~ msgctxt "form-fields admin"
|
9054 |
+
#~ msgid "Optional"
|
9055 |
+
#~ msgstr "إختياري"
|
9056 |
+
|
9057 |
+
#~ msgctxt "form-fields admin"
|
9058 |
+
#~ msgid ""
|
9059 |
+
#~ "Here, you can create new fields for your listings, edit or delete "
|
9060 |
+
#~ "existing ones, change the order and visibility of the fields as well as "
|
9061 |
+
#~ "configure special options for them."
|
9062 |
+
#~ msgstr ""
|
9063 |
+
#~ "هنا، يمكنك إنشاء حقول جديدة لإعلاناتك، تحرير أو حذف الموجود منها، وتغيير "
|
9064 |
+
#~ "ترتيب وإبراز الحقول فضلا عن إعداد خيارات خاصة لهم."
|
9065 |
+
|
9066 |
+
#, fuzzy
|
9067 |
+
#~ msgctxt "settings"
|
9068 |
+
#~ msgid "Show the \"Directory\" button."
|
9069 |
+
#~ msgstr "إظهار زر \"الدليل\"."
|
9070 |
+
|
9071 |
+
#~ msgctxt "admin csv-export"
|
9072 |
+
#~ msgid "All"
|
9073 |
+
#~ msgstr "الكل"
|
9074 |
+
|
9075 |
+
#~ msgctxt "admin csv-export"
|
9076 |
+
#~ msgid "Export images?"
|
9077 |
+
#~ msgstr "تصدير الصور؟"
|
9078 |
+
|
9079 |
+
#~ msgctxt "admin forms"
|
9080 |
+
#~ msgid "required"
|
9081 |
+
#~ msgstr "مطلوب"
|
9082 |
+
|
9083 |
#, fuzzy
|
9084 |
#~ msgid "Fee Label"
|
9085 |
#~ msgstr "تسمية الرسوم"
|
9166 |
#~ msgid "Paid"
|
9167 |
#~ msgstr "تم الدفع"
|
9168 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9169 |
#, fuzzy
|
9170 |
#~ msgctxt "settings"
|
9171 |
#~ msgid "Turn On payments?"
|
languages/business-directory-plugin-de_DE.mo
CHANGED
Binary file
|
languages/business-directory-plugin-de_DE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-03-
|
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."
|
@@ -42,7 +42,82 @@ msgstr "Liste auswählen"
|
|
42 |
msgid "Selected"
|
43 |
msgstr "Liste auswählen"
|
44 |
|
45 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
#, fuzzy
|
47 |
msgid ""
|
48 |
"Find out how to create a compelling, thriving business directory from "
|
@@ -52,75 +127,74 @@ msgstr ""
|
|
52 |
"von Grund aufbauen mit diesem einfachen (und kostenlosen) 5-teiligen E-Mail-"
|
53 |
"Kurs. Sie erhalten ein kostenloses Premium-Modul nur für die Anmeldung."
|
54 |
|
55 |
-
#: includes/admin/class-admin.php:
|
56 |
#, fuzzy
|
57 |
msgid "Want to know the Secrets of Building an Awesome Business Directory?"
|
58 |
msgstr ""
|
59 |
"Möchten Sie mehr über die Geheimnisse eines erfolgreichen Verzeichnisses "
|
60 |
"wissen?"
|
61 |
|
62 |
-
#: includes/admin/class-admin.php:
|
63 |
#, fuzzy
|
64 |
msgid "Yes, please!"
|
65 |
msgstr "Ja, bitte!"
|
66 |
|
67 |
-
#: includes/admin/class-admin.php:
|
68 |
#, fuzzy
|
69 |
msgid "No, thanks"
|
70 |
msgstr "Nein, danke"
|
71 |
|
72 |
-
#: includes/admin/class-admin.php:
|
73 |
#, fuzzy
|
74 |
msgid "You're all set. Visit your new %1$sBusiness Directory%2$s page."
|
75 |
msgstr ""
|
76 |
"Sie haben alles konfiguriert. Besuchen sie Ihr neues <a>Branchenverzeichnis</"
|
77 |
"a>."
|
78 |
|
79 |
-
#: includes/admin/class-admin.php:
|
80 |
#, fuzzy
|
81 |
msgid "Invalid email address."
|
82 |
msgstr "Ungültiger Erneuerungszustand."
|
83 |
|
84 |
-
#: includes/admin/class-admin.php:
|
85 |
#, fuzzy
|
86 |
msgid "Business Directory Admin"
|
87 |
msgstr "Branchenverzeichnis Administration"
|
88 |
|
89 |
-
#: includes/admin/class-admin.php:
|
90 |
-
#:
|
91 |
-
#: includes/admin/settings/class-settings-bootstrap.php:682
|
92 |
-
#: includes/helpers/class-app.php:93
|
93 |
-
#: includes/helpers/functions/templates-ui.php:307
|
94 |
-
msgid "Directory"
|
95 |
-
msgstr "Verzeichnis"
|
96 |
-
|
97 |
-
#: includes/admin/class-admin.php:312
|
98 |
msgid "Plans"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/admin/class-admin.php:
|
|
|
102 |
#, fuzzy
|
103 |
msgid "Form Fields"
|
104 |
msgstr "Formularfelder"
|
105 |
|
106 |
-
#: includes/admin/class-admin.php:
|
107 |
#: includes/licensing.php:229
|
108 |
#, fuzzy
|
109 |
msgid "Modules"
|
110 |
msgstr "Installierte Module"
|
111 |
|
112 |
-
#: includes/admin/class-admin.php:
|
113 |
#, fuzzy
|
114 |
msgid "Business Directory"
|
115 |
msgstr "Branchenverzeichnis"
|
116 |
|
117 |
-
#: includes/admin/class-admin.php:
|
|
|
|
|
|
|
|
|
|
|
118 |
#, fuzzy
|
119 |
msgid "Could not send renewal email."
|
120 |
msgstr "Erneuerungsmail an Benutzer schicken"
|
121 |
|
122 |
-
#: includes/admin/class-admin.php:
|
123 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
124 |
#: includes/admin/helpers/tables/class-payments-table.php:54
|
125 |
#: templates/email/listing-added.tpl.php:7
|
126 |
#: templates/email/listing-edited.tpl.php:13
|
@@ -129,13 +203,13 @@ msgstr "Erneuerungsmail an Benutzer schicken"
|
|
129 |
msgid "ID"
|
130 |
msgstr "ID"
|
131 |
|
132 |
-
#: includes/admin/class-admin.php:
|
133 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
134 |
#, fuzzy
|
135 |
msgid "Listing Count"
|
136 |
msgstr "Anzahl Einträge"
|
137 |
|
138 |
-
#: includes/admin/class-admin.php:
|
139 |
#, fuzzy
|
140 |
msgid ""
|
141 |
"We noticed you want your Business Directory users to register before posting "
|
@@ -216,15 +290,30 @@ msgstr "Business Directory Plugin"
|
|
216 |
msgid "Are you sure you want to do this?"
|
217 |
msgstr "Möchtest du das wirklich tun?"
|
218 |
|
219 |
-
#: includes/admin/controllers/class-admin-csv.php:
|
220 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#, fuzzy
|
222 |
msgid "Help"
|
223 |
msgstr "Hilfe "
|
224 |
|
225 |
#: includes/admin/controllers/class-admin-fees.php:47
|
226 |
#: includes/admin/helpers/tables/class-payments-table.php:57
|
227 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
228 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:73
|
229 |
#: templates/admin/payments-details.tpl.php:113
|
230 |
#: templates/email/listing-payment-completed.tpl.php:21
|
@@ -235,48 +324,57 @@ msgstr "Preis"
|
|
235 |
|
236 |
#: includes/admin/controllers/class-admin-fees.php:49
|
237 |
#: includes/admin/helpers/tables/class-fees-table.php:65
|
238 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
239 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
240 |
#, fuzzy
|
241 |
msgid "Images"
|
242 |
msgstr "Bilder"
|
243 |
|
244 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
#, fuzzy
|
246 |
msgid "Plan added."
|
247 |
msgstr "Preis aktualisiert."
|
248 |
|
249 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
250 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
251 |
#, fuzzy
|
252 |
msgid "Plan updated."
|
253 |
msgstr "Preis aktualisiert."
|
254 |
|
255 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
256 |
msgid "%1$sClick here to update image limits%2$s of %3$s existing listings."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
260 |
#, fuzzy
|
261 |
msgid "Update listing image limits?"
|
262 |
msgstr "Vorhandene Bilder beibehalten?"
|
263 |
|
264 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
265 |
#, fuzzy
|
266 |
msgid "Plan not found."
|
267 |
msgstr "Preis aktualisiert."
|
268 |
|
269 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
270 |
#, fuzzy
|
271 |
msgid "Plan listings updated."
|
272 |
msgstr "Preis aktualisiert."
|
273 |
|
274 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
275 |
msgid "Cannot disable plan. At least one plan should be enabled"
|
276 |
msgstr ""
|
277 |
|
278 |
#: includes/admin/controllers/class-admin-listings.php:187
|
279 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
280 |
#: templates/email/listing-reported.tpl.php:7
|
281 |
msgid "Listing Information"
|
282 |
msgstr "Eintrag Informationen"
|
@@ -318,6 +416,31 @@ msgstr "Eintrag bearbeiten"
|
|
318 |
msgid "Delete Listing"
|
319 |
msgstr "Eintrag Löschen"
|
320 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
#: includes/admin/controllers/class-form-fields-admin.php:32
|
322 |
#, fuzzy
|
323 |
msgid ""
|
@@ -328,7 +451,7 @@ msgstr ""
|
|
328 |
"verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
|
329 |
|
330 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
331 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
332 |
#, fuzzy
|
333 |
msgid "Go to \"Form Fields\""
|
334 |
msgstr "zu \"Formularfelder verwalten\""
|
@@ -346,7 +469,7 @@ msgid "Go back"
|
|
346 |
msgstr "Geh zurück"
|
347 |
|
348 |
#: includes/admin/controllers/class-form-fields-admin.php:342
|
349 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
350 |
#: templates/email/listing-added.tpl.php:10
|
351 |
#: templates/email/listing-edited.tpl.php:16
|
352 |
#: templates/email/listing-reported.tpl.php:11
|
@@ -372,11 +495,6 @@ msgstr "Im Textauszug"
|
|
372 |
msgid "Content"
|
373 |
msgstr "Post Inhalt"
|
374 |
|
375 |
-
#: includes/admin/controllers/class-form-fields-admin.php:346
|
376 |
-
#, fuzzy
|
377 |
-
msgid "Tags"
|
378 |
-
msgstr "Tags Entwurf"
|
379 |
-
|
380 |
#: includes/admin/controllers/class-form-fields-admin.php:347
|
381 |
#: includes/form-fields.php:445
|
382 |
#: includes/helpers/class-field-display-list.php:247
|
@@ -443,16 +561,16 @@ msgstr "Twitter"
|
|
443 |
msgid "Website"
|
444 |
msgstr "Webseite"
|
445 |
|
446 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
447 |
msgid "Your license key provides access to new features and updates."
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
451 |
#, fuzzy
|
452 |
msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
453 |
msgstr "Warum löscht du die Branchenverzeichnis Erweiterung?"
|
454 |
|
455 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
456 |
#: includes/admin/helpers/tables/class-fees-table.php:180
|
457 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
458 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
@@ -499,8 +617,8 @@ msgstr "Die hochgeladene Datei ist nicht im CSV Format."
|
|
499 |
|
500 |
#: includes/admin/helpers/class-listing-information-metabox.php:15
|
501 |
#: includes/admin/helpers/tables/class-payments-table.php:53
|
502 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
503 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
504 |
#: includes/helpers/class-app.php:91
|
505 |
#: templates/admin/payments-details.tpl.php:53
|
506 |
#, fuzzy
|
@@ -543,6 +661,11 @@ msgstr "Aktiviere Lizenz"
|
|
543 |
msgid "Upgrade Now"
|
544 |
msgstr "Aktualisieren auf %s"
|
545 |
|
|
|
|
|
|
|
|
|
|
|
546 |
#: includes/admin/helpers/csv/class-csv-import.php:676
|
547 |
#, fuzzy
|
548 |
msgid "Listing imported by admin. Payment skipped."
|
@@ -571,14 +694,6 @@ msgstr "Details planen"
|
|
571 |
msgid "Pricing"
|
572 |
msgstr "Preis"
|
573 |
|
574 |
-
#: includes/admin/helpers/tables/class-fees-table.php:64
|
575 |
-
#: includes/admin/settings/class-settings-bootstrap.php:669
|
576 |
-
#: includes/admin/settings/class-settings-bootstrap.php:670
|
577 |
-
#: includes/helpers/class-app.php:92
|
578 |
-
#, fuzzy
|
579 |
-
msgid "Listings"
|
580 |
-
msgstr "Einträge"
|
581 |
-
|
582 |
#: includes/admin/helpers/tables/class-fees-table.php:155
|
583 |
#, fuzzy
|
584 |
msgid "Disable"
|
@@ -625,7 +740,7 @@ msgstr "Standard Preis"
|
|
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:
|
629 |
#, fuzzy
|
630 |
msgid "Type"
|
631 |
msgstr "Typ"
|
@@ -664,8 +779,8 @@ msgstr "OK"
|
|
664 |
msgid "Missing tables: %s"
|
665 |
msgstr "Nicht vorhandene Tabellen: %s"
|
666 |
|
667 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
668 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
669 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:140
|
670 |
#: templates/listing-contactform.tpl.php:33
|
671 |
#: templates/listing-flagging-form.tpl.php:39
|
@@ -673,70 +788,61 @@ msgstr "Nicht vorhandene Tabellen: %s"
|
|
673 |
msgid "Email"
|
674 |
msgstr "E-mail: %s"
|
675 |
|
676 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
677 |
#, fuzzy
|
678 |
msgid "Module Settings"
|
679 |
msgstr "Einstellungen"
|
680 |
|
681 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
682 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
683 |
#, fuzzy
|
684 |
msgid "Miscellaneous"
|
685 |
msgstr "Sonstiges Einstellungen"
|
686 |
|
687 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
688 |
#, fuzzy
|
689 |
msgid "License Key"
|
690 |
msgstr "Lizenz"
|
691 |
|
692 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
693 |
msgid "SEO"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
697 |
-
#: includes/class-assets.php:352
|
698 |
-
#: includes/fields/class-fieldtypes-textarea.php:200
|
699 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
700 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
701 |
-
#, fuzzy
|
702 |
-
msgid "No"
|
703 |
-
msgstr "Nein"
|
704 |
-
|
705 |
-
#: includes/admin/settings/class-settings-bootstrap.php:256
|
706 |
#, fuzzy
|
707 |
msgid "Yes, and make it optional"
|
708 |
msgstr "%s ist ein Pflichtfeld."
|
709 |
|
710 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
711 |
#, fuzzy
|
712 |
msgid "Yes, and make it required"
|
713 |
msgstr "%s ist ein Pflichtfeld."
|
714 |
|
715 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
716 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
717 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
718 |
#, fuzzy
|
719 |
msgid "Terms and Conditions"
|
720 |
msgstr "Bedingungen und Konditionen"
|
721 |
|
722 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
723 |
#, fuzzy
|
724 |
msgid "User Agreement"
|
725 |
msgstr "Benutzer"
|
726 |
|
727 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
728 |
#, fuzzy
|
729 |
msgid "Display and require user agreement to Terms and Conditions"
|
730 |
msgstr ""
|
731 |
"Zeige und setze Benutzervereinbarung als Pflichtfeld in Bedingungen und "
|
732 |
"Konditionen"
|
733 |
|
734 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
735 |
#, fuzzy
|
736 |
msgid "Data Collection"
|
737 |
msgstr "Datenkollektion"
|
738 |
|
739 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
740 |
#, fuzzy
|
741 |
msgid ""
|
742 |
"Allow Business Directory to anonymously collect information about your "
|
@@ -745,59 +851,54 @@ msgstr ""
|
|
745 |
"BD erlauben anonym Informationen zu sammeln über deine Erweiterungen, Themen "
|
746 |
"und WP-version?"
|
747 |
|
748 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
749 |
msgid "Learn more"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
753 |
#, fuzzy
|
754 |
msgid "Searching"
|
755 |
msgstr "Suche"
|
756 |
|
757 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
758 |
#, fuzzy
|
759 |
msgid "Display advanced search form"
|
760 |
msgstr "Erweiterte Suche"
|
761 |
|
762 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
763 |
msgid ""
|
764 |
"Enabling this sacrifices result quality to improve speed. This is helpful if "
|
765 |
"you're on shared hosting plans, where database performance is an issue."
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
769 |
#, fuzzy
|
770 |
msgid "Quick search data"
|
771 |
msgstr "Schnellsuche Felder"
|
772 |
|
773 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
774 |
msgid ""
|
775 |
"If no fields are selected, the following fields will be searched in Quick "
|
776 |
"Searches:"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
780 |
msgid ""
|
781 |
"The Quick Search is a single search box, but you may choose what data is "
|
782 |
"searched. Searching too many fields can result in very slow search "
|
783 |
"performance."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
787 |
-
#, fuzzy
|
788 |
-
msgid "Categories"
|
789 |
-
msgstr "Kategorien"
|
790 |
-
|
791 |
-
#: includes/admin/settings/class-settings-bootstrap.php:430
|
792 |
msgid "Buttons"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
796 |
#, fuzzy
|
797 |
msgid "Sorting"
|
798 |
msgstr "Einstellungen"
|
799 |
|
800 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
801 |
msgid ""
|
802 |
"Business Directory Plugin uses the standard WordPress comments. Most themes "
|
803 |
"allow for comments on posts, not pages. Some themes handle both. Since the "
|
@@ -806,122 +907,122 @@ msgid ""
|
|
806 |
"work, try the 3rd option."
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
810 |
#, fuzzy
|
811 |
msgid "Include theme comment form (standard option)"
|
812 |
msgstr "Kommentarform einfügen in Eintragsseiten?"
|
813 |
|
814 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
815 |
#, fuzzy
|
816 |
msgid "Include directory comment form (use only if 2nd option does not work)"
|
817 |
msgstr "Kommentarform einfügen in Eintragsseiten?"
|
818 |
|
819 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
820 |
#, fuzzy
|
821 |
msgid "Prevent featured (sticky) status on directory pages?"
|
822 |
msgstr "unterstützter (unbeweglicher) Status"
|
823 |
|
824 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
825 |
#, fuzzy
|
826 |
msgid "Owner of anonymous listings"
|
827 |
msgstr "Zum Eintrag"
|
828 |
|
829 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
830 |
#, fuzzy
|
831 |
msgid "Default listing status"
|
832 |
msgstr "Voreingestellter-Nutzer"
|
833 |
|
834 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
835 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
836 |
#, fuzzy
|
837 |
msgid "Pending (Require approval)"
|
838 |
msgstr "Aktiv + Ausstehende Erneuerungen"
|
839 |
|
840 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
841 |
#, fuzzy
|
842 |
msgid "Message Defaults"
|
843 |
msgstr "Standards zurücksetzen"
|
844 |
|
845 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
846 |
#, fuzzy
|
847 |
msgid "Listing label"
|
848 |
msgstr "Eintrag Titel:"
|
849 |
|
850 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
851 |
#, fuzzy
|
852 |
msgid "What is a single listing called?"
|
853 |
msgstr "In Detailansicht anzeigen?"
|
854 |
|
855 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
856 |
msgid "Listing label (Plural)"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
860 |
msgid "What are your listings called?"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
864 |
#, fuzzy
|
865 |
msgid "Directory label"
|
866 |
msgstr "Verzeichnis Tag"
|
867 |
|
868 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
869 |
msgid "What should we call your directory?"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
873 |
msgid ""
|
874 |
"This text is displayed on the first page of the Submit Listing process. You "
|
875 |
"can use it for instructions about filling out the form or information to get "
|
876 |
"started."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
880 |
#: templates/listing-contactform.tpl.php:30
|
881 |
#: templates/listing-flagging-form.tpl.php:35
|
882 |
#, fuzzy
|
883 |
msgid "Name"
|
884 |
msgstr "Name"
|
885 |
|
886 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
887 |
msgid "Show Buttons"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
891 |
#, fuzzy
|
892 |
-
msgid "Show the \"Directory\" and \"Return to Directory\" button
|
893 |
msgstr "\"Verzeichnis\" Schaltfläche anzeigen"
|
894 |
|
895 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
896 |
msgid "Styling"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
900 |
msgid "Button style"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
904 |
msgid "Override WP theme button styling"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
908 |
msgid "Primary color"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
912 |
msgid "This is used for form buttons and form rootline."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
916 |
#, fuzzy
|
917 |
msgid "Show Thumbnail"
|
918 |
msgstr "Thumbnails anzeigen"
|
919 |
|
920 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
921 |
msgid "Coming Soon image"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
925 |
#: includes/fields/class-fieldtypes-social.php:89
|
926 |
#: includes/fields/class-fieldtypes-url.php:162
|
927 |
#: templates/email/listing-added.tpl.php:13
|
@@ -932,12 +1033,12 @@ msgstr ""
|
|
932 |
msgid "URL"
|
933 |
msgstr "URL"
|
934 |
|
935 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
936 |
#, fuzzy
|
937 |
msgid "Thank you for your payment."
|
938 |
msgstr "Danke für die Bezahlung Nachricht"
|
939 |
|
940 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
941 |
msgid ""
|
942 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
943 |
"collect payments in this currency."
|
@@ -947,22 +1048,22 @@ msgid_plural ""
|
|
947 |
msgstr[0] ""
|
948 |
msgstr[1] ""
|
949 |
|
950 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
951 |
#, fuzzy
|
952 |
msgid "Email Notifications"
|
953 |
msgstr "Email Erinnerung"
|
954 |
|
955 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
956 |
#, fuzzy
|
957 |
msgid "Notify admin via email when..."
|
958 |
msgstr "Administrator per E-mail informieren wenn... "
|
959 |
|
960 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
961 |
#, fuzzy
|
962 |
msgid "CC this email address too"
|
963 |
msgstr "CC diese E-mail an"
|
964 |
|
965 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
966 |
#, fuzzy
|
967 |
msgid ""
|
968 |
"You can modify the text template used for most of these emails in the "
|
@@ -971,44 +1072,44 @@ msgstr ""
|
|
971 |
"Du kannst dieses Texttemplate verändern, das für die meisten der E-"
|
972 |
"mailadressen unten verwendet wird."
|
973 |
|
974 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
975 |
#, fuzzy
|
976 |
msgid "Notify users via email when..."
|
977 |
msgstr "Benachrichtige Benutzer per E-mail wenn..."
|
978 |
|
979 |
#. translators: %s: email shortcode
|
980 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
981 |
#, fuzzy
|
982 |
msgid "Email: %s"
|
983 |
msgstr "E-mail: %s"
|
984 |
|
985 |
#. translators: %s: phone shortcode
|
986 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
987 |
#, fuzzy
|
988 |
msgid "Phone Number: %s"
|
989 |
msgstr "Telefonnummer geschäftlich"
|
990 |
|
991 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
992 |
#, fuzzy
|
993 |
msgid "Sender's email address"
|
994 |
msgstr "Ungültiger Erneuerungszustand."
|
995 |
|
996 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
997 |
#, fuzzy
|
998 |
msgid "Sender's phone number"
|
999 |
msgstr "Authorname"
|
1000 |
|
1001 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1002 |
msgid "Renewal and expiration"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
1006 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1007 |
#, fuzzy
|
1008 |
msgid "Uninstall"
|
1009 |
msgstr "Deinstallieren"
|
1010 |
|
1011 |
-
#: includes/admin/settings/class-settings.php:
|
1012 |
msgid "%s cannot include spaces, commas, or &"
|
1013 |
msgstr ""
|
1014 |
|
@@ -1074,19 +1175,18 @@ msgstr ""
|
|
1074 |
|
1075 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:21
|
1076 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:22
|
1077 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
1078 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:201
|
1079 |
#, fuzzy
|
1080 |
msgid "Business Directory - Featured Levels Migration"
|
1081 |
msgstr "Branchenverzeichnis - Hervorgehobene Einträge"
|
1082 |
|
1083 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
1084 |
#: templates/admin/fees-form.tpl.php:17
|
1085 |
#, fuzzy
|
1086 |
msgid "Plan Label"
|
1087 |
msgstr "Feldbezeichnung"
|
1088 |
|
1089 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
1090 |
#, fuzzy
|
1091 |
msgid "Duration"
|
1092 |
msgstr "Zeitraum"
|
@@ -1160,7 +1260,7 @@ msgid ""
|
|
1160 |
"what we can do better?"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/class-assets.php:
|
1164 |
#: templates/admin/settings-reset.tpl.php:8
|
1165 |
#: templates/admin/themes-delete-confirm.tpl.php:21
|
1166 |
#: templates/listing-flagging-form.tpl.php:65
|
@@ -1168,30 +1268,16 @@ msgstr ""
|
|
1168 |
msgid "Cancel"
|
1169 |
msgstr "Abbrechen"
|
1170 |
|
1171 |
-
#: includes/class-assets.php:
|
1172 |
#, fuzzy
|
1173 |
msgid "Continue"
|
1174 |
msgstr "Weiter"
|
1175 |
|
1176 |
-
#: includes/class-assets.php:
|
1177 |
msgid "Are you sure?"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/class-assets.php:
|
1181 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:88
|
1182 |
-
#, fuzzy
|
1183 |
-
msgid "Never"
|
1184 |
-
msgstr "niemals"
|
1185 |
-
|
1186 |
-
#: includes/class-assets.php:351
|
1187 |
-
#: includes/fields/class-fieldtypes-textarea.php:201
|
1188 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
1189 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
1190 |
-
#, fuzzy
|
1191 |
-
msgid "Yes"
|
1192 |
-
msgstr "Ja"
|
1193 |
-
|
1194 |
-
#: includes/class-assets.php:361
|
1195 |
#, fuzzy
|
1196 |
msgid ""
|
1197 |
"Preview is only available after you've saved the first draft. This is due to "
|
@@ -1215,11 +1301,6 @@ msgstr "Eintrag anschauen"
|
|
1215 |
msgid "Search Listings"
|
1216 |
msgstr "Einträge durchsuchen"
|
1217 |
|
1218 |
-
#: includes/class-cpt-integration.php:23
|
1219 |
-
#, fuzzy
|
1220 |
-
msgid "Directory Listings"
|
1221 |
-
msgstr "Verzeichniseintrag Entwurf"
|
1222 |
-
|
1223 |
#: includes/class-cpt-integration.php:24
|
1224 |
msgid "No listings found"
|
1225 |
msgstr "Keine Einträge gefunden"
|
@@ -1535,39 +1616,39 @@ msgstr "Der Eintrag wurde aktualisiert"
|
|
1535 |
msgid "This is just a preview. The listing has not been published yet."
|
1536 |
msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
|
1537 |
|
1538 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1539 |
#, fuzzy
|
1540 |
msgid "Listing Images"
|
1541 |
msgstr "Eintrag Bilder"
|
1542 |
|
1543 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1544 |
msgid "Account Creation"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1548 |
#, fuzzy
|
1549 |
msgid "Go to \"Plans\""
|
1550 |
msgstr "zu \"Formularfelder verwalten\""
|
1551 |
|
1552 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1553 |
#, fuzzy
|
1554 |
msgid "Please choose a plan."
|
1555 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
1556 |
|
1557 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1558 |
msgid "Please check the form for errors, correct them and submit again."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1562 |
msgid "Create a user account on this site"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1566 |
#, fuzzy
|
1567 |
msgid "Username"
|
1568 |
msgstr "Benutzer"
|
1569 |
|
1570 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1571 |
#, fuzzy
|
1572 |
msgid "Clear Form"
|
1573 |
msgstr "Zurücksetzen"
|
@@ -1634,12 +1715,8 @@ msgstr ""
|
|
1634 |
"Feldoptionen (für ausgewählte Listen, Radiobutton und Kontrollkästchen)"
|
1635 |
|
1636 |
#: includes/fields/class-fieldtypes-select.php:262
|
1637 |
-
#: templates/admin/
|
1638 |
-
#: templates/admin/
|
1639 |
-
#: templates/admin/csv-import.tpl.php:150
|
1640 |
-
#: templates/admin/csv-import.tpl.php:163
|
1641 |
-
#: templates/admin/csv-import.tpl.php:215 templates/admin/fees-form.tpl.php:17
|
1642 |
-
#: templates/admin/fees-form.tpl.php:38 templates/admin/fees-form.tpl.php:58
|
1643 |
#, fuzzy
|
1644 |
msgid "required"
|
1645 |
msgstr "Pflichtfeld"
|
@@ -1805,7 +1882,7 @@ msgstr "Ganze Nummern Validierung"
|
|
1805 |
msgid "Telephone Number Validator"
|
1806 |
msgstr "Ganze Nummern Validierung"
|
1807 |
|
1808 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
1809 |
#, fuzzy
|
1810 |
msgid "Field"
|
1811 |
msgstr "Feld"
|
@@ -1904,13 +1981,13 @@ msgid "Default Plan"
|
|
1904 |
msgstr "Standard Preis"
|
1905 |
|
1906 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1907 |
-
#: includes/licensing.php:
|
1908 |
msgid ""
|
1909 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1910 |
"get updates."
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: includes/licensing.php:
|
1914 |
#, fuzzy
|
1915 |
msgid "Licenses"
|
1916 |
msgstr "Lizenz"
|
@@ -2031,39 +2108,29 @@ msgstr "Bitte eine gültige E-mailadresse eingeben."
|
|
2031 |
msgid "Congratulations %1$s! You have collected %2$d listings."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: includes/payment.php:
|
2035 |
msgid "We couldn't find a payment associated with the given subscription."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: includes/payment.php:
|
2039 |
msgid "The payment gateway \"<payment-gateway>\" is not available."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: includes/payment.php:
|
2043 |
#, fuzzy
|
2044 |
msgid "Gateway Transaction ID:"
|
2045 |
msgstr "Transaktion"
|
2046 |
|
2047 |
-
#: includes/payment.php:
|
2048 |
msgid "Bill To:"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: includes/payment.php:
|
2052 |
msgid "Print Receipt"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: includes/payment.php:180
|
2056 |
-
#, fuzzy
|
2057 |
-
msgid "Pending Abandonment"
|
2058 |
-
msgstr "Ausstehende Zahlungen"
|
2059 |
-
|
2060 |
#: includes/payment.php:187
|
2061 |
#, fuzzy
|
2062 |
-
msgid "Abandoned"
|
2063 |
-
msgstr "Abgebrochen"
|
2064 |
-
|
2065 |
-
#: includes/payment.php:278
|
2066 |
-
#, fuzzy
|
2067 |
msgid "Return to plan selection"
|
2068 |
msgstr "Zurück zum Eintrag."
|
2069 |
|
@@ -2155,6 +2222,10 @@ msgstr ""
|
|
2155 |
msgid "There are currently no listings to show."
|
2156 |
msgstr "Keine Einträge im Verzeichnis vorhanden. "
|
2157 |
|
|
|
|
|
|
|
|
|
2158 |
#: templates/admin/csv-export.tpl.php:5
|
2159 |
#, fuzzy
|
2160 |
msgid ""
|
@@ -2166,7 +2237,24 @@ msgstr ""
|
|
2166 |
"stelle sicher, dass du genügend Speicherplatz für PHP vorhanden ist. Schaue "
|
2167 |
"ins Fehlerprotokoll."
|
2168 |
|
2169 |
-
#: templates/admin/csv-export.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2170 |
#, fuzzy
|
2171 |
msgid ""
|
2172 |
"If you plan to re-import the listings into your directory and don't want new "
|
@@ -2175,13 +2263,28 @@ msgstr ""
|
|
2175 |
"Wenn Sie vorhaben die Einträge in BD erneut zu importieren und keine neuen "
|
2176 |
"erstellen wollen, wählen Sie diese Option!"
|
2177 |
|
2178 |
-
#: templates/admin/csv-export.tpl.php:
|
|
|
2179 |
#, fuzzy
|
2180 |
msgid "CSV File Settings"
|
2181 |
msgstr "CSV-Datei Einstellungen"
|
2182 |
|
2183 |
-
#: templates/admin/csv-export.tpl.php:
|
2184 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2185 |
#, fuzzy
|
2186 |
msgid "Image Separator"
|
2187 |
msgstr "Bildertrenner"
|
@@ -2196,78 +2299,87 @@ msgstr ""
|
|
2196 |
"Wir empfehlen Ihnen dringend, unsere <a>CSV-Importdokumentation</a> zu "
|
2197 |
"lesen, um Ihnen zu helfen, Dinge in der richtigen Reihenfolge zu machen."
|
2198 |
|
2199 |
-
#: templates/admin/csv-import.tpl.php:
|
2200 |
#, fuzzy
|
2201 |
msgid "Import Files"
|
2202 |
msgstr "Import Dateien"
|
2203 |
|
2204 |
-
#: templates/admin/csv-import.tpl.php:
|
2205 |
#, fuzzy
|
2206 |
msgid "CSV File"
|
2207 |
msgstr "CSV-Datei"
|
2208 |
|
2209 |
-
#: templates/admin/csv-import.tpl.php:
|
2210 |
#, fuzzy
|
2211 |
msgid "ZIP file containing images"
|
2212 |
msgstr "ZIP-Datei mit Bildern"
|
2213 |
|
2214 |
-
#: templates/admin/csv-import.tpl.php:
|
2215 |
#, fuzzy
|
2216 |
msgid "Column Separator"
|
2217 |
msgstr "Spaltentrenner"
|
2218 |
|
2219 |
-
#: templates/admin/csv-import.tpl.php:
|
2220 |
#, fuzzy
|
2221 |
msgid "TAB"
|
2222 |
msgstr "TAB"
|
2223 |
|
2224 |
-
#: templates/admin/csv-import.tpl.php:
|
2225 |
#, fuzzy
|
2226 |
msgid "Category Separator"
|
2227 |
msgstr "Kategorietrenner"
|
2228 |
|
2229 |
-
#: templates/admin/csv-import.tpl.php:
|
2230 |
#, fuzzy
|
2231 |
msgid "Import settings"
|
2232 |
msgstr "Importeinstellungen"
|
2233 |
|
2234 |
-
#: templates/admin/csv-import.tpl.php:
|
2235 |
#, fuzzy
|
2236 |
msgid "Post status of new imported listings"
|
2237 |
msgstr "Status der importierten Einträge"
|
2238 |
|
2239 |
-
#: templates/admin/csv-import.tpl.php:
|
2240 |
#, fuzzy
|
2241 |
msgid "Post status of existing imported listings"
|
2242 |
msgstr "Status der importierten Einträge"
|
2243 |
|
2244 |
-
#: templates/admin/csv-import.tpl.php:
|
2245 |
#, fuzzy
|
2246 |
msgid "Missing categories handling"
|
2247 |
msgstr "Verhalten bei nicht vorhandener Kategorie"
|
2248 |
|
2249 |
-
#: templates/admin/csv-import.tpl.php:
|
2250 |
#, fuzzy
|
2251 |
msgid "Auto-create categories"
|
2252 |
msgstr "Kategorie automatisch erstellen"
|
2253 |
|
2254 |
-
#: templates/admin/csv-import.tpl.php:
|
2255 |
#, fuzzy
|
2256 |
msgid "Generate errors when a category is not found"
|
2257 |
msgstr "Fehlermeldung erzeugen, wenn die Kategorie nicht gefunden wird"
|
2258 |
|
2259 |
-
#: templates/admin/csv-import.tpl.php:
|
2260 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2261 |
#, fuzzy
|
2262 |
-
msgid "Assign listings to a user
|
2263 |
msgstr "Zuweisung"
|
2264 |
|
2265 |
-
#: templates/admin/csv-import.tpl.php:
|
2266 |
#, fuzzy
|
2267 |
msgid "Default listing user"
|
2268 |
msgstr "Voreingestellter-Nutzer"
|
2269 |
|
2270 |
-
#: templates/admin/csv-import.tpl.php:
|
2271 |
#, fuzzy
|
2272 |
msgid ""
|
2273 |
"This user will be used if the username column is not present in the CSV file."
|
@@ -2275,12 +2387,12 @@ msgstr ""
|
|
2275 |
"Dieser Benutzer wird verwendet wenn die Spalte Benutzername nicht in der CSV-"
|
2276 |
"Datei vorhanden ist."
|
2277 |
|
2278 |
-
#: templates/admin/csv-import.tpl.php:
|
2279 |
#, fuzzy
|
2280 |
msgid "Number of listings imported on every cycle"
|
2281 |
msgstr "Nummer der Einträge zum Anzeigen:"
|
2282 |
|
2283 |
-
#: templates/admin/csv-import.tpl.php:
|
2284 |
msgid ""
|
2285 |
"If you are having trouble importing listings due to memory problems, try "
|
2286 |
"reducing the import batch size to 5 or 1 and then re-attempt. This will "
|
@@ -2288,17 +2400,12 @@ msgid ""
|
|
2288 |
"success on shared hosting platforms and other resource-constrained servers."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: templates/admin/csv-import.tpl.php:
|
2292 |
#, fuzzy
|
2293 |
-
msgid "Disable email notifications during import
|
2294 |
msgstr "E-Mail-Benachrichtigungen"
|
2295 |
|
2296 |
-
#: templates/admin/csv-import.tpl.php:
|
2297 |
-
#, fuzzy
|
2298 |
-
msgid "Disable email notifications."
|
2299 |
-
msgstr "E-Mail-Benachrichtigungen beim Import deaktivieren?"
|
2300 |
-
|
2301 |
-
#: templates/admin/csv-import.tpl.php:316
|
2302 |
#, fuzzy
|
2303 |
msgid ""
|
2304 |
"The following are the valid header names to be used in the CSV file. "
|
@@ -2311,33 +2418,43 @@ msgstr ""
|
|
2311 |
"erscheinen. Klicken Sie <a href=\"%s\">\"CSV Beispieldatei anschauen\"</a>, "
|
2312 |
"um zu sehen wie eine Importdatei aufgebaut sein muss."
|
2313 |
|
2314 |
-
#: templates/admin/csv-import.tpl.php:
|
2315 |
#, fuzzy
|
2316 |
msgid "Header name/label"
|
2317 |
msgstr "Kopfname/Bezeichnung"
|
2318 |
|
2319 |
-
#: templates/admin/csv-import.tpl.php:
|
2320 |
#, fuzzy
|
2321 |
msgid "Required?"
|
2322 |
msgstr "Pflichtfeld?"
|
2323 |
|
2324 |
-
#: templates/admin/csv-import.tpl.php:
|
2325 |
#, fuzzy
|
2326 |
msgid "Multivalued?"
|
2327 |
msgstr "Mehrfachwert?"
|
2328 |
|
2329 |
-
#: templates/admin/csv-import.tpl.php:
|
2330 |
#, fuzzy
|
2331 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2332 |
msgstr "Semikolon getrennte Liste der Eintragsbilder (aus der ZIP Datei)"
|
2333 |
|
2334 |
-
#: templates/admin/csv-import.tpl.php:
|
2335 |
#, fuzzy
|
2336 |
msgid "Listing author's username"
|
2337 |
msgstr "Benutzername des Authors"
|
2338 |
|
2339 |
#: templates/admin/debug-info.tpl.php:5
|
2340 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2341 |
msgid ""
|
2342 |
"The following information can help our team debug possible problems with "
|
2343 |
"your setup."
|
@@ -2345,11 +2462,6 @@ msgstr ""
|
|
2345 |
"Die folgenden Informationen können helfen Branchenverzeichnisentwicklern "
|
2346 |
"mögliche Probleme während der Installation zu lösen."
|
2347 |
|
2348 |
-
#: templates/admin/debug-info.tpl.php:8
|
2349 |
-
#, fuzzy
|
2350 |
-
msgid "Download Debug Information"
|
2351 |
-
msgstr "Fehlerprotokoll herunterladen"
|
2352 |
-
|
2353 |
#: templates/admin/fees-add-fee.tpl.php:4 templates/admin/fees-form.tpl.php:245
|
2354 |
#, fuzzy
|
2355 |
msgid "Add Plan"
|
@@ -2431,55 +2543,43 @@ msgstr ""
|
|
2431 |
msgid "Save Changes"
|
2432 |
msgstr "Änderungen sichern"
|
2433 |
|
2434 |
-
#: templates/admin/fees-index.tpl.php:
|
2435 |
#, fuzzy
|
2436 |
msgid "Add New Plan"
|
2437 |
msgstr "Neuer Eintrag"
|
2438 |
|
2439 |
-
#: templates/admin/fees-index.tpl.php:
|
2440 |
#, fuzzy
|
2441 |
msgid "↑ Ascending"
|
2442 |
msgstr "↑ Aufsteigend"
|
2443 |
|
2444 |
-
#: templates/admin/fees-index.tpl.php:
|
2445 |
#, fuzzy
|
2446 |
msgid "↓ Descending"
|
2447 |
msgstr "↓ Absteigend"
|
2448 |
|
2449 |
-
#: templates/admin/fees-index.tpl.php:
|
2450 |
msgid "Save front-end order"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: templates/admin/fees-index.tpl.php:
|
2454 |
#, fuzzy
|
2455 |
msgid "Drag and drop to re-order plans."
|
2456 |
msgstr "Ziehen um Preise wiederholt zu beauftragen."
|
2457 |
|
2458 |
-
#: templates/admin/fees-index.tpl.php:
|
2459 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: templates/admin/fees-index.tpl.php:
|
2463 |
msgid "Add a payment gateway to increase conversion rates"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
#. translators: %s: payment gateway name */
|
2467 |
-
#: templates/admin/fees-index.tpl.php:
|
2468 |
-
msgid "Add the %s gateway as a payment option."
|
2469 |
-
msgstr ""
|
2470 |
-
|
2471 |
-
#: templates/admin/fees-index.tpl.php:96
|
2472 |
#, fuzzy
|
2473 |
-
msgid "
|
2474 |
-
msgstr "
|
2475 |
-
|
2476 |
-
#: templates/admin/fees-index.tpl.php:104
|
2477 |
-
msgid "Set up Authorize.net as a payment option."
|
2478 |
-
msgstr ""
|
2479 |
-
|
2480 |
-
#: templates/admin/fees-index.tpl.php:107
|
2481 |
-
msgid "Set Up"
|
2482 |
-
msgstr ""
|
2483 |
|
2484 |
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2485 |
#, fuzzy
|
@@ -2511,6 +2611,29 @@ msgstr "Formvorschau"
|
|
2511 |
msgid "Manage Theme Tags"
|
2512 |
msgstr "Preise Verwalten"
|
2513 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2514 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2515 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2516 |
#: templates/login.tpl.php:71
|
@@ -2730,11 +2853,6 @@ msgstr "Vorschau E-mail"
|
|
2730 |
msgid "Directory Settings"
|
2731 |
msgstr "Verzeichniseintrag Entwurf"
|
2732 |
|
2733 |
-
#: templates/admin/settings-page.tpl.php:8
|
2734 |
-
#: templates/admin/settings-reset.tpl.php:26
|
2735 |
-
msgid "Reset Defaults"
|
2736 |
-
msgstr "Standards zurücksetzen"
|
2737 |
-
|
2738 |
#: templates/admin/settings-reset.tpl.php:4
|
2739 |
#, fuzzy
|
2740 |
msgid "Directory Reset to Default"
|
@@ -2757,6 +2875,10 @@ msgstr ""
|
|
2757 |
msgid "Your existing listings will NOT be deleted doing this."
|
2758 |
msgstr ""
|
2759 |
|
|
|
|
|
|
|
|
|
2760 |
#: templates/admin/sidebar.tpl.php:7
|
2761 |
msgid "Need help?"
|
2762 |
msgstr ""
|
@@ -2859,9 +2981,13 @@ msgstr "Deinstallation abgeschlossen."
|
|
2859 |
msgid "Return to Dashboard."
|
2860 |
msgstr "Zurück zur Übersichtsseite"
|
2861 |
|
|
|
|
|
|
|
|
|
2862 |
#. translators: %1$s: open link html, %2$s: close link html
|
2863 |
#: templates/admin/uninstall-confirm.tpl.php:43
|
2864 |
-
msgid "Go to %1$sPlugins
|
2865 |
msgstr ""
|
2866 |
|
2867 |
#. translators: %1$s: open italic html, %2$s: close italic html
|
@@ -2886,7 +3012,7 @@ msgstr ""
|
|
2886 |
|
2887 |
#. translators: %1$s: open link html, %2$s: close link html
|
2888 |
#: templates/admin/uninstall-confirm.tpl.php:65
|
2889 |
-
msgid "You can reinstall the plugin again under %1$sPlugins
|
2890 |
msgstr ""
|
2891 |
|
2892 |
#: templates/admin/uninstall-confirm.tpl.php:74
|
@@ -3337,27 +3463,27 @@ msgctxt "views"
|
|
3337 |
msgid "Find A Listing"
|
3338 |
msgstr "Eintrag finden"
|
3339 |
|
3340 |
-
#: includes/admin/class-admin.php:
|
3341 |
msgctxt "drip pointer"
|
3342 |
msgid "Email Address:"
|
3343 |
msgstr "E-Mail Adresse:"
|
3344 |
|
3345 |
-
#: includes/admin/class-admin.php:
|
3346 |
msgctxt "admin"
|
3347 |
msgid "Business Directory"
|
3348 |
msgstr "Branchenverzeichnis"
|
3349 |
|
3350 |
-
#: includes/admin/class-admin.php:
|
3351 |
msgctxt "admin"
|
3352 |
msgid "Untitled Menu"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
-
#: includes/admin/class-admin.php:
|
3356 |
msgctxt "admin"
|
3357 |
msgid "Dismiss this notice."
|
3358 |
msgstr "Diese Nachricht ignorieren."
|
3359 |
|
3360 |
-
#: includes/admin/class-admin.php:
|
3361 |
#, fuzzy
|
3362 |
msgctxt "admin"
|
3363 |
msgid "The listing has been updated."
|
@@ -3365,25 +3491,25 @@ msgid_plural "The listings have been updated."
|
|
3365 |
msgstr[0] "Der Eintrag wurde aktualisiert"
|
3366 |
msgstr[1] "Die Einträge wurden aktualisiert."
|
3367 |
|
3368 |
-
#: includes/admin/class-admin.php:
|
3369 |
#, fuzzy
|
3370 |
msgctxt "admin"
|
3371 |
msgid "The plan was successfully assigned."
|
3372 |
msgstr "Der Preis wurde erfolgreich zugewiesen."
|
3373 |
|
3374 |
-
#: includes/admin/class-admin.php:
|
3375 |
msgctxt "admin"
|
3376 |
msgid "Listing was renewed."
|
3377 |
msgid_plural "Listings were renewed."
|
3378 |
msgstr[0] "Eintrag wurde aktualisiert."
|
3379 |
msgstr[1] "Einträge wurden aktualisiert."
|
3380 |
|
3381 |
-
#: includes/admin/class-admin.php:
|
3382 |
msgctxt "admin"
|
3383 |
msgid "Renewal email sent."
|
3384 |
msgstr "E-mail erneut senden."
|
3385 |
|
3386 |
-
#: includes/admin/class-admin.php:
|
3387 |
#, fuzzy
|
3388 |
msgctxt "admin"
|
3389 |
msgid "Listing report deleted."
|
@@ -3391,18 +3517,18 @@ msgid_plural "Listing reports deleted."
|
|
3391 |
msgstr[0] "Eintrag Enddatum"
|
3392 |
msgstr[1] "Eintrag Enddatum"
|
3393 |
|
3394 |
-
#: includes/admin/class-admin.php:
|
3395 |
#, fuzzy
|
3396 |
msgctxt "admin"
|
3397 |
msgid "Access keys sent."
|
3398 |
msgstr "Eintrag Felder / Bilder"
|
3399 |
|
3400 |
-
#: includes/admin/class-admin.php:
|
3401 |
msgctxt "admin"
|
3402 |
msgid "The access keys couldn't be sent."
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: includes/admin/class-admin.php:
|
3406 |
msgctxt "admin"
|
3407 |
msgid ""
|
3408 |
"<b>Business Directory Plugin</b> requires a page with the "
|
@@ -3411,7 +3537,7 @@ msgstr ""
|
|
3411 |
"<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
|
3412 |
"<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
|
3413 |
|
3414 |
-
#: includes/admin/class-admin.php:
|
3415 |
msgctxt "admin"
|
3416 |
msgid ""
|
3417 |
"You can create this page by yourself or let Business Directory do this for "
|
@@ -3420,12 +3546,12 @@ msgstr ""
|
|
3420 |
"Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
|
3421 |
"automatisch erstellen lassen."
|
3422 |
|
3423 |
-
#: includes/admin/class-admin.php:
|
3424 |
msgctxt "admin"
|
3425 |
msgid "Create required pages for me"
|
3426 |
msgstr "Erstelle benötigte Seiten für mich"
|
3427 |
|
3428 |
-
#: includes/admin/class-admin.php:
|
3429 |
msgctxt "admin"
|
3430 |
msgid ""
|
3431 |
"<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
|
@@ -3485,19 +3611,19 @@ msgctxt "admin"
|
|
3485 |
msgid "Create these required fields for me"
|
3486 |
msgstr "Erstelle diese benötigten Felder für mich"
|
3487 |
|
3488 |
-
#: includes/admin/class-admin.php:
|
3489 |
#, fuzzy
|
3490 |
msgctxt "admin menu"
|
3491 |
msgid "Payment History"
|
3492 |
msgstr "Bezahlhistorie"
|
3493 |
|
3494 |
-
#: includes/admin/class-admin.php:
|
3495 |
#, fuzzy
|
3496 |
msgctxt "admin menu"
|
3497 |
msgid "Import & Export"
|
3498 |
msgstr "CSV Import"
|
3499 |
|
3500 |
-
#: includes/admin/class-admin.php:
|
3501 |
msgctxt "admin menu"
|
3502 |
msgid "Debug"
|
3503 |
msgstr "Fehlerkorrektur"
|
@@ -3524,1156 +3650,833 @@ msgctxt "admin confirm"
|
|
3524 |
msgid "Yes, I'm sure"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
-
#: includes/admin/controllers/class-admin-
|
3528 |
-
msgctxt "
|
3529 |
-
msgid "
|
3530 |
-
msgstr "
|
3531 |
|
3532 |
-
#: includes/admin/
|
3533 |
-
msgctxt "
|
3534 |
-
msgid "
|
3535 |
-
msgstr "
|
3536 |
|
3537 |
-
#: includes/admin/
|
3538 |
-
msgctxt "
|
3539 |
-
msgid "
|
3540 |
-
msgstr "
|
3541 |
|
3542 |
-
#: includes/admin/
|
3543 |
-
|
3544 |
-
|
3545 |
-
"
|
3546 |
-
"
|
3547 |
-
msgstr ""
|
3548 |
-
"Beim überprüfen der der CSV-Datei wurde ein Fehler festgestellt. Bitte "
|
3549 |
-
"beheben sie diesen, bevor Sie mit dem Importieren fortfahren."
|
3550 |
|
3551 |
-
#: includes/admin/
|
3552 |
-
|
3553 |
-
|
3554 |
-
|
3555 |
-
"
|
3556 |
-
"geschrieben."
|
3557 |
|
3558 |
-
#: includes/admin/
|
3559 |
-
|
3560 |
-
|
3561 |
-
"
|
3562 |
-
"
|
3563 |
-
msgstr ""
|
3564 |
-
"Die Kategorieauflistung \"<category-name>\" konnte nicht erstellt werden. "
|
3565 |
-
"Der Vorgang ist mit dem folgenden Fehler fehlgeschlagen: <error-message>."
|
3566 |
|
3567 |
-
#: includes/admin/helpers/
|
3568 |
-
msgctxt "admin
|
3569 |
-
msgid "
|
3570 |
-
msgstr "
|
3571 |
|
3572 |
-
#: includes/admin/helpers/
|
3573 |
-
msgctxt "admin
|
3574 |
-
msgid "
|
3575 |
-
msgstr "
|
3576 |
|
3577 |
-
#: includes/admin/helpers/
|
3578 |
-
|
3579 |
-
|
3580 |
-
|
|
|
3581 |
|
3582 |
-
#: includes/admin/helpers/
|
3583 |
-
msgctxt "admin
|
3584 |
-
msgid "
|
3585 |
-
msgstr "
|
3586 |
|
3587 |
-
#: includes/admin/helpers/
|
3588 |
-
|
3589 |
-
|
3590 |
-
|
|
|
3591 |
|
3592 |
-
#: includes/admin/helpers/
|
3593 |
-
|
3594 |
-
|
3595 |
-
|
|
|
3596 |
|
3597 |
-
#:
|
3598 |
-
msgctxt "admin
|
3599 |
-
msgid "
|
3600 |
-
msgstr ""
|
3601 |
-
"Während des Importes ist ein schwerwiegender Fehler aufgetreten. Der Grund "
|
3602 |
-
"dafür war: \"%s\"."
|
3603 |
|
3604 |
-
#:
|
3605 |
-
msgctxt "admin
|
3606 |
-
msgid ""
|
3607 |
-
"
|
3608 |
-
"
|
3609 |
-
"
|
3610 |
-
msgstr ""
|
3611 |
-
"Ein unvorhergesehener Fehler ist während des Exports aufgetreten. Bitte "
|
3612 |
-
"stelle sicher, dass du genügend Speicherplatz für PHP vorhanden ist. Schaue "
|
3613 |
-
"ins Fehlerprotokoll."
|
3614 |
|
3615 |
-
#:
|
3616 |
-
|
3617 |
-
|
3618 |
-
|
3619 |
-
msgstr "Zurück nach \"CSV Importieren\""
|
3620 |
|
3621 |
-
#:
|
3622 |
-
msgctxt "admin
|
3623 |
-
msgid "
|
3624 |
-
msgstr "
|
3625 |
|
3626 |
-
#:
|
3627 |
-
|
3628 |
-
|
3629 |
-
|
|
|
3630 |
|
3631 |
-
#:
|
3632 |
#, fuzzy
|
3633 |
-
msgctxt "admin
|
3634 |
-
msgid "
|
3635 |
-
msgstr "
|
3636 |
|
3637 |
-
#:
|
3638 |
-
|
3639 |
-
|
3640 |
-
|
|
|
3641 |
|
3642 |
-
#:
|
3643 |
-
|
3644 |
-
|
3645 |
-
|
|
|
3646 |
|
3647 |
-
#:
|
3648 |
-
msgctxt "admin
|
3649 |
-
msgid "
|
3650 |
-
msgstr "
|
3651 |
|
3652 |
-
#: templates/admin/
|
3653 |
-
msgctxt "admin
|
3654 |
-
msgid "
|
3655 |
msgstr ""
|
3656 |
-
"Der Import wurde noch nicht gestartet. Klicken Sie auf \"CSV-Datei "
|
3657 |
-
"importieren\" um zu starten."
|
3658 |
|
3659 |
-
#: templates/admin/
|
3660 |
-
|
3661 |
-
|
3662 |
-
|
|
|
3663 |
|
3664 |
-
#: templates/admin/
|
3665 |
-
msgctxt "admin
|
3666 |
-
msgid "
|
3667 |
-
msgstr "
|
3668 |
|
3669 |
-
#: templates/admin/
|
3670 |
-
|
3671 |
-
|
3672 |
-
|
|
|
3673 |
|
3674 |
-
#: templates/admin/
|
3675 |
-
msgctxt "admin
|
3676 |
-
msgid "
|
3677 |
-
msgstr "
|
3678 |
|
3679 |
-
#: templates/admin/
|
3680 |
-
|
3681 |
-
|
3682 |
-
|
|
|
3683 |
|
3684 |
-
#: templates/admin/
|
3685 |
-
msgctxt "admin
|
3686 |
-
msgid "
|
3687 |
-
msgstr "
|
3688 |
-
|
3689 |
-
#: templates/admin/csv-import-progress.tpl.php:63
|
3690 |
-
msgctxt "admin csv-import"
|
3691 |
-
msgid "Import Summary"
|
3692 |
-
msgstr "Import Zusammenfassung"
|
3693 |
-
|
3694 |
-
#: templates/admin/csv-import-progress.tpl.php:65
|
3695 |
-
msgctxt "admin csv-import"
|
3696 |
-
msgid "Rows in file:"
|
3697 |
-
msgstr "Zeilen in Datei:"
|
3698 |
|
3699 |
-
#: templates/admin/
|
3700 |
-
msgctxt "admin
|
3701 |
-
msgid "
|
3702 |
-
msgstr "
|
3703 |
|
3704 |
-
#: templates/admin/
|
3705 |
-
|
3706 |
-
|
3707 |
-
|
|
|
3708 |
|
3709 |
-
#: templates/admin/
|
3710 |
-
msgctxt "admin
|
3711 |
-
msgid "
|
3712 |
-
msgstr "
|
3713 |
|
3714 |
-
#: templates/admin/
|
3715 |
-
|
3716 |
-
|
3717 |
-
|
|
|
3718 |
|
3719 |
-
#: templates/admin/
|
3720 |
-
|
3721 |
-
|
3722 |
-
|
|
|
3723 |
|
3724 |
-
#: templates/admin/
|
3725 |
-
|
3726 |
-
|
3727 |
-
|
|
|
3728 |
|
3729 |
-
#: templates/admin/
|
3730 |
-
msgctxt "admin
|
3731 |
-
msgid "
|
3732 |
msgstr ""
|
3733 |
-
"Hier können Sie mit dem CSV-Format Daten in Ihr Verzeichnis importieren."
|
3734 |
|
3735 |
-
#:
|
3736 |
-
msgctxt "admin
|
3737 |
-
msgid "
|
3738 |
-
msgstr ""
|
3739 |
-
"... oder <a>wählen sie eine Datei die im upload Ordner hochgeladen wurde</a>"
|
3740 |
|
3741 |
-
#:
|
3742 |
-
|
3743 |
-
|
3744 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3745 |
|
3746 |
-
#:
|
3747 |
-
|
3748 |
-
|
3749 |
-
|
|
|
3750 |
|
3751 |
-
#:
|
3752 |
-
|
3753 |
-
|
3754 |
-
|
|
|
3755 |
|
3756 |
-
#:
|
3757 |
#, fuzzy
|
3758 |
-
msgctxt "admin
|
3759 |
-
msgid "
|
3760 |
-
msgstr "
|
3761 |
|
3762 |
-
#:
|
3763 |
-
|
3764 |
-
|
3765 |
-
|
|
|
3766 |
|
3767 |
-
#:
|
3768 |
-
|
3769 |
-
|
3770 |
-
|
|
|
3771 |
|
3772 |
-
#:
|
3773 |
-
msgctxt "admin
|
3774 |
-
msgid "
|
3775 |
-
msgstr "
|
3776 |
|
3777 |
-
#:
|
3778 |
-
msgctxt "admin
|
3779 |
-
msgid "
|
3780 |
-
msgstr "
|
3781 |
|
3782 |
-
#: templates/admin/
|
3783 |
-
msgctxt "admin
|
3784 |
-
msgid ""
|
3785 |
-
"Select a default user to be used if the username column is not present in "
|
3786 |
-
"the CSV file."
|
3787 |
msgstr ""
|
3788 |
-
"Wählen Sie einen Benutzernamen der verwendet werden soll, wenn die Username-"
|
3789 |
-
"Spalte in der CSV-Datei nicht vorhanden ist."
|
3790 |
|
3791 |
-
#: templates/admin/
|
3792 |
-
|
3793 |
-
|
3794 |
-
|
|
|
3795 |
|
3796 |
-
#: templates/admin/
|
3797 |
-
|
3798 |
-
|
3799 |
-
|
|
|
3800 |
|
3801 |
-
#: templates/admin/
|
3802 |
#, fuzzy
|
3803 |
-
msgctxt "admin
|
3804 |
-
msgid ""
|
3805 |
-
"
|
3806 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3807 |
msgstr ""
|
3808 |
-
"Tag des Eintragende formatiert als YYYY-MM-DD. Benutze diese Spalte, wenn "
|
3809 |
-
"Einträge aus externen Quellen hinzugefügt oder aktualisiert werden."
|
3810 |
|
3811 |
-
#:
|
3812 |
-
msgctxt "
|
3813 |
-
msgid ""
|
3814 |
-
"Internal Sequence ID used to allow listing updates from external sources."
|
3815 |
msgstr ""
|
3816 |
-
"Interne Sequenz ID wird benutzt um Aktualisierungen von Einträgen aus "
|
3817 |
-
"externer Quellen durchzuführen."
|
3818 |
|
3819 |
-
#:
|
3820 |
-
msgctxt "
|
3821 |
-
msgid ""
|
3822 |
-
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
3823 |
-
"adding or updating listings from external sources."
|
3824 |
msgstr ""
|
3825 |
-
"Tag des Eintragende formatiert als YYYY-MM-DD. Benutze diese Spalte, wenn "
|
3826 |
-
"Einträge aus externen Quellen hinzugefügt oder aktualisiert werden."
|
3827 |
|
3828 |
-
#: includes/
|
3829 |
#, fuzzy
|
3830 |
-
msgctxt "
|
3831 |
-
msgid "
|
3832 |
-
msgstr "
|
3833 |
|
3834 |
-
#: includes/
|
3835 |
#, fuzzy
|
3836 |
-
msgctxt "
|
3837 |
-
msgid "
|
3838 |
-
msgstr "
|
3839 |
-
|
3840 |
-
#: includes/admin/controllers/class-admin-fees.php:46
|
3841 |
-
msgctxt "fees order"
|
3842 |
-
msgid "Label"
|
3843 |
-
msgstr "Bezeichnung"
|
3844 |
-
|
3845 |
-
#: includes/admin/controllers/class-admin-fees.php:48
|
3846 |
-
msgctxt "fees order"
|
3847 |
-
msgid "Duration"
|
3848 |
-
msgstr "Zeitraum"
|
3849 |
-
|
3850 |
-
#: includes/admin/controllers/class-admin-fees.php:50
|
3851 |
-
msgctxt "fees order"
|
3852 |
-
msgid "Custom Order"
|
3853 |
-
msgstr "Benutzerdefinierte Reihenfolge"
|
3854 |
|
3855 |
-
#: includes/
|
3856 |
#, fuzzy
|
3857 |
-
msgctxt "
|
3858 |
-
msgid "
|
3859 |
-
msgstr "
|
3860 |
|
3861 |
-
#: includes/
|
3862 |
#, fuzzy
|
3863 |
-
msgctxt "
|
3864 |
-
msgid "
|
3865 |
-
msgstr "
|
3866 |
|
3867 |
-
#: includes/
|
3868 |
#, fuzzy
|
3869 |
-
msgctxt "
|
3870 |
-
msgid "
|
3871 |
-
msgstr "
|
3872 |
-
|
3873 |
-
#: includes/admin/helpers/tables/class-fees-table.php:20
|
3874 |
-
msgctxt "fees admin"
|
3875 |
-
msgid "fee"
|
3876 |
-
msgstr "Preis"
|
3877 |
-
|
3878 |
-
#: includes/admin/helpers/tables/class-fees-table.php:21
|
3879 |
-
msgctxt "fees admin"
|
3880 |
-
msgid "fees"
|
3881 |
-
msgstr "Preise"
|
3882 |
|
3883 |
-
#: includes/
|
3884 |
#, fuzzy
|
3885 |
-
msgctxt "
|
3886 |
-
msgid "
|
3887 |
-
msgstr "
|
3888 |
-
|
3889 |
-
#: includes/admin/helpers/tables/class-fees-table.php:140
|
3890 |
-
msgctxt "fees admin"
|
3891 |
-
msgid "Edit"
|
3892 |
-
msgstr "Bearbeiten"
|
3893 |
|
3894 |
-
#: includes/
|
3895 |
#, fuzzy
|
3896 |
-
msgctxt "
|
3897 |
-
msgid "
|
3898 |
-
msgstr "
|
3899 |
|
3900 |
-
#: includes/admin/
|
3901 |
#, fuzzy
|
3902 |
-
msgctxt "
|
3903 |
-
msgid "
|
3904 |
-
msgstr "
|
3905 |
|
3906 |
-
#: includes/admin/
|
3907 |
-
|
3908 |
-
|
3909 |
-
|
|
|
3910 |
|
3911 |
-
#: includes/admin/
|
3912 |
-
|
3913 |
-
|
3914 |
-
|
3915 |
-
msgstr
|
3916 |
-
msgstr[1] "%d Tage"
|
3917 |
|
3918 |
-
#: includes/admin/
|
3919 |
-
|
3920 |
-
|
3921 |
-
|
|
|
3922 |
|
3923 |
-
#: includes/admin/
|
3924 |
-
msgctxt "
|
3925 |
-
msgid "
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: includes/admin/
|
3929 |
#, fuzzy
|
3930 |
-
msgctxt "
|
3931 |
-
msgid "
|
3932 |
-
msgstr "
|
3933 |
|
3934 |
-
#: includes/admin/
|
3935 |
#, fuzzy
|
3936 |
-
msgctxt "
|
3937 |
-
msgid "
|
3938 |
-
msgstr "
|
3939 |
|
3940 |
-
#: includes/admin/
|
3941 |
#, fuzzy
|
3942 |
-
msgctxt "
|
3943 |
-
msgid "
|
3944 |
-
msgstr "
|
3945 |
|
3946 |
-
#: includes/admin/
|
3947 |
#, fuzzy
|
3948 |
-
msgctxt "
|
3949 |
-
msgid "Payment
|
3950 |
-
msgstr "
|
3951 |
-
|
3952 |
-
#: includes/admin/helpers/tables/class-payments-table.php:58
|
3953 |
-
msgctxt "fees admin"
|
3954 |
-
msgid "Status"
|
3955 |
-
msgstr "Status"
|
3956 |
|
3957 |
-
#:
|
3958 |
-
msgctxt "
|
3959 |
-
msgid "
|
|
|
|
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#:
|
3963 |
#, fuzzy
|
3964 |
-
msgctxt "
|
3965 |
-
msgid "
|
3966 |
-
msgstr "
|
3967 |
|
3968 |
-
#:
|
3969 |
-
|
3970 |
-
|
3971 |
-
|
|
|
3972 |
|
3973 |
-
#:
|
3974 |
#, fuzzy
|
3975 |
-
msgctxt "
|
3976 |
-
msgid "
|
3977 |
-
msgstr "
|
3978 |
|
3979 |
-
#:
|
3980 |
-
msgctxt "
|
3981 |
-
msgid "
|
3982 |
-
msgstr ""
|
3983 |
|
3984 |
-
#:
|
3985 |
#, fuzzy
|
3986 |
-
msgctxt "
|
3987 |
-
msgid "
|
3988 |
-
msgstr "
|
3989 |
|
3990 |
-
#:
|
3991 |
-
|
3992 |
-
|
3993 |
-
|
|
|
3994 |
|
3995 |
-
#:
|
3996 |
-
msgctxt "
|
3997 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3998 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
3999 |
|
4000 |
-
#:
|
4001 |
-
|
4002 |
-
|
4003 |
-
|
4004 |
-
msgstr "Sortierung für Kategorien"
|
4005 |
|
4006 |
-
#:
|
4007 |
-
msgctxt "
|
4008 |
-
msgid "
|
4009 |
-
msgstr ""
|
4010 |
|
4011 |
-
#:
|
4012 |
-
|
4013 |
-
|
4014 |
-
|
4015 |
-
msgstr "Preis"
|
4016 |
|
4017 |
-
#:
|
4018 |
-
|
4019 |
-
|
4020 |
-
|
4021 |
-
msgstr "Kategorie entfernen"
|
4022 |
|
4023 |
-
#:
|
4024 |
-
|
4025 |
-
|
4026 |
-
|
4027 |
-
msgstr "Preis"
|
4028 |
|
4029 |
-
#:
|
4030 |
-
msgctxt "
|
4031 |
-
msgid "
|
4032 |
-
msgstr ""
|
4033 |
|
4034 |
-
#: includes/admin/
|
4035 |
-
msgctxt "admin
|
4036 |
-
msgid "
|
4037 |
-
msgstr "
|
4038 |
|
4039 |
-
#: includes/admin/
|
4040 |
-
|
4041 |
-
|
4042 |
-
|
4043 |
-
"This listing doesn't have a plan assigned. This is required in order to "
|
4044 |
-
"determine the features available to this listing, as well as handling "
|
4045 |
-
"renewals."
|
4046 |
-
msgstr ""
|
4047 |
-
"Diese Auflistung wurde keiner Kategorie zugewiesen. Mindestens eine "
|
4048 |
-
"Kategorie (und die jeweilige Gebühr) ist erforderlich, um die für diese "
|
4049 |
-
"Auflistung zur Verfügung stehenden Funktionen sowie die Erneuerung zu "
|
4050 |
-
"ermitteln."
|
4051 |
|
4052 |
-
#: includes/admin/
|
4053 |
-
|
4054 |
-
|
4055 |
-
|
4056 |
-
msgstr "niemals"
|
4057 |
|
4058 |
-
#: includes/admin/
|
4059 |
#, fuzzy
|
4060 |
-
msgctxt "admin
|
4061 |
-
msgid "
|
4062 |
-
msgstr "
|
4063 |
|
4064 |
-
#: includes/admin/
|
4065 |
#, fuzzy
|
4066 |
-
msgctxt "admin
|
4067 |
-
msgid "
|
4068 |
-
msgstr "
|
4069 |
|
4070 |
-
#: includes/admin/
|
4071 |
-
|
4072 |
-
|
4073 |
-
|
4074 |
-
msgstr "Preisinformation"
|
4075 |
|
4076 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4077 |
#, fuzzy
|
4078 |
-
msgctxt "admin
|
4079 |
-
msgid "
|
4080 |
-
msgstr "
|
4081 |
|
4082 |
-
#: includes/
|
4083 |
-
|
4084 |
-
|
|
|
4085 |
msgstr ""
|
|
|
4086 |
|
4087 |
-
#: includes/
|
4088 |
-
msgctxt "admin
|
4089 |
-
msgid "
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#:
|
4093 |
-
msgctxt "admin
|
4094 |
-
msgid "
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#:
|
4098 |
-
|
4099 |
-
msgctxt "admin
|
4100 |
-
msgid "
|
4101 |
-
msgstr "
|
4102 |
|
4103 |
-
#:
|
4104 |
#, fuzzy
|
4105 |
-
msgctxt "admin
|
4106 |
-
msgid "
|
4107 |
-
msgstr "
|
4108 |
|
4109 |
-
#:
|
4110 |
-
|
4111 |
-
|
4112 |
-
|
4113 |
-
msgstr "Ein Eintrag läuft aus."
|
4114 |
|
4115 |
-
#: includes/
|
4116 |
-
|
4117 |
-
|
4118 |
-
|
4119 |
-
msgstr "Bezahlt"
|
4120 |
|
4121 |
-
#: includes/
|
4122 |
-
msgctxt "
|
4123 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4124 |
msgstr ""
|
|
|
|
|
4125 |
|
4126 |
-
#: includes/
|
4127 |
-
msgctxt "
|
4128 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
4129 |
msgstr ""
|
4130 |
|
4131 |
-
#: includes/
|
4132 |
-
msgctxt "
|
4133 |
-
msgid "
|
|
|
|
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: includes/
|
4137 |
-
|
4138 |
-
|
4139 |
-
|
4140 |
-
|
|
|
4141 |
|
4142 |
-
#: includes/
|
4143 |
-
|
4144 |
-
|
4145 |
-
|
4146 |
-
msgstr "Ausstehende Zahlungen"
|
4147 |
|
4148 |
-
#: includes/
|
4149 |
-
|
4150 |
-
|
4151 |
-
|
4152 |
-
|
|
|
4153 |
|
4154 |
-
#: includes/
|
4155 |
-
|
4156 |
-
|
4157 |
-
|
4158 |
-
|
|
|
4159 |
|
4160 |
-
#: includes/
|
4161 |
-
|
4162 |
-
|
4163 |
-
|
4164 |
-
msgstr "Abgelaufen"
|
4165 |
|
4166 |
-
#: includes/
|
4167 |
#, fuzzy
|
4168 |
-
msgctxt "
|
4169 |
-
msgid "
|
4170 |
-
msgstr "
|
4171 |
|
4172 |
-
#:
|
4173 |
-
|
4174 |
-
|
4175 |
-
|
4176 |
-
msgstr "Abgebrochen"
|
4177 |
|
4178 |
-
#:
|
4179 |
-
|
4180 |
-
|
4181 |
-
|
4182 |
-
|
|
|
4183 |
|
4184 |
-
#:
|
4185 |
-
|
4186 |
-
|
4187 |
-
|
4188 |
-
msgstr "Bezahlung"
|
4189 |
|
4190 |
-
#:
|
4191 |
-
|
4192 |
-
|
4193 |
-
|
4194 |
-
msgstr "Eintrag veröffentlichen"
|
4195 |
|
4196 |
-
#:
|
4197 |
-
|
4198 |
-
|
4199 |
-
|
4200 |
-
msgstr "Ausstehend"
|
4201 |
-
|
4202 |
-
#: includes/admin/controllers/class-admin-listings.php:637
|
4203 |
-
msgctxt "admin actions"
|
4204 |
-
msgid "Hide from directory (mark as \"Draft\")"
|
4205 |
-
msgstr ""
|
4206 |
-
|
4207 |
-
#: includes/admin/controllers/class-admin-listings.php:639
|
4208 |
-
#, fuzzy
|
4209 |
-
msgctxt "admin actions"
|
4210 |
-
msgid "Renew listings"
|
4211 |
-
msgstr "Eintrag erneuern"
|
4212 |
-
|
4213 |
-
#: includes/admin/controllers/class-admin-listings.php:640
|
4214 |
-
#, fuzzy
|
4215 |
-
msgctxt "admin actions"
|
4216 |
-
msgid "Set listings as \"Expired\""
|
4217 |
-
msgstr "Ein Eintrag läuft aus."
|
4218 |
-
|
4219 |
-
#: includes/admin/controllers/class-admin-listings.php:647
|
4220 |
-
#, fuzzy
|
4221 |
-
msgctxt "admin actions"
|
4222 |
-
msgid "Send access keys"
|
4223 |
-
msgstr "Eintrag Felder / Bilder"
|
4224 |
-
|
4225 |
-
#: includes/admin/controllers/class-admin-payments.php:19
|
4226 |
-
#, fuzzy
|
4227 |
-
msgctxt "payments admin"
|
4228 |
-
msgid "Payment deleted."
|
4229 |
-
msgstr "Bezahlmethode"
|
4230 |
-
|
4231 |
-
#: includes/admin/controllers/class-admin-payments.php:37
|
4232 |
-
msgctxt "payments admin"
|
4233 |
-
msgid ""
|
4234 |
-
"You're seeing payments related to listing: \"%1$s\" (ID #%2$d). <a>Click "
|
4235 |
-
"here</a> to see all payments."
|
4236 |
-
msgstr ""
|
4237 |
-
|
4238 |
-
#: includes/admin/controllers/class-admin-payments.php:56
|
4239 |
-
#, fuzzy
|
4240 |
-
msgctxt "payments admin"
|
4241 |
-
msgid "Payment details updated."
|
4242 |
-
msgstr "Bezahldetails"
|
4243 |
-
|
4244 |
-
#: includes/admin/helpers/tables/class-payments-table.php:12
|
4245 |
-
#, fuzzy
|
4246 |
-
msgctxt "payments admin"
|
4247 |
-
msgid "payment"
|
4248 |
-
msgstr "Bezahlung"
|
4249 |
-
|
4250 |
-
#: includes/admin/helpers/tables/class-payments-table.php:13
|
4251 |
-
#, fuzzy
|
4252 |
-
msgctxt "payments admin"
|
4253 |
-
msgid "payments"
|
4254 |
-
msgstr "Bezahlung"
|
4255 |
-
|
4256 |
-
#: includes/admin/helpers/tables/class-payments-table.php:19
|
4257 |
-
msgctxt "payments admin"
|
4258 |
-
msgid "No payments found."
|
4259 |
-
msgstr "Keine Zahlungen gefunden."
|
4260 |
-
|
4261 |
-
#: includes/admin/helpers/tables/class-payments-table.php:32
|
4262 |
-
#, fuzzy
|
4263 |
-
msgctxt "payments admin"
|
4264 |
-
msgid "All"
|
4265 |
-
msgstr "Alle"
|
4266 |
-
|
4267 |
-
#: includes/admin/helpers/tables/class-payments-table.php:124
|
4268 |
-
#, fuzzy
|
4269 |
-
msgctxt "payments admin"
|
4270 |
-
msgid "View Payment History"
|
4271 |
-
msgstr "Bezahlhistorie"
|
4272 |
|
4273 |
-
#:
|
4274 |
msgctxt "form-fields admin"
|
4275 |
-
msgid "
|
4276 |
-
msgstr "
|
4277 |
|
4278 |
-
#:
|
4279 |
msgctxt "form-fields admin"
|
4280 |
-
msgid ""
|
4281 |
-
|
4282 |
-
"\" setting is disabled, display settings below will not be honored and this "
|
4283 |
-
"field will not be displayed on the frontend. If you want e-mail addresses to "
|
4284 |
-
"show on the frontend, you can <a>enable public display of e-mails</a>."
|
4285 |
-
msgstr ""
|
4286 |
-
"<b>Wichtig</b>: Da das Feld \"<a>E-Mail-Adresse öffentlich anzeigen?</a>\" "
|
4287 |
-
"deaktiviert ist, werden die Anzeigeeinstellungen unten nicht berücksichtigt "
|
4288 |
-
"und dieses Feld wird nicht im Frontend angezeigt. Wenn Sie möchten, dass E-"
|
4289 |
-
"Mail-Adressen auf der Webseite angezeigt werden, können Sie die "
|
4290 |
-
"<a>öffentliche Anzeige von E-Mails</a> aktivieren."
|
4291 |
|
4292 |
-
#:
|
4293 |
msgctxt "form-fields admin"
|
4294 |
-
msgid "Field
|
4295 |
-
msgstr "
|
4296 |
|
4297 |
-
#:
|
4298 |
msgctxt "form-fields admin"
|
4299 |
-
msgid "
|
4300 |
-
msgstr "
|
4301 |
|
4302 |
-
#:
|
4303 |
msgctxt "form-fields admin"
|
4304 |
-
msgid "
|
4305 |
-
msgstr "
|
4306 |
|
4307 |
-
#:
|
4308 |
msgctxt "form-fields admin"
|
4309 |
-
msgid "
|
4310 |
-
msgstr "
|
4311 |
|
4312 |
-
#:
|
4313 |
msgctxt "form-fields admin"
|
4314 |
-
msgid "
|
4315 |
-
msgstr "
|
4316 |
|
4317 |
-
#:
|
4318 |
msgctxt "form-fields admin"
|
4319 |
-
msgid "
|
4320 |
-
msgstr "
|
4321 |
|
4322 |
-
#:
|
4323 |
msgctxt "form-fields admin"
|
4324 |
-
msgid "
|
4325 |
-
msgstr "
|
4326 |
|
4327 |
-
#:
|
|
|
4328 |
msgctxt "form-fields admin"
|
4329 |
-
msgid "
|
4330 |
-
msgstr "
|
4331 |
|
4332 |
-
#:
|
|
|
4333 |
msgctxt "form-fields admin"
|
4334 |
-
msgid "Field
|
4335 |
-
msgstr "
|
4336 |
|
4337 |
-
#:
|
4338 |
#, fuzzy
|
4339 |
msgctxt "form-fields admin"
|
4340 |
-
msgid "
|
4341 |
-
msgstr "
|
4342 |
|
4343 |
-
#:
|
4344 |
msgctxt "form-fields admin"
|
4345 |
-
msgid "
|
4346 |
-
msgstr "
|
4347 |
|
4348 |
-
#:
|
4349 |
msgctxt "form-fields admin"
|
4350 |
-
msgid "
|
4351 |
-
msgstr "
|
4352 |
|
4353 |
-
#:
|
4354 |
#, fuzzy
|
4355 |
msgctxt "form-fields admin"
|
4356 |
-
msgid "
|
4357 |
-
msgstr "
|
4358 |
|
4359 |
-
#:
|
4360 |
msgctxt "form-fields admin"
|
4361 |
-
msgid "
|
4362 |
-
msgstr "
|
4363 |
|
4364 |
-
#:
|
4365 |
msgctxt "form-fields admin"
|
4366 |
-
msgid "
|
4367 |
-
msgstr "
|
4368 |
|
4369 |
-
#:
|
4370 |
msgctxt "form-fields admin"
|
4371 |
-
msgid "
|
4372 |
-
msgstr "
|
4373 |
|
4374 |
-
#:
|
4375 |
msgctxt "form-fields admin"
|
4376 |
-
msgid "
|
4377 |
-
msgstr "
|
4378 |
|
4379 |
-
#:
|
4380 |
-
#, fuzzy
|
4381 |
msgctxt "form-fields admin"
|
4382 |
-
msgid "
|
4383 |
-
msgstr "
|
4384 |
|
4385 |
-
#:
|
4386 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:90
|
4387 |
msgctxt "form-fields admin"
|
4388 |
-
msgid "
|
4389 |
-
msgstr ""
|
4390 |
-
"Feldoptionen (für ausgewählte Listen, Radiobutton und Kontrollkästchen)"
|
4391 |
|
4392 |
-
#:
|
|
|
4393 |
msgctxt "form-fields admin"
|
4394 |
-
msgid "
|
4395 |
-
msgstr ""
|
4396 |
|
4397 |
-
#:
|
4398 |
msgctxt "form-fields admin"
|
4399 |
-
msgid "
|
4400 |
-
msgstr ""
|
4401 |
|
4402 |
-
#:
|
4403 |
-
#: includes/fields/class-fieldtypes-radiobutton.php:117
|
4404 |
msgctxt "form-fields admin"
|
4405 |
-
msgid "
|
4406 |
-
msgstr "
|
|
|
4407 |
|
4408 |
-
#:
|
4409 |
#, fuzzy
|
4410 |
msgctxt "form-fields admin"
|
4411 |
-
msgid "Field
|
4412 |
-
msgstr "
|
4413 |
|
4414 |
-
#:
|
4415 |
msgctxt "form-fields admin"
|
4416 |
-
msgid "
|
4417 |
-
msgstr "
|
4418 |
|
4419 |
-
#:
|
4420 |
msgctxt "form-fields admin"
|
4421 |
-
msgid "
|
4422 |
-
msgstr "
|
4423 |
|
4424 |
-
#:
|
4425 |
msgctxt "form-fields admin"
|
4426 |
-
msgid "
|
4427 |
-
msgstr "
|
4428 |
|
4429 |
-
#:
|
4430 |
msgctxt "form-fields admin"
|
4431 |
-
msgid "
|
4432 |
-
msgstr "
|
4433 |
|
4434 |
-
#:
|
4435 |
-
msgctxt "form-fields admin"
|
4436 |
-
msgid ""
|
4437 |
-
"<b>Advanced users only!</b> Unless you've been told to change this, don't "
|
4438 |
-
"switch it unless you know what you're doing."
|
4439 |
-
msgstr ""
|
4440 |
-
"<b>Nur für Administratoren!</b> Wenn es dir nicht ausdrücklich gesagt wurde, "
|
4441 |
-
"ändere diese Einstellung nicht bevor du nicht weist was du genau tust."
|
4442 |
-
|
4443 |
-
#: includes/fields/class-fieldtypes-textarea.php:219
|
4444 |
-
msgctxt "form-fields admin"
|
4445 |
-
msgid "Apply \"the_content\" filter before displaying this field?"
|
4446 |
-
msgstr "\"the_content\" Filter zuweisen bevor das Feld angezeigt wird?"
|
4447 |
-
|
4448 |
-
#: includes/fields/class-fieldtypes-textarea.php:222
|
4449 |
-
msgctxt "form-fields admin"
|
4450 |
-
msgid "Use shortened version of Description field as excerpt"
|
4451 |
-
msgstr ""
|
4452 |
-
|
4453 |
-
#: includes/fields/class-fieldtypes-textarea.php:223
|
4454 |
-
msgctxt "form-fields admin"
|
4455 |
-
msgid ""
|
4456 |
-
"Enable always (override the Short Description given with a shortened Long "
|
4457 |
-
"Description)"
|
4458 |
-
msgstr ""
|
4459 |
-
|
4460 |
-
#: includes/fields/class-fieldtypes-textarea.php:224
|
4461 |
-
msgctxt "form-fields admin"
|
4462 |
-
msgid ""
|
4463 |
-
"Enable conditionally (override ONLY when Short Description is empty with a "
|
4464 |
-
"shortened Long Description)"
|
4465 |
-
msgstr ""
|
4466 |
-
|
4467 |
-
#: includes/fields/class-fieldtypes-textarea.php:225
|
4468 |
-
msgctxt "form-fields admin"
|
4469 |
-
msgid "Disable (use the Short Description all the time, empty or not)"
|
4470 |
-
msgstr ""
|
4471 |
-
|
4472 |
-
#: includes/fields/class-fieldtypes-textarea.php:227
|
4473 |
-
msgctxt "form-fields admin"
|
4474 |
-
msgid ""
|
4475 |
-
"Truncates the description field to the value set here. To display all of the "
|
4476 |
-
"description, set to 0."
|
4477 |
-
msgstr ""
|
4478 |
-
|
4479 |
-
#: includes/fields/class-fieldtypes-textarea.php:228
|
4480 |
-
msgctxt "form-fields admin"
|
4481 |
-
msgid ""
|
4482 |
-
"Number of Characters from Short Description/Excerpt to Display in List View "
|
4483 |
-
"(only)"
|
4484 |
-
msgstr ""
|
4485 |
-
|
4486 |
-
#: includes/fields/class-fieldtypes-textarea.php:233
|
4487 |
-
msgctxt "form-fields admin"
|
4488 |
-
msgid "Automatically generate excerpt from content field?"
|
4489 |
-
msgstr "Automatisches Generierung eines Auszugs aus dem Inhaltsfeld?"
|
4490 |
-
|
4491 |
-
#: includes/fields/class-fieldtypes-twitter.php:83
|
4492 |
-
#, fuzzy
|
4493 |
-
msgctxt "form-fields admin"
|
4494 |
-
msgid "Show followers count?"
|
4495 |
-
msgstr "Kategoriepost Anzahl anzeigen?"
|
4496 |
-
|
4497 |
-
#: templates/admin/form-fields-addoredit.tpl.php:29
|
4498 |
-
msgctxt "form-fields admin"
|
4499 |
-
msgid "Field Association"
|
4500 |
-
msgstr "Feldverbindung"
|
4501 |
-
|
4502 |
-
#: templates/admin/form-fields-addoredit.tpl.php:29
|
4503 |
-
#: templates/admin/form-fields-addoredit.tpl.php:54
|
4504 |
-
#: templates/admin/form-fields-addoredit.tpl.php:77
|
4505 |
-
msgctxt "form-fields admin"
|
4506 |
-
msgid "required"
|
4507 |
-
msgstr "Pflichtfeld"
|
4508 |
-
|
4509 |
-
#: templates/admin/form-fields-addoredit.tpl.php:54
|
4510 |
-
msgctxt "form-fields admin"
|
4511 |
-
msgid "Field Type"
|
4512 |
-
msgstr "Feldtyp"
|
4513 |
-
|
4514 |
-
#: templates/admin/form-fields-addoredit.tpl.php:77
|
4515 |
-
msgctxt "form-fields admin"
|
4516 |
-
msgid "Field Label"
|
4517 |
-
msgstr "Feldbezeichnung"
|
4518 |
-
|
4519 |
-
#: templates/admin/form-fields-addoredit.tpl.php:87
|
4520 |
-
msgctxt "form-fields admin"
|
4521 |
-
msgid "Field description"
|
4522 |
-
msgstr "Feldbeschreibung"
|
4523 |
-
|
4524 |
-
#: templates/admin/form-fields-addoredit.tpl.php:87
|
4525 |
-
msgctxt "form-fields admin"
|
4526 |
-
msgid "optional"
|
4527 |
-
msgstr "Optional"
|
4528 |
-
|
4529 |
-
#: templates/admin/form-fields-addoredit.tpl.php:104
|
4530 |
-
msgctxt "form-fields admin"
|
4531 |
-
msgid "Field-specific settings"
|
4532 |
-
msgstr "Feld spezifische Einstellungen"
|
4533 |
-
|
4534 |
-
#: templates/admin/form-fields-addoredit.tpl.php:113
|
4535 |
-
msgctxt "form-fields admin"
|
4536 |
-
msgid "Field validation options"
|
4537 |
-
msgstr "Optionen Feldvalidierung"
|
4538 |
-
|
4539 |
-
#: templates/admin/form-fields-addoredit.tpl.php:117
|
4540 |
-
msgctxt "form-fields admin"
|
4541 |
-
msgid "Field Validator"
|
4542 |
-
msgstr "Feldvalidator"
|
4543 |
-
|
4544 |
-
#: templates/admin/form-fields-addoredit.tpl.php:121
|
4545 |
-
msgctxt "form-fields admin"
|
4546 |
-
msgid "No validation"
|
4547 |
-
msgstr "Keine Validierung"
|
4548 |
-
|
4549 |
-
#: templates/admin/form-fields-addoredit.tpl.php:143
|
4550 |
-
msgctxt "form-fields admin"
|
4551 |
-
msgid "Is field required?"
|
4552 |
-
msgstr "Ist das Feld ein Pflichtfeld?"
|
4553 |
-
|
4554 |
-
#: templates/admin/form-fields-addoredit.tpl.php:149
|
4555 |
-
msgctxt "form-fields admin"
|
4556 |
-
msgid "This field is required."
|
4557 |
-
msgstr "Dieses Feld ist ein Pflichtfeld."
|
4558 |
-
|
4559 |
-
#: templates/admin/form-fields-addoredit.tpl.php:157
|
4560 |
-
msgctxt "form-fields admin"
|
4561 |
-
msgid "Field display options"
|
4562 |
-
msgstr "Feld Anzeigeoptionen"
|
4563 |
-
|
4564 |
-
#: templates/admin/form-fields-addoredit.tpl.php:161
|
4565 |
-
msgctxt "form-fields admin"
|
4566 |
-
msgid "Field Category Policy:"
|
4567 |
-
msgstr ""
|
4568 |
-
|
4569 |
-
#: templates/admin/form-fields-addoredit.tpl.php:166
|
4570 |
-
#, fuzzy
|
4571 |
-
msgctxt "form-fields admin"
|
4572 |
-
msgid "Field applies to all categories"
|
4573 |
-
msgstr "Erneuere alle Einträge in abgelaufenen Kategorien"
|
4574 |
-
|
4575 |
-
#: templates/admin/form-fields-addoredit.tpl.php:167
|
4576 |
-
#, fuzzy
|
4577 |
-
msgctxt "form-fields admin"
|
4578 |
-
msgid "Field applies to only certain categories"
|
4579 |
-
msgstr "Erneuere alle Einträge in abgelaufenen Kategorien"
|
4580 |
-
|
4581 |
-
#: templates/admin/form-fields-addoredit.tpl.php:171
|
4582 |
-
#, fuzzy
|
4583 |
-
msgctxt "form-fields admin"
|
4584 |
-
msgid "Limit field to the following categories:"
|
4585 |
-
msgstr "Du kannst folgende Platzhalter verwenden:"
|
4586 |
-
|
4587 |
-
#: templates/admin/form-fields-addoredit.tpl.php:195
|
4588 |
-
msgctxt "form-fields admin"
|
4589 |
-
msgid "Click to add categories to the selection."
|
4590 |
-
msgstr ""
|
4591 |
-
|
4592 |
-
#: templates/admin/form-fields-addoredit.tpl.php:208
|
4593 |
-
msgctxt "form-fields admin"
|
4594 |
-
msgid "Show this field to admin users only?"
|
4595 |
-
msgstr ""
|
4596 |
-
|
4597 |
-
#: templates/admin/form-fields-addoredit.tpl.php:214
|
4598 |
-
#, fuzzy
|
4599 |
-
msgctxt "form-fields admin"
|
4600 |
-
msgid "Display this field to admin users only in the edit listing view."
|
4601 |
-
msgstr "Diesen Wert in der Detailansicht anzeigen."
|
4602 |
-
|
4603 |
-
#: templates/admin/form-fields-addoredit.tpl.php:220
|
4604 |
-
msgctxt "form-fields admin"
|
4605 |
-
msgid "Show this value in excerpt view?"
|
4606 |
-
msgstr "In der Vorschau anzeigen?"
|
4607 |
-
|
4608 |
-
#: templates/admin/form-fields-addoredit.tpl.php:226
|
4609 |
-
msgctxt "form-fields admin"
|
4610 |
-
msgid "Display this value in post excerpt view."
|
4611 |
-
msgstr "Der Wert wird in der Vorschau des Eintrags angezeigt (Exzerpt)."
|
4612 |
-
|
4613 |
-
#: templates/admin/form-fields-addoredit.tpl.php:232
|
4614 |
-
msgctxt "form-fields admin"
|
4615 |
-
msgid "Show this value in listing view?"
|
4616 |
-
msgstr "In Detailansicht anzeigen?"
|
4617 |
-
|
4618 |
-
#: templates/admin/form-fields-addoredit.tpl.php:238
|
4619 |
-
msgctxt "form-fields admin"
|
4620 |
-
msgid "Display this value in the listing view."
|
4621 |
-
msgstr "Diesen Wert in der Detailansicht anzeigen."
|
4622 |
-
|
4623 |
-
#: templates/admin/form-fields-addoredit.tpl.php:244
|
4624 |
-
msgctxt "form-fields admin"
|
4625 |
-
msgid "Include this field in the search form?"
|
4626 |
-
msgstr "In Suchform integrieren?"
|
4627 |
-
|
4628 |
-
#: templates/admin/form-fields-addoredit.tpl.php:250
|
4629 |
-
msgctxt "form-fields admin"
|
4630 |
-
msgid "Include this field in the search form."
|
4631 |
-
msgstr "Zeige das Feld im Suchformular."
|
4632 |
-
|
4633 |
-
#: templates/admin/form-fields-addoredit.tpl.php:256
|
4634 |
-
#, fuzzy
|
4635 |
-
msgctxt "form-fields admin"
|
4636 |
-
msgid "Is this field required for searching?"
|
4637 |
-
msgstr "Ist das Feld ein Pflichtfeld?"
|
4638 |
-
|
4639 |
-
#: templates/admin/form-fields-addoredit.tpl.php:274
|
4640 |
-
msgctxt "form-fields admin"
|
4641 |
-
msgid "Hide this field's label?"
|
4642 |
-
msgstr "Feldbezeichnung verbergen?"
|
4643 |
-
|
4644 |
-
#: templates/admin/form-fields-addoredit.tpl.php:280
|
4645 |
-
msgctxt "form-fields admin"
|
4646 |
-
msgid "Hide this field's label when displaying it."
|
4647 |
-
msgstr ""
|
4648 |
-
"Die Feldbezeichnung wird dann nicht mehr angezeigt (nur der Inhalt an sich)."
|
4649 |
-
|
4650 |
-
#: templates/admin/form-fields-addoredit.tpl.php:288
|
4651 |
-
#, fuzzy
|
4652 |
-
msgctxt "form-fields admin"
|
4653 |
-
msgid "Field privacy options"
|
4654 |
-
msgstr "Feld Anzeigeoptionen"
|
4655 |
-
|
4656 |
-
#: templates/admin/form-fields-addoredit.tpl.php:292
|
4657 |
-
msgctxt "form-fields admin"
|
4658 |
-
msgid "This field contains sensitive or private information?"
|
4659 |
-
msgstr ""
|
4660 |
-
|
4661 |
-
#: templates/admin/form-fields-addoredit.tpl.php:300
|
4662 |
-
msgctxt "form-fields admin"
|
4663 |
-
msgid "Add this field when exporting or deleting user's personal data."
|
4664 |
-
msgstr ""
|
4665 |
-
|
4666 |
-
#: templates/admin/form-fields-addoredit.tpl.php:309
|
4667 |
-
msgctxt "form-fields admin"
|
4668 |
-
msgid "Update Field"
|
4669 |
-
msgstr "Feld aktualisieren"
|
4670 |
-
|
4671 |
-
#: templates/admin/form-fields-addoredit.tpl.php:311
|
4672 |
-
msgctxt "form-fields admin"
|
4673 |
-
msgid "Add Field"
|
4674 |
-
msgstr "Feld erstellen"
|
4675 |
-
|
4676 |
-
#: templates/admin/form-fields-tags.tpl.php:5
|
4677 |
msgctxt "form-fields admin"
|
4678 |
msgid "-- None --"
|
4679 |
msgstr "-- Auswählen --"
|
@@ -4698,58 +4501,40 @@ msgctxt "form-fields admin"
|
|
4698 |
msgid "Create Missing Fields"
|
4699 |
msgstr "Eintrag Felder"
|
4700 |
|
4701 |
-
#:
|
4702 |
-
msgctxt "form-fields admin"
|
4703 |
-
msgid ""
|
4704 |
-
"Here, you can create new fields for your listings, edit or delete existing "
|
4705 |
-
"ones, change the order and visibility of the fields as well as configure "
|
4706 |
-
"special options for them."
|
4707 |
-
msgstr ""
|
4708 |
-
"Hier können Sie neue Felder für Ihre Angebote erstellen, bestehende "
|
4709 |
-
"bearbeiten oder löschen, die Reihenfolge und die Sichtbarkeit der Felder "
|
4710 |
-
"ändern sowie spezielle Optionen für sie konfigurieren."
|
4711 |
-
|
4712 |
-
#: templates/admin/form-fields.tpl.php:32
|
4713 |
-
msgctxt "form-fields admin"
|
4714 |
-
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
4715 |
-
msgstr ""
|
4716 |
-
"Bitte schauen Sie Sich die weitere Informationen in der Dokumentation "
|
4717 |
-
"<a>Formularfelder</a>."
|
4718 |
-
|
4719 |
-
#: includes/admin/controllers/class-settings-admin.php:369
|
4720 |
#, fuzzy
|
4721 |
msgctxt "admin settings"
|
4722 |
msgid "Remove"
|
4723 |
msgstr "Entfernen"
|
4724 |
|
4725 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4726 |
msgctxt "admin settings"
|
4727 |
msgid "Valid placeholders: %s"
|
4728 |
msgstr "Gültige Platzhalter: %s"
|
4729 |
|
4730 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4731 |
msgctxt "admin settings"
|
4732 |
msgid ""
|
4733 |
"IMPORTANT: subpages of the main directory page cannot be accesed while this "
|
4734 |
"setting is checked."
|
4735 |
msgstr ""
|
4736 |
|
4737 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4738 |
msgctxt "admin settings"
|
4739 |
msgid "Above results"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4743 |
msgctxt "admin settings"
|
4744 |
msgid "Below results"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4748 |
msgctxt "admin settings"
|
4749 |
msgid "Don't show with results"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4753 |
msgctxt "admin settings"
|
4754 |
msgid ""
|
4755 |
"You have selected a textarea field to be included in quick searches. "
|
@@ -4760,389 +4545,389 @@ msgstr ""
|
|
4760 |
"Felder hinzugefügt werden, kann sehr langsam sein und lange Zeit in Anspruch "
|
4761 |
"nehmen. "
|
4762 |
|
4763 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4764 |
msgctxt "admin settings"
|
4765 |
msgid "Do not include comments in listings"
|
4766 |
msgstr "Keine Kommentare bei den Einträgen anzeigen"
|
4767 |
|
4768 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4769 |
#, fuzzy
|
4770 |
msgctxt "admin settings"
|
4771 |
msgid "Directory view."
|
4772 |
msgstr "Verzeichnis"
|
4773 |
|
4774 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4775 |
#, fuzzy
|
4776 |
msgctxt "admin settings"
|
4777 |
msgid "All Listings view."
|
4778 |
msgstr "Alle Einträge"
|
4779 |
|
4780 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4781 |
#, fuzzy
|
4782 |
msgctxt "admin settings"
|
4783 |
msgid "Category view."
|
4784 |
msgstr "Kategorien"
|
4785 |
|
4786 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4787 |
#, fuzzy
|
4788 |
msgctxt "admin settings"
|
4789 |
msgid "Search view."
|
4790 |
msgstr "Suche"
|
4791 |
|
4792 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4793 |
msgctxt "admin settings"
|
4794 |
msgid "Slug"
|
4795 |
msgstr "Entwurf"
|
4796 |
|
4797 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4798 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4799 |
msgctxt "admin settings"
|
4800 |
msgid "Ascending"
|
4801 |
msgstr "Aufsteigend"
|
4802 |
|
4803 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4804 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4805 |
msgctxt "admin settings"
|
4806 |
msgid "Descending"
|
4807 |
msgstr "Absteigend"
|
4808 |
|
4809 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4810 |
msgctxt "admin settings"
|
4811 |
msgid "Plan Custom Order can be changed under <a>Plans</a>"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4815 |
msgctxt "admin settings"
|
4816 |
msgid "Author"
|
4817 |
msgstr "Author"
|
4818 |
|
4819 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4820 |
#: includes/helpers/functions/general.php:1285
|
4821 |
msgctxt "admin settings"
|
4822 |
msgid "Date posted"
|
4823 |
msgstr "Datum gepostet"
|
4824 |
|
4825 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4826 |
#: includes/helpers/functions/general.php:1286
|
4827 |
msgctxt "admin settings"
|
4828 |
msgid "Date last modified"
|
4829 |
msgstr "Datum zuletzt verändert"
|
4830 |
|
4831 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4832 |
msgctxt "admin settings"
|
4833 |
msgid "Random"
|
4834 |
msgstr "Zufall"
|
4835 |
|
4836 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4837 |
msgctxt "admin settings"
|
4838 |
msgid "Paid first then free. Inside each group by date."
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4842 |
msgctxt "admin settings"
|
4843 |
msgid "Paid first then free. Inside each group by title."
|
4844 |
msgstr ""
|
4845 |
|
4846 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4847 |
msgctxt "admin settings"
|
4848 |
msgid "Plan Custom Order, then Date"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4852 |
msgctxt "admin settings"
|
4853 |
msgid "Plan Custom Order, then Title"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4857 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4858 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4859 |
#, fuzzy
|
4860 |
msgctxt "admin settings"
|
4861 |
msgid "Excerpt view."
|
4862 |
msgstr "Im Textauszug"
|
4863 |
|
4864 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4865 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4866 |
#, fuzzy
|
4867 |
msgctxt "admin settings"
|
4868 |
msgid "Detail view."
|
4869 |
msgstr "Verzeichnis"
|
4870 |
|
4871 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4872 |
msgctxt "admin settings"
|
4873 |
msgid "Australian Dollar (AUD)"
|
4874 |
msgstr "Australischer Dollar (AUD)"
|
4875 |
|
4876 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4877 |
msgctxt "admin settings"
|
4878 |
msgid "Brazilian Real (BRL)"
|
4879 |
msgstr "Brasilianischer Real (BRL)"
|
4880 |
|
4881 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4882 |
msgctxt "admin settings"
|
4883 |
msgid "Canadian Dollar (CAD)"
|
4884 |
msgstr "Kanadischer Dollar (CAD)"
|
4885 |
|
4886 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4887 |
msgctxt "admin settings"
|
4888 |
msgid "Czech Koruna (CZK)"
|
4889 |
msgstr "Tschechische Koruna (CZK)"
|
4890 |
|
4891 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4892 |
msgctxt "admin settings"
|
4893 |
msgid "Danish Krone (DKK)"
|
4894 |
msgstr "Dänische Krone (DKK)"
|
4895 |
|
4896 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4897 |
msgctxt "admin settings"
|
4898 |
msgid "United Arab Emirates Dirham (AED)"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4902 |
msgctxt "admin settings"
|
4903 |
msgid "Euro (EUR)"
|
4904 |
msgstr "Euro (EUR)"
|
4905 |
|
4906 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4907 |
msgctxt "admin settings"
|
4908 |
msgid "Hong Kong Dollar (HKD)"
|
4909 |
msgstr "Hong Kong Dollar (HKD)"
|
4910 |
|
4911 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4912 |
msgctxt "admin settings"
|
4913 |
msgid "Hungarian Forint (HUF)"
|
4914 |
msgstr "Ungarischer Forint (HUF)"
|
4915 |
|
4916 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4917 |
msgctxt "admin settings"
|
4918 |
msgid "Israeli New Shequel (ILS)"
|
4919 |
msgstr "Israelischer Neuer Schequel (ILS)"
|
4920 |
|
4921 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4922 |
msgctxt "admin settings"
|
4923 |
msgid "Japanese Yen (JPY)"
|
4924 |
msgstr "Japanischer Jen (JPY)"
|
4925 |
|
4926 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4927 |
msgctxt "admin settings"
|
4928 |
msgid "Moroccan Dirham (MAD)"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4932 |
msgctxt "admin settings"
|
4933 |
msgid "Malasian Ringgit (MYR)"
|
4934 |
msgstr "Malaysischer Ringgit (MYR)"
|
4935 |
|
4936 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4937 |
msgctxt "admin settings"
|
4938 |
msgid "Mexican Peso (MXN)"
|
4939 |
msgstr "Mexikanischer Peso (MXN)"
|
4940 |
|
4941 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4942 |
msgctxt "admin settings"
|
4943 |
msgid "Norwegian Krone (NOK)"
|
4944 |
msgstr "Norwegische Krone (NOK)"
|
4945 |
|
4946 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4947 |
msgctxt "admin settings"
|
4948 |
msgid "New Zealand Dollar (NZD)"
|
4949 |
msgstr "Neuseeland Dollar (NZD)"
|
4950 |
|
4951 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4952 |
msgctxt "admin settings"
|
4953 |
msgid "Philippine Peso (PHP)"
|
4954 |
msgstr "Philippinischer Peso (PHP)"
|
4955 |
|
4956 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4957 |
msgctxt "admin settings"
|
4958 |
msgid "Polish Zloty (PLN)"
|
4959 |
msgstr "Polnischer Zloty (PLN)"
|
4960 |
|
4961 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4962 |
msgctxt "admin settings"
|
4963 |
msgid "Pound Sterling (GBP)"
|
4964 |
msgstr "Pfund Sterling (GBP)"
|
4965 |
|
4966 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4967 |
msgctxt "admin settings"
|
4968 |
msgid "Singapore Dollar (SGD)"
|
4969 |
msgstr "Singapore Dollar (SGD)"
|
4970 |
|
4971 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4972 |
msgctxt "admin settings"
|
4973 |
msgid "Swedish Krona (SEK)"
|
4974 |
msgstr "Schwedische Krone (SEK)"
|
4975 |
|
4976 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4977 |
msgctxt "admin settings"
|
4978 |
msgid "Swiss Franc (CHF)"
|
4979 |
msgstr "Schweizer Franken (CHF)"
|
4980 |
|
4981 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4982 |
msgctxt "admin settings"
|
4983 |
msgid "Taiwan Dollar (TWD)"
|
4984 |
msgstr "Taiwanischer Dollar (TWD)"
|
4985 |
|
4986 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4987 |
msgctxt "admin settings"
|
4988 |
msgid "Thai Baht (THB)"
|
4989 |
msgstr "Thailändischer Baht (THB)"
|
4990 |
|
4991 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4992 |
msgctxt "admin settings"
|
4993 |
msgid "Turkish Lira (TRY)"
|
4994 |
msgstr "Türkische Lira (TRY)"
|
4995 |
|
4996 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4997 |
msgctxt "admin settings"
|
4998 |
msgid "U.S. Dollar (USD)"
|
4999 |
msgstr "U.S. Dollar"
|
5000 |
|
5001 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5002 |
msgctxt "admin settings"
|
5003 |
msgid "Show currency symbol on the left"
|
5004 |
msgstr "Währungssymbol links anzeigen"
|
5005 |
|
5006 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5007 |
msgctxt "admin settings"
|
5008 |
msgid "Show currency symbol on the right"
|
5009 |
msgstr "Währungssymbol rechts anzeigen"
|
5010 |
|
5011 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5012 |
msgctxt "admin settings"
|
5013 |
msgid "Do not show currency symbol"
|
5014 |
msgstr "Währungssymbol nicht anzeigen"
|
5015 |
|
5016 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
5017 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5018 |
msgctxt "admin settings"
|
5019 |
msgid "AED currency is not supported by %1$s. %2$s"
|
5020 |
msgstr ""
|
5021 |
|
5022 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5023 |
msgctxt "admin settings"
|
5024 |
msgid ""
|
5025 |
"Listings with pending payments are marked as abandoned after this time. You "
|
5026 |
"can also <a>customize the email</a> users receive."
|
5027 |
msgstr ""
|
5028 |
|
5029 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5030 |
msgctxt "admin settings"
|
5031 |
msgid "Try listing's email field first, then author's email."
|
5032 |
msgstr "Versuchen Sie das E-Mail-Feld zuerst, dann die E-Mail des Autors."
|
5033 |
|
5034 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5035 |
msgctxt "admin settings"
|
5036 |
msgid "Try author's email first and then listing's email field."
|
5037 |
msgstr ""
|
5038 |
"Probieren sie erst die E-Mail des Authors und dann die E-Mail des Felds."
|
5039 |
|
5040 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5041 |
msgctxt "admin settings"
|
5042 |
msgid "Plain (text/plain)"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5046 |
msgctxt "admin settings"
|
5047 |
msgid "HTML (text/html)"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5051 |
msgctxt "admin settings"
|
5052 |
msgid "Both (multipart/alternative)"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5056 |
msgctxt "admin settings"
|
5057 |
msgid "A new listing is submitted."
|
5058 |
msgstr "Ein neuer Eintrag wurde übermittelt."
|
5059 |
|
5060 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5061 |
msgctxt "admin settings"
|
5062 |
msgid "A listing is edited."
|
5063 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5064 |
|
5065 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5066 |
msgctxt "admin settings"
|
5067 |
msgid "A listing expires."
|
5068 |
msgstr "Ein Eintrag läuft aus."
|
5069 |
|
5070 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5071 |
#, fuzzy
|
5072 |
msgctxt "admin settings"
|
5073 |
msgid "A listing is renewed."
|
5074 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5075 |
|
5076 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5077 |
#, fuzzy
|
5078 |
msgctxt "admin settings"
|
5079 |
msgid "A listing payment is completed."
|
5080 |
msgstr "Ein Eintrag wurde bearbeitet."
|
5081 |
|
5082 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5083 |
#, fuzzy
|
5084 |
msgctxt "admin settings"
|
5085 |
msgid "A listing has been reported as inappropriate."
|
5086 |
msgstr "Der Eintrag wurde aktualisiert"
|
5087 |
|
5088 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5089 |
msgctxt "admin settings"
|
5090 |
msgid "A contact message is sent to a listing's owner."
|
5091 |
msgstr "Eine Nachricht wurde an einen Eintrags-Eigentümer versendet."
|
5092 |
|
5093 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5094 |
msgctxt "admin settings"
|
5095 |
msgid "Their listing is submitted."
|
5096 |
msgstr "Ihr Eintrag ist eingereicht."
|
5097 |
|
5098 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5099 |
msgctxt "admin settings"
|
5100 |
msgid "Their listing is approved/published."
|
5101 |
msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
|
5102 |
|
5103 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5104 |
#, fuzzy
|
5105 |
msgctxt "admin settings"
|
5106 |
msgid "A payment for their listing is completed."
|
5107 |
msgstr "Ihr Eintrag ist eingereicht."
|
5108 |
|
5109 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5110 |
#, fuzzy
|
5111 |
msgctxt "admin settings"
|
5112 |
msgid "Their listing expired or is about to expire."
|
5113 |
msgstr "Ihr Eintrag ist eingereicht."
|
5114 |
|
5115 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5116 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
5117 |
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
5118 |
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
5119 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
|
|
5120 |
msgctxt "admin settings"
|
5121 |
msgid "Listing's title"
|
5122 |
msgstr "Eintrag Titel"
|
5123 |
|
5124 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5125 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5126 |
#, fuzzy
|
5127 |
msgctxt "admin settings"
|
5128 |
msgid "Listing's plan name"
|
5129 |
msgstr "Eintrag Enddatum"
|
5130 |
|
5131 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5132 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5133 |
#, fuzzy
|
5134 |
msgctxt "admin settings"
|
5135 |
msgid "Listing's plan description"
|
5136 |
msgstr "Auswahl der Preispakete"
|
5137 |
|
5138 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5139 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5140 |
#, fuzzy
|
5141 |
msgctxt "admin settings"
|
5142 |
msgid "Listing's plan details"
|
5143 |
msgstr "Eintrag Enddatum"
|
5144 |
|
5145 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5146 |
msgctxt "admin settings"
|
5147 |
msgid ""
|
5148 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
@@ -5151,59 +4936,59 @@ msgstr ""
|
|
5151 |
"Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
|
5152 |
"kann öffentlich eingesehen werden."
|
5153 |
|
5154 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5155 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5156 |
msgctxt "admin settings"
|
5157 |
msgid "Listing's URL"
|
5158 |
msgstr "Eintrags URL"
|
5159 |
|
5160 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5161 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5162 |
#, fuzzy
|
5163 |
msgctxt "admin settings"
|
5164 |
msgid "Listing's Access Key"
|
5165 |
msgstr "Eintrag Felder / Bilder"
|
5166 |
|
5167 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5168 |
#, fuzzy
|
5169 |
msgctxt "admin settings"
|
5170 |
msgid "Sender's name"
|
5171 |
msgstr "Authorname"
|
5172 |
|
5173 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5174 |
#, fuzzy
|
5175 |
msgctxt "admin settings"
|
5176 |
msgid "Contact message"
|
5177 |
msgstr "Neue Eintrag Anweisungen"
|
5178 |
|
5179 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5180 |
msgctxt "admin settings"
|
5181 |
msgid "Date and time the message was sent"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5185 |
#, fuzzy
|
5186 |
msgctxt "admin settings"
|
5187 |
msgid "Payment items details."
|
5188 |
msgstr "Bezahldetails"
|
5189 |
|
5190 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5191 |
msgctxt "admin settings"
|
5192 |
msgid "URL where user can review and print payment receipt."
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5196 |
#, fuzzy
|
5197 |
msgctxt "admin settings"
|
5198 |
msgid "Gateway used to process listing's payment."
|
5199 |
msgstr "Bezahlung ausführen"
|
5200 |
|
5201 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5202 |
msgctxt "admin settings"
|
5203 |
msgid "Checkout URL link"
|
5204 |
msgstr "Kasse"
|
5205 |
|
5206 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5207 |
#, fuzzy
|
5208 |
msgctxt "admin settings"
|
5209 |
msgid "Uploaded Image (no resize)"
|
@@ -5219,47 +5004,47 @@ msgctxt "admin settings"
|
|
5219 |
msgid "User registration date"
|
5220 |
msgstr "Eintrag Enddatum"
|
5221 |
|
5222 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5223 |
#, fuzzy
|
5224 |
msgctxt "expiration notices"
|
5225 |
msgid "Add notice"
|
5226 |
msgstr "Feld erstellen"
|
5227 |
|
5228 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5229 |
msgctxt "expiration notices"
|
5230 |
msgid "No notices configured."
|
5231 |
msgstr ""
|
5232 |
|
5233 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5234 |
msgctxt "expiration notices"
|
5235 |
msgid "recurring and non-recurring"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5239 |
#, fuzzy
|
5240 |
msgctxt "expiration notices"
|
5241 |
msgid "recurring only"
|
5242 |
msgstr "(wiederkehrend)"
|
5243 |
|
5244 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5245 |
#, fuzzy
|
5246 |
msgctxt "expiration notices"
|
5247 |
msgid "non-recurring only"
|
5248 |
msgstr "(wiederkehrend)"
|
5249 |
|
5250 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5251 |
#, fuzzy
|
5252 |
msgctxt "expiration notices"
|
5253 |
msgid "Sent when a listing (%s) is renewed."
|
5254 |
msgstr "Senden nachdem der Eintrag eingestellt wurde."
|
5255 |
|
5256 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5257 |
#, fuzzy
|
5258 |
msgctxt "expiration notices"
|
5259 |
msgid "Sent when a listing (%s) expires."
|
5260 |
msgstr "Ein Eintrag läuft aus."
|
5261 |
|
5262 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5263 |
#, fuzzy
|
5264 |
msgctxt "expiration notices"
|
5265 |
msgid "%d day"
|
@@ -5267,14 +5052,14 @@ msgid_plural "%d days"
|
|
5267 |
msgstr[0] "%d Tag"
|
5268 |
msgstr[1] "%d Tage"
|
5269 |
|
5270 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5271 |
msgctxt "expiration notices"
|
5272 |
msgid "%d week"
|
5273 |
msgid_plural "%d weeks"
|
5274 |
msgstr[0] ""
|
5275 |
msgstr[1] ""
|
5276 |
|
5277 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5278 |
msgctxt "expiration notices"
|
5279 |
msgid "%d month"
|
5280 |
msgid_plural "%d months"
|
@@ -5283,150 +5068,150 @@ msgstr[1] ""
|
|
5283 |
|
5284 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
5285 |
#. non-recuring only)
|
5286 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5287 |
msgctxt "expiration notices"
|
5288 |
msgid "Sent %1$s before a listing (%2$s) expires."
|
5289 |
msgstr ""
|
5290 |
|
5291 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
5292 |
#. non-recuring only)
|
5293 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5294 |
#, fuzzy
|
5295 |
msgctxt "expiration notices"
|
5296 |
msgid "Sent %1$s after a listing (%2$s) expires."
|
5297 |
msgstr "Senden nachdem der Eintrag eingestellt wurde."
|
5298 |
|
5299 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5300 |
msgctxt "expiration notices"
|
5301 |
msgid "At the time of expiration"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5305 |
#, fuzzy
|
5306 |
msgctxt "expiration notices"
|
5307 |
msgid "Right after a successful renewal"
|
5308 |
msgstr "Der Preis wurde erfolgreich zugewiesen."
|
5309 |
|
5310 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5311 |
msgctxt "expiration notices"
|
5312 |
msgid "%d day before expiration"
|
5313 |
msgid_plural "%d days before expiration"
|
5314 |
msgstr[0] ""
|
5315 |
msgstr[1] ""
|
5316 |
|
5317 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5318 |
msgctxt "expiration notices"
|
5319 |
msgid "%d day after expiration"
|
5320 |
msgid_plural "%d days after expiration"
|
5321 |
msgstr[0] ""
|
5322 |
msgstr[1] ""
|
5323 |
|
5324 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5325 |
msgctxt "expiration notices"
|
5326 |
msgid "%d week before expiration"
|
5327 |
msgid_plural "%d weeks before expiration"
|
5328 |
msgstr[0] ""
|
5329 |
msgstr[1] ""
|
5330 |
|
5331 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5332 |
msgctxt "expiration notices"
|
5333 |
msgid "%d week after expiration"
|
5334 |
msgid_plural "%d weeks after expiration"
|
5335 |
msgstr[0] ""
|
5336 |
msgstr[1] ""
|
5337 |
|
5338 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5339 |
msgctxt "expiration notices"
|
5340 |
msgid "%d month before expiration"
|
5341 |
msgid_plural "%d months before expiration"
|
5342 |
msgstr[0] ""
|
5343 |
msgstr[1] ""
|
5344 |
|
5345 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5346 |
msgctxt "expiration notices"
|
5347 |
msgid "%d month after expiration"
|
5348 |
msgid_plural "%d months after expiration"
|
5349 |
msgstr[0] ""
|
5350 |
msgstr[1] ""
|
5351 |
|
5352 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5353 |
#, fuzzy
|
5354 |
msgctxt "expiration notices"
|
5355 |
msgid "Applies to"
|
5356 |
msgstr "zugewiesen zu"
|
5357 |
|
5358 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5359 |
msgctxt "expiration notices"
|
5360 |
msgid "Non-recurring listings"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5364 |
#, fuzzy
|
5365 |
msgctxt "expiration notices"
|
5366 |
msgid "Recurring listings"
|
5367 |
msgstr "Zurück zum Eintrag."
|
5368 |
|
5369 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5370 |
msgctxt "expiration notices"
|
5371 |
msgid "Recurring and non-recurring listings"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5375 |
msgctxt "expiration notices"
|
5376 |
msgid "When to send?"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5380 |
#, fuzzy
|
5381 |
msgctxt "settings"
|
5382 |
msgid "Site title (with link)"
|
5383 |
msgstr "Seitentitel (mit Link)"
|
5384 |
|
5385 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5386 |
msgctxt "settings"
|
5387 |
msgid "Author's name"
|
5388 |
msgstr "Authorname"
|
5389 |
|
5390 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5391 |
msgctxt "settings"
|
5392 |
msgid "Listing's name (with link)"
|
5393 |
msgstr "Eintragsname (mit Link)"
|
5394 |
|
5395 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5396 |
#, fuzzy
|
5397 |
msgctxt "settings"
|
5398 |
msgid "Listing's expiration date"
|
5399 |
msgstr "Eintrag Enddatum"
|
5400 |
|
5401 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5402 |
msgctxt "settings"
|
5403 |
msgid "Listing's renewal link, formatted with an anchor tag"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5407 |
msgctxt "settings"
|
5408 |
msgid "Listing's renewal URL, unformatted by any tags"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5412 |
#, fuzzy
|
5413 |
msgctxt "settings"
|
5414 |
msgid "Listing's categories"
|
5415 |
msgstr "Eintrag Titel"
|
5416 |
|
5417 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5418 |
#, fuzzy
|
5419 |
msgctxt "settings"
|
5420 |
msgid "Listing's last payment date"
|
5421 |
msgstr "Eintrag Enddatum"
|
5422 |
|
5423 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5424 |
#, fuzzy
|
5425 |
msgctxt "settings"
|
5426 |
msgid "Listing's access key"
|
5427 |
msgstr "Eintrag Felder / Bilder"
|
5428 |
|
5429 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
5430 |
#, fuzzy
|
5431 |
msgctxt "settings"
|
5432 |
msgid "Settings reset to default."
|
@@ -5438,54 +5223,54 @@ msgctxt "settings"
|
|
5438 |
msgid "General"
|
5439 |
msgstr "Allgemein"
|
5440 |
|
5441 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5442 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5443 |
#, fuzzy
|
5444 |
msgctxt "settings"
|
5445 |
msgid "Listings"
|
5446 |
msgstr "Einträge"
|
5447 |
|
5448 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5449 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5450 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5451 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5452 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5453 |
-
#: includes/admin/settings/class-settings.php:
|
5454 |
#, fuzzy
|
5455 |
msgctxt "settings"
|
5456 |
msgid "General Settings"
|
5457 |
msgstr "Allgemeine Einstellungen"
|
5458 |
|
5459 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5460 |
#, fuzzy
|
5461 |
msgctxt "settings"
|
5462 |
msgid "Payment"
|
5463 |
msgstr "Bezahlung"
|
5464 |
|
5465 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5466 |
msgctxt "settings"
|
5467 |
msgid "Appearance"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5471 |
#, fuzzy
|
5472 |
msgctxt "settings"
|
5473 |
msgid "Permalink Settings"
|
5474 |
msgstr "Permalink Einstellungen"
|
5475 |
|
5476 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5477 |
#, fuzzy
|
5478 |
msgctxt "settings"
|
5479 |
msgid "Directory Listings Slug"
|
5480 |
msgstr "Verzeichniseintrag Entwurf"
|
5481 |
|
5482 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5483 |
#, fuzzy
|
5484 |
msgctxt "settings"
|
5485 |
msgid "Categories Slug"
|
5486 |
msgstr "Kategorie Entwurf"
|
5487 |
|
5488 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5489 |
#, fuzzy
|
5490 |
msgctxt "settings"
|
5491 |
msgid ""
|
@@ -5494,13 +5279,13 @@ msgstr ""
|
|
5494 |
"Der Entwurf kann nicht von anderen Ausdrücken verwendet werden. Meide "
|
5495 |
"\"Kategorie\" für diese Instanz."
|
5496 |
|
5497 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5498 |
#, fuzzy
|
5499 |
msgctxt "settings"
|
5500 |
msgid "Tags Slug"
|
5501 |
msgstr "Tags Entwurf"
|
5502 |
|
5503 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5504 |
#, fuzzy
|
5505 |
msgctxt "settings"
|
5506 |
msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
|
@@ -5508,18 +5293,13 @@ msgstr ""
|
|
5508 |
"Der Entwurf kann nicht von anderen Ausdrücken verwendet werden. Meide \"tag"
|
5509 |
"\" für diese Instanz."
|
5510 |
|
5511 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5512 |
#, fuzzy
|
5513 |
msgctxt "settings"
|
5514 |
-
msgid "Remove listing ID from
|
5515 |
msgstr "Entferne Eintrag ID von diesen Verzeichnis URLs?"
|
5516 |
|
5517 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5518 |
-
msgctxt "settings"
|
5519 |
-
msgid "Check this setting to remove the ID for better SEO."
|
5520 |
-
msgstr ""
|
5521 |
-
|
5522 |
-
#: includes/admin/settings/class-settings-bootstrap.php:101
|
5523 |
#, fuzzy
|
5524 |
msgctxt "settings"
|
5525 |
msgid ""
|
@@ -5531,72 +5311,72 @@ msgstr ""
|
|
5531 |
"die ID aus der URL zu entfernen um einen SEO und Benutzerfreundlichkeits-"
|
5532 |
"Mehrwert zu erhalten."
|
5533 |
|
5534 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5535 |
#, fuzzy
|
5536 |
msgctxt "settings"
|
5537 |
msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
|
5538 |
msgstr "Brauchst du API Schlüssel für reCAPTCHA? <a>Hier</a> bekommst du sie."
|
5539 |
|
5540 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5541 |
#, fuzzy
|
5542 |
msgctxt "settings"
|
5543 |
msgid "Use reCAPTCHA for contact forms"
|
5544 |
msgstr "Benutze reCAPTCHA für Kontaktformen"
|
5545 |
|
5546 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5547 |
#, fuzzy
|
5548 |
msgctxt "settings"
|
5549 |
-
msgid "
|
5550 |
msgstr "reCAPTCHA für angemeldete Benutzern ausschalten?"
|
5551 |
|
5552 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5553 |
#, fuzzy
|
5554 |
msgctxt "settings"
|
5555 |
msgid "Use reCAPTCHA for listing submits"
|
5556 |
msgstr "Benutze reCAPTCHA für Eintragzusendungen"
|
5557 |
|
5558 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5559 |
#, fuzzy
|
5560 |
msgctxt "settings"
|
5561 |
msgid "Use reCAPTCHA for edit listings"
|
5562 |
msgstr "Benutze reCAPTCHA für Eintragkommentare?"
|
5563 |
|
5564 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5565 |
#, fuzzy
|
5566 |
msgctxt "settings"
|
5567 |
msgid "Use reCAPTCHA for report listings"
|
5568 |
msgstr "Benutze reCAPTCHA für Eintragkommentare?"
|
5569 |
|
5570 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5571 |
#, fuzzy
|
5572 |
msgctxt "settings"
|
5573 |
msgid "Use reCAPTCHA for listing comments"
|
5574 |
msgstr "Benutze reCAPTCHA für Eintragkommentare?"
|
5575 |
|
5576 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5577 |
#, fuzzy
|
5578 |
msgctxt "settings"
|
5579 |
msgid "reCAPTCHA Public Key"
|
5580 |
msgstr "reCAPTCHA öffentlicher Schlüssel"
|
5581 |
|
5582 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5583 |
#, fuzzy
|
5584 |
msgctxt "settings"
|
5585 |
msgid "reCAPTCHA Private Key"
|
5586 |
msgstr "reCAPTCHA privater Schlüssel"
|
5587 |
|
5588 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5589 |
#, fuzzy
|
5590 |
msgctxt "settings"
|
5591 |
msgid "reCAPTCHA version"
|
5592 |
msgstr "reCAPTCHA Einstellungen"
|
5593 |
|
5594 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5595 |
msgctxt "settings"
|
5596 |
msgid "reCAPTCHA V3 threshold score"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5600 |
msgctxt "settings"
|
5601 |
msgid ""
|
5602 |
"reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is "
|
@@ -5605,13 +5385,13 @@ msgid ""
|
|
5605 |
"this value will result in reCAPTCHA validation error."
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5609 |
#, fuzzy
|
5610 |
msgctxt "settings"
|
5611 |
msgid "Registration"
|
5612 |
msgstr "Registrierung"
|
5613 |
|
5614 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5615 |
msgctxt "settings"
|
5616 |
msgid ""
|
5617 |
"We expect that a membership plugin supports the 'redirect_to' parameter for "
|
@@ -5620,24 +5400,24 @@ msgid ""
|
|
5620 |
"them to support the WP standard 'redirect_to' query parameter."
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5624 |
#, fuzzy
|
5625 |
msgctxt "settings"
|
5626 |
msgid "Require login to post listings"
|
5627 |
msgstr "Zurück zum Eintrag."
|
5628 |
|
5629 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5630 |
msgctxt "settings"
|
5631 |
msgid "Allow anonymous users to edit/manage listings with an access key"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5635 |
#, fuzzy
|
5636 |
msgctxt "settings"
|
5637 |
msgid "Login URL"
|
5638 |
msgstr "Login"
|
5639 |
|
5640 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5641 |
#, fuzzy
|
5642 |
msgctxt "settings"
|
5643 |
msgid "Only enter this if using a membership plugin or custom login page"
|
@@ -5646,18 +5426,18 @@ msgstr ""
|
|
5646 |
"ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
|
5647 |
"benutzt. "
|
5648 |
|
5649 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5650 |
msgctxt "settings"
|
5651 |
msgid "URL of your membership plugin's login page."
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5655 |
#, fuzzy
|
5656 |
msgctxt "settings"
|
5657 |
msgid "Registration URL"
|
5658 |
msgstr "Registrierungs URL"
|
5659 |
|
5660 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5661 |
#, fuzzy
|
5662 |
msgctxt "settings"
|
5663 |
msgid ""
|
@@ -5667,7 +5447,7 @@ msgstr ""
|
|
5667 |
"ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
|
5668 |
"benutzt. "
|
5669 |
|
5670 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5671 |
#, fuzzy
|
5672 |
msgctxt "settings"
|
5673 |
msgid "URL of your membership plugin's registration page"
|
@@ -5676,12 +5456,12 @@ msgstr ""
|
|
5676 |
"ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
|
5677 |
"benutzt. "
|
5678 |
|
5679 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5680 |
msgctxt "settings"
|
5681 |
msgid "Allow users to create accounts during listing submit"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5685 |
#, fuzzy
|
5686 |
msgctxt "settings"
|
5687 |
msgid ""
|
@@ -5692,54 +5472,54 @@ msgstr ""
|
|
5692 |
"werden Bedingungen und Konditionen ersetzt durch einen Link der "
|
5693 |
"dazugehörigen Seite."
|
5694 |
|
5695 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5696 |
#, fuzzy
|
5697 |
msgctxt "settings"
|
5698 |
msgid "Terms and Conditions text goes here"
|
5699 |
msgstr "Bedingungen und Konditionen"
|
5700 |
|
5701 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5702 |
msgctxt "settings"
|
5703 |
-
msgid "Enable high performance
|
5704 |
msgstr ""
|
5705 |
|
5706 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5707 |
#, fuzzy
|
5708 |
msgctxt "settings"
|
5709 |
msgid "Advanced"
|
5710 |
msgstr "Erweitert"
|
5711 |
|
5712 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5713 |
#, fuzzy
|
5714 |
msgctxt "settings"
|
5715 |
msgid "Disable advanced CPT integration"
|
5716 |
msgstr "Email Erinnerung"
|
5717 |
|
5718 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5719 |
msgctxt "settings"
|
5720 |
msgid "Disable frontend listing submission"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5724 |
msgctxt "settings"
|
5725 |
msgid ""
|
5726 |
"Prevents the Submit Listing button from showing on the main UI, but allows a "
|
5727 |
"shortcode for submit listing to function on other pages."
|
5728 |
msgstr ""
|
5729 |
|
5730 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5731 |
#, fuzzy
|
5732 |
msgctxt "settings"
|
5733 |
msgid "Contact Form"
|
5734 |
msgstr "Zurücksetzen"
|
5735 |
|
5736 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5737 |
#, fuzzy
|
5738 |
msgctxt "settings"
|
5739 |
msgid "Listings per page"
|
5740 |
msgstr "Einträge pro Seite"
|
5741 |
|
5742 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5743 |
#, fuzzy
|
5744 |
msgctxt "settings"
|
5745 |
msgid ""
|
@@ -5749,46 +5529,46 @@ msgstr ""
|
|
5749 |
"Nummer der Einträge die pro Seite angezeigt werden. Benutze einen Wert von "
|
5750 |
"\"0\" um alle Einträge anzuzeigen."
|
5751 |
|
5752 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5753 |
#, fuzzy
|
5754 |
msgctxt "settings"
|
5755 |
msgid "Turn on listing renewal option"
|
5756 |
msgstr "Option zur Erneuerung von Einträgen aktivieren?"
|
5757 |
|
5758 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5759 |
msgctxt "settings"
|
5760 |
msgid "Open detailed view of listing in new tab"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5764 |
#, fuzzy
|
5765 |
msgctxt "settings"
|
5766 |
msgid "Include button to report listings"
|
5767 |
msgstr "Zurück zum Eintrag."
|
5768 |
|
5769 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5770 |
msgctxt "settings"
|
5771 |
msgid "Enable report listing for registered users only"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5775 |
msgctxt "settings"
|
5776 |
msgid "Report listing option list"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5780 |
msgctxt "settings"
|
5781 |
msgid ""
|
5782 |
"Form option list to report a listing as inappropriate. One option per line."
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5786 |
#, fuzzy
|
5787 |
msgctxt "settings"
|
5788 |
msgid "Include listing contact form on listing pages"
|
5789 |
msgstr "Kontaktform in Eintragsseiten einfügen?"
|
5790 |
|
5791 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5792 |
#, fuzzy
|
5793 |
msgctxt "settings"
|
5794 |
msgid ""
|
@@ -5798,19 +5578,19 @@ msgstr ""
|
|
5798 |
"Benutzer erlauben den Eintragsauthor privat zu kontaktieren. Der Author "
|
5799 |
"bekommt eine Nachricht per E-mail zugeschickt."
|
5800 |
|
5801 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5802 |
#, fuzzy
|
5803 |
msgctxt "settings"
|
5804 |
msgid "Require login for using the contact form"
|
5805 |
msgstr "Einloggen um das Kontaktformular nutzen zu können?"
|
5806 |
|
5807 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5808 |
#, fuzzy
|
5809 |
msgctxt "settings"
|
5810 |
msgid "Maximum number of daily contact form submits from registered users"
|
5811 |
msgstr "Maximale Nummer der Kontaktformmails die pro Tag zugesendet werden"
|
5812 |
|
5813 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5814 |
#, fuzzy
|
5815 |
msgctxt "settings"
|
5816 |
msgid ""
|
@@ -5820,13 +5600,13 @@ msgstr ""
|
|
5820 |
"Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
|
5821 |
"unbegrenzt pro Tag."
|
5822 |
|
5823 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5824 |
#, fuzzy
|
5825 |
msgctxt "settings"
|
5826 |
msgid "Maximum number of contact form submits for each listing per day"
|
5827 |
msgstr "Maximale Nummer der Kontaktformmails die pro Tag zugesendet werden"
|
5828 |
|
5829 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5830 |
#, fuzzy
|
5831 |
msgctxt "settings"
|
5832 |
msgid ""
|
@@ -5836,25 +5616,25 @@ msgstr ""
|
|
5836 |
"Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
|
5837 |
"unbegrenzt pro Tag."
|
5838 |
|
5839 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5840 |
#, fuzzy
|
5841 |
msgctxt "settings"
|
5842 |
msgid "Include comment form on listing pages?"
|
5843 |
msgstr "Kommentarform einfügen in Eintragsseiten?"
|
5844 |
|
5845 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5846 |
#, fuzzy
|
5847 |
msgctxt "settings"
|
5848 |
msgid "Show listings under categories on main page"
|
5849 |
msgstr "Einträge unter Kategorien anzeigen auf der Hauptseite?"
|
5850 |
|
5851 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5852 |
msgctxt "settings"
|
5853 |
msgid ""
|
5854 |
"Prevents featured listings from floating to the top of the selected page."
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5858 |
msgctxt "settings"
|
5859 |
msgid ""
|
5860 |
"The user ID or login of an existing user account. If login is not required "
|
@@ -5862,67 +5642,67 @@ msgid ""
|
|
5862 |
"that will not a be posting a listing is best."
|
5863 |
msgstr ""
|
5864 |
|
5865 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5866 |
#, fuzzy
|
5867 |
msgctxt "settings"
|
5868 |
msgid "Edit post status"
|
5869 |
msgstr "Post Status Bearbeiten"
|
5870 |
|
5871 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5872 |
#, fuzzy
|
5873 |
msgctxt "settings"
|
5874 |
msgid "Status of deleted listings"
|
5875 |
msgstr "Status der gelöschten Einträge"
|
5876 |
|
5877 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5878 |
#, fuzzy
|
5879 |
msgctxt "settings"
|
5880 |
msgid "Submit Listing instructions message"
|
5881 |
msgstr "Nachricht mit Anweisungen für einen neuen Eintrag"
|
5882 |
|
5883 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5884 |
#, fuzzy
|
5885 |
msgctxt "settings"
|
5886 |
msgid "Order categories list by"
|
5887 |
msgstr "Kategorieliste sortieren nach"
|
5888 |
|
5889 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5890 |
#, fuzzy
|
5891 |
msgctxt "settings"
|
5892 |
msgid "Sort order for categories"
|
5893 |
msgstr "Sortierung für Kategorien"
|
5894 |
|
5895 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5896 |
#, fuzzy
|
5897 |
msgctxt "settings"
|
5898 |
msgid "Show category post count"
|
5899 |
msgstr "Kategoriepost Anzahl anzeigen?"
|
5900 |
|
5901 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5902 |
#, fuzzy
|
5903 |
msgctxt "settings"
|
5904 |
msgid "Hide empty categories"
|
5905 |
msgstr "Leere Kategorien verbergen?"
|
5906 |
|
5907 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5908 |
#, fuzzy
|
5909 |
msgctxt "settings"
|
5910 |
msgid "Show only parent categories in category list"
|
5911 |
msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
|
5912 |
|
5913 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5914 |
#, fuzzy
|
5915 |
msgctxt "settings"
|
5916 |
msgid "Order directory listings by"
|
5917 |
msgstr "Anordnung Verzeichniseinträge durch"
|
5918 |
|
5919 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5920 |
#, fuzzy
|
5921 |
msgctxt "settings"
|
5922 |
msgid "Sort directory listings by"
|
5923 |
msgstr "Verzeichnissortierung der Einträge durch"
|
5924 |
|
5925 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5926 |
#, fuzzy
|
5927 |
msgctxt "settings"
|
5928 |
msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
|
@@ -5930,25 +5710,25 @@ msgstr ""
|
|
5930 |
"Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
|
5931 |
"Reihenfolge Z-A"
|
5932 |
|
5933 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5934 |
#, fuzzy
|
5935 |
msgctxt "settings"
|
5936 |
msgid "Enable sort bar"
|
5937 |
msgstr "Sortierung aktivieren?"
|
5938 |
|
5939 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5940 |
#, fuzzy
|
5941 |
msgctxt "settings"
|
5942 |
msgid "Sortbar Fields"
|
5943 |
msgstr "Sortierbare Felder"
|
5944 |
|
5945 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5946 |
#, fuzzy
|
5947 |
msgctxt "settings"
|
5948 |
msgid "Show the \"Submit listing\" button"
|
5949 |
msgstr "\"Eintrag erstellen” Schaltfläche anzeigen."
|
5950 |
|
5951 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5952 |
msgctxt "settings"
|
5953 |
msgid ""
|
5954 |
"Hides the button used by the main UI to allow listing submission, but does "
|
@@ -5956,85 +5736,79 @@ msgid ""
|
|
5956 |
"customize the submit listing button on your own)"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5960 |
#, fuzzy
|
5961 |
msgctxt "settings"
|
5962 |
msgid "Show \"Search listings\""
|
5963 |
msgstr "\"Einträge durchsuchen\" anzeigen"
|
5964 |
|
5965 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5966 |
#, fuzzy
|
5967 |
msgctxt "settings"
|
5968 |
msgid "Show the \"View Listings\" button"
|
5969 |
msgstr "\"Einträge anschauen\" Schaltfläche anzeigen"
|
5970 |
|
5971 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5972 |
#, fuzzy
|
5973 |
msgctxt "settings"
|
5974 |
msgid "Show the \"Manage Listings\" button"
|
5975 |
msgstr "\"Einträge anschauen\" Schaltfläche anzeigen"
|
5976 |
|
5977 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5978 |
-
#, fuzzy
|
5979 |
-
msgctxt "settings"
|
5980 |
-
msgid "Show the \"Directory\" button."
|
5981 |
-
msgstr "\"Verzeichnis\" Schaltfläche anzeigen"
|
5982 |
-
|
5983 |
-
#: includes/admin/settings/class-settings-bootstrap.php:898
|
5984 |
#, fuzzy
|
5985 |
msgctxt "settings"
|
5986 |
msgid "Image Settings"
|
5987 |
msgstr "Bildeinstellungen"
|
5988 |
|
5989 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5990 |
#, fuzzy
|
5991 |
msgctxt "settings"
|
5992 |
msgid "Allow images"
|
5993 |
msgstr "Bilder erlauben?"
|
5994 |
|
5995 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5996 |
#, fuzzy
|
5997 |
msgctxt "settings"
|
5998 |
msgid "Min Image File Size (KB)"
|
5999 |
msgstr "Maximale Bildgröße (KB)"
|
6000 |
|
6001 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6002 |
#, fuzzy
|
6003 |
msgctxt "settings"
|
6004 |
msgid "Max Image File Size (KB)"
|
6005 |
msgstr "Maximale Bildgröße (KB)"
|
6006 |
|
6007 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6008 |
#, fuzzy
|
6009 |
msgctxt "settings"
|
6010 |
msgid "Min image width (px)"
|
6011 |
msgstr "Bildergröße (in px):"
|
6012 |
|
6013 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6014 |
#, fuzzy
|
6015 |
msgctxt "settings"
|
6016 |
msgid "Min image height (px)"
|
6017 |
msgstr "Bilderhöhe (in px):"
|
6018 |
|
6019 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6020 |
#, fuzzy
|
6021 |
msgctxt "settings"
|
6022 |
msgid "Max image width (px)"
|
6023 |
msgstr "Maximale Bildbreite"
|
6024 |
|
6025 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6026 |
#, fuzzy
|
6027 |
msgctxt "settings"
|
6028 |
msgid "Max image height (px)"
|
6029 |
msgstr "Maximale Bildhöhe"
|
6030 |
|
6031 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6032 |
#, fuzzy
|
6033 |
msgctxt "settings"
|
6034 |
msgid "Turn on thickbox/lightbox"
|
6035 |
msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
|
6036 |
|
6037 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6038 |
#, fuzzy
|
6039 |
msgctxt "settings"
|
6040 |
msgid ""
|
@@ -6043,31 +5817,31 @@ msgstr ""
|
|
6043 |
"Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
|
6044 |
"Erweiterungen entstehen"
|
6045 |
|
6046 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6047 |
#, fuzzy
|
6048 |
msgctxt "settings"
|
6049 |
msgid "Thumbnails"
|
6050 |
msgstr "Thumbnails"
|
6051 |
|
6052 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6053 |
#, fuzzy
|
6054 |
msgctxt "settings"
|
6055 |
msgid "Thumbnail width (px)"
|
6056 |
msgstr "Thumbnailbreite"
|
6057 |
|
6058 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6059 |
#, fuzzy
|
6060 |
msgctxt "settings"
|
6061 |
msgid "Thumbnail height (px)"
|
6062 |
msgstr "Thumbnailbreite"
|
6063 |
|
6064 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6065 |
#, fuzzy
|
6066 |
msgctxt "settings"
|
6067 |
msgid "Crop thumbnails to exact dimensions"
|
6068 |
msgstr "Vorschaubild auf die exakte Maße abschneiden?"
|
6069 |
|
6070 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6071 |
#, fuzzy
|
6072 |
msgctxt "settings"
|
6073 |
msgid ""
|
@@ -6083,18 +5857,18 @@ msgstr ""
|
|
6083 |
"Abhängig von den hochgeladenen Bildern können Thumbnails unterschiedliche "
|
6084 |
"Höhen haben."
|
6085 |
|
6086 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6087 |
msgctxt "settings"
|
6088 |
msgid "Enforce image upload on submit/edit"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6092 |
#, fuzzy
|
6093 |
msgctxt "settings"
|
6094 |
msgid "Default thumbnail image size"
|
6095 |
msgstr "Voreingestellter-Nutzer"
|
6096 |
|
6097 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6098 |
msgctxt "settings"
|
6099 |
msgid ""
|
6100 |
"This indicates the size of the thumbnail to be used both in excerpt and "
|
@@ -6103,92 +5877,92 @@ msgid ""
|
|
6103 |
"width as the starting point."
|
6104 |
msgstr ""
|
6105 |
|
6106 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6107 |
msgctxt "settings"
|
6108 |
msgid "Use \"Coming Soon\" photo for listings without any (primary) images?"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6112 |
msgctxt "settings"
|
6113 |
msgid "Display featured (sticky) badge"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6117 |
#, fuzzy
|
6118 |
msgctxt "settings"
|
6119 |
msgid "Featured Badge image"
|
6120 |
msgstr "Featured Levels Module"
|
6121 |
|
6122 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6123 |
#, fuzzy
|
6124 |
msgctxt "settings"
|
6125 |
msgid "Featured Badge URL"
|
6126 |
msgstr "Featured Levels Module"
|
6127 |
|
6128 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6129 |
msgctxt "settings"
|
6130 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6134 |
#, fuzzy
|
6135 |
msgctxt "settings"
|
6136 |
msgid "Fee Order"
|
6137 |
msgstr "Auftrag"
|
6138 |
|
6139 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6140 |
#, fuzzy
|
6141 |
msgctxt "settings"
|
6142 |
msgid "Put payment gateways in test mode"
|
6143 |
msgstr "Bezahlungsgateway im Testmodus ausführen?"
|
6144 |
|
6145 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6146 |
#, fuzzy
|
6147 |
msgctxt "settings"
|
6148 |
msgid "Currency Code"
|
6149 |
msgstr "Währungsschlüssel"
|
6150 |
|
6151 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6152 |
#, fuzzy
|
6153 |
msgctxt "settings"
|
6154 |
msgid "Currency Symbol"
|
6155 |
msgstr "Währungssymbol"
|
6156 |
|
6157 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6158 |
#, fuzzy
|
6159 |
msgctxt "settings"
|
6160 |
msgid "Currency symbol display"
|
6161 |
msgstr "Währungssymbol Anzeige"
|
6162 |
|
6163 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6164 |
msgctxt "settings"
|
6165 |
msgid "Include plan description in receipt"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6169 |
#, fuzzy
|
6170 |
msgctxt "settings"
|
6171 |
msgid "Thank you for payment message"
|
6172 |
msgstr "Danke für die Bezahlung Nachricht"
|
6173 |
|
6174 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6175 |
msgctxt "settings"
|
6176 |
msgid "Ask users to come back for abandoned payments"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6180 |
#, fuzzy
|
6181 |
msgctxt "settings"
|
6182 |
msgid "Listing abandonment threshold (hours)"
|
6183 |
msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
|
6184 |
|
6185 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6186 |
#, fuzzy
|
6187 |
msgctxt "settings"
|
6188 |
msgid "Display email address fields publicly"
|
6189 |
msgstr "E-mail Adressfeld öffentlich anzeigen?"
|
6190 |
|
6191 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6192 |
#, fuzzy
|
6193 |
msgctxt "settings"
|
6194 |
msgid ""
|
@@ -6198,13 +5972,13 @@ msgid ""
|
|
6198 |
msgstr ""
|
6199 |
"E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
|
6200 |
|
6201 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6202 |
#, fuzzy
|
6203 |
msgctxt "settings"
|
6204 |
msgid "How to determine the listing's email address?"
|
6205 |
msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
|
6206 |
|
6207 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6208 |
#, fuzzy
|
6209 |
msgctxt "settings"
|
6210 |
msgid ""
|
@@ -6214,12 +5988,12 @@ msgstr ""
|
|
6214 |
"Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
|
6215 |
"Eintrag abläuft."
|
6216 |
|
6217 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6218 |
msgctxt "settings"
|
6219 |
msgid "Email Content-Type header"
|
6220 |
msgstr ""
|
6221 |
|
6222 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6223 |
msgctxt "settings"
|
6224 |
msgid ""
|
6225 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -6228,31 +6002,31 @@ msgid ""
|
|
6228 |
"then \"Both\"."
|
6229 |
msgstr ""
|
6230 |
|
6231 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6232 |
#, fuzzy
|
6233 |
msgctxt "settings"
|
6234 |
msgid "Templates"
|
6235 |
msgstr "E-mail Templates"
|
6236 |
|
6237 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6238 |
#, fuzzy
|
6239 |
msgctxt "settings"
|
6240 |
msgid "Email confirmation message"
|
6241 |
msgstr "Email Bestätigungsnachricht"
|
6242 |
|
6243 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6244 |
#, fuzzy
|
6245 |
msgctxt "settings"
|
6246 |
msgid "Sent after a listing has been submitted."
|
6247 |
msgstr "Senden nachdem der Eintrag eingestellt wurde."
|
6248 |
|
6249 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6250 |
#, fuzzy
|
6251 |
msgctxt "settings"
|
6252 |
msgid "Listing published message"
|
6253 |
msgstr "Eintrag veröffentlicht Nachricht"
|
6254 |
|
6255 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6256 |
#, fuzzy
|
6257 |
msgctxt "settings"
|
6258 |
msgid "Sent when the listing has been published or approved by an admin."
|
@@ -6260,13 +6034,13 @@ msgstr ""
|
|
6260 |
"Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
|
6261 |
"wurde."
|
6262 |
|
6263 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6264 |
#, fuzzy
|
6265 |
msgctxt "settings"
|
6266 |
msgid "Listing Contact Message"
|
6267 |
msgstr "Neue Eintrag Anweisungen"
|
6268 |
|
6269 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6270 |
#, fuzzy
|
6271 |
msgctxt "settings"
|
6272 |
msgid ""
|
@@ -6276,35 +6050,35 @@ msgstr ""
|
|
6276 |
"An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
|
6277 |
"verwendet."
|
6278 |
|
6279 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6280 |
#, fuzzy
|
6281 |
msgctxt "settings"
|
6282 |
msgid "Payment completed message"
|
6283 |
msgstr "Erneuerungserinnerung E-mail Nachricht"
|
6284 |
|
6285 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6286 |
msgctxt "settings"
|
6287 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6291 |
#, fuzzy
|
6292 |
msgctxt "settings"
|
6293 |
msgid "Payment abandoned reminder message"
|
6294 |
msgstr "Erneuerungserinnerung E-mail Nachricht"
|
6295 |
|
6296 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6297 |
msgctxt "settings"
|
6298 |
msgid "Cropped"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
-
#: includes/admin/settings/class-settings.php:
|
6302 |
-
#: includes/admin/settings/class-settings.php:
|
6303 |
msgctxt "settings"
|
6304 |
msgid "\"%s\" can not be empty."
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#: includes/admin/settings/class-settings.php:
|
6308 |
msgctxt "settings"
|
6309 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6310 |
msgstr ""
|
@@ -6336,12 +6110,12 @@ msgctxt "themes"
|
|
6336 |
msgid "Could not change the active theme to \"%s\"."
|
6337 |
msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
|
6338 |
|
6339 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6340 |
msgctxt "themes"
|
6341 |
msgid "Active theme changed to \"%s\"."
|
6342 |
msgstr "Das aktive Theme wurde geändert zu \"%s\"."
|
6343 |
|
6344 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6345 |
msgctxt "themes"
|
6346 |
msgid ""
|
6347 |
"%s requires that you tag your existing fields to match some places we want "
|
@@ -6351,55 +6125,55 @@ msgstr ""
|
|
6351 |
"zu treffen, um Ihre Daten auf das Theme zu platzieren. Unten sind Felder, "
|
6352 |
"von denen wir vermuten, dass sie fehlen."
|
6353 |
|
6354 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6355 |
msgctxt "themes"
|
6356 |
msgid "Map My Fields"
|
6357 |
msgstr "Formularfelder verknüpfen"
|
6358 |
|
6359 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6360 |
msgctxt "themes"
|
6361 |
msgid "Suggested fields created successfully."
|
6362 |
msgstr "Benötigtes Feld wurde erfolgreich erstellt."
|
6363 |
|
6364 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6365 |
msgctxt "themes"
|
6366 |
msgid "Theme installed successfully."
|
6367 |
msgstr "Benötigtes Feld wurde erfolgreich erstellt."
|
6368 |
|
6369 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6370 |
#, fuzzy
|
6371 |
msgctxt "themes"
|
6372 |
msgid "Theme was deleted successfully."
|
6373 |
msgstr "Der Import wurde erfolgreich abgeschlossen."
|
6374 |
|
6375 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6376 |
msgctxt "themes"
|
6377 |
msgid "Could not delete theme directory. Check permissions."
|
6378 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
6379 |
|
6380 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6381 |
msgctxt "themes"
|
6382 |
msgid "Please upload a valid theme file."
|
6383 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
6384 |
|
6385 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6386 |
msgctxt "themes"
|
6387 |
msgid "Could not move \"%s\" to a temporary directory."
|
6388 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
6389 |
|
6390 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6391 |
msgctxt "themes"
|
6392 |
msgid "Activate your <a>license key</a> to use this theme."
|
6393 |
msgstr ""
|
6394 |
"Aktivieren Sie Ihren <a>Lizenzschlüssel</a>, um dieses Theme zu verwenden."
|
6395 |
|
6396 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6397 |
#, fuzzy
|
6398 |
msgctxt "themes"
|
6399 |
msgid "Invalid theme ID"
|
6400 |
msgstr "Ungültige Feld ID"
|
6401 |
|
6402 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
6403 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6404 |
msgctxt "themes"
|
6405 |
msgid "Could not update theme: %s"
|
@@ -6473,204 +6247,442 @@ msgstr ""
|
|
6473 |
"Erweiterungen abzuschalten und/oder den Wert von 'memory_limit' und "
|
6474 |
"'max_execution_time' in deiner php.ini Konfigurationsdatei anzupassen."
|
6475 |
|
6476 |
-
#: templates/admin/csv-export.tpl.php:
|
6477 |
msgctxt "admin csv-export"
|
6478 |
msgid "Export settings"
|
6479 |
msgstr "Export Einstellungen"
|
6480 |
|
6481 |
-
#: templates/admin/csv-export.tpl.php:
|
6482 |
msgctxt "admin csv-export"
|
6483 |
msgid "Which listings to export?"
|
6484 |
msgstr "Welche Einträge sollen exportiert werden?"
|
6485 |
|
6486 |
-
#: templates/admin/csv-export.tpl.php:
|
6487 |
-
msgctxt "admin csv-export"
|
6488 |
-
msgid "All"
|
6489 |
-
msgstr "Alle"
|
6490 |
-
|
6491 |
-
#: templates/admin/csv-export.tpl.php:38
|
6492 |
msgctxt "admin csv-export"
|
6493 |
msgid "Active Only"
|
6494 |
msgstr "Nur Aktiv"
|
6495 |
|
6496 |
-
#: templates/admin/csv-export.tpl.php:
|
6497 |
msgctxt "admin csv-export"
|
6498 |
msgid "Active + Pending Renewal"
|
6499 |
msgstr "Aktiv + Ausstehende Erneuerungen"
|
6500 |
|
6501 |
-
#: templates/admin/csv-export.tpl.php:45
|
6502 |
-
msgctxt "admin csv-export"
|
6503 |
-
msgid "Export images?"
|
6504 |
-
msgstr "Bilder exportieren?"
|
6505 |
-
|
6506 |
#: templates/admin/csv-export.tpl.php:50
|
6507 |
msgctxt "admin csv-export"
|
6508 |
msgid "Export images"
|
6509 |
msgstr "Bilder exportieren"
|
6510 |
|
6511 |
-
#: templates/admin/csv-export.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6512 |
msgctxt "admin csv-export"
|
6513 |
msgid ""
|
6514 |
-
"
|
6515 |
-
"
|
6516 |
msgstr ""
|
6517 |
-
"
|
6518 |
-
"
|
6519 |
|
6520 |
-
#: templates/admin/csv-export.tpl.php:
|
6521 |
msgctxt "admin csv-export"
|
6522 |
-
msgid "
|
6523 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6524 |
|
6525 |
-
#: templates/admin/csv-
|
6526 |
-
msgctxt "admin csv-
|
6527 |
-
msgid "
|
6528 |
-
msgstr "
|
6529 |
|
6530 |
-
#: templates/admin/csv-
|
6531 |
-
msgctxt "admin csv-
|
6532 |
-
msgid "
|
6533 |
-
msgstr "
|
6534 |
|
6535 |
-
#: templates/admin/csv-
|
6536 |
-
msgctxt "admin csv-
|
6537 |
-
msgid "
|
6538 |
-
msgstr "
|
6539 |
|
6540 |
-
#: templates/admin/csv-
|
6541 |
-
|
6542 |
-
|
6543 |
-
|
6544 |
-
msgstr "Eintrag Bilder"
|
6545 |
|
6546 |
-
#: templates/admin/csv-
|
6547 |
-
|
6548 |
-
|
6549 |
-
|
6550 |
-
msgstr "Eintrag Enddatum"
|
6551 |
|
6552 |
-
#: templates/admin/csv-
|
6553 |
-
|
6554 |
-
|
6555 |
-
|
6556 |
-
msgstr "Eintrag Bilder"
|
6557 |
|
6558 |
-
#: templates/admin/csv-
|
6559 |
-
msgctxt "admin csv-
|
6560 |
-
msgid "
|
6561 |
-
msgstr "
|
6562 |
|
6563 |
-
#: templates/admin/csv-
|
6564 |
-
msgctxt "admin csv-
|
6565 |
-
msgid "
|
6566 |
-
msgstr "
|
6567 |
|
6568 |
-
#: templates/admin/csv-
|
6569 |
-
msgctxt "admin csv-
|
6570 |
-
msgid "
|
6571 |
-
msgstr "
|
|
|
6572 |
|
6573 |
-
#: templates/admin/csv-
|
6574 |
-
msgctxt "admin csv-
|
6575 |
-
msgid ""
|
6576 |
-
"Windows and macOS versions of MS Excel handle CSV files differently. To make "
|
6577 |
-
"sure all your listings information is displayed properly when you view or "
|
6578 |
-
"edit the CSV file, we need to generate different versions of the file for "
|
6579 |
-
"each operating system."
|
6580 |
msgstr ""
|
6581 |
-
"
|
6582 |
-
"unterschiedlich. Um sicherzustellen, dass alle Ihre Listeninformationen "
|
6583 |
-
"korrekt angezeigt werden, wenn Sie die CSV-Datei anzeigen oder bearbeiten, "
|
6584 |
-
"müssen wir für jedes Betriebssystem unterschiedliche Versionen der Datei "
|
6585 |
-
"generieren."
|
6586 |
|
6587 |
-
#: templates/admin/csv-
|
6588 |
-
msgctxt "admin csv-
|
6589 |
-
msgid "
|
6590 |
-
msgstr "
|
6591 |
|
6592 |
-
#: templates/admin/csv-
|
6593 |
-
msgctxt "admin csv-
|
6594 |
-
msgid "
|
6595 |
-
msgstr "
|
6596 |
|
6597 |
-
#: templates/admin/csv-
|
6598 |
-
msgctxt "admin csv-
|
6599 |
-
msgid "
|
6600 |
-
msgstr "
|
6601 |
|
6602 |
-
#: templates/admin/csv-
|
6603 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6604 |
msgid ""
|
6605 |
-
"
|
6606 |
-
"
|
6607 |
msgstr ""
|
6608 |
-
"
|
6609 |
-
"
|
6610 |
-
|
6611 |
-
#: templates/admin/csv-export.tpl.php:151
|
6612 |
-
msgctxt "admin csv-export"
|
6613 |
-
msgid "No. of listings:"
|
6614 |
-
msgstr "Anzahl der Einträge:"
|
6615 |
-
|
6616 |
-
#: templates/admin/csv-export.tpl.php:153
|
6617 |
-
msgctxt "admin csv-export"
|
6618 |
-
msgid "Approximate export file size:"
|
6619 |
-
msgstr "Exportdatei Größe ca. :"
|
6620 |
|
6621 |
-
#: templates/admin/csv-
|
6622 |
-
msgctxt "admin csv-
|
6623 |
-
msgid "
|
6624 |
-
msgstr "
|
6625 |
|
6626 |
-
#: templates/admin/csv-
|
6627 |
-
msgctxt "admin csv-
|
6628 |
-
msgid "
|
6629 |
-
msgstr "
|
6630 |
|
6631 |
-
#: templates/admin/csv-
|
6632 |
-
|
|
|
6633 |
msgid ""
|
6634 |
-
"
|
6635 |
-
"
|
6636 |
msgstr ""
|
6637 |
-
"
|
6638 |
-
"
|
6639 |
-
|
6640 |
-
#: templates/admin/csv-export.tpl.php:171
|
6641 |
-
#, fuzzy
|
6642 |
-
msgctxt "admin csv-export"
|
6643 |
-
msgid "Download %1$s (%2$s)"
|
6644 |
-
msgstr "Herunterladen %s (%s)"
|
6645 |
|
6646 |
-
#: templates/admin/csv-
|
6647 |
-
msgctxt "admin csv-
|
6648 |
msgid ""
|
6649 |
-
"
|
6650 |
-
"temporary data created by Business Directory during the export process."
|
6651 |
msgstr ""
|
6652 |
-
"
|
6653 |
-
"
|
6654 |
-
|
6655 |
-
#: templates/admin/csv-export.tpl.php:180
|
6656 |
-
msgctxt "admin csv-export"
|
6657 |
-
msgid "Cleanup"
|
6658 |
-
msgstr "Bereinigen"
|
6659 |
-
|
6660 |
-
#: templates/admin/csv-export.tpl.php:185
|
6661 |
-
msgctxt "admin csv-export"
|
6662 |
-
msgid "Export Canceled"
|
6663 |
-
msgstr "Export abgebrochen"
|
6664 |
-
|
6665 |
-
#: templates/admin/csv-export.tpl.php:186
|
6666 |
-
msgctxt "admin csv-export"
|
6667 |
-
msgid "The export has been canceled."
|
6668 |
-
msgstr "Der Export wurde abgebrochen."
|
6669 |
|
6670 |
-
#: templates/admin/csv-
|
6671 |
-
msgctxt "admin csv-
|
6672 |
-
msgid "
|
6673 |
-
|
|
|
|
|
|
|
|
|
6674 |
|
6675 |
#: includes/admin/csv-import.php:304
|
6676 |
#, fuzzy
|
@@ -6825,41 +6837,41 @@ msgctxt "admin fees table"
|
|
6825 |
msgid "All"
|
6826 |
msgstr "Alle"
|
6827 |
|
6828 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6829 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6830 |
msgctxt "post status"
|
6831 |
msgid "Published"
|
6832 |
msgstr "Veröffentlicht"
|
6833 |
|
6834 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6835 |
msgctxt "post status"
|
6836 |
msgid "Draft"
|
6837 |
msgstr ""
|
6838 |
|
6839 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6840 |
msgctxt "post status"
|
6841 |
msgid "Trash"
|
6842 |
msgstr ""
|
6843 |
|
6844 |
#. translators: %s: url shortcode
|
6845 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6846 |
msgctxt "contact email"
|
6847 |
msgid "You have received a reply from your listing at %s."
|
6848 |
msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
|
6849 |
|
6850 |
#. translators: %s: name shortcode
|
6851 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6852 |
msgctxt "contact email"
|
6853 |
msgid "Name: %s"
|
6854 |
msgstr "Name: %s"
|
6855 |
|
6856 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6857 |
msgctxt "contact email"
|
6858 |
msgid "Message:"
|
6859 |
msgstr "Nachricht:"
|
6860 |
|
6861 |
#. translators: %s: date shortcode
|
6862 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
6863 |
msgctxt "contact email"
|
6864 |
msgid "Time: %s"
|
6865 |
msgstr "Zeit: %s"
|
@@ -7011,13 +7023,13 @@ msgctxt "listings-api"
|
|
7011 |
msgid "Featured Listing"
|
7012 |
msgstr "Unterstützter Eintrag"
|
7013 |
|
7014 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7015 |
#, fuzzy
|
7016 |
msgctxt "migrate-18"
|
7017 |
msgid "Featured Levels migration is complete."
|
7018 |
msgstr "Featured Levels Module"
|
7019 |
|
7020 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7021 |
msgctxt "migrate-18"
|
7022 |
msgid ""
|
7023 |
"Business Directory <b>version 5.0</b> is changing how Featured Levels plugin "
|
@@ -7025,7 +7037,7 @@ msgid ""
|
|
7025 |
"confusing notion of a \"featured level\" that was limited to sticky listings."
|
7026 |
msgstr ""
|
7027 |
|
7028 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7029 |
msgctxt "migrate-18"
|
7030 |
msgid ""
|
7031 |
"We need to migrate your existing \"featured levels\" to plans for use by the "
|
@@ -7035,7 +7047,7 @@ msgid ""
|
|
7035 |
"link> and <cancel-link>cancel migration</cancel-link>."
|
7036 |
msgstr ""
|
7037 |
|
7038 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7039 |
msgctxt "migrate-18"
|
7040 |
msgid ""
|
7041 |
"Before we do the migration, we need to ask a few simple questions to move "
|
@@ -7043,58 +7055,58 @@ msgid ""
|
|
7043 |
"plan\" that is right for you."
|
7044 |
msgstr ""
|
7045 |
|
7046 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7047 |
msgctxt "migrate-18"
|
7048 |
msgid "Move to: "
|
7049 |
msgstr ""
|
7050 |
|
7051 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7052 |
msgctxt "migrate-18"
|
7053 |
msgid "New plan summary"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7057 |
#, fuzzy
|
7058 |
msgctxt "migrate-18"
|
7059 |
msgid "Perform migration"
|
7060 |
msgstr "Preisinformation"
|
7061 |
|
7062 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7063 |
#, fuzzy
|
7064 |
msgctxt "migrate-18"
|
7065 |
msgid "Business Directory Plugin - Featured Levels migration required."
|
7066 |
msgstr "Branchenverzeichnis - Hervorgehobene Einträge"
|
7067 |
|
7068 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7069 |
msgctxt "migrate-18"
|
7070 |
msgid ""
|
7071 |
"Featured levels were removed in 5.0. You need to perform your <a>Featured "
|
7072 |
"Levels migration here</a>."
|
7073 |
msgstr ""
|
7074 |
|
7075 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7076 |
#, fuzzy
|
7077 |
msgctxt "upgrade-18"
|
7078 |
msgid "← Return to Directory dashboard"
|
7079 |
msgstr "← Zurück zum Verzeichnis."
|
7080 |
|
7081 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7082 |
msgctxt "upgrade-18"
|
7083 |
msgid "Configure Plan"
|
7084 |
msgstr ""
|
7085 |
|
7086 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7087 |
#, fuzzy
|
7088 |
msgctxt "upgrade-18"
|
7089 |
msgid "Featured Level"
|
7090 |
msgstr "Featured Levels Module"
|
7091 |
|
7092 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7093 |
msgctxt "upgrade-18"
|
7094 |
msgid "What to do with it?"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7098 |
#, fuzzy
|
7099 |
msgctxt "upgrade-18"
|
7100 |
msgid "%d listing is on this level."
|
@@ -7102,39 +7114,39 @@ msgid_plural "%d listings are on this level."
|
|
7102 |
msgstr[0] "Ein Eintrag wurde bearbeitet."
|
7103 |
msgstr[1] "Ein Eintrag wurde bearbeitet."
|
7104 |
|
7105 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7106 |
msgctxt "upgrade-18"
|
7107 |
msgid "Select an option"
|
7108 |
msgstr ""
|
7109 |
|
7110 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7111 |
#, fuzzy
|
7112 |
msgctxt "upgrade-18"
|
7113 |
msgid "Remove \"sticky\" status for listings."
|
7114 |
msgstr "Status der importierten Einträge"
|
7115 |
|
7116 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7117 |
msgctxt "upgrade-18"
|
7118 |
msgid "Remove this (old) level, and leave the listing on the old plan."
|
7119 |
msgstr ""
|
7120 |
|
7121 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7122 |
msgctxt "upgrade-18"
|
7123 |
msgid "May change \"sticky\" status depending on plan."
|
7124 |
msgstr ""
|
7125 |
|
7126 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7127 |
msgctxt "upgrade-18"
|
7128 |
msgid "Move listings with this level to existing plan."
|
7129 |
msgstr ""
|
7130 |
|
7131 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7132 |
#, fuzzy
|
7133 |
msgctxt "upgrade-18"
|
7134 |
msgid "Keep \"sticky\" status of listings."
|
7135 |
msgstr "Status der importierten Einträge"
|
7136 |
|
7137 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
7138 |
msgctxt "upgrade-18"
|
7139 |
msgid "Replace this level with a new plan."
|
7140 |
msgstr ""
|
@@ -7570,7 +7582,7 @@ msgstr ""
|
|
7570 |
"angezeigt. Wenn du das nicht möchtest, klicke <a>hier</a> um die "
|
7571 |
"Einstellungen zu ändern."
|
7572 |
|
7573 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7574 |
msgctxt "templates"
|
7575 |
msgid ""
|
7576 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
@@ -7579,27 +7591,27 @@ msgstr ""
|
|
7579 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7580 |
"Submission?\" setting checked?"
|
7581 |
|
7582 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7583 |
msgctxt "templates"
|
7584 |
msgid ""
|
7585 |
"Listing submission has been disabled. Contact the administrator for details."
|
7586 |
msgstr ""
|
7587 |
|
7588 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7589 |
msgctxt "templates"
|
7590 |
msgid ""
|
7591 |
"<b>There are no Plans available</b>, without a plan site users can't submit "
|
7592 |
"a listing. %s to create a plan"
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7596 |
msgctxt "templates"
|
7597 |
msgid ""
|
7598 |
"Listing submission is not available at the moment. Contact the administrator "
|
7599 |
"for details."
|
7600 |
msgstr ""
|
7601 |
|
7602 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7603 |
msgctxt "templates"
|
7604 |
msgid ""
|
7605 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -7607,12 +7619,12 @@ msgid ""
|
|
7607 |
"an existing field"
|
7608 |
msgstr ""
|
7609 |
|
7610 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7611 |
msgctxt "templates"
|
7612 |
msgid "Please agree to the Terms and Conditions."
|
7613 |
msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
|
7614 |
|
7615 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7616 |
msgctxt "templates"
|
7617 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7618 |
msgstr "Ich akzeptiere die <a>AGB</a>s"
|
@@ -7923,60 +7935,60 @@ msgctxt "search"
|
|
7923 |
msgid "\"%s\" is required."
|
7924 |
msgstr "%s ist ein Pflichtfeld."
|
7925 |
|
7926 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7927 |
msgctxt "submit listing"
|
7928 |
msgid "Click this field to add categories"
|
7929 |
msgstr ""
|
7930 |
|
7931 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7932 |
#, fuzzy
|
7933 |
msgctxt "submit listing"
|
7934 |
msgid "Complete Listing"
|
7935 |
msgstr "Eintrag Löschen"
|
7936 |
|
7937 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7938 |
#, fuzzy
|
7939 |
msgctxt "submit listing"
|
7940 |
msgid "Continue to Payment"
|
7941 |
msgstr "Initialbezahlung"
|
7942 |
|
7943 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7944 |
msgctxt "submit listing"
|
7945 |
msgid "Please wait a moment!"
|
7946 |
msgstr ""
|
7947 |
|
7948 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7949 |
msgctxt "submit listing"
|
7950 |
msgid "Something went wrong!"
|
7951 |
msgstr ""
|
7952 |
|
7953 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7954 |
#, fuzzy
|
7955 |
msgctxt "submit listing"
|
7956 |
msgid "No listing ID was specified."
|
7957 |
msgstr "Ein Eintrag wurde bearbeitet."
|
7958 |
|
7959 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7960 |
#, fuzzy
|
7961 |
msgctxt "submit listing"
|
7962 |
msgid "You can't edit this listing."
|
7963 |
msgstr "Kategorie für diesen Eintrag"
|
7964 |
|
7965 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7966 |
msgctxt "submit listing"
|
7967 |
msgid ""
|
7968 |
"This listing can't be edited at this time because it has no plan associated. "
|
7969 |
"Please <a>edit the listing</a> on the backend and associate it to a plan."
|
7970 |
msgstr ""
|
7971 |
|
7972 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7973 |
msgctxt "submit listing"
|
7974 |
msgid ""
|
7975 |
"This listing can't be edited at this time. Please try again later or contact "
|
7976 |
"the admin if the problem persists."
|
7977 |
msgstr ""
|
7978 |
|
7979 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7980 |
#, fuzzy
|
7981 |
msgctxt "submit listing"
|
7982 |
msgid "You're logged in as admin, payment will be skipped."
|
@@ -7984,19 +7996,19 @@ msgstr ""
|
|
7984 |
"Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
|
7985 |
"übersprungen."
|
7986 |
|
7987 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7988 |
#, fuzzy
|
7989 |
msgctxt "submit listing"
|
7990 |
msgid "Category selection"
|
7991 |
msgstr "Kategorien auswählen"
|
7992 |
|
7993 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7994 |
#, fuzzy
|
7995 |
msgctxt "submit listing"
|
7996 |
msgid "Category & plan selection"
|
7997 |
msgstr "Kategorien auswählen"
|
7998 |
|
7999 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8000 |
#, fuzzy
|
8001 |
msgctxt "submit listing"
|
8002 |
msgid "Can not submit a listing at this moment. Please try again later."
|
@@ -8004,47 +8016,47 @@ msgstr ""
|
|
8004 |
"Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
|
8005 |
"später noch einmal."
|
8006 |
|
8007 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8008 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8009 |
#, fuzzy
|
8010 |
msgctxt "submit listing"
|
8011 |
msgid "Please select a category."
|
8012 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
8013 |
|
8014 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8015 |
msgctxt "submit listing"
|
8016 |
msgid "Current active plan is disabled. Please select another plan."
|
8017 |
msgstr ""
|
8018 |
|
8019 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8020 |
msgctxt "submit listing"
|
8021 |
msgid "Please choose a valid category for your plan."
|
8022 |
msgstr ""
|
8023 |
|
8024 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8025 |
#, fuzzy
|
8026 |
msgctxt "submit listing"
|
8027 |
msgid "Please choose a valid plan for your category selection."
|
8028 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
8029 |
|
8030 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8031 |
#, fuzzy
|
8032 |
msgctxt "submit listing"
|
8033 |
msgid "Please enter your desired username."
|
8034 |
msgstr "Bitte geben Sie einen Namen ein."
|
8035 |
|
8036 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8037 |
#, fuzzy
|
8038 |
msgctxt "submit listing"
|
8039 |
msgid "Please enter the e-mail for your new account."
|
8040 |
msgstr "Bitte geben Sie einen Namen ein."
|
8041 |
|
8042 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8043 |
msgctxt "submit listing"
|
8044 |
msgid "The username you chose is already in use. Please use a different one."
|
8045 |
msgstr ""
|
8046 |
|
8047 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8048 |
msgctxt "submit listing"
|
8049 |
msgid "The e-mail address you chose for your account is already in use."
|
8050 |
msgstr ""
|
@@ -8055,7 +8067,7 @@ msgctxt "submit listing"
|
|
8055 |
msgid "Listing submitted by admin. Payment skipped."
|
8056 |
msgstr "Eintrag zusenden (Initialbezahlung)"
|
8057 |
|
8058 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
8059 |
msgctxt "listing submit"
|
8060 |
msgid ""
|
8061 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8561,7 +8573,7 @@ msgctxt "payment summary"
|
|
8561 |
msgid "%s. Imported Listing."
|
8562 |
msgstr "Einträge importieren"
|
8563 |
|
8564 |
-
#: includes/payment.php:
|
8565 |
#, fuzzy
|
8566 |
msgctxt "payments"
|
8567 |
msgid "Payment #%s"
|
@@ -8577,12 +8589,12 @@ msgctxt "utils"
|
|
8577 |
msgid "Error while uploading file"
|
8578 |
msgstr "Fehler während des Hochladens der Datei"
|
8579 |
|
8580 |
-
#: includes/utils.php:
|
8581 |
msgctxt "utils"
|
8582 |
msgid "File type \"%s\" is not allowed"
|
8583 |
msgstr "Dateityp \"%s\" ist nicht erlaubt"
|
8584 |
|
8585 |
-
#: includes/utils.php:
|
8586 |
msgctxt "utils"
|
8587 |
msgid ""
|
8588 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -8687,10 +8699,39 @@ msgctxt "widgets"
|
|
8687 |
msgid "Display the following fields in the form."
|
8688 |
msgstr "Diese Felder in der Form anzeigen."
|
8689 |
|
8690 |
-
#: templates/admin/
|
8691 |
-
|
8692 |
-
|
8693 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8694 |
|
8695 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:127
|
8696 |
#, fuzzy
|
@@ -8785,7 +8826,7 @@ msgctxt "uninstall"
|
|
8785 |
msgid "Uninstall Plugin"
|
8786 |
msgstr "Erweiterung Deinstallieren"
|
8787 |
|
8788 |
-
#: templates/admin/uninstall-confirm.tpl.php:
|
8789 |
#, fuzzy
|
8790 |
msgctxt "uninstall"
|
8791 |
msgid "Uninstalling Business Directory Plugin will do the following:"
|
@@ -8809,13 +8850,6 @@ msgctxt "uninstall"
|
|
8809 |
msgid "Remove ALL directory settings"
|
8810 |
msgstr "Verzeichnissortierung der Einträge durch"
|
8811 |
|
8812 |
-
#: templates/admin/uninstall-confirm.tpl.php:25
|
8813 |
-
msgctxt "uninstall"
|
8814 |
-
msgid ""
|
8815 |
-
"Remove ALL premium module configuration data (regions, maps, ratings, "
|
8816 |
-
"featured levels)"
|
8817 |
-
msgstr ""
|
8818 |
-
|
8819 |
#: templates/admin/uninstall-confirm.tpl.php:26
|
8820 |
msgctxt "uninstall"
|
8821 |
msgid "Deactivate the plugin from the file system"
|
@@ -8978,6 +9012,61 @@ msgctxt "send-access-keys"
|
|
8978 |
msgid "Continue"
|
8979 |
msgstr "Weiter"
|
8980 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8981 |
#, fuzzy
|
8982 |
#~ msgid "Fee Label"
|
8983 |
#~ msgstr "Preisbezeichnung"
|
@@ -9066,13 +9155,6 @@ msgstr "Weiter"
|
|
9066 |
#~ msgid "Paid"
|
9067 |
#~ msgstr "Bezahlt"
|
9068 |
|
9069 |
-
#, fuzzy
|
9070 |
-
#~ msgid "Manage Options"
|
9071 |
-
#~ msgstr "Optionen Verwalten"
|
9072 |
-
|
9073 |
-
#~ msgid "Manage Paid Listings"
|
9074 |
-
#~ msgstr "Bezahlte Einträge verwalten"
|
9075 |
-
|
9076 |
#, fuzzy
|
9077 |
#~ msgctxt "settings"
|
9078 |
#~ msgid "Turn On payments?"
|
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-03-31 18:58:23+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."
|
42 |
msgid "Selected"
|
43 |
msgstr "Liste auswählen"
|
44 |
|
45 |
+
#: includes/admin/admin-pages.php:44 includes/admin/admin-pages.php:474
|
46 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
47 |
+
#: includes/admin/settings/class-settings-bootstrap.php:695
|
48 |
+
#: includes/admin/settings/class-settings-bootstrap.php:696
|
49 |
+
#: includes/helpers/class-app.php:92
|
50 |
+
#, fuzzy
|
51 |
+
msgid "Listings"
|
52 |
+
msgstr "Einträge"
|
53 |
+
|
54 |
+
#: includes/admin/admin-pages.php:51
|
55 |
+
#, fuzzy
|
56 |
+
msgid "Add New Listing"
|
57 |
+
msgstr "Neuer Eintrag"
|
58 |
+
|
59 |
+
#: includes/admin/admin-pages.php:70
|
60 |
+
#: includes/admin/settings/class-settings-bootstrap.php:450
|
61 |
+
#, fuzzy
|
62 |
+
msgid "Categories"
|
63 |
+
msgstr "Kategorien"
|
64 |
+
|
65 |
+
#: includes/admin/admin-pages.php:72
|
66 |
+
#, fuzzy
|
67 |
+
msgid "Add New Category"
|
68 |
+
msgstr "Kategorien"
|
69 |
+
|
70 |
+
#: includes/admin/admin-pages.php:87
|
71 |
+
#: includes/admin/controllers/class-form-fields-admin.php:346
|
72 |
+
#, fuzzy
|
73 |
+
msgid "Tags"
|
74 |
+
msgstr "Tags Entwurf"
|
75 |
+
|
76 |
+
#: includes/admin/admin-pages.php:89
|
77 |
+
#, fuzzy
|
78 |
+
msgid "Add New Tag"
|
79 |
+
msgstr "Neuer Eintrag"
|
80 |
+
|
81 |
+
#: includes/admin/admin-pages.php:104
|
82 |
+
#, fuzzy
|
83 |
+
msgid "Edit Category"
|
84 |
+
msgstr "Post Kategorie"
|
85 |
+
|
86 |
+
#: includes/admin/admin-pages.php:106
|
87 |
+
#, fuzzy
|
88 |
+
msgid "Back to Categories"
|
89 |
+
msgstr "Verz. Kategorien"
|
90 |
+
|
91 |
+
#: includes/admin/admin-pages.php:120
|
92 |
+
#, fuzzy
|
93 |
+
msgid "Edit Tag"
|
94 |
+
msgstr "Bezahlt"
|
95 |
+
|
96 |
+
#: includes/admin/admin-pages.php:122
|
97 |
+
#, fuzzy
|
98 |
+
msgid "Back to Tags"
|
99 |
+
msgstr "Verz. Tags"
|
100 |
+
|
101 |
+
#. translators: %s: Search query.
|
102 |
+
#: includes/admin/admin-pages.php:186
|
103 |
+
#, fuzzy
|
104 |
+
msgid "Search results for: %s"
|
105 |
+
msgstr "Ergebnisse durchsuchen"
|
106 |
+
|
107 |
+
#: includes/admin/admin-pages.php:473 includes/admin/class-admin.php:487
|
108 |
+
#, fuzzy
|
109 |
+
msgid "Directory Content"
|
110 |
+
msgstr "Verzeichnis Kategorie"
|
111 |
+
|
112 |
+
#: includes/admin/admin-pages.php:479 includes/admin/class-admin.php:309
|
113 |
+
#: includes/admin/settings/class-settings-bootstrap.php:707
|
114 |
+
#: includes/admin/settings/class-settings-bootstrap.php:708
|
115 |
+
#: includes/helpers/class-app.php:93
|
116 |
+
#: includes/helpers/functions/templates-ui.php:307
|
117 |
+
msgid "Directory"
|
118 |
+
msgstr "Verzeichnis"
|
119 |
+
|
120 |
+
#: includes/admin/class-admin.php:198
|
121 |
#, fuzzy
|
122 |
msgid ""
|
123 |
"Find out how to create a compelling, thriving business directory from "
|
127 |
"von Grund aufbauen mit diesem einfachen (und kostenlosen) 5-teiligen E-Mail-"
|
128 |
"Kurs. Sie erhalten ein kostenloses Premium-Modul nur für die Anmeldung."
|
129 |
|
130 |
+
#: includes/admin/class-admin.php:207
|
131 |
#, fuzzy
|
132 |
msgid "Want to know the Secrets of Building an Awesome Business Directory?"
|
133 |
msgstr ""
|
134 |
"Möchten Sie mehr über die Geheimnisse eines erfolgreichen Verzeichnisses "
|
135 |
"wissen?"
|
136 |
|
137 |
+
#: includes/admin/class-admin.php:209
|
138 |
#, fuzzy
|
139 |
msgid "Yes, please!"
|
140 |
msgstr "Ja, bitte!"
|
141 |
|
142 |
+
#: includes/admin/class-admin.php:211 includes/admin/tracking.php:215
|
143 |
#, fuzzy
|
144 |
msgid "No, thanks"
|
145 |
msgstr "Nein, danke"
|
146 |
|
147 |
+
#: includes/admin/class-admin.php:244
|
148 |
#, fuzzy
|
149 |
msgid "You're all set. Visit your new %1$sBusiness Directory%2$s page."
|
150 |
msgstr ""
|
151 |
"Sie haben alles konfiguriert. Besuchen sie Ihr neues <a>Branchenverzeichnis</"
|
152 |
"a>."
|
153 |
|
154 |
+
#: includes/admin/class-admin.php:272
|
155 |
#, fuzzy
|
156 |
msgid "Invalid email address."
|
157 |
msgstr "Ungültiger Erneuerungszustand."
|
158 |
|
159 |
+
#: includes/admin/class-admin.php:308
|
160 |
#, fuzzy
|
161 |
msgid "Business Directory Admin"
|
162 |
msgstr "Branchenverzeichnis Administration"
|
163 |
|
164 |
+
#: includes/admin/class-admin.php:320 templates/admin/fees-index.tpl.php:5
|
165 |
+
#: templates/admin/home.tpl.php:65
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Plans"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/admin/class-admin.php:323 templates/admin/form-fields.tpl.php:20
|
170 |
+
#: templates/admin/home.tpl.php:60
|
171 |
#, fuzzy
|
172 |
msgid "Form Fields"
|
173 |
msgstr "Formularfelder"
|
174 |
|
175 |
+
#: includes/admin/class-admin.php:352 includes/admin/class-admin.php:353
|
176 |
#: includes/licensing.php:229
|
177 |
#, fuzzy
|
178 |
msgid "Modules"
|
179 |
msgstr "Installierte Module"
|
180 |
|
181 |
+
#: includes/admin/class-admin.php:353
|
182 |
#, fuzzy
|
183 |
msgid "Business Directory"
|
184 |
msgstr "Branchenverzeichnis"
|
185 |
|
186 |
+
#: includes/admin/class-admin.php:486 includes/class-cpt-integration.php:23
|
187 |
+
#, fuzzy
|
188 |
+
msgid "Directory Listings"
|
189 |
+
msgstr "Verzeichniseintrag Entwurf"
|
190 |
+
|
191 |
+
#: includes/admin/class-admin.php:1015
|
192 |
#, fuzzy
|
193 |
msgid "Could not send renewal email."
|
194 |
msgstr "Erneuerungsmail an Benutzer schicken"
|
195 |
|
196 |
+
#: includes/admin/class-admin.php:1149
|
197 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:129
|
198 |
#: includes/admin/helpers/tables/class-payments-table.php:54
|
199 |
#: templates/email/listing-added.tpl.php:7
|
200 |
#: templates/email/listing-edited.tpl.php:13
|
203 |
msgid "ID"
|
204 |
msgstr "ID"
|
205 |
|
206 |
+
#: includes/admin/class-admin.php:1151 includes/admin/class-admin.php:1159
|
207 |
+
#: includes/admin/settings/class-settings-bootstrap.php:733
|
208 |
#, fuzzy
|
209 |
msgid "Listing Count"
|
210 |
msgstr "Anzahl Einträge"
|
211 |
|
212 |
+
#: includes/admin/class-admin.php:1316
|
213 |
#, fuzzy
|
214 |
msgid ""
|
215 |
"We noticed you want your Business Directory users to register before posting "
|
290 |
msgid "Are you sure you want to do this?"
|
291 |
msgstr "Möchtest du das wirklich tun?"
|
292 |
|
293 |
+
#: includes/admin/controllers/class-admin-csv.php:38
|
294 |
+
#, fuzzy
|
295 |
+
msgid "Import"
|
296 |
+
msgstr "CSV Import"
|
297 |
+
|
298 |
+
#: includes/admin/controllers/class-admin-csv.php:42
|
299 |
+
#, fuzzy
|
300 |
+
msgid "Export"
|
301 |
+
msgstr "CVS Export"
|
302 |
+
|
303 |
+
#: includes/admin/controllers/class-admin-csv.php:50
|
304 |
+
#, fuzzy
|
305 |
+
msgid "See an example CSV import file"
|
306 |
+
msgstr "Beispiel CSV Import Datei anschauen"
|
307 |
+
|
308 |
+
#: includes/admin/controllers/class-admin-csv.php:54
|
309 |
+
#: templates/admin/csv-import.tpl.php:285
|
310 |
#, fuzzy
|
311 |
msgid "Help"
|
312 |
msgstr "Hilfe "
|
313 |
|
314 |
#: includes/admin/controllers/class-admin-fees.php:47
|
315 |
#: includes/admin/helpers/tables/class-payments-table.php:57
|
316 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:277
|
317 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:73
|
318 |
#: templates/admin/payments-details.tpl.php:113
|
319 |
#: templates/email/listing-payment-completed.tpl.php:21
|
324 |
|
325 |
#: includes/admin/controllers/class-admin-fees.php:49
|
326 |
#: includes/admin/helpers/tables/class-fees-table.php:65
|
327 |
+
#: includes/admin/settings/class-settings-bootstrap.php:923
|
328 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:279
|
329 |
#, fuzzy
|
330 |
msgid "Images"
|
331 |
msgstr "Bilder"
|
332 |
|
333 |
+
#: includes/admin/controllers/class-admin-fees.php:79
|
334 |
+
#, fuzzy
|
335 |
+
msgid "Upgrade"
|
336 |
+
msgstr "Aktualisieren auf %s"
|
337 |
+
|
338 |
+
#: includes/admin/controllers/class-admin-fees.php:90
|
339 |
+
msgid "Set Up"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: includes/admin/controllers/class-admin-fees.php:153
|
343 |
#, fuzzy
|
344 |
msgid "Plan added."
|
345 |
msgstr "Preis aktualisiert."
|
346 |
|
347 |
+
#: includes/admin/controllers/class-admin-fees.php:157
|
348 |
+
#: includes/admin/controllers/class-admin-fees.php:172
|
349 |
#, fuzzy
|
350 |
msgid "Plan updated."
|
351 |
msgstr "Preis aktualisiert."
|
352 |
|
353 |
+
#: includes/admin/controllers/class-admin-fees.php:192
|
354 |
msgid "%1$sClick here to update image limits%2$s of %3$s existing listings."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/admin/controllers/class-admin-fees.php:193
|
358 |
#, fuzzy
|
359 |
msgid "Update listing image limits?"
|
360 |
msgstr "Vorhandene Bilder beibehalten?"
|
361 |
|
362 |
+
#: includes/admin/controllers/class-admin-fees.php:214
|
363 |
#, fuzzy
|
364 |
msgid "Plan not found."
|
365 |
msgstr "Preis aktualisiert."
|
366 |
|
367 |
+
#: includes/admin/controllers/class-admin-fees.php:218
|
368 |
#, fuzzy
|
369 |
msgid "Plan listings updated."
|
370 |
msgstr "Preis aktualisiert."
|
371 |
|
372 |
+
#: includes/admin/controllers/class-admin-fees.php:296
|
373 |
msgid "Cannot disable plan. At least one plan should be enabled"
|
374 |
msgstr ""
|
375 |
|
376 |
#: includes/admin/controllers/class-admin-listings.php:187
|
377 |
+
#: includes/controllers/pages/class-submit-listing.php:514
|
378 |
#: templates/email/listing-reported.tpl.php:7
|
379 |
msgid "Listing Information"
|
380 |
msgstr "Eintrag Informationen"
|
416 |
msgid "Delete Listing"
|
417 |
msgstr "Eintrag Löschen"
|
418 |
|
419 |
+
#: includes/admin/controllers/class-admin-listings.php:733
|
420 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:88
|
421 |
+
#, fuzzy
|
422 |
+
msgid "Never"
|
423 |
+
msgstr "niemals"
|
424 |
+
|
425 |
+
#: includes/admin/controllers/class-admin-listings.php:744
|
426 |
+
#: includes/admin/controllers/class-admin-listings.php:745
|
427 |
+
#: includes/fields/class-fieldtypes-textarea.php:201
|
428 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
429 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
430 |
+
#, fuzzy
|
431 |
+
msgid "Yes"
|
432 |
+
msgstr "Ja"
|
433 |
+
|
434 |
+
#: includes/admin/controllers/class-admin-listings.php:744
|
435 |
+
#: includes/admin/controllers/class-admin-listings.php:745
|
436 |
+
#: includes/admin/settings/class-settings-bootstrap.php:276
|
437 |
+
#: includes/fields/class-fieldtypes-textarea.php:200
|
438 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
439 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
440 |
+
#, fuzzy
|
441 |
+
msgid "No"
|
442 |
+
msgstr "Nein"
|
443 |
+
|
444 |
#: includes/admin/controllers/class-form-fields-admin.php:32
|
445 |
#, fuzzy
|
446 |
msgid ""
|
451 |
"verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
|
452 |
|
453 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
454 |
+
#: includes/controllers/pages/class-submit-listing.php:844
|
455 |
#, fuzzy
|
456 |
msgid "Go to \"Form Fields\""
|
457 |
msgstr "zu \"Formularfelder verwalten\""
|
469 |
msgstr "Geh zurück"
|
470 |
|
471 |
#: includes/admin/controllers/class-form-fields-admin.php:342
|
472 |
+
#: includes/admin/settings/class-settings-bootstrap.php:791
|
473 |
#: templates/email/listing-added.tpl.php:10
|
474 |
#: templates/email/listing-edited.tpl.php:16
|
475 |
#: templates/email/listing-reported.tpl.php:11
|
495 |
msgid "Content"
|
496 |
msgstr "Post Inhalt"
|
497 |
|
|
|
|
|
|
|
|
|
|
|
498 |
#: includes/admin/controllers/class-form-fields-admin.php:347
|
499 |
#: includes/form-fields.php:445
|
500 |
#: includes/helpers/class-field-display-list.php:247
|
561 |
msgid "Website"
|
562 |
msgstr "Webseite"
|
563 |
|
564 |
+
#: includes/admin/controllers/class-settings-admin.php:609
|
565 |
msgid "Your license key provides access to new features and updates."
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/admin/controllers/class-settings-admin.php:611
|
569 |
#, fuzzy
|
570 |
msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
571 |
msgstr "Warum löscht du die Branchenverzeichnis Erweiterung?"
|
572 |
|
573 |
+
#: includes/admin/controllers/class-settings-admin.php:669
|
574 |
#: includes/admin/helpers/tables/class-fees-table.php:180
|
575 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
576 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
617 |
|
618 |
#: includes/admin/helpers/class-listing-information-metabox.php:15
|
619 |
#: includes/admin/helpers/tables/class-payments-table.php:53
|
620 |
+
#: includes/admin/settings/class-settings-bootstrap.php:683
|
621 |
+
#: includes/admin/settings/class-settings-bootstrap.php:684
|
622 |
#: includes/helpers/class-app.php:91
|
623 |
#: templates/admin/payments-details.tpl.php:53
|
624 |
#, fuzzy
|
661 |
msgid "Upgrade Now"
|
662 |
msgstr "Aktualisieren auf %s"
|
663 |
|
664 |
+
#: includes/admin/helpers/class-notices.php:30
|
665 |
+
#, fuzzy
|
666 |
+
msgid "Hide notifications"
|
667 |
+
msgstr "Email Erinnerung"
|
668 |
+
|
669 |
#: includes/admin/helpers/csv/class-csv-import.php:676
|
670 |
#, fuzzy
|
671 |
msgid "Listing imported by admin. Payment skipped."
|
694 |
msgid "Pricing"
|
695 |
msgstr "Preis"
|
696 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
#: includes/admin/helpers/tables/class-fees-table.php:155
|
698 |
#, fuzzy
|
699 |
msgid "Disable"
|
740 |
|
741 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
742 |
#: includes/fields/class-fieldtypes-social.php:135
|
743 |
+
#: templates/admin/csv-import.tpl.php:301
|
744 |
#, fuzzy
|
745 |
msgid "Type"
|
746 |
msgstr "Typ"
|
779 |
msgid "Missing tables: %s"
|
780 |
msgstr "Nicht vorhandene Tabellen: %s"
|
781 |
|
782 |
+
#: includes/admin/settings/class-settings-bootstrap.php:17
|
783 |
+
#: includes/controllers/pages/class-submit-listing.php:1250
|
784 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:140
|
785 |
#: templates/listing-contactform.tpl.php:33
|
786 |
#: templates/listing-flagging-form.tpl.php:39
|
788 |
msgid "Email"
|
789 |
msgstr "E-mail: %s"
|
790 |
|
791 |
+
#: includes/admin/settings/class-settings-bootstrap.php:31
|
792 |
#, fuzzy
|
793 |
msgid "Module Settings"
|
794 |
msgstr "Einstellungen"
|
795 |
|
796 |
+
#: includes/admin/settings/class-settings-bootstrap.php:35
|
797 |
+
#: includes/admin/settings/class-settings-bootstrap.php:309
|
798 |
#, fuzzy
|
799 |
msgid "Miscellaneous"
|
800 |
msgstr "Sonstiges Einstellungen"
|
801 |
|
802 |
+
#: includes/admin/settings/class-settings-bootstrap.php:51
|
803 |
#, fuzzy
|
804 |
msgid "License Key"
|
805 |
msgstr "Lizenz"
|
806 |
|
807 |
+
#: includes/admin/settings/class-settings-bootstrap.php:72
|
808 |
msgid "SEO"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/admin/settings/class-settings-bootstrap.php:277
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
812 |
#, fuzzy
|
813 |
msgid "Yes, and make it optional"
|
814 |
msgstr "%s ist ein Pflichtfeld."
|
815 |
|
816 |
+
#: includes/admin/settings/class-settings-bootstrap.php:278
|
817 |
#, fuzzy
|
818 |
msgid "Yes, and make it required"
|
819 |
msgstr "%s ist ein Pflichtfeld."
|
820 |
|
821 |
+
#: includes/admin/settings/class-settings-bootstrap.php:285
|
822 |
+
#: includes/admin/settings/class-settings-bootstrap.php:299
|
823 |
+
#: includes/controllers/pages/class-submit-listing.php:527
|
824 |
#, fuzzy
|
825 |
msgid "Terms and Conditions"
|
826 |
msgstr "Bedingungen und Konditionen"
|
827 |
|
828 |
+
#: includes/admin/settings/class-settings-bootstrap.php:290
|
829 |
#, fuzzy
|
830 |
msgid "User Agreement"
|
831 |
msgstr "Benutzer"
|
832 |
|
833 |
+
#: includes/admin/settings/class-settings-bootstrap.php:291
|
834 |
#, fuzzy
|
835 |
msgid "Display and require user agreement to Terms and Conditions"
|
836 |
msgstr ""
|
837 |
"Zeige und setze Benutzervereinbarung als Pflichtfeld in Bedingungen und "
|
838 |
"Konditionen"
|
839 |
|
840 |
+
#: includes/admin/settings/class-settings-bootstrap.php:315
|
841 |
#, fuzzy
|
842 |
msgid "Data Collection"
|
843 |
msgstr "Datenkollektion"
|
844 |
|
845 |
+
#: includes/admin/settings/class-settings-bootstrap.php:316
|
846 |
#, fuzzy
|
847 |
msgid ""
|
848 |
"Allow Business Directory to anonymously collect information about your "
|
851 |
"BD erlauben anonym Informationen zu sammeln über deine Erweiterungen, Themen "
|
852 |
"und WP-version?"
|
853 |
|
854 |
+
#: includes/admin/settings/class-settings-bootstrap.php:317
|
855 |
msgid "Learn more"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/admin/settings/class-settings-bootstrap.php:323
|
859 |
#, fuzzy
|
860 |
msgid "Searching"
|
861 |
msgstr "Suche"
|
862 |
|
863 |
+
#: includes/admin/settings/class-settings-bootstrap.php:328
|
864 |
#, fuzzy
|
865 |
msgid "Display advanced search form"
|
866 |
msgstr "Erweiterte Suche"
|
867 |
|
868 |
+
#: includes/admin/settings/class-settings-bootstrap.php:346
|
869 |
msgid ""
|
870 |
"Enabling this sacrifices result quality to improve speed. This is helpful if "
|
871 |
"you're on shared hosting plans, where database performance is an issue."
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: includes/admin/settings/class-settings-bootstrap.php:391
|
875 |
#, fuzzy
|
876 |
msgid "Quick search data"
|
877 |
msgstr "Schnellsuche Felder"
|
878 |
|
879 |
+
#: includes/admin/settings/class-settings-bootstrap.php:417
|
880 |
msgid ""
|
881 |
"If no fields are selected, the following fields will be searched in Quick "
|
882 |
"Searches:"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: includes/admin/settings/class-settings-bootstrap.php:419
|
886 |
msgid ""
|
887 |
"The Quick Search is a single search box, but you may choose what data is "
|
888 |
"searched. Searching too many fields can result in very slow search "
|
889 |
"performance."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/admin/settings/class-settings-bootstrap.php:452
|
|
|
|
|
|
|
|
|
|
|
893 |
msgid "Buttons"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/admin/settings/class-settings-bootstrap.php:454
|
897 |
#, fuzzy
|
898 |
msgid "Sorting"
|
899 |
msgstr "Einstellungen"
|
900 |
|
901 |
+
#: includes/admin/settings/class-settings-bootstrap.php:571
|
902 |
msgid ""
|
903 |
"Business Directory Plugin uses the standard WordPress comments. Most themes "
|
904 |
"allow for comments on posts, not pages. Some themes handle both. Since the "
|
907 |
"work, try the 3rd option."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/admin/settings/class-settings-bootstrap.php:575
|
911 |
#, fuzzy
|
912 |
msgid "Include theme comment form (standard option)"
|
913 |
msgstr "Kommentarform einfügen in Eintragsseiten?"
|
914 |
|
915 |
+
#: includes/admin/settings/class-settings-bootstrap.php:576
|
916 |
#, fuzzy
|
917 |
msgid "Include directory comment form (use only if 2nd option does not work)"
|
918 |
msgstr "Kommentarform einfügen in Eintragsseiten?"
|
919 |
|
920 |
+
#: includes/admin/settings/class-settings-bootstrap.php:594
|
921 |
#, fuzzy
|
922 |
msgid "Prevent featured (sticky) status on directory pages?"
|
923 |
msgstr "unterstützter (unbeweglicher) Status"
|
924 |
|
925 |
+
#: includes/admin/settings/class-settings-bootstrap.php:622
|
926 |
#, fuzzy
|
927 |
msgid "Owner of anonymous listings"
|
928 |
msgstr "Zum Eintrag"
|
929 |
|
930 |
+
#: includes/admin/settings/class-settings-bootstrap.php:638
|
931 |
#, fuzzy
|
932 |
msgid "Default listing status"
|
933 |
msgstr "Voreingestellter-Nutzer"
|
934 |
|
935 |
+
#: includes/admin/settings/class-settings-bootstrap.php:642
|
936 |
+
#: includes/admin/settings/class-settings-bootstrap.php:655
|
937 |
#, fuzzy
|
938 |
msgid "Pending (Require approval)"
|
939 |
msgstr "Aktiv + Ausstehende Erneuerungen"
|
940 |
|
941 |
+
#: includes/admin/settings/class-settings-bootstrap.php:676
|
942 |
#, fuzzy
|
943 |
msgid "Message Defaults"
|
944 |
msgstr "Standards zurücksetzen"
|
945 |
|
946 |
+
#: includes/admin/settings/class-settings-bootstrap.php:681
|
947 |
#, fuzzy
|
948 |
msgid "Listing label"
|
949 |
msgstr "Eintrag Titel:"
|
950 |
|
951 |
+
#: includes/admin/settings/class-settings-bootstrap.php:682
|
952 |
#, fuzzy
|
953 |
msgid "What is a single listing called?"
|
954 |
msgstr "In Detailansicht anzeigen?"
|
955 |
|
956 |
+
#: includes/admin/settings/class-settings-bootstrap.php:693
|
957 |
msgid "Listing label (Plural)"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/admin/settings/class-settings-bootstrap.php:694
|
961 |
msgid "What are your listings called?"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: includes/admin/settings/class-settings-bootstrap.php:705
|
965 |
#, fuzzy
|
966 |
msgid "Directory label"
|
967 |
msgstr "Verzeichnis Tag"
|
968 |
|
969 |
+
#: includes/admin/settings/class-settings-bootstrap.php:706
|
970 |
msgid "What should we call your directory?"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: includes/admin/settings/class-settings-bootstrap.php:718
|
974 |
msgid ""
|
975 |
"This text is displayed on the first page of the Submit Listing process. You "
|
976 |
"can use it for instructions about filling out the form or information to get "
|
977 |
"started."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: includes/admin/settings/class-settings-bootstrap.php:731
|
981 |
#: templates/listing-contactform.tpl.php:30
|
982 |
#: templates/listing-flagging-form.tpl.php:35
|
983 |
#, fuzzy
|
984 |
msgid "Name"
|
985 |
msgstr "Name"
|
986 |
|
987 |
+
#: includes/admin/settings/class-settings-bootstrap.php:846
|
988 |
msgid "Show Buttons"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: includes/admin/settings/class-settings-bootstrap.php:889
|
992 |
#, fuzzy
|
993 |
+
msgid "Show the \"Directory\" and \"Return to Directory\" button"
|
994 |
msgstr "\"Verzeichnis\" Schaltfläche anzeigen"
|
995 |
|
996 |
+
#: includes/admin/settings/class-settings-bootstrap.php:896
|
997 |
msgid "Styling"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: includes/admin/settings/class-settings-bootstrap.php:902
|
1001 |
msgid "Button style"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: includes/admin/settings/class-settings-bootstrap.php:905
|
1005 |
msgid "Override WP theme button styling"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: includes/admin/settings/class-settings-bootstrap.php:913
|
1009 |
msgid "Primary color"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: includes/admin/settings/class-settings-bootstrap.php:916
|
1013 |
msgid "This is used for form buttons and form rootline."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1070
|
1017 |
#, fuzzy
|
1018 |
msgid "Show Thumbnail"
|
1019 |
msgstr "Thumbnails anzeigen"
|
1020 |
|
1021 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1106
|
1022 |
msgid "Coming Soon image"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1143
|
1026 |
#: includes/fields/class-fieldtypes-social.php:89
|
1027 |
#: includes/fields/class-fieldtypes-url.php:162
|
1028 |
#: templates/email/listing-added.tpl.php:13
|
1033 |
msgid "URL"
|
1034 |
msgstr "URL"
|
1035 |
|
1036 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1262
|
1037 |
#, fuzzy
|
1038 |
msgid "Thank you for your payment."
|
1039 |
msgstr "Danke für die Bezahlung Nachricht"
|
1040 |
|
1041 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
1042 |
msgid ""
|
1043 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
1044 |
"collect payments in this currency."
|
1048 |
msgstr[0] ""
|
1049 |
msgstr[1] ""
|
1050 |
|
1051 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1378
|
1052 |
#, fuzzy
|
1053 |
msgid "Email Notifications"
|
1054 |
msgstr "Email Erinnerung"
|
1055 |
|
1056 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
1057 |
#, fuzzy
|
1058 |
msgid "Notify admin via email when..."
|
1059 |
msgstr "Administrator per E-mail informieren wenn... "
|
1060 |
|
1061 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1401
|
1062 |
#, fuzzy
|
1063 |
msgid "CC this email address too"
|
1064 |
msgstr "CC diese E-mail an"
|
1065 |
|
1066 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
1067 |
#, fuzzy
|
1068 |
msgid ""
|
1069 |
"You can modify the text template used for most of these emails in the "
|
1072 |
"Du kannst dieses Texttemplate verändern, das für die meisten der E-"
|
1073 |
"mailadressen unten verwendet wird."
|
1074 |
|
1075 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1415
|
1076 |
#, fuzzy
|
1077 |
msgid "Notify users via email when..."
|
1078 |
msgstr "Benachrichtige Benutzer per E-mail wenn..."
|
1079 |
|
1080 |
#. translators: %s: email shortcode
|
1081 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1482
|
1082 |
#, fuzzy
|
1083 |
msgid "Email: %s"
|
1084 |
msgstr "E-mail: %s"
|
1085 |
|
1086 |
#. translators: %s: phone shortcode
|
1087 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1485
|
1088 |
#, fuzzy
|
1089 |
msgid "Phone Number: %s"
|
1090 |
msgstr "Telefonnummer geschäftlich"
|
1091 |
|
1092 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
1093 |
#, fuzzy
|
1094 |
msgid "Sender's email address"
|
1095 |
msgstr "Ungültiger Erneuerungszustand."
|
1096 |
|
1097 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
1098 |
#, fuzzy
|
1099 |
msgid "Sender's phone number"
|
1100 |
msgstr "Authorname"
|
1101 |
|
1102 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1562
|
1103 |
msgid "Renewal and expiration"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1698
|
1107 |
#: templates/admin/uninstall-complete.tpl.php:4
|
1108 |
#, fuzzy
|
1109 |
msgid "Uninstall"
|
1110 |
msgstr "Deinstallieren"
|
1111 |
|
1112 |
+
#: includes/admin/settings/class-settings.php:519
|
1113 |
msgid "%s cannot include spaces, commas, or &"
|
1114 |
msgstr ""
|
1115 |
|
1175 |
|
1176 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:21
|
1177 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:22
|
1178 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:189
|
|
|
1179 |
#, fuzzy
|
1180 |
msgid "Business Directory - Featured Levels Migration"
|
1181 |
msgstr "Branchenverzeichnis - Hervorgehobene Einträge"
|
1182 |
|
1183 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
1184 |
#: templates/admin/fees-form.tpl.php:17
|
1185 |
#, fuzzy
|
1186 |
msgid "Plan Label"
|
1187 |
msgstr "Feldbezeichnung"
|
1188 |
|
1189 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:278
|
1190 |
#, fuzzy
|
1191 |
msgid "Duration"
|
1192 |
msgstr "Zeitraum"
|
1260 |
"what we can do better?"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/class-assets.php:191 templates/admin/settings-email.tpl.php:103
|
1264 |
#: templates/admin/settings-reset.tpl.php:8
|
1265 |
#: templates/admin/themes-delete-confirm.tpl.php:21
|
1266 |
#: templates/listing-flagging-form.tpl.php:65
|
1268 |
msgid "Cancel"
|
1269 |
msgstr "Abbrechen"
|
1270 |
|
1271 |
+
#: includes/class-assets.php:192
|
1272 |
#, fuzzy
|
1273 |
msgid "Continue"
|
1274 |
msgstr "Weiter"
|
1275 |
|
1276 |
+
#: includes/class-assets.php:193
|
1277 |
msgid "Are you sure?"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/class-assets.php:357
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1281 |
#, fuzzy
|
1282 |
msgid ""
|
1283 |
"Preview is only available after you've saved the first draft. This is due to "
|
1301 |
msgid "Search Listings"
|
1302 |
msgstr "Einträge durchsuchen"
|
1303 |
|
|
|
|
|
|
|
|
|
|
|
1304 |
#: includes/class-cpt-integration.php:24
|
1305 |
msgid "No listings found"
|
1306 |
msgstr "Keine Einträge gefunden"
|
1616 |
msgid "This is just a preview. The listing has not been published yet."
|
1617 |
msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
|
1618 |
|
1619 |
+
#: includes/controllers/pages/class-submit-listing.php:560
|
1620 |
#, fuzzy
|
1621 |
msgid "Listing Images"
|
1622 |
msgstr "Eintrag Bilder"
|
1623 |
|
1624 |
+
#: includes/controllers/pages/class-submit-listing.php:628
|
1625 |
msgid "Account Creation"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: includes/controllers/pages/class-submit-listing.php:827
|
1629 |
#, fuzzy
|
1630 |
msgid "Go to \"Plans\""
|
1631 |
msgstr "zu \"Formularfelder verwalten\""
|
1632 |
|
1633 |
+
#: includes/controllers/pages/class-submit-listing.php:883
|
1634 |
#, fuzzy
|
1635 |
msgid "Please choose a plan."
|
1636 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
1637 |
|
1638 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1639 |
msgid "Please check the form for errors, correct them and submit again."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: includes/controllers/pages/class-submit-listing.php:1234
|
1643 |
msgid "Create a user account on this site"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: includes/controllers/pages/class-submit-listing.php:1241
|
1647 |
#, fuzzy
|
1648 |
msgid "Username"
|
1649 |
msgstr "Benutzer"
|
1650 |
|
1651 |
+
#: includes/controllers/pages/class-submit-listing.php:1263
|
1652 |
#, fuzzy
|
1653 |
msgid "Clear Form"
|
1654 |
msgstr "Zurücksetzen"
|
1715 |
"Feldoptionen (für ausgewählte Listen, Radiobutton und Kontrollkästchen)"
|
1716 |
|
1717 |
#: includes/fields/class-fieldtypes-select.php:262
|
1718 |
+
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1719 |
+
#: templates/admin/fees-form.tpl.php:58
|
|
|
|
|
|
|
|
|
1720 |
#, fuzzy
|
1721 |
msgid "required"
|
1722 |
msgstr "Pflichtfeld"
|
1882 |
msgid "Telephone Number Validator"
|
1883 |
msgstr "Ganze Nummern Validierung"
|
1884 |
|
1885 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:300
|
1886 |
#, fuzzy
|
1887 |
msgid "Field"
|
1888 |
msgstr "Feld"
|
1981 |
msgstr "Standard Preis"
|
1982 |
|
1983 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1984 |
+
#: includes/licensing.php:151
|
1985 |
msgid ""
|
1986 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1987 |
"get updates."
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: includes/licensing.php:203 includes/licensing.php:208
|
1991 |
#, fuzzy
|
1992 |
msgid "Licenses"
|
1993 |
msgstr "Lizenz"
|
2108 |
msgid "Congratulations %1$s! You have collected %2$d listings."
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: includes/payment.php:30
|
2112 |
msgid "We couldn't find a payment associated with the given subscription."
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: includes/payment.php:37
|
2116 |
msgid "The payment gateway \"<payment-gateway>\" is not available."
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: includes/payment.php:65
|
2120 |
#, fuzzy
|
2121 |
msgid "Gateway Transaction ID:"
|
2122 |
msgstr "Transaktion"
|
2123 |
|
2124 |
+
#: includes/payment.php:77
|
2125 |
msgid "Bill To:"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: includes/payment.php:88
|
2129 |
msgid "Print Receipt"
|
2130 |
msgstr ""
|
2131 |
|
|
|
|
|
|
|
|
|
|
|
2132 |
#: includes/payment.php:187
|
2133 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
2134 |
msgid "Return to plan selection"
|
2135 |
msgstr "Zurück zum Eintrag."
|
2136 |
|
2222 |
msgid "There are currently no listings to show."
|
2223 |
msgstr "Keine Einträge im Verzeichnis vorhanden. "
|
2224 |
|
2225 |
+
#: templates/admin/_admin-menu.php:42
|
2226 |
+
msgid "Minimize Navigation"
|
2227 |
+
msgstr ""
|
2228 |
+
|
2229 |
#: templates/admin/csv-export.tpl.php:5
|
2230 |
#, fuzzy
|
2231 |
msgid ""
|
2237 |
"stelle sicher, dass du genügend Speicherplatz für PHP vorhanden ist. Schaue "
|
2238 |
"ins Fehlerprotokoll."
|
2239 |
|
2240 |
+
#: templates/admin/csv-export.tpl.php:40
|
2241 |
+
#, fuzzy
|
2242 |
+
msgid "All"
|
2243 |
+
msgstr "Alle"
|
2244 |
+
|
2245 |
+
#: templates/admin/csv-export.tpl.php:53
|
2246 |
+
#, fuzzy
|
2247 |
+
msgid "Create a ZIP file with both a CSV file and listing images."
|
2248 |
+
msgstr ""
|
2249 |
+
"Wenn aktiviert, wird anstatt nur einer CSV-Datei, eine ZIP Datei generiert, "
|
2250 |
+
"die sowohl eine CSV-Datei und Eintragsbilder enthält."
|
2251 |
+
|
2252 |
+
#: templates/admin/csv-export.tpl.php:58
|
2253 |
+
#, fuzzy
|
2254 |
+
msgid "Additional metadata to export"
|
2255 |
+
msgstr "zu exportierende zusätzliche Metadaten"
|
2256 |
+
|
2257 |
+
#: templates/admin/csv-export.tpl.php:68
|
2258 |
#, fuzzy
|
2259 |
msgid ""
|
2260 |
"If you plan to re-import the listings into your directory and don't want new "
|
2263 |
"Wenn Sie vorhaben die Einträge in BD erneut zu importieren und keine neuen "
|
2264 |
"erstellen wollen, wählen Sie diese Option!"
|
2265 |
|
2266 |
+
#: templates/admin/csv-export.tpl.php:122
|
2267 |
+
#: templates/admin/csv-import.tpl.php:111
|
2268 |
#, fuzzy
|
2269 |
msgid "CSV File Settings"
|
2270 |
msgstr "CSV-Datei Einstellungen"
|
2271 |
|
2272 |
+
#: templates/admin/csv-export.tpl.php:132
|
2273 |
+
#, fuzzy
|
2274 |
+
msgid ""
|
2275 |
+
"Windows and macOS versions of MS Excel handle CSV files differently. To make "
|
2276 |
+
"sure all your listings information is displayed properly when you view or "
|
2277 |
+
"edit the CSV file, we need to generate different versions of the file for "
|
2278 |
+
"each operating system."
|
2279 |
+
msgstr ""
|
2280 |
+
"Windows- und MacOS-Versionen von MS Excel behandeln CSV-Dateien "
|
2281 |
+
"unterschiedlich. Um sicherzustellen, dass alle Ihre Listeninformationen "
|
2282 |
+
"korrekt angezeigt werden, wenn Sie die CSV-Datei anzeigen oder bearbeiten, "
|
2283 |
+
"müssen wir für jedes Betriebssystem unterschiedliche Versionen der Datei "
|
2284 |
+
"generieren."
|
2285 |
+
|
2286 |
+
#: templates/admin/csv-export.tpl.php:153
|
2287 |
+
#: templates/admin/csv-import.tpl.php:147
|
2288 |
#, fuzzy
|
2289 |
msgid "Image Separator"
|
2290 |
msgstr "Bildertrenner"
|
2299 |
"Wir empfehlen Ihnen dringend, unsere <a>CSV-Importdokumentation</a> zu "
|
2300 |
"lesen, um Ihnen zu helfen, Dinge in der richtigen Reihenfolge zu machen."
|
2301 |
|
2302 |
+
#: templates/admin/csv-import.tpl.php:46
|
2303 |
#, fuzzy
|
2304 |
msgid "Import Files"
|
2305 |
msgstr "Import Dateien"
|
2306 |
|
2307 |
+
#: templates/admin/csv-import.tpl.php:51
|
2308 |
#, fuzzy
|
2309 |
msgid "CSV File"
|
2310 |
msgstr "CSV-Datei"
|
2311 |
|
2312 |
+
#: templates/admin/csv-import.tpl.php:80
|
2313 |
#, fuzzy
|
2314 |
msgid "ZIP file containing images"
|
2315 |
msgstr "ZIP-Datei mit Bildern"
|
2316 |
|
2317 |
+
#: templates/admin/csv-import.tpl.php:117
|
2318 |
#, fuzzy
|
2319 |
msgid "Column Separator"
|
2320 |
msgstr "Spaltentrenner"
|
2321 |
|
2322 |
+
#: templates/admin/csv-import.tpl.php:140
|
2323 |
#, fuzzy
|
2324 |
msgid "TAB"
|
2325 |
msgstr "TAB"
|
2326 |
|
2327 |
+
#: templates/admin/csv-import.tpl.php:158
|
2328 |
#, fuzzy
|
2329 |
msgid "Category Separator"
|
2330 |
msgstr "Kategorietrenner"
|
2331 |
|
2332 |
+
#: templates/admin/csv-import.tpl.php:169
|
2333 |
#, fuzzy
|
2334 |
msgid "Import settings"
|
2335 |
msgstr "Importeinstellungen"
|
2336 |
|
2337 |
+
#: templates/admin/csv-import.tpl.php:174
|
2338 |
#, fuzzy
|
2339 |
msgid "Post status of new imported listings"
|
2340 |
msgstr "Status der importierten Einträge"
|
2341 |
|
2342 |
+
#: templates/admin/csv-import.tpl.php:189
|
2343 |
#, fuzzy
|
2344 |
msgid "Post status of existing imported listings"
|
2345 |
msgstr "Status der importierten Einträge"
|
2346 |
|
2347 |
+
#: templates/admin/csv-import.tpl.php:206
|
2348 |
#, fuzzy
|
2349 |
msgid "Missing categories handling"
|
2350 |
msgstr "Verhalten bei nicht vorhandener Kategorie"
|
2351 |
|
2352 |
+
#: templates/admin/csv-import.tpl.php:212
|
2353 |
#, fuzzy
|
2354 |
msgid "Auto-create categories"
|
2355 |
msgstr "Kategorie automatisch erstellen"
|
2356 |
|
2357 |
+
#: templates/admin/csv-import.tpl.php:217
|
2358 |
#, fuzzy
|
2359 |
msgid "Generate errors when a category is not found"
|
2360 |
msgstr "Fehlermeldung erzeugen, wenn die Kategorie nicht gefunden wird"
|
2361 |
|
2362 |
+
#: templates/admin/csv-import.tpl.php:225
|
2363 |
+
#, fuzzy
|
2364 |
+
msgid "Keep existing images"
|
2365 |
+
msgstr "Vorhandene Bilder behalten."
|
2366 |
+
|
2367 |
+
#: templates/admin/csv-import.tpl.php:228
|
2368 |
+
#, fuzzy
|
2369 |
+
msgid "Appends new images while keeping current ones."
|
2370 |
+
msgstr "Hängt neue Bilder an und behaltet die alten."
|
2371 |
+
|
2372 |
+
#: templates/admin/csv-import.tpl.php:236
|
2373 |
#, fuzzy
|
2374 |
+
msgid "Assign listings to a user"
|
2375 |
msgstr "Zuweisung"
|
2376 |
|
2377 |
+
#: templates/admin/csv-import.tpl.php:248
|
2378 |
#, fuzzy
|
2379 |
msgid "Default listing user"
|
2380 |
msgstr "Voreingestellter-Nutzer"
|
2381 |
|
2382 |
+
#: templates/admin/csv-import.tpl.php:250
|
2383 |
#, fuzzy
|
2384 |
msgid ""
|
2385 |
"This user will be used if the username column is not present in the CSV file."
|
2387 |
"Dieser Benutzer wird verwendet wenn die Spalte Benutzername nicht in der CSV-"
|
2388 |
"Datei vorhanden ist."
|
2389 |
|
2390 |
+
#: templates/admin/csv-import.tpl.php:257
|
2391 |
#, fuzzy
|
2392 |
msgid "Number of listings imported on every cycle"
|
2393 |
msgstr "Nummer der Einträge zum Anzeigen:"
|
2394 |
|
2395 |
+
#: templates/admin/csv-import.tpl.php:259
|
2396 |
msgid ""
|
2397 |
"If you are having trouble importing listings due to memory problems, try "
|
2398 |
"reducing the import batch size to 5 or 1 and then re-attempt. This will "
|
2400 |
"success on shared hosting platforms and other resource-constrained servers."
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: templates/admin/csv-import.tpl.php:271
|
2404 |
#, fuzzy
|
2405 |
+
msgid "Disable email notifications during import"
|
2406 |
msgstr "E-Mail-Benachrichtigungen"
|
2407 |
|
2408 |
+
#: templates/admin/csv-import.tpl.php:290
|
|
|
|
|
|
|
|
|
|
|
2409 |
#, fuzzy
|
2410 |
msgid ""
|
2411 |
"The following are the valid header names to be used in the CSV file. "
|
2418 |
"erscheinen. Klicken Sie <a href=\"%s\">\"CSV Beispieldatei anschauen\"</a>, "
|
2419 |
"um zu sehen wie eine Importdatei aufgebaut sein muss."
|
2420 |
|
2421 |
+
#: templates/admin/csv-import.tpl.php:299
|
2422 |
#, fuzzy
|
2423 |
msgid "Header name/label"
|
2424 |
msgstr "Kopfname/Bezeichnung"
|
2425 |
|
2426 |
+
#: templates/admin/csv-import.tpl.php:302
|
2427 |
#, fuzzy
|
2428 |
msgid "Required?"
|
2429 |
msgstr "Pflichtfeld?"
|
2430 |
|
2431 |
+
#: templates/admin/csv-import.tpl.php:303
|
2432 |
#, fuzzy
|
2433 |
msgid "Multivalued?"
|
2434 |
msgstr "Mehrfachwert?"
|
2435 |
|
2436 |
+
#: templates/admin/csv-import.tpl.php:335
|
2437 |
#, fuzzy
|
2438 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2439 |
msgstr "Semikolon getrennte Liste der Eintragsbilder (aus der ZIP Datei)"
|
2440 |
|
2441 |
+
#: templates/admin/csv-import.tpl.php:342
|
2442 |
#, fuzzy
|
2443 |
msgid "Listing author's username"
|
2444 |
msgstr "Benutzername des Authors"
|
2445 |
|
2446 |
#: templates/admin/debug-info.tpl.php:5
|
2447 |
#, fuzzy
|
2448 |
+
msgid "Debug"
|
2449 |
+
msgstr "Fehlerkorrektur"
|
2450 |
+
|
2451 |
+
#: templates/admin/debug-info.tpl.php:8
|
2452 |
+
#, fuzzy
|
2453 |
+
msgid "Download Debug Information"
|
2454 |
+
msgstr "Fehlerprotokoll herunterladen"
|
2455 |
+
|
2456 |
+
#: templates/admin/debug-info.tpl.php:18
|
2457 |
+
#, fuzzy
|
2458 |
msgid ""
|
2459 |
"The following information can help our team debug possible problems with "
|
2460 |
"your setup."
|
2462 |
"Die folgenden Informationen können helfen Branchenverzeichnisentwicklern "
|
2463 |
"mögliche Probleme während der Installation zu lösen."
|
2464 |
|
|
|
|
|
|
|
|
|
|
|
2465 |
#: templates/admin/fees-add-fee.tpl.php:4 templates/admin/fees-form.tpl.php:245
|
2466 |
#, fuzzy
|
2467 |
msgid "Add Plan"
|
2543 |
msgid "Save Changes"
|
2544 |
msgstr "Änderungen sichern"
|
2545 |
|
2546 |
+
#: templates/admin/fees-index.tpl.php:7
|
2547 |
#, fuzzy
|
2548 |
msgid "Add New Plan"
|
2549 |
msgstr "Neuer Eintrag"
|
2550 |
|
2551 |
+
#: templates/admin/fees-index.tpl.php:27
|
2552 |
#, fuzzy
|
2553 |
msgid "↑ Ascending"
|
2554 |
msgstr "↑ Aufsteigend"
|
2555 |
|
2556 |
+
#: templates/admin/fees-index.tpl.php:28
|
2557 |
#, fuzzy
|
2558 |
msgid "↓ Descending"
|
2559 |
msgstr "↓ Absteigend"
|
2560 |
|
2561 |
+
#: templates/admin/fees-index.tpl.php:36
|
2562 |
msgid "Save front-end order"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: templates/admin/fees-index.tpl.php:40
|
2566 |
#, fuzzy
|
2567 |
msgid "Drag and drop to re-order plans."
|
2568 |
msgstr "Ziehen um Preise wiederholt zu beauftragen."
|
2569 |
|
2570 |
+
#: templates/admin/fees-index.tpl.php:56
|
2571 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: templates/admin/fees-index.tpl.php:58
|
2575 |
msgid "Add a payment gateway to increase conversion rates"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
#. translators: %s: payment gateway name */
|
2579 |
+
#: templates/admin/fees-index.tpl.php:75
|
|
|
|
|
|
|
|
|
2580 |
#, fuzzy
|
2581 |
+
msgid "Add %s as a payment option."
|
2582 |
+
msgstr "[%s] neue Eintragsbenachrichtigung"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2583 |
|
2584 |
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2585 |
#, fuzzy
|
2611 |
msgid "Manage Theme Tags"
|
2612 |
msgstr "Preise Verwalten"
|
2613 |
|
2614 |
+
#: templates/admin/form-fields.tpl.php:27
|
2615 |
+
msgid ""
|
2616 |
+
"Create new fields, edit existing fields, change the field order and "
|
2617 |
+
"visibility."
|
2618 |
+
msgstr ""
|
2619 |
+
|
2620 |
+
#. translators: %1$s open link, %2$s close link
|
2621 |
+
#: templates/admin/form-fields.tpl.php:35
|
2622 |
+
#, fuzzy
|
2623 |
+
msgid "Please see the %1$sForm Fields documentation%2$s for more details."
|
2624 |
+
msgstr ""
|
2625 |
+
"Bitte schauen Sie Sich die weitere Informationen in der Dokumentation "
|
2626 |
+
"<a>Formularfelder</a>."
|
2627 |
+
|
2628 |
+
#: templates/admin/home.tpl.php:55
|
2629 |
+
#, fuzzy
|
2630 |
+
msgid "Manage Options"
|
2631 |
+
msgstr "Optionen Verwalten"
|
2632 |
+
|
2633 |
+
#: templates/admin/home.tpl.php:74
|
2634 |
+
msgid "Manage Paid Listings"
|
2635 |
+
msgstr "Bezahlte Einträge verwalten"
|
2636 |
+
|
2637 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2638 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2639 |
#: templates/login.tpl.php:71
|
2853 |
msgid "Directory Settings"
|
2854 |
msgstr "Verzeichniseintrag Entwurf"
|
2855 |
|
|
|
|
|
|
|
|
|
|
|
2856 |
#: templates/admin/settings-reset.tpl.php:4
|
2857 |
#, fuzzy
|
2858 |
msgid "Directory Reset to Default"
|
2875 |
msgid "Your existing listings will NOT be deleted doing this."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: templates/admin/settings-reset.tpl.php:26
|
2879 |
+
msgid "Reset Defaults"
|
2880 |
+
msgstr "Standards zurücksetzen"
|
2881 |
+
|
2882 |
#: templates/admin/sidebar.tpl.php:7
|
2883 |
msgid "Need help?"
|
2884 |
msgstr ""
|
2981 |
msgid "Return to Dashboard."
|
2982 |
msgstr "Zurück zur Übersichtsseite"
|
2983 |
|
2984 |
+
#: templates/admin/uninstall-confirm.tpl.php:25
|
2985 |
+
msgid "Remove ALL module data (regions, maps, ratings, featured levels)"
|
2986 |
+
msgstr ""
|
2987 |
+
|
2988 |
#. translators: %1$s: open link html, %2$s: close link html
|
2989 |
#: templates/admin/uninstall-confirm.tpl.php:43
|
2990 |
+
msgid "Go to %1$sPlugins > Installed Plugins%2$s"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
#. translators: %1$s: open italic html, %2$s: close italic html
|
3012 |
|
3013 |
#. translators: %1$s: open link html, %2$s: close link html
|
3014 |
#: templates/admin/uninstall-confirm.tpl.php:65
|
3015 |
+
msgid "You can reinstall the plugin again under %1$sPlugins > Add New%2$s"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
#: templates/admin/uninstall-confirm.tpl.php:74
|
3463 |
msgid "Find A Listing"
|
3464 |
msgstr "Eintrag finden"
|
3465 |
|
3466 |
+
#: includes/admin/class-admin.php:200
|
3467 |
msgctxt "drip pointer"
|
3468 |
msgid "Email Address:"
|
3469 |
msgstr "E-Mail Adresse:"
|
3470 |
|
3471 |
+
#: includes/admin/class-admin.php:232
|
3472 |
msgctxt "admin"
|
3473 |
msgid "Business Directory"
|
3474 |
msgstr "Branchenverzeichnis"
|
3475 |
|
3476 |
+
#: includes/admin/class-admin.php:504
|
3477 |
msgctxt "admin"
|
3478 |
msgid "Untitled Menu"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: includes/admin/class-admin.php:848
|
3482 |
msgctxt "admin"
|
3483 |
msgid "Dismiss this notice."
|
3484 |
msgstr "Diese Nachricht ignorieren."
|
3485 |
|
3486 |
+
#: includes/admin/class-admin.php:953 includes/admin/class-admin.php:963
|
3487 |
#, fuzzy
|
3488 |
msgctxt "admin"
|
3489 |
msgid "The listing has been updated."
|
3491 |
msgstr[0] "Der Eintrag wurde aktualisiert"
|
3492 |
msgstr[1] "Die Einträge wurden aktualisiert."
|
3493 |
|
3494 |
+
#: includes/admin/class-admin.php:989
|
3495 |
#, fuzzy
|
3496 |
msgctxt "admin"
|
3497 |
msgid "The plan was successfully assigned."
|
3498 |
msgstr "Der Preis wurde erfolgreich zugewiesen."
|
3499 |
|
3500 |
+
#: includes/admin/class-admin.php:999
|
3501 |
msgctxt "admin"
|
3502 |
msgid "Listing was renewed."
|
3503 |
msgid_plural "Listings were renewed."
|
3504 |
msgstr[0] "Eintrag wurde aktualisiert."
|
3505 |
msgstr[1] "Einträge wurden aktualisiert."
|
3506 |
|
3507 |
+
#: includes/admin/class-admin.php:1011
|
3508 |
msgctxt "admin"
|
3509 |
msgid "Renewal email sent."
|
3510 |
msgstr "E-mail erneut senden."
|
3511 |
|
3512 |
+
#: includes/admin/class-admin.php:1024
|
3513 |
#, fuzzy
|
3514 |
msgctxt "admin"
|
3515 |
msgid "Listing report deleted."
|
3517 |
msgstr[0] "Eintrag Enddatum"
|
3518 |
msgstr[1] "Eintrag Enddatum"
|
3519 |
|
3520 |
+
#: includes/admin/class-admin.php:1073
|
3521 |
#, fuzzy
|
3522 |
msgctxt "admin"
|
3523 |
msgid "Access keys sent."
|
3524 |
msgstr "Eintrag Felder / Bilder"
|
3525 |
|
3526 |
+
#: includes/admin/class-admin.php:1075
|
3527 |
msgctxt "admin"
|
3528 |
msgid "The access keys couldn't be sent."
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: includes/admin/class-admin.php:1233
|
3532 |
msgctxt "admin"
|
3533 |
msgid ""
|
3534 |
"<b>Business Directory Plugin</b> requires a page with the "
|
3537 |
"<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
|
3538 |
"<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
|
3539 |
|
3540 |
+
#: includes/admin/class-admin.php:1235
|
3541 |
msgctxt "admin"
|
3542 |
msgid ""
|
3543 |
"You can create this page by yourself or let Business Directory do this for "
|
3546 |
"Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
|
3547 |
"automatisch erstellen lassen."
|
3548 |
|
3549 |
+
#: includes/admin/class-admin.php:1240
|
3550 |
msgctxt "admin"
|
3551 |
msgid "Create required pages for me"
|
3552 |
msgstr "Erstelle benötigte Seiten für mich"
|
3553 |
|
3554 |
+
#: includes/admin/class-admin.php:1293
|
3555 |
msgctxt "admin"
|
3556 |
msgid ""
|
3557 |
"<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
|
3611 |
msgid "Create these required fields for me"
|
3612 |
msgstr "Erstelle diese benötigten Felder für mich"
|
3613 |
|
3614 |
+
#: includes/admin/class-admin.php:327
|
3615 |
#, fuzzy
|
3616 |
msgctxt "admin menu"
|
3617 |
msgid "Payment History"
|
3618 |
msgstr "Bezahlhistorie"
|
3619 |
|
3620 |
+
#: includes/admin/class-admin.php:330
|
3621 |
#, fuzzy
|
3622 |
msgctxt "admin menu"
|
3623 |
msgid "Import & Export"
|
3624 |
msgstr "CSV Import"
|
3625 |
|
3626 |
+
#: includes/admin/class-admin.php:333
|
3627 |
msgctxt "admin menu"
|
3628 |
msgid "Debug"
|
3629 |
msgstr "Fehlerkorrektur"
|
3650 |
msgid "Yes, I'm sure"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: includes/admin/controllers/class-admin-fees.php:46
|
3654 |
+
msgctxt "fees order"
|
3655 |
+
msgid "Label"
|
3656 |
+
msgstr "Bezeichnung"
|
3657 |
|
3658 |
+
#: includes/admin/controllers/class-admin-fees.php:48
|
3659 |
+
msgctxt "fees order"
|
3660 |
+
msgid "Duration"
|
3661 |
+
msgstr "Zeitraum"
|
3662 |
|
3663 |
+
#: includes/admin/controllers/class-admin-fees.php:50
|
3664 |
+
msgctxt "fees order"
|
3665 |
+
msgid "Custom Order"
|
3666 |
+
msgstr "Benutzerdefinierte Reihenfolge"
|
3667 |
|
3668 |
+
#: includes/admin/controllers/class-admin-fees.php:282
|
3669 |
+
#, fuzzy
|
3670 |
+
msgctxt "fees admin"
|
3671 |
+
msgid "Plan \"%s\" deleted."
|
3672 |
+
msgstr "Preis gelöscht."
|
|
|
|
|
|
|
3673 |
|
3674 |
+
#: includes/admin/controllers/class-admin-fees.php:294
|
3675 |
+
#, fuzzy
|
3676 |
+
msgctxt "fees admin"
|
3677 |
+
msgid "Plan enabled."
|
3678 |
+
msgstr "Preis gelöscht."
|
|
|
3679 |
|
3680 |
+
#: includes/admin/controllers/class-admin-fees.php:294
|
3681 |
+
#, fuzzy
|
3682 |
+
msgctxt "fees admin"
|
3683 |
+
msgid "Plan disabled."
|
3684 |
+
msgstr "Preis gelöscht."
|
|
|
|
|
|
|
3685 |
|
3686 |
+
#: includes/admin/helpers/tables/class-fees-table.php:20
|
3687 |
+
msgctxt "fees admin"
|
3688 |
+
msgid "fee"
|
3689 |
+
msgstr "Preis"
|
3690 |
|
3691 |
+
#: includes/admin/helpers/tables/class-fees-table.php:21
|
3692 |
+
msgctxt "fees admin"
|
3693 |
+
msgid "fees"
|
3694 |
+
msgstr "Preise"
|
3695 |
|
3696 |
+
#: includes/admin/helpers/tables/class-fees-table.php:66
|
3697 |
+
#, fuzzy
|
3698 |
+
msgctxt "fees admin"
|
3699 |
+
msgid "Attributes"
|
3700 |
+
msgstr "Feld Attribute"
|
3701 |
|
3702 |
+
#: includes/admin/helpers/tables/class-fees-table.php:140
|
3703 |
+
msgctxt "fees admin"
|
3704 |
+
msgid "Edit"
|
3705 |
+
msgstr "Bearbeiten"
|
3706 |
|
3707 |
+
#: includes/admin/helpers/tables/class-fees-table.php:213
|
3708 |
+
#, fuzzy
|
3709 |
+
msgctxt "fees admin"
|
3710 |
+
msgid "Variable"
|
3711 |
+
msgstr "Deaktivieren"
|
3712 |
|
3713 |
+
#: includes/admin/helpers/tables/class-fees-table.php:218
|
3714 |
+
#, fuzzy
|
3715 |
+
msgctxt "fees admin"
|
3716 |
+
msgid "%1$s + %2$s per category"
|
3717 |
+
msgstr "Preis \"%s\" für Kategorie \"%s\""
|
3718 |
|
3719 |
+
#: includes/admin/helpers/tables/class-fees-table.php:237
|
3720 |
+
msgctxt "fees admin"
|
3721 |
+
msgid "Forever"
|
3722 |
+
msgstr "Für immer"
|
|
|
|
|
3723 |
|
3724 |
+
#: includes/admin/helpers/tables/class-fees-table.php:239
|
3725 |
+
msgctxt "fees admin"
|
3726 |
+
msgid "%d day"
|
3727 |
+
msgid_plural "%d days"
|
3728 |
+
msgstr[0] "%d Tag"
|
3729 |
+
msgstr[1] "%d Tage"
|
|
|
|
|
|
|
|
|
3730 |
|
3731 |
+
#: includes/admin/helpers/tables/class-fees-table.php:270
|
3732 |
+
msgctxt "fees admin"
|
3733 |
+
msgid "All categories"
|
3734 |
+
msgstr "Alle Kategorien"
|
|
|
3735 |
|
3736 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3737 |
+
msgctxt "fees admin"
|
3738 |
+
msgid "Sticky"
|
3739 |
+
msgstr ""
|
3740 |
|
3741 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3742 |
+
#, fuzzy
|
3743 |
+
msgctxt "fees admin"
|
3744 |
+
msgid "Recurring"
|
3745 |
+
msgstr "(wiederkehrend)"
|
3746 |
|
3747 |
+
#: includes/admin/helpers/tables/class-fees-table.php:307
|
3748 |
#, fuzzy
|
3749 |
+
msgctxt "fees admin"
|
3750 |
+
msgid "Private"
|
3751 |
+
msgstr "Aktiviere Lizenz"
|
3752 |
|
3753 |
+
#: includes/admin/helpers/tables/class-payments-table.php:55
|
3754 |
+
#, fuzzy
|
3755 |
+
msgctxt "fees admin"
|
3756 |
+
msgid "Date"
|
3757 |
+
msgstr "Datum"
|
3758 |
|
3759 |
+
#: includes/admin/helpers/tables/class-payments-table.php:56
|
3760 |
+
#, fuzzy
|
3761 |
+
msgctxt "fees admin"
|
3762 |
+
msgid "Payment History"
|
3763 |
+
msgstr "Bezahlhistorie"
|
3764 |
|
3765 |
+
#: includes/admin/helpers/tables/class-payments-table.php:58
|
3766 |
+
msgctxt "fees admin"
|
3767 |
+
msgid "Status"
|
3768 |
+
msgstr "Status"
|
3769 |
|
3770 |
+
#: templates/admin/fees-form.tpl.php:138
|
3771 |
+
msgctxt "fees admin"
|
3772 |
+
msgid "Plan Category Policy:"
|
3773 |
msgstr ""
|
|
|
|
|
3774 |
|
3775 |
+
#: templates/admin/fees-form.tpl.php:143
|
3776 |
+
#, fuzzy
|
3777 |
+
msgctxt "fees admin"
|
3778 |
+
msgid "Plan applies to all categories"
|
3779 |
+
msgstr "Erneuere alle Einträge in abgelaufenen Kategorien"
|
3780 |
|
3781 |
+
#: templates/admin/fees-form.tpl.php:144
|
3782 |
+
msgctxt "fees admin"
|
3783 |
+
msgid "Plan applies to only certain categories"
|
3784 |
+
msgstr ""
|
3785 |
|
3786 |
+
#: templates/admin/fees-form.tpl.php:148
|
3787 |
+
#, fuzzy
|
3788 |
+
msgctxt "fees admin"
|
3789 |
+
msgid "Limit plan to the following categories:"
|
3790 |
+
msgstr "Du kannst folgende Platzhalter verwenden:"
|
3791 |
|
3792 |
+
#: templates/admin/fees-form.tpl.php:172
|
3793 |
+
msgctxt "fees admin"
|
3794 |
+
msgid "Click to add categories to the selection."
|
3795 |
+
msgstr ""
|
3796 |
|
3797 |
+
#: templates/admin/fees-form.tpl.php:186
|
3798 |
+
#, fuzzy
|
3799 |
+
msgctxt "fees admin"
|
3800 |
+
msgid "Pricing"
|
3801 |
+
msgstr "Preis"
|
3802 |
|
3803 |
+
#: templates/admin/fees-form.tpl.php:194
|
3804 |
+
msgctxt "fees admin"
|
3805 |
+
msgid "Pricing model"
|
3806 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3807 |
|
3808 |
+
#: templates/admin/fees-form.tpl.php:198
|
3809 |
+
msgctxt "fees admin"
|
3810 |
+
msgid "Flat price"
|
3811 |
+
msgstr ""
|
3812 |
|
3813 |
+
#: templates/admin/fees-form.tpl.php:199
|
3814 |
+
#, fuzzy
|
3815 |
+
msgctxt "fees admin"
|
3816 |
+
msgid "Different price for different categories"
|
3817 |
+
msgstr "Sortierung für Kategorien"
|
3818 |
|
3819 |
+
#: templates/admin/fees-form.tpl.php:200
|
3820 |
+
msgctxt "fees admin"
|
3821 |
+
msgid "Base price plus an extra amount per category"
|
3822 |
+
msgstr ""
|
3823 |
|
3824 |
+
#: templates/admin/fees-form.tpl.php:206
|
3825 |
+
#, fuzzy
|
3826 |
+
msgctxt "fees admin"
|
3827 |
+
msgid "Plan Price"
|
3828 |
+
msgstr "Preis"
|
3829 |
|
3830 |
+
#: templates/admin/fees-form.tpl.php:214
|
3831 |
+
#, fuzzy
|
3832 |
+
msgctxt "fees admin"
|
3833 |
+
msgid "Prices per category"
|
3834 |
+
msgstr "Kategorie entfernen"
|
3835 |
|
3836 |
+
#: templates/admin/fees-form.tpl.php:220
|
3837 |
+
#, fuzzy
|
3838 |
+
msgctxt "fees admin"
|
3839 |
+
msgid "Price"
|
3840 |
+
msgstr "Preis"
|
3841 |
|
3842 |
+
#: templates/admin/fees-form.tpl.php:234
|
3843 |
+
msgctxt "fees admin"
|
3844 |
+
msgid "Extra amount (per category)"
|
3845 |
msgstr ""
|
|
|
3846 |
|
3847 |
+
#: includes/admin/controllers/class-admin-listings.php:62
|
3848 |
+
msgctxt "admin category filter"
|
3849 |
+
msgid "All categories"
|
3850 |
+
msgstr "Alle Kategorien"
|
|
|
3851 |
|
3852 |
+
#: includes/admin/controllers/class-admin-listings.php:177
|
3853 |
+
#, fuzzy
|
3854 |
+
msgctxt "admin listings"
|
3855 |
+
msgid ""
|
3856 |
+
"This listing doesn't have a plan assigned. This is required in order to "
|
3857 |
+
"determine the features available to this listing, as well as handling "
|
3858 |
+
"renewals."
|
3859 |
+
msgstr ""
|
3860 |
+
"Diese Auflistung wurde keiner Kategorie zugewiesen. Mindestens eine "
|
3861 |
+
"Kategorie (und die jeweilige Gebühr) ist erforderlich, um die für diese "
|
3862 |
+
"Auflistung zur Verfügung stehenden Funktionen sowie die Erneuerung zu "
|
3863 |
+
"ermitteln."
|
3864 |
|
3865 |
+
#: includes/admin/controllers/class-admin-listings.php:313
|
3866 |
+
#, fuzzy
|
3867 |
+
msgctxt "admin listings"
|
3868 |
+
msgid "Never"
|
3869 |
+
msgstr "niemals"
|
3870 |
|
3871 |
+
#: includes/admin/controllers/class-admin-listings.php:343
|
3872 |
+
#, fuzzy
|
3873 |
+
msgctxt "admin listings"
|
3874 |
+
msgid "Recurring"
|
3875 |
+
msgstr "(wiederkehrend)"
|
3876 |
|
3877 |
+
#: includes/admin/controllers/class-admin-listings.php:347
|
3878 |
#, fuzzy
|
3879 |
+
msgctxt "admin listings"
|
3880 |
+
msgid "Free"
|
3881 |
+
msgstr "Kostenlos"
|
3882 |
|
3883 |
+
#: includes/admin/controllers/class-admin-listings.php:351
|
3884 |
+
#, fuzzy
|
3885 |
+
msgctxt "admin listings"
|
3886 |
+
msgid "Payment Not Found"
|
3887 |
+
msgstr "Preisinformation"
|
3888 |
|
3889 |
+
#: includes/admin/controllers/class-admin-listings.php:355
|
3890 |
+
#, fuzzy
|
3891 |
+
msgctxt "admin listings"
|
3892 |
+
msgid "Payment %s"
|
3893 |
+
msgstr "Bezahlung #%d"
|
3894 |
|
3895 |
+
#: includes/admin/controllers/class-admin-listings.php:364
|
3896 |
+
msgctxt "admin listings"
|
3897 |
+
msgid "Reported"
|
3898 |
+
msgstr ""
|
3899 |
|
3900 |
+
#: includes/admin/controllers/class-admin-listings.php:702
|
3901 |
+
msgctxt "admin listings"
|
3902 |
+
msgid "Listing's payment history successfully deleted"
|
3903 |
+
msgstr ""
|
3904 |
|
3905 |
+
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:29
|
3906 |
+
msgctxt "admin listings"
|
3907 |
+
msgid "Selected Option: "
|
|
|
|
|
3908 |
msgstr ""
|
|
|
|
|
3909 |
|
3910 |
+
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:33
|
3911 |
+
#, fuzzy
|
3912 |
+
msgctxt "admin listings"
|
3913 |
+
msgid "Aditional Info: "
|
3914 |
+
msgstr "Zusätzliche Informationen"
|
3915 |
|
3916 |
+
#: templates/admin/metaboxes-listing-flagging.tpl.php:8
|
3917 |
+
#, fuzzy
|
3918 |
+
msgctxt "admin listings"
|
3919 |
+
msgid "This listing has not been reported."
|
3920 |
+
msgstr "Der Eintrag wurde aktualisiert"
|
3921 |
|
3922 |
+
#: templates/admin/metaboxes-listing-flagging.tpl.php:30
|
3923 |
#, fuzzy
|
3924 |
+
msgctxt "admin listings"
|
3925 |
+
msgid "Clear listing reports."
|
3926 |
+
msgstr "Ein Eintrag läuft aus."
|
3927 |
+
|
3928 |
+
#: includes/admin/controllers/class-admin-listings.php:324
|
3929 |
+
#, fuzzy
|
3930 |
+
msgctxt "listing attribute"
|
3931 |
+
msgid "No Plan"
|
3932 |
+
msgstr "Bezahlt"
|
3933 |
+
|
3934 |
+
#: includes/admin/controllers/class-admin-listings.php:425
|
3935 |
+
msgctxt "listing status"
|
3936 |
+
msgid "Reported"
|
3937 |
msgstr ""
|
|
|
|
|
3938 |
|
3939 |
+
#: includes/models/class-listing.php:970
|
3940 |
+
msgctxt "listing status"
|
3941 |
+
msgid "Unknown"
|
|
|
3942 |
msgstr ""
|
|
|
|
|
3943 |
|
3944 |
+
#: includes/models/class-listing.php:971
|
3945 |
+
msgctxt "listing status"
|
3946 |
+
msgid "Legacy"
|
|
|
|
|
3947 |
msgstr ""
|
|
|
|
|
3948 |
|
3949 |
+
#: includes/models/class-listing.php:972
|
3950 |
#, fuzzy
|
3951 |
+
msgctxt "listing status"
|
3952 |
+
msgid "Incomplete"
|
3953 |
+
msgstr "Abgeschlossen"
|
3954 |
|
3955 |
+
#: includes/models/class-listing.php:973
|
3956 |
#, fuzzy
|
3957 |
+
msgctxt "listing status"
|
3958 |
+
msgid "Pending Payment"
|
3959 |
+
msgstr "Ausstehende Zahlungen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3960 |
|
3961 |
+
#: includes/models/class-listing.php:974
|
3962 |
#, fuzzy
|
3963 |
+
msgctxt "listing status"
|
3964 |
+
msgid "Complete"
|
3965 |
+
msgstr "Abgeschlossen"
|
3966 |
|
3967 |
+
#: includes/models/class-listing.php:975
|
3968 |
#, fuzzy
|
3969 |
+
msgctxt "listing status"
|
3970 |
+
msgid "Pending Upgrade"
|
3971 |
+
msgstr "Ausstehende Aktualisierung"
|
3972 |
|
3973 |
+
#: includes/models/class-listing.php:976
|
3974 |
#, fuzzy
|
3975 |
+
msgctxt "listing status"
|
3976 |
+
msgid "Expired"
|
3977 |
+
msgstr "Abgelaufen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3978 |
|
3979 |
+
#: includes/models/class-listing.php:977
|
3980 |
#, fuzzy
|
3981 |
+
msgctxt "listing status"
|
3982 |
+
msgid "Pending Renewal"
|
3983 |
+
msgstr "Aktiv + Ausstehende Erneuerungen"
|
|
|
|
|
|
|
|
|
|
|
3984 |
|
3985 |
+
#: includes/models/class-listing.php:978
|
3986 |
#, fuzzy
|
3987 |
+
msgctxt "listing status"
|
3988 |
+
msgid "Abandoned"
|
3989 |
+
msgstr "Abgebrochen"
|
3990 |
|
3991 |
+
#: includes/admin/controllers/class-admin-listings.php:493
|
3992 |
#, fuzzy
|
3993 |
+
msgctxt "admin actions"
|
3994 |
+
msgid "View Payments"
|
3995 |
+
msgstr "Bezahlung"
|
3996 |
|
3997 |
+
#: includes/admin/controllers/class-admin-listings.php:498
|
3998 |
+
#, fuzzy
|
3999 |
+
msgctxt "admin actions"
|
4000 |
+
msgid "View Payment"
|
4001 |
+
msgstr "Bezahlung"
|
4002 |
|
4003 |
+
#: includes/admin/controllers/class-admin-listings.php:635
|
4004 |
+
#, fuzzy
|
4005 |
+
msgctxt "admin actions"
|
4006 |
+
msgid "Publish listings"
|
4007 |
+
msgstr "Eintrag veröffentlichen"
|
|
|
4008 |
|
4009 |
+
#: includes/admin/controllers/class-admin-listings.php:636
|
4010 |
+
#, fuzzy
|
4011 |
+
msgctxt "admin actions"
|
4012 |
+
msgid "Mark as \"Pending Review\""
|
4013 |
+
msgstr "Ausstehend"
|
4014 |
|
4015 |
+
#: includes/admin/controllers/class-admin-listings.php:637
|
4016 |
+
msgctxt "admin actions"
|
4017 |
+
msgid "Hide from directory (mark as \"Draft\")"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: includes/admin/controllers/class-admin-listings.php:639
|
4021 |
#, fuzzy
|
4022 |
+
msgctxt "admin actions"
|
4023 |
+
msgid "Renew listings"
|
4024 |
+
msgstr "Eintrag erneuern"
|
4025 |
|
4026 |
+
#: includes/admin/controllers/class-admin-listings.php:640
|
4027 |
#, fuzzy
|
4028 |
+
msgctxt "admin actions"
|
4029 |
+
msgid "Set listings as \"Expired\""
|
4030 |
+
msgstr "Ein Eintrag läuft aus."
|
4031 |
|
4032 |
+
#: includes/admin/controllers/class-admin-listings.php:647
|
4033 |
#, fuzzy
|
4034 |
+
msgctxt "admin actions"
|
4035 |
+
msgid "Send access keys"
|
4036 |
+
msgstr "Eintrag Felder / Bilder"
|
4037 |
|
4038 |
+
#: includes/admin/controllers/class-admin-payments.php:18
|
4039 |
#, fuzzy
|
4040 |
+
msgctxt "payments admin"
|
4041 |
+
msgid "Payment deleted."
|
4042 |
+
msgstr "Bezahlmethode"
|
|
|
|
|
|
|
|
|
|
|
4043 |
|
4044 |
+
#: includes/admin/controllers/class-admin-payments.php:36
|
4045 |
+
msgctxt "payments admin"
|
4046 |
+
msgid ""
|
4047 |
+
"You're seeing payments related to listing: \"%1$s\" (ID #%2$d). <a>Click "
|
4048 |
+
"here</a> to see all payments."
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: includes/admin/controllers/class-admin-payments.php:55
|
4052 |
#, fuzzy
|
4053 |
+
msgctxt "payments admin"
|
4054 |
+
msgid "Payment details updated."
|
4055 |
+
msgstr "Bezahldetails"
|
4056 |
|
4057 |
+
#: includes/admin/helpers/tables/class-payments-table.php:12
|
4058 |
+
#, fuzzy
|
4059 |
+
msgctxt "payments admin"
|
4060 |
+
msgid "payment"
|
4061 |
+
msgstr "Bezahlung"
|
4062 |
|
4063 |
+
#: includes/admin/helpers/tables/class-payments-table.php:13
|
4064 |
#, fuzzy
|
4065 |
+
msgctxt "payments admin"
|
4066 |
+
msgid "payments"
|
4067 |
+
msgstr "Bezahlung"
|
4068 |
|
4069 |
+
#: includes/admin/helpers/tables/class-payments-table.php:19
|
4070 |
+
msgctxt "payments admin"
|
4071 |
+
msgid "No payments found."
|
4072 |
+
msgstr "Keine Zahlungen gefunden."
|
4073 |
|
4074 |
+
#: includes/admin/helpers/tables/class-payments-table.php:32
|
4075 |
#, fuzzy
|
4076 |
+
msgctxt "payments admin"
|
4077 |
+
msgid "All"
|
4078 |
+
msgstr "Alle"
|
4079 |
|
4080 |
+
#: includes/admin/helpers/tables/class-payments-table.php:124
|
4081 |
+
#, fuzzy
|
4082 |
+
msgctxt "payments admin"
|
4083 |
+
msgid "View Payment History"
|
4084 |
+
msgstr "Bezahlhistorie"
|
4085 |
|
4086 |
+
#: includes/admin/controllers/class-form-fields-admin.php:185
|
4087 |
+
msgctxt "form-fields admin"
|
4088 |
+
msgid "Form fields updated."
|
4089 |
+
msgstr "Formularfelder aktualisiert."
|
4090 |
+
|
4091 |
+
#: includes/admin/controllers/class-form-fields-admin.php:208
|
4092 |
+
msgctxt "form-fields admin"
|
4093 |
+
msgid ""
|
4094 |
+
"<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
|
4095 |
+
"\" setting is disabled, display settings below will not be honored and this "
|
4096 |
+
"field will not be displayed on the frontend. If you want e-mail addresses to "
|
4097 |
+
"show on the frontend, you can <a>enable public display of e-mails</a>."
|
4098 |
msgstr ""
|
4099 |
+
"<b>Wichtig</b>: Da das Feld \"<a>E-Mail-Adresse öffentlich anzeigen?</a>\" "
|
4100 |
+
"deaktiviert ist, werden die Anzeigeeinstellungen unten nicht berücksichtigt "
|
4101 |
+
"und dieses Feld wird nicht im Frontend angezeigt. Wenn Sie möchten, dass E-"
|
4102 |
+
"Mail-Adressen auf der Webseite angezeigt werden, können Sie die "
|
4103 |
+
"<a>öffentliche Anzeige von E-Mails</a> aktivieren."
|
4104 |
|
4105 |
+
#: includes/admin/controllers/class-form-fields-admin.php:299
|
4106 |
+
msgctxt "form-fields admin"
|
4107 |
+
msgid "Field deleted."
|
4108 |
+
msgstr "Feld gelöscht."
|
|
|
4109 |
|
4110 |
+
#: includes/admin/controllers/class-form-fields-admin.php:329
|
4111 |
+
msgctxt "form-fields admin"
|
4112 |
+
msgid "Required fields created successfully."
|
4113 |
+
msgstr "Benötigtes Feld wurde erfolgreich erstellt."
|
4114 |
|
4115 |
+
#: includes/admin/controllers/class-form-fields-admin.php:381
|
4116 |
+
msgctxt "form-fields admin"
|
4117 |
+
msgid "Tags updated."
|
4118 |
+
msgstr "Einstellungen aktualisiert."
|
|
|
4119 |
|
4120 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:20
|
4121 |
+
msgctxt "form-fields admin"
|
4122 |
+
msgid "form field"
|
4123 |
+
msgstr "Formularfeld"
|
|
|
4124 |
|
4125 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:21
|
4126 |
+
msgctxt "form-fields admin"
|
4127 |
+
msgid "form fields"
|
4128 |
+
msgstr "Formularfelder"
|
|
|
4129 |
|
4130 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:29
|
4131 |
+
msgctxt "form-fields admin"
|
4132 |
+
msgid "Order"
|
4133 |
+
msgstr "Auftrag"
|
4134 |
|
4135 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:30
|
4136 |
+
msgctxt "form-fields admin"
|
4137 |
+
msgid "Label / Association"
|
4138 |
+
msgstr "Bezeichnung / Verbindung"
|
4139 |
|
4140 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:32
|
4141 |
+
msgctxt "form-fields admin"
|
4142 |
+
msgid "Validator"
|
4143 |
+
msgstr "Validator"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4144 |
|
4145 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:33
|
4146 |
+
msgctxt "form-fields admin"
|
4147 |
+
msgid "Field Attributes"
|
4148 |
+
msgstr "Feld Attribute"
|
|
|
4149 |
|
4150 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:135
|
4151 |
#, fuzzy
|
4152 |
+
msgctxt "form-fields admin"
|
4153 |
+
msgid "Shortname"
|
4154 |
+
msgstr "Authorname"
|
4155 |
|
4156 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:158
|
4157 |
#, fuzzy
|
4158 |
+
msgctxt "form-fields admin"
|
4159 |
+
msgid "Private"
|
4160 |
+
msgstr "Aktiviere Lizenz"
|
4161 |
|
4162 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:165
|
4163 |
+
msgctxt "form-fields admin"
|
4164 |
+
msgid "This field value is shown in the excerpt view of a listing."
|
4165 |
+
msgstr "Der Inhalt wird in der Vorschau des Eintrags angezeigt."
|
|
|
4166 |
|
4167 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:166
|
4168 |
+
msgctxt "form-fields admin"
|
4169 |
+
msgid "In Excerpt"
|
4170 |
+
msgstr "Im Textauszug"
|
4171 |
+
|
4172 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:173
|
4173 |
+
msgctxt "form-fields admin"
|
4174 |
+
msgid "This field value is shown in the single view of a listing."
|
4175 |
+
msgstr "Dieser Feldwert wird in der Einzelansicht eines Eintrags angezeigt."
|
4176 |
+
|
4177 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:174
|
4178 |
+
msgctxt "form-fields admin"
|
4179 |
+
msgid "In Listing"
|
4180 |
+
msgstr "Im Eintrag"
|
4181 |
+
|
4182 |
+
#: includes/fields/class-fieldtypes-checkbox.php:92
|
4183 |
#, fuzzy
|
4184 |
+
msgctxt "form-fields admin"
|
4185 |
+
msgid "Select All"
|
4186 |
+
msgstr "Liste auswählen"
|
4187 |
|
4188 |
+
#: includes/fields/class-fieldtypes-checkbox.php:110
|
4189 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:90
|
4190 |
+
msgctxt "form-fields admin"
|
4191 |
+
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4192 |
msgstr ""
|
4193 |
+
"Feldoptionen (für ausgewählte Listen, Radiobutton und Kontrollkästchen)"
|
4194 |
|
4195 |
+
#: includes/fields/class-fieldtypes-checkbox.php:122
|
4196 |
+
msgctxt "form-fields admin"
|
4197 |
+
msgid "Include \"Select all\"?"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: includes/fields/class-fieldtypes-checkbox.php:126
|
4201 |
+
msgctxt "form-fields admin"
|
4202 |
+
msgid "Display \"Select all\" option among options above."
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: includes/fields/class-fieldtypes-checkbox.php:142
|
4206 |
+
#: includes/fields/class-fieldtypes-radiobutton.php:117
|
4207 |
+
msgctxt "form-fields admin"
|
4208 |
+
msgid "Field list of options is required."
|
4209 |
+
msgstr "Feldliste von Optionen wird benötigt."
|
4210 |
|
4211 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
4212 |
#, fuzzy
|
4213 |
+
msgctxt "form-fields admin"
|
4214 |
+
msgid "Field Caption required?"
|
4215 |
+
msgstr "Feldbezeichnung ist Pflichtfeld."
|
4216 |
|
4217 |
+
#: includes/fields/class-fieldtypes-textarea.php:193
|
4218 |
+
msgctxt "form-fields admin"
|
4219 |
+
msgid "Allow HTML input for this field?"
|
4220 |
+
msgstr "Erlaube HTML Eingaben für dieses Feld?"
|
|
|
4221 |
|
4222 |
+
#: includes/fields/class-fieldtypes-textarea.php:196
|
4223 |
+
msgctxt "form-fields admin"
|
4224 |
+
msgid "Allow IFRAME tags in content?"
|
4225 |
+
msgstr "Erlaube IFRAME-Tags im Inhalt?"
|
|
|
4226 |
|
4227 |
+
#: includes/fields/class-fieldtypes-textarea.php:206
|
4228 |
+
msgctxt "form-fields admin"
|
4229 |
+
msgid "Allow WordPress shortcodes in this field?"
|
4230 |
+
msgstr "Erlaube Wordpress Shortcodes in diesem Feld?"
|
4231 |
+
|
4232 |
+
#: includes/fields/class-fieldtypes-textarea.php:211
|
4233 |
+
msgctxt "form-fields admin"
|
4234 |
+
msgid "Display a WYSIWYG editor on the frontend?"
|
4235 |
+
msgstr "Zeige einen WYSIWYG-Editor im Frontend an?"
|
4236 |
+
|
4237 |
+
#: includes/fields/class-fieldtypes-textarea.php:218
|
4238 |
+
msgctxt "form-fields admin"
|
4239 |
+
msgid ""
|
4240 |
+
"<b>Advanced users only!</b> Unless you've been told to change this, don't "
|
4241 |
+
"switch it unless you know what you're doing."
|
4242 |
msgstr ""
|
4243 |
+
"<b>Nur für Administratoren!</b> Wenn es dir nicht ausdrücklich gesagt wurde, "
|
4244 |
+
"ändere diese Einstellung nicht bevor du nicht weist was du genau tust."
|
4245 |
|
4246 |
+
#: includes/fields/class-fieldtypes-textarea.php:219
|
4247 |
+
msgctxt "form-fields admin"
|
4248 |
+
msgid "Apply \"the_content\" filter before displaying this field?"
|
4249 |
+
msgstr "\"the_content\" Filter zuweisen bevor das Feld angezeigt wird?"
|
4250 |
+
|
4251 |
+
#: includes/fields/class-fieldtypes-textarea.php:222
|
4252 |
+
msgctxt "form-fields admin"
|
4253 |
+
msgid "Use shortened version of Description field as excerpt"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: includes/fields/class-fieldtypes-textarea.php:223
|
4257 |
+
msgctxt "form-fields admin"
|
4258 |
+
msgid ""
|
4259 |
+
"Enable always (override the Short Description given with a shortened Long "
|
4260 |
+
"Description)"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: includes/fields/class-fieldtypes-textarea.php:224
|
4264 |
+
msgctxt "form-fields admin"
|
4265 |
+
msgid ""
|
4266 |
+
"Enable conditionally (override ONLY when Short Description is empty with a "
|
4267 |
+
"shortened Long Description)"
|
4268 |
+
msgstr ""
|
4269 |
|
4270 |
+
#: includes/fields/class-fieldtypes-textarea.php:225
|
4271 |
+
msgctxt "form-fields admin"
|
4272 |
+
msgid "Disable (use the Short Description all the time, empty or not)"
|
4273 |
+
msgstr ""
|
|
|
4274 |
|
4275 |
+
#: includes/fields/class-fieldtypes-textarea.php:227
|
4276 |
+
msgctxt "form-fields admin"
|
4277 |
+
msgid ""
|
4278 |
+
"Truncates the description field to the value set here. To display all of the "
|
4279 |
+
"description, set to 0."
|
4280 |
+
msgstr ""
|
4281 |
|
4282 |
+
#: includes/fields/class-fieldtypes-textarea.php:228
|
4283 |
+
msgctxt "form-fields admin"
|
4284 |
+
msgid ""
|
4285 |
+
"Number of Characters from Short Description/Excerpt to Display in List View "
|
4286 |
+
"(only)"
|
4287 |
+
msgstr ""
|
4288 |
|
4289 |
+
#: includes/fields/class-fieldtypes-textarea.php:233
|
4290 |
+
msgctxt "form-fields admin"
|
4291 |
+
msgid "Automatically generate excerpt from content field?"
|
4292 |
+
msgstr "Automatisches Generierung eines Auszugs aus dem Inhaltsfeld?"
|
|
|
4293 |
|
4294 |
+
#: includes/fields/class-fieldtypes-twitter.php:83
|
4295 |
#, fuzzy
|
4296 |
+
msgctxt "form-fields admin"
|
4297 |
+
msgid "Show followers count?"
|
4298 |
+
msgstr "Kategoriepost Anzahl anzeigen?"
|
4299 |
|
4300 |
+
#: templates/admin/form-fields-addoredit.tpl.php:29
|
4301 |
+
msgctxt "form-fields admin"
|
4302 |
+
msgid "Field Association"
|
4303 |
+
msgstr "Feldverbindung"
|
|
|
4304 |
|
4305 |
+
#: templates/admin/form-fields-addoredit.tpl.php:29
|
4306 |
+
#: templates/admin/form-fields-addoredit.tpl.php:54
|
4307 |
+
#: templates/admin/form-fields-addoredit.tpl.php:77
|
4308 |
+
msgctxt "form-fields admin"
|
4309 |
+
msgid "required"
|
4310 |
+
msgstr "Pflichtfeld"
|
4311 |
|
4312 |
+
#: templates/admin/form-fields-addoredit.tpl.php:54
|
4313 |
+
msgctxt "form-fields admin"
|
4314 |
+
msgid "Field Type"
|
4315 |
+
msgstr "Feldtyp"
|
|
|
4316 |
|
4317 |
+
#: templates/admin/form-fields-addoredit.tpl.php:77
|
4318 |
+
msgctxt "form-fields admin"
|
4319 |
+
msgid "Field Label"
|
4320 |
+
msgstr "Feldbezeichnung"
|
|
|
4321 |
|
4322 |
+
#: templates/admin/form-fields-addoredit.tpl.php:87
|
4323 |
+
msgctxt "form-fields admin"
|
4324 |
+
msgid "Field description"
|
4325 |
+
msgstr "Feldbeschreibung"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4326 |
|
4327 |
+
#: templates/admin/form-fields-addoredit.tpl.php:87
|
4328 |
msgctxt "form-fields admin"
|
4329 |
+
msgid "optional"
|
4330 |
+
msgstr "Optional"
|
4331 |
|
4332 |
+
#: templates/admin/form-fields-addoredit.tpl.php:104
|
4333 |
msgctxt "form-fields admin"
|
4334 |
+
msgid "Field-specific settings"
|
4335 |
+
msgstr "Feld spezifische Einstellungen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4336 |
|
4337 |
+
#: templates/admin/form-fields-addoredit.tpl.php:113
|
4338 |
msgctxt "form-fields admin"
|
4339 |
+
msgid "Field validation options"
|
4340 |
+
msgstr "Optionen Feldvalidierung"
|
4341 |
|
4342 |
+
#: templates/admin/form-fields-addoredit.tpl.php:117
|
4343 |
msgctxt "form-fields admin"
|
4344 |
+
msgid "Field Validator"
|
4345 |
+
msgstr "Feldvalidator"
|
4346 |
|
4347 |
+
#: templates/admin/form-fields-addoredit.tpl.php:121
|
4348 |
msgctxt "form-fields admin"
|
4349 |
+
msgid "No validation"
|
4350 |
+
msgstr "Keine Validierung"
|
4351 |
|
4352 |
+
#: templates/admin/form-fields-addoredit.tpl.php:143
|
4353 |
msgctxt "form-fields admin"
|
4354 |
+
msgid "Is field required?"
|
4355 |
+
msgstr "Ist das Feld ein Pflichtfeld?"
|
4356 |
|
4357 |
+
#: templates/admin/form-fields-addoredit.tpl.php:149
|
4358 |
msgctxt "form-fields admin"
|
4359 |
+
msgid "This field is required."
|
4360 |
+
msgstr "Dieses Feld ist ein Pflichtfeld."
|
4361 |
|
4362 |
+
#: templates/admin/form-fields-addoredit.tpl.php:157
|
4363 |
msgctxt "form-fields admin"
|
4364 |
+
msgid "Field display options"
|
4365 |
+
msgstr "Feld Anzeigeoptionen"
|
4366 |
|
4367 |
+
#: templates/admin/form-fields-addoredit.tpl.php:161
|
4368 |
msgctxt "form-fields admin"
|
4369 |
+
msgid "Field Category Policy:"
|
4370 |
+
msgstr ""
|
4371 |
|
4372 |
+
#: templates/admin/form-fields-addoredit.tpl.php:166
|
4373 |
+
#, fuzzy
|
4374 |
msgctxt "form-fields admin"
|
4375 |
+
msgid "Field applies to all categories"
|
4376 |
+
msgstr "Erneuere alle Einträge in abgelaufenen Kategorien"
|
4377 |
|
4378 |
+
#: templates/admin/form-fields-addoredit.tpl.php:167
|
4379 |
+
#, fuzzy
|
4380 |
msgctxt "form-fields admin"
|
4381 |
+
msgid "Field applies to only certain categories"
|
4382 |
+
msgstr "Erneuere alle Einträge in abgelaufenen Kategorien"
|
4383 |
|
4384 |
+
#: templates/admin/form-fields-addoredit.tpl.php:171
|
4385 |
#, fuzzy
|
4386 |
msgctxt "form-fields admin"
|
4387 |
+
msgid "Limit field to the following categories:"
|
4388 |
+
msgstr "Du kannst folgende Platzhalter verwenden:"
|
4389 |
|
4390 |
+
#: templates/admin/form-fields-addoredit.tpl.php:195
|
4391 |
msgctxt "form-fields admin"
|
4392 |
+
msgid "Click to add categories to the selection."
|
4393 |
+
msgstr ""
|
4394 |
|
4395 |
+
#: templates/admin/form-fields-addoredit.tpl.php:208
|
4396 |
msgctxt "form-fields admin"
|
4397 |
+
msgid "Show this field to admin users only?"
|
4398 |
+
msgstr ""
|
4399 |
|
4400 |
+
#: templates/admin/form-fields-addoredit.tpl.php:214
|
4401 |
#, fuzzy
|
4402 |
msgctxt "form-fields admin"
|
4403 |
+
msgid "Display this field to admin users only in the edit listing view."
|
4404 |
+
msgstr "Diesen Wert in der Detailansicht anzeigen."
|
4405 |
|
4406 |
+
#: templates/admin/form-fields-addoredit.tpl.php:220
|
4407 |
msgctxt "form-fields admin"
|
4408 |
+
msgid "Show this value in excerpt view?"
|
4409 |
+
msgstr "In der Vorschau anzeigen?"
|
4410 |
|
4411 |
+
#: templates/admin/form-fields-addoredit.tpl.php:226
|
4412 |
msgctxt "form-fields admin"
|
4413 |
+
msgid "Display this value in post excerpt view."
|
4414 |
+
msgstr "Der Wert wird in der Vorschau des Eintrags angezeigt (Exzerpt)."
|
4415 |
|
4416 |
+
#: templates/admin/form-fields-addoredit.tpl.php:232
|
4417 |
msgctxt "form-fields admin"
|
4418 |
+
msgid "Show this value in listing view?"
|
4419 |
+
msgstr "In Detailansicht anzeigen?"
|
4420 |
|
4421 |
+
#: templates/admin/form-fields-addoredit.tpl.php:238
|
4422 |
msgctxt "form-fields admin"
|
4423 |
+
msgid "Display this value in the listing view."
|
4424 |
+
msgstr "Diesen Wert in der Detailansicht anzeigen."
|
4425 |
|
4426 |
+
#: templates/admin/form-fields-addoredit.tpl.php:244
|
|
|
4427 |
msgctxt "form-fields admin"
|
4428 |
+
msgid "Include this field in the search form?"
|
4429 |
+
msgstr "In Suchform integrieren?"
|
4430 |
|
4431 |
+
#: templates/admin/form-fields-addoredit.tpl.php:250
|
|
|
4432 |
msgctxt "form-fields admin"
|
4433 |
+
msgid "Include this field in the search form."
|
4434 |
+
msgstr "Zeige das Feld im Suchformular."
|
|
|
4435 |
|
4436 |
+
#: templates/admin/form-fields-addoredit.tpl.php:256
|
4437 |
+
#, fuzzy
|
4438 |
msgctxt "form-fields admin"
|
4439 |
+
msgid "Is this field required for searching?"
|
4440 |
+
msgstr "Ist das Feld ein Pflichtfeld?"
|
4441 |
|
4442 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
4443 |
msgctxt "form-fields admin"
|
4444 |
+
msgid "Hide this field's label?"
|
4445 |
+
msgstr "Feldbezeichnung verbergen?"
|
4446 |
|
4447 |
+
#: templates/admin/form-fields-addoredit.tpl.php:280
|
|
|
4448 |
msgctxt "form-fields admin"
|
4449 |
+
msgid "Hide this field's label when displaying it."
|
4450 |
+
msgstr ""
|
4451 |
+
"Die Feldbezeichnung wird dann nicht mehr angezeigt (nur der Inhalt an sich)."
|
4452 |
|
4453 |
+
#: templates/admin/form-fields-addoredit.tpl.php:288
|
4454 |
#, fuzzy
|
4455 |
msgctxt "form-fields admin"
|
4456 |
+
msgid "Field privacy options"
|
4457 |
+
msgstr "Feld Anzeigeoptionen"
|
4458 |
|
4459 |
+
#: templates/admin/form-fields-addoredit.tpl.php:292
|
4460 |
msgctxt "form-fields admin"
|
4461 |
+
msgid "This field contains sensitive or private information?"
|
4462 |
+
msgstr ""
|
4463 |
|
4464 |
+
#: templates/admin/form-fields-addoredit.tpl.php:300
|
4465 |
msgctxt "form-fields admin"
|
4466 |
+
msgid "Add this field when exporting or deleting user's personal data."
|
4467 |
+
msgstr ""
|
4468 |
|
4469 |
+
#: templates/admin/form-fields-addoredit.tpl.php:309
|
4470 |
msgctxt "form-fields admin"
|
4471 |
+
msgid "Update Field"
|
4472 |
+
msgstr "Feld aktualisieren"
|
4473 |
|
4474 |
+
#: templates/admin/form-fields-addoredit.tpl.php:311
|
4475 |
msgctxt "form-fields admin"
|
4476 |
+
msgid "Add Field"
|
4477 |
+
msgstr "Feld erstellen"
|
4478 |
|
4479 |
+
#: templates/admin/form-fields-tags.tpl.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4480 |
msgctxt "form-fields admin"
|
4481 |
msgid "-- None --"
|
4482 |
msgstr "-- Auswählen --"
|
4501 |
msgid "Create Missing Fields"
|
4502 |
msgstr "Eintrag Felder"
|
4503 |
|
4504 |
+
#: includes/admin/controllers/class-settings-admin.php:516
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4505 |
#, fuzzy
|
4506 |
msgctxt "admin settings"
|
4507 |
msgid "Remove"
|
4508 |
msgstr "Entfernen"
|
4509 |
|
4510 |
+
#: includes/admin/controllers/class-settings-admin.php:570
|
4511 |
msgctxt "admin settings"
|
4512 |
msgid "Valid placeholders: %s"
|
4513 |
msgstr "Gültige Platzhalter: %s"
|
4514 |
|
4515 |
+
#: includes/admin/settings/class-settings-bootstrap.php:114
|
4516 |
msgctxt "admin settings"
|
4517 |
msgid ""
|
4518 |
"IMPORTANT: subpages of the main directory page cannot be accesed while this "
|
4519 |
"setting is checked."
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: includes/admin/settings/class-settings-bootstrap.php:331
|
4523 |
msgctxt "admin settings"
|
4524 |
msgid "Above results"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: includes/admin/settings/class-settings-bootstrap.php:332
|
4528 |
msgctxt "admin settings"
|
4529 |
msgid "Below results"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
+
#: includes/admin/settings/class-settings-bootstrap.php:333
|
4533 |
msgctxt "admin settings"
|
4534 |
msgid "Don't show with results"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: includes/admin/settings/class-settings-bootstrap.php:414
|
4538 |
msgctxt "admin settings"
|
4539 |
msgid ""
|
4540 |
"You have selected a textarea field to be included in quick searches. "
|
4545 |
"Felder hinzugefügt werden, kann sehr langsam sein und lange Zeit in Anspruch "
|
4546 |
"nehmen. "
|
4547 |
|
4548 |
+
#: includes/admin/settings/class-settings-bootstrap.php:574
|
4549 |
msgctxt "admin settings"
|
4550 |
msgid "Do not include comments in listings"
|
4551 |
msgstr "Keine Kommentare bei den Einträgen anzeigen"
|
4552 |
|
4553 |
+
#: includes/admin/settings/class-settings-bootstrap.php:598
|
4554 |
#, fuzzy
|
4555 |
msgctxt "admin settings"
|
4556 |
msgid "Directory view."
|
4557 |
msgstr "Verzeichnis"
|
4558 |
|
4559 |
+
#: includes/admin/settings/class-settings-bootstrap.php:599
|
4560 |
#, fuzzy
|
4561 |
msgctxt "admin settings"
|
4562 |
msgid "All Listings view."
|
4563 |
msgstr "Alle Einträge"
|
4564 |
|
4565 |
+
#: includes/admin/settings/class-settings-bootstrap.php:600
|
4566 |
#, fuzzy
|
4567 |
msgctxt "admin settings"
|
4568 |
msgid "Category view."
|
4569 |
msgstr "Kategorien"
|
4570 |
|
4571 |
+
#: includes/admin/settings/class-settings-bootstrap.php:601
|
4572 |
#, fuzzy
|
4573 |
msgctxt "admin settings"
|
4574 |
msgid "Search view."
|
4575 |
msgstr "Suche"
|
4576 |
|
4577 |
+
#: includes/admin/settings/class-settings-bootstrap.php:732
|
4578 |
msgctxt "admin settings"
|
4579 |
msgid "Slug"
|
4580 |
msgstr "Entwurf"
|
4581 |
|
4582 |
+
#: includes/admin/settings/class-settings-bootstrap.php:745
|
4583 |
+
#: includes/admin/settings/class-settings-bootstrap.php:813
|
4584 |
msgctxt "admin settings"
|
4585 |
msgid "Ascending"
|
4586 |
msgstr "Aufsteigend"
|
4587 |
|
4588 |
+
#: includes/admin/settings/class-settings-bootstrap.php:746
|
4589 |
+
#: includes/admin/settings/class-settings-bootstrap.php:814
|
4590 |
msgctxt "admin settings"
|
4591 |
msgid "Descending"
|
4592 |
msgstr "Absteigend"
|
4593 |
|
4594 |
+
#: includes/admin/settings/class-settings-bootstrap.php:779
|
4595 |
msgctxt "admin settings"
|
4596 |
msgid "Plan Custom Order can be changed under <a>Plans</a>"
|
4597 |
msgstr ""
|
4598 |
|
4599 |
+
#: includes/admin/settings/class-settings-bootstrap.php:792
|
4600 |
msgctxt "admin settings"
|
4601 |
msgid "Author"
|
4602 |
msgstr "Author"
|
4603 |
|
4604 |
+
#: includes/admin/settings/class-settings-bootstrap.php:793
|
4605 |
#: includes/helpers/functions/general.php:1285
|
4606 |
msgctxt "admin settings"
|
4607 |
msgid "Date posted"
|
4608 |
msgstr "Datum gepostet"
|
4609 |
|
4610 |
+
#: includes/admin/settings/class-settings-bootstrap.php:794
|
4611 |
#: includes/helpers/functions/general.php:1286
|
4612 |
msgctxt "admin settings"
|
4613 |
msgid "Date last modified"
|
4614 |
msgstr "Datum zuletzt verändert"
|
4615 |
|
4616 |
+
#: includes/admin/settings/class-settings-bootstrap.php:795
|
4617 |
msgctxt "admin settings"
|
4618 |
msgid "Random"
|
4619 |
msgstr "Zufall"
|
4620 |
|
4621 |
+
#: includes/admin/settings/class-settings-bootstrap.php:796
|
4622 |
msgctxt "admin settings"
|
4623 |
msgid "Paid first then free. Inside each group by date."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: includes/admin/settings/class-settings-bootstrap.php:797
|
4627 |
msgctxt "admin settings"
|
4628 |
msgid "Paid first then free. Inside each group by title."
|
4629 |
msgstr ""
|
4630 |
|
4631 |
+
#: includes/admin/settings/class-settings-bootstrap.php:798
|
4632 |
msgctxt "admin settings"
|
4633 |
msgid "Plan Custom Order, then Date"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: includes/admin/settings/class-settings-bootstrap.php:799
|
4637 |
msgctxt "admin settings"
|
4638 |
msgid "Plan Custom Order, then Title"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1071
|
4642 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1096
|
4643 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1120
|
4644 |
#, fuzzy
|
4645 |
msgctxt "admin settings"
|
4646 |
msgid "Excerpt view."
|
4647 |
msgstr "Im Textauszug"
|
4648 |
|
4649 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1097
|
4650 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1121
|
4651 |
#, fuzzy
|
4652 |
msgctxt "admin settings"
|
4653 |
msgid "Detail view."
|
4654 |
msgstr "Verzeichnis"
|
4655 |
|
4656 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1192
|
4657 |
msgctxt "admin settings"
|
4658 |
msgid "Australian Dollar (AUD)"
|
4659 |
msgstr "Australischer Dollar (AUD)"
|
4660 |
|
4661 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
4662 |
msgctxt "admin settings"
|
4663 |
msgid "Brazilian Real (BRL)"
|
4664 |
msgstr "Brasilianischer Real (BRL)"
|
4665 |
|
4666 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1194
|
4667 |
msgctxt "admin settings"
|
4668 |
msgid "Canadian Dollar (CAD)"
|
4669 |
msgstr "Kanadischer Dollar (CAD)"
|
4670 |
|
4671 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1195
|
4672 |
msgctxt "admin settings"
|
4673 |
msgid "Czech Koruna (CZK)"
|
4674 |
msgstr "Tschechische Koruna (CZK)"
|
4675 |
|
4676 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1196
|
4677 |
msgctxt "admin settings"
|
4678 |
msgid "Danish Krone (DKK)"
|
4679 |
msgstr "Dänische Krone (DKK)"
|
4680 |
|
4681 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1197
|
4682 |
msgctxt "admin settings"
|
4683 |
msgid "United Arab Emirates Dirham (AED)"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1198
|
4687 |
msgctxt "admin settings"
|
4688 |
msgid "Euro (EUR)"
|
4689 |
msgstr "Euro (EUR)"
|
4690 |
|
4691 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1199
|
4692 |
msgctxt "admin settings"
|
4693 |
msgid "Hong Kong Dollar (HKD)"
|
4694 |
msgstr "Hong Kong Dollar (HKD)"
|
4695 |
|
4696 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1200
|
4697 |
msgctxt "admin settings"
|
4698 |
msgid "Hungarian Forint (HUF)"
|
4699 |
msgstr "Ungarischer Forint (HUF)"
|
4700 |
|
4701 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1201
|
4702 |
msgctxt "admin settings"
|
4703 |
msgid "Israeli New Shequel (ILS)"
|
4704 |
msgstr "Israelischer Neuer Schequel (ILS)"
|
4705 |
|
4706 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
4707 |
msgctxt "admin settings"
|
4708 |
msgid "Japanese Yen (JPY)"
|
4709 |
msgstr "Japanischer Jen (JPY)"
|
4710 |
|
4711 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1203
|
4712 |
msgctxt "admin settings"
|
4713 |
msgid "Moroccan Dirham (MAD)"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1204
|
4717 |
msgctxt "admin settings"
|
4718 |
msgid "Malasian Ringgit (MYR)"
|
4719 |
msgstr "Malaysischer Ringgit (MYR)"
|
4720 |
|
4721 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4722 |
msgctxt "admin settings"
|
4723 |
msgid "Mexican Peso (MXN)"
|
4724 |
msgstr "Mexikanischer Peso (MXN)"
|
4725 |
|
4726 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4727 |
msgctxt "admin settings"
|
4728 |
msgid "Norwegian Krone (NOK)"
|
4729 |
msgstr "Norwegische Krone (NOK)"
|
4730 |
|
4731 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
4732 |
msgctxt "admin settings"
|
4733 |
msgid "New Zealand Dollar (NZD)"
|
4734 |
msgstr "Neuseeland Dollar (NZD)"
|
4735 |
|
4736 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1208
|
4737 |
msgctxt "admin settings"
|
4738 |
msgid "Philippine Peso (PHP)"
|
4739 |
msgstr "Philippinischer Peso (PHP)"
|
4740 |
|
4741 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1209
|
4742 |
msgctxt "admin settings"
|
4743 |
msgid "Polish Zloty (PLN)"
|
4744 |
msgstr "Polnischer Zloty (PLN)"
|
4745 |
|
4746 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1210
|
4747 |
msgctxt "admin settings"
|
4748 |
msgid "Pound Sterling (GBP)"
|
4749 |
msgstr "Pfund Sterling (GBP)"
|
4750 |
|
4751 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1211
|
4752 |
msgctxt "admin settings"
|
4753 |
msgid "Singapore Dollar (SGD)"
|
4754 |
msgstr "Singapore Dollar (SGD)"
|
4755 |
|
4756 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1212
|
4757 |
msgctxt "admin settings"
|
4758 |
msgid "Swedish Krona (SEK)"
|
4759 |
msgstr "Schwedische Krone (SEK)"
|
4760 |
|
4761 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1213
|
4762 |
msgctxt "admin settings"
|
4763 |
msgid "Swiss Franc (CHF)"
|
4764 |
msgstr "Schweizer Franken (CHF)"
|
4765 |
|
4766 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1214
|
4767 |
msgctxt "admin settings"
|
4768 |
msgid "Taiwan Dollar (TWD)"
|
4769 |
msgstr "Taiwanischer Dollar (TWD)"
|
4770 |
|
4771 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1215
|
4772 |
msgctxt "admin settings"
|
4773 |
msgid "Thai Baht (THB)"
|
4774 |
msgstr "Thailändischer Baht (THB)"
|
4775 |
|
4776 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
4777 |
msgctxt "admin settings"
|
4778 |
msgid "Turkish Lira (TRY)"
|
4779 |
msgstr "Türkische Lira (TRY)"
|
4780 |
|
4781 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1217
|
4782 |
msgctxt "admin settings"
|
4783 |
msgid "U.S. Dollar (USD)"
|
4784 |
msgstr "U.S. Dollar"
|
4785 |
|
4786 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1241
|
4787 |
msgctxt "admin settings"
|
4788 |
msgid "Show currency symbol on the left"
|
4789 |
msgstr "Währungssymbol links anzeigen"
|
4790 |
|
4791 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1242
|
4792 |
msgctxt "admin settings"
|
4793 |
msgid "Show currency symbol on the right"
|
4794 |
msgstr "Währungssymbol rechts anzeigen"
|
4795 |
|
4796 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1243
|
4797 |
msgctxt "admin settings"
|
4798 |
msgid "Do not show currency symbol"
|
4799 |
msgstr "Währungssymbol nicht anzeigen"
|
4800 |
|
4801 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4802 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1288
|
4803 |
msgctxt "admin settings"
|
4804 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4805 |
msgstr ""
|
4806 |
|
4807 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1326
|
4808 |
msgctxt "admin settings"
|
4809 |
msgid ""
|
4810 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4811 |
"can also <a>customize the email</a> users receive."
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
4815 |
msgctxt "admin settings"
|
4816 |
msgid "Try listing's email field first, then author's email."
|
4817 |
msgstr "Versuchen Sie das E-Mail-Feld zuerst, dann die E-Mail des Autors."
|
4818 |
|
4819 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1357
|
4820 |
msgctxt "admin settings"
|
4821 |
msgid "Try author's email first and then listing's email field."
|
4822 |
msgstr ""
|
4823 |
"Probieren sie erst die E-Mail des Authors und dann die E-Mail des Felds."
|
4824 |
|
4825 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1370
|
4826 |
msgctxt "admin settings"
|
4827 |
msgid "Plain (text/plain)"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
4831 |
msgctxt "admin settings"
|
4832 |
msgid "HTML (text/html)"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1372
|
4836 |
msgctxt "admin settings"
|
4837 |
msgid "Both (multipart/alternative)"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
4841 |
msgctxt "admin settings"
|
4842 |
msgid "A new listing is submitted."
|
4843 |
msgstr "Ein neuer Eintrag wurde übermittelt."
|
4844 |
|
4845 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1387
|
4846 |
msgctxt "admin settings"
|
4847 |
msgid "A listing is edited."
|
4848 |
msgstr "Ein Eintrag wurde bearbeitet."
|
4849 |
|
4850 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1388
|
4851 |
msgctxt "admin settings"
|
4852 |
msgid "A listing expires."
|
4853 |
msgstr "Ein Eintrag läuft aus."
|
4854 |
|
4855 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1389
|
4856 |
#, fuzzy
|
4857 |
msgctxt "admin settings"
|
4858 |
msgid "A listing is renewed."
|
4859 |
msgstr "Ein Eintrag wurde bearbeitet."
|
4860 |
|
4861 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1390
|
4862 |
#, fuzzy
|
4863 |
msgctxt "admin settings"
|
4864 |
msgid "A listing payment is completed."
|
4865 |
msgstr "Ein Eintrag wurde bearbeitet."
|
4866 |
|
4867 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1391
|
4868 |
#, fuzzy
|
4869 |
msgctxt "admin settings"
|
4870 |
msgid "A listing has been reported as inappropriate."
|
4871 |
msgstr "Der Eintrag wurde aktualisiert"
|
4872 |
|
4873 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
4874 |
msgctxt "admin settings"
|
4875 |
msgid "A contact message is sent to a listing's owner."
|
4876 |
msgstr "Eine Nachricht wurde an einen Eintrags-Eigentümer versendet."
|
4877 |
|
4878 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1419
|
4879 |
msgctxt "admin settings"
|
4880 |
msgid "Their listing is submitted."
|
4881 |
msgstr "Ihr Eintrag ist eingereicht."
|
4882 |
|
4883 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
4884 |
msgctxt "admin settings"
|
4885 |
msgid "Their listing is approved/published."
|
4886 |
msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
|
4887 |
|
4888 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1421
|
4889 |
#, fuzzy
|
4890 |
msgctxt "admin settings"
|
4891 |
msgid "A payment for their listing is completed."
|
4892 |
msgstr "Ihr Eintrag ist eingereicht."
|
4893 |
|
4894 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1422
|
4895 |
#, fuzzy
|
4896 |
msgctxt "admin settings"
|
4897 |
msgid "Their listing expired or is about to expire."
|
4898 |
msgstr "Ihr Eintrag ist eingereicht."
|
4899 |
|
4900 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
|
|
4901 |
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
4902 |
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
4903 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1531
|
4904 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1550
|
4905 |
msgctxt "admin settings"
|
4906 |
msgid "Listing's title"
|
4907 |
msgstr "Eintrag Titel"
|
4908 |
|
4909 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1441
|
4910 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1532
|
4911 |
#, fuzzy
|
4912 |
msgctxt "admin settings"
|
4913 |
msgid "Listing's plan name"
|
4914 |
msgstr "Eintrag Enddatum"
|
4915 |
|
4916 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1442
|
4917 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1533
|
4918 |
#, fuzzy
|
4919 |
msgctxt "admin settings"
|
4920 |
msgid "Listing's plan description"
|
4921 |
msgstr "Auswahl der Preispakete"
|
4922 |
|
4923 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
4924 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1534
|
4925 |
#, fuzzy
|
4926 |
msgctxt "admin settings"
|
4927 |
msgid "Listing's plan details"
|
4928 |
msgstr "Eintrag Enddatum"
|
4929 |
|
4930 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1456
|
4931 |
msgctxt "admin settings"
|
4932 |
msgid ""
|
4933 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4936 |
"Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
|
4937 |
"kann öffentlich eingesehen werden."
|
4938 |
|
4939 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
4940 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1494
|
4941 |
msgctxt "admin settings"
|
4942 |
msgid "Listing's URL"
|
4943 |
msgstr "Eintrags URL"
|
4944 |
|
4945 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
4946 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
4947 |
#, fuzzy
|
4948 |
msgctxt "admin settings"
|
4949 |
msgid "Listing's Access Key"
|
4950 |
msgstr "Eintrag Felder / Bilder"
|
4951 |
|
4952 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
4953 |
#, fuzzy
|
4954 |
msgctxt "admin settings"
|
4955 |
msgid "Sender's name"
|
4956 |
msgstr "Authorname"
|
4957 |
|
4958 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
4959 |
#, fuzzy
|
4960 |
msgctxt "admin settings"
|
4961 |
msgid "Contact message"
|
4962 |
msgstr "Neue Eintrag Anweisungen"
|
4963 |
|
4964 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
4965 |
msgctxt "admin settings"
|
4966 |
msgid "Date and time the message was sent"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1535
|
4970 |
#, fuzzy
|
4971 |
msgctxt "admin settings"
|
4972 |
msgid "Payment items details."
|
4973 |
msgstr "Bezahldetails"
|
4974 |
|
4975 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1536
|
4976 |
msgctxt "admin settings"
|
4977 |
msgid "URL where user can review and print payment receipt."
|
4978 |
msgstr ""
|
4979 |
|
4980 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1537
|
4981 |
#, fuzzy
|
4982 |
msgctxt "admin settings"
|
4983 |
msgid "Gateway used to process listing's payment."
|
4984 |
msgstr "Bezahlung ausführen"
|
4985 |
|
4986 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1551
|
4987 |
msgctxt "admin settings"
|
4988 |
msgid "Checkout URL link"
|
4989 |
msgstr "Kasse"
|
4990 |
|
4991 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1653
|
4992 |
#, fuzzy
|
4993 |
msgctxt "admin settings"
|
4994 |
msgid "Uploaded Image (no resize)"
|
5004 |
msgid "User registration date"
|
5005 |
msgstr "Eintrag Enddatum"
|
5006 |
|
5007 |
+
#: includes/admin/controllers/class-settings-admin.php:636
|
5008 |
#, fuzzy
|
5009 |
msgctxt "expiration notices"
|
5010 |
msgid "Add notice"
|
5011 |
msgstr "Feld erstellen"
|
5012 |
|
5013 |
+
#: includes/admin/controllers/class-settings-admin.php:655
|
5014 |
msgctxt "expiration notices"
|
5015 |
msgid "No notices configured."
|
5016 |
msgstr ""
|
5017 |
|
5018 |
+
#: includes/admin/controllers/class-settings-admin.php:697
|
5019 |
msgctxt "expiration notices"
|
5020 |
msgid "recurring and non-recurring"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: includes/admin/controllers/class-settings-admin.php:699
|
5024 |
#, fuzzy
|
5025 |
msgctxt "expiration notices"
|
5026 |
msgid "recurring only"
|
5027 |
msgstr "(wiederkehrend)"
|
5028 |
|
5029 |
+
#: includes/admin/controllers/class-settings-admin.php:701
|
5030 |
#, fuzzy
|
5031 |
msgctxt "expiration notices"
|
5032 |
msgid "non-recurring only"
|
5033 |
msgstr "(wiederkehrend)"
|
5034 |
|
5035 |
+
#: includes/admin/controllers/class-settings-admin.php:705
|
5036 |
#, fuzzy
|
5037 |
msgctxt "expiration notices"
|
5038 |
msgid "Sent when a listing (%s) is renewed."
|
5039 |
msgstr "Senden nachdem der Eintrag eingestellt wurde."
|
5040 |
|
5041 |
+
#: includes/admin/controllers/class-settings-admin.php:710
|
5042 |
#, fuzzy
|
5043 |
msgctxt "expiration notices"
|
5044 |
msgid "Sent when a listing (%s) expires."
|
5045 |
msgstr "Ein Eintrag läuft aus."
|
5046 |
|
5047 |
+
#: includes/admin/controllers/class-settings-admin.php:718
|
5048 |
#, fuzzy
|
5049 |
msgctxt "expiration notices"
|
5050 |
msgid "%d day"
|
5052 |
msgstr[0] "%d Tag"
|
5053 |
msgstr[1] "%d Tage"
|
5054 |
|
5055 |
+
#: includes/admin/controllers/class-settings-admin.php:721
|
5056 |
msgctxt "expiration notices"
|
5057 |
msgid "%d week"
|
5058 |
msgid_plural "%d weeks"
|
5059 |
msgstr[0] ""
|
5060 |
msgstr[1] ""
|
5061 |
|
5062 |
+
#: includes/admin/controllers/class-settings-admin.php:724
|
5063 |
msgctxt "expiration notices"
|
5064 |
msgid "%d month"
|
5065 |
msgid_plural "%d months"
|
5068 |
|
5069 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
5070 |
#. non-recuring only)
|
5071 |
+
#: includes/admin/controllers/class-settings-admin.php:730
|
5072 |
msgctxt "expiration notices"
|
5073 |
msgid "Sent %1$s before a listing (%2$s) expires."
|
5074 |
msgstr ""
|
5075 |
|
5076 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
5077 |
#. non-recuring only)
|
5078 |
+
#: includes/admin/controllers/class-settings-admin.php:733
|
5079 |
#, fuzzy
|
5080 |
msgctxt "expiration notices"
|
5081 |
msgid "Sent %1$s after a listing (%2$s) expires."
|
5082 |
msgstr "Senden nachdem der Eintrag eingestellt wurde."
|
5083 |
|
5084 |
+
#: includes/admin/controllers/class-settings-admin.php:750
|
5085 |
msgctxt "expiration notices"
|
5086 |
msgid "At the time of expiration"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
+
#: includes/admin/controllers/class-settings-admin.php:751
|
5090 |
#, fuzzy
|
5091 |
msgctxt "expiration notices"
|
5092 |
msgid "Right after a successful renewal"
|
5093 |
msgstr "Der Preis wurde erfolgreich zugewiesen."
|
5094 |
|
5095 |
+
#: includes/admin/controllers/class-settings-admin.php:762
|
5096 |
msgctxt "expiration notices"
|
5097 |
msgid "%d day before expiration"
|
5098 |
msgid_plural "%d days before expiration"
|
5099 |
msgstr[0] ""
|
5100 |
msgstr[1] ""
|
5101 |
|
5102 |
+
#: includes/admin/controllers/class-settings-admin.php:762
|
5103 |
msgctxt "expiration notices"
|
5104 |
msgid "%d day after expiration"
|
5105 |
msgid_plural "%d days after expiration"
|
5106 |
msgstr[0] ""
|
5107 |
msgstr[1] ""
|
5108 |
|
5109 |
+
#: includes/admin/controllers/class-settings-admin.php:765
|
5110 |
msgctxt "expiration notices"
|
5111 |
msgid "%d week before expiration"
|
5112 |
msgid_plural "%d weeks before expiration"
|
5113 |
msgstr[0] ""
|
5114 |
msgstr[1] ""
|
5115 |
|
5116 |
+
#: includes/admin/controllers/class-settings-admin.php:765
|
5117 |
msgctxt "expiration notices"
|
5118 |
msgid "%d week after expiration"
|
5119 |
msgid_plural "%d weeks after expiration"
|
5120 |
msgstr[0] ""
|
5121 |
msgstr[1] ""
|
5122 |
|
5123 |
+
#: includes/admin/controllers/class-settings-admin.php:768
|
5124 |
msgctxt "expiration notices"
|
5125 |
msgid "%d month before expiration"
|
5126 |
msgid_plural "%d months before expiration"
|
5127 |
msgstr[0] ""
|
5128 |
msgstr[1] ""
|
5129 |
|
5130 |
+
#: includes/admin/controllers/class-settings-admin.php:768
|
5131 |
msgctxt "expiration notices"
|
5132 |
msgid "%d month after expiration"
|
5133 |
msgid_plural "%d months after expiration"
|
5134 |
msgstr[0] ""
|
5135 |
msgstr[1] ""
|
5136 |
|
5137 |
+
#: includes/admin/controllers/class-settings-admin.php:795
|
5138 |
#, fuzzy
|
5139 |
msgctxt "expiration notices"
|
5140 |
msgid "Applies to"
|
5141 |
msgstr "zugewiesen zu"
|
5142 |
|
5143 |
+
#: includes/admin/controllers/class-settings-admin.php:798
|
5144 |
msgctxt "expiration notices"
|
5145 |
msgid "Non-recurring listings"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: includes/admin/controllers/class-settings-admin.php:799
|
5149 |
#, fuzzy
|
5150 |
msgctxt "expiration notices"
|
5151 |
msgid "Recurring listings"
|
5152 |
msgstr "Zurück zum Eintrag."
|
5153 |
|
5154 |
+
#: includes/admin/controllers/class-settings-admin.php:800
|
5155 |
msgctxt "expiration notices"
|
5156 |
msgid "Recurring and non-recurring listings"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
+
#: includes/admin/controllers/class-settings-admin.php:805
|
5160 |
msgctxt "expiration notices"
|
5161 |
msgid "When to send?"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: includes/admin/controllers/class-settings-admin.php:672
|
5165 |
#, fuzzy
|
5166 |
msgctxt "settings"
|
5167 |
msgid "Site title (with link)"
|
5168 |
msgstr "Seitentitel (mit Link)"
|
5169 |
|
5170 |
+
#: includes/admin/controllers/class-settings-admin.php:673
|
5171 |
msgctxt "settings"
|
5172 |
msgid "Author's name"
|
5173 |
msgstr "Authorname"
|
5174 |
|
5175 |
+
#: includes/admin/controllers/class-settings-admin.php:674
|
5176 |
msgctxt "settings"
|
5177 |
msgid "Listing's name (with link)"
|
5178 |
msgstr "Eintragsname (mit Link)"
|
5179 |
|
5180 |
+
#: includes/admin/controllers/class-settings-admin.php:675
|
5181 |
#, fuzzy
|
5182 |
msgctxt "settings"
|
5183 |
msgid "Listing's expiration date"
|
5184 |
msgstr "Eintrag Enddatum"
|
5185 |
|
5186 |
+
#: includes/admin/controllers/class-settings-admin.php:676
|
5187 |
msgctxt "settings"
|
5188 |
msgid "Listing's renewal link, formatted with an anchor tag"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
+
#: includes/admin/controllers/class-settings-admin.php:677
|
5192 |
msgctxt "settings"
|
5193 |
msgid "Listing's renewal URL, unformatted by any tags"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: includes/admin/controllers/class-settings-admin.php:678
|
5197 |
#, fuzzy
|
5198 |
msgctxt "settings"
|
5199 |
msgid "Listing's categories"
|
5200 |
msgstr "Eintrag Titel"
|
5201 |
|
5202 |
+
#: includes/admin/controllers/class-settings-admin.php:679
|
5203 |
#, fuzzy
|
5204 |
msgctxt "settings"
|
5205 |
msgid "Listing's last payment date"
|
5206 |
msgstr "Eintrag Enddatum"
|
5207 |
|
5208 |
+
#: includes/admin/controllers/class-settings-admin.php:680
|
5209 |
#, fuzzy
|
5210 |
msgctxt "settings"
|
5211 |
msgid "Listing's access key"
|
5212 |
msgstr "Eintrag Felder / Bilder"
|
5213 |
|
5214 |
+
#: includes/admin/controllers/class-settings-admin.php:837
|
5215 |
#, fuzzy
|
5216 |
msgctxt "settings"
|
5217 |
msgid "Settings reset to default."
|
5223 |
msgid "General"
|
5224 |
msgstr "Allgemein"
|
5225 |
|
5226 |
+
#: includes/admin/settings/class-settings-bootstrap.php:12
|
5227 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1055
|
5228 |
#, fuzzy
|
5229 |
msgctxt "settings"
|
5230 |
msgid "Listings"
|
5231 |
msgstr "Einträge"
|
5232 |
|
5233 |
+
#: includes/admin/settings/class-settings-bootstrap.php:15
|
5234 |
+
#: includes/admin/settings/class-settings-bootstrap.php:20
|
5235 |
+
#: includes/admin/settings/class-settings-bootstrap.php:25
|
5236 |
+
#: includes/admin/settings/class-settings-bootstrap.php:50
|
5237 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1337
|
5238 |
+
#: includes/admin/settings/class-settings.php:345
|
5239 |
#, fuzzy
|
5240 |
msgctxt "settings"
|
5241 |
msgid "General Settings"
|
5242 |
msgstr "Allgemeine Einstellungen"
|
5243 |
|
5244 |
+
#: includes/admin/settings/class-settings-bootstrap.php:22
|
5245 |
#, fuzzy
|
5246 |
msgctxt "settings"
|
5247 |
msgid "Payment"
|
5248 |
msgstr "Bezahlung"
|
5249 |
|
5250 |
+
#: includes/admin/settings/class-settings-bootstrap.php:27
|
5251 |
msgctxt "settings"
|
5252 |
msgid "Appearance"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
+
#: includes/admin/settings/class-settings-bootstrap.php:73
|
5256 |
#, fuzzy
|
5257 |
msgctxt "settings"
|
5258 |
msgid "Permalink Settings"
|
5259 |
msgstr "Permalink Einstellungen"
|
5260 |
|
5261 |
+
#: includes/admin/settings/class-settings-bootstrap.php:78
|
5262 |
#, fuzzy
|
5263 |
msgctxt "settings"
|
5264 |
msgid "Directory Listings Slug"
|
5265 |
msgstr "Verzeichniseintrag Entwurf"
|
5266 |
|
5267 |
+
#: includes/admin/settings/class-settings-bootstrap.php:88
|
5268 |
#, fuzzy
|
5269 |
msgctxt "settings"
|
5270 |
msgid "Categories Slug"
|
5271 |
msgstr "Kategorie Entwurf"
|
5272 |
|
5273 |
+
#: includes/admin/settings/class-settings-bootstrap.php:89
|
5274 |
#, fuzzy
|
5275 |
msgctxt "settings"
|
5276 |
msgid ""
|
5279 |
"Der Entwurf kann nicht von anderen Ausdrücken verwendet werden. Meide "
|
5280 |
"\"Kategorie\" für diese Instanz."
|
5281 |
|
5282 |
+
#: includes/admin/settings/class-settings-bootstrap.php:100
|
5283 |
#, fuzzy
|
5284 |
msgctxt "settings"
|
5285 |
msgid "Tags Slug"
|
5286 |
msgstr "Tags Entwurf"
|
5287 |
|
5288 |
+
#: includes/admin/settings/class-settings-bootstrap.php:101
|
5289 |
#, fuzzy
|
5290 |
msgctxt "settings"
|
5291 |
msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
|
5293 |
"Der Entwurf kann nicht von anderen Ausdrücken verwendet werden. Meide \"tag"
|
5294 |
"\" für diese Instanz."
|
5295 |
|
5296 |
+
#: includes/admin/settings/class-settings-bootstrap.php:113
|
5297 |
#, fuzzy
|
5298 |
msgctxt "settings"
|
5299 |
+
msgid "Remove listing ID from URLs for better SEO"
|
5300 |
msgstr "Entferne Eintrag ID von diesen Verzeichnis URLs?"
|
5301 |
|
5302 |
+
#: includes/admin/settings/class-settings-bootstrap.php:114
|
|
|
|
|
|
|
|
|
|
|
5303 |
#, fuzzy
|
5304 |
msgctxt "settings"
|
5305 |
msgid ""
|
5311 |
"die ID aus der URL zu entfernen um einen SEO und Benutzerfreundlichkeits-"
|
5312 |
"Mehrwert zu erhalten."
|
5313 |
|
5314 |
+
#: includes/admin/settings/class-settings-bootstrap.php:125
|
5315 |
#, fuzzy
|
5316 |
msgctxt "settings"
|
5317 |
msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
|
5318 |
msgstr "Brauchst du API Schlüssel für reCAPTCHA? <a>Hier</a> bekommst du sie."
|
5319 |
|
5320 |
+
#: includes/admin/settings/class-settings-bootstrap.php:132
|
5321 |
#, fuzzy
|
5322 |
msgctxt "settings"
|
5323 |
msgid "Use reCAPTCHA for contact forms"
|
5324 |
msgstr "Benutze reCAPTCHA für Kontaktformen"
|
5325 |
|
5326 |
+
#: includes/admin/settings/class-settings-bootstrap.php:140
|
5327 |
#, fuzzy
|
5328 |
msgctxt "settings"
|
5329 |
+
msgid "Use reCAPTCHA only for logged-out users"
|
5330 |
msgstr "reCAPTCHA für angemeldete Benutzern ausschalten?"
|
5331 |
|
5332 |
+
#: includes/admin/settings/class-settings-bootstrap.php:148
|
5333 |
#, fuzzy
|
5334 |
msgctxt "settings"
|
5335 |
msgid "Use reCAPTCHA for listing submits"
|
5336 |
msgstr "Benutze reCAPTCHA für Eintragzusendungen"
|
5337 |
|
5338 |
+
#: includes/admin/settings/class-settings-bootstrap.php:156
|
5339 |
#, fuzzy
|
5340 |
msgctxt "settings"
|
5341 |
msgid "Use reCAPTCHA for edit listings"
|
5342 |
msgstr "Benutze reCAPTCHA für Eintragkommentare?"
|
5343 |
|
5344 |
+
#: includes/admin/settings/class-settings-bootstrap.php:164
|
5345 |
#, fuzzy
|
5346 |
msgctxt "settings"
|
5347 |
msgid "Use reCAPTCHA for report listings"
|
5348 |
msgstr "Benutze reCAPTCHA für Eintragkommentare?"
|
5349 |
|
5350 |
+
#: includes/admin/settings/class-settings-bootstrap.php:172
|
5351 |
#, fuzzy
|
5352 |
msgctxt "settings"
|
5353 |
msgid "Use reCAPTCHA for listing comments"
|
5354 |
msgstr "Benutze reCAPTCHA für Eintragkommentare?"
|
5355 |
|
5356 |
+
#: includes/admin/settings/class-settings-bootstrap.php:180
|
5357 |
#, fuzzy
|
5358 |
msgctxt "settings"
|
5359 |
msgid "reCAPTCHA Public Key"
|
5360 |
msgstr "reCAPTCHA öffentlicher Schlüssel"
|
5361 |
|
5362 |
+
#: includes/admin/settings/class-settings-bootstrap.php:189
|
5363 |
#, fuzzy
|
5364 |
msgctxt "settings"
|
5365 |
msgid "reCAPTCHA Private Key"
|
5366 |
msgstr "reCAPTCHA privater Schlüssel"
|
5367 |
|
5368 |
+
#: includes/admin/settings/class-settings-bootstrap.php:198
|
5369 |
#, fuzzy
|
5370 |
msgctxt "settings"
|
5371 |
msgid "reCAPTCHA version"
|
5372 |
msgstr "reCAPTCHA Einstellungen"
|
5373 |
|
5374 |
+
#: includes/admin/settings/class-settings-bootstrap.php:215
|
5375 |
msgctxt "settings"
|
5376 |
msgid "reCAPTCHA V3 threshold score"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: includes/admin/settings/class-settings-bootstrap.php:220
|
5380 |
msgctxt "settings"
|
5381 |
msgid ""
|
5382 |
"reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is "
|
5385 |
"this value will result in reCAPTCHA validation error."
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: includes/admin/settings/class-settings-bootstrap.php:229
|
5389 |
#, fuzzy
|
5390 |
msgctxt "settings"
|
5391 |
msgid "Registration"
|
5392 |
msgstr "Registrierung"
|
5393 |
|
5394 |
+
#: includes/admin/settings/class-settings-bootstrap.php:229
|
5395 |
msgctxt "settings"
|
5396 |
msgid ""
|
5397 |
"We expect that a membership plugin supports the 'redirect_to' parameter for "
|
5400 |
"them to support the WP standard 'redirect_to' query parameter."
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: includes/admin/settings/class-settings-bootstrap.php:234
|
5404 |
#, fuzzy
|
5405 |
msgctxt "settings"
|
5406 |
msgid "Require login to post listings"
|
5407 |
msgstr "Zurück zum Eintrag."
|
5408 |
|
5409 |
+
#: includes/admin/settings/class-settings-bootstrap.php:243
|
5410 |
msgctxt "settings"
|
5411 |
msgid "Allow anonymous users to edit/manage listings with an access key"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: includes/admin/settings/class-settings-bootstrap.php:251
|
5415 |
#, fuzzy
|
5416 |
msgctxt "settings"
|
5417 |
msgid "Login URL"
|
5418 |
msgstr "Login"
|
5419 |
|
5420 |
+
#: includes/admin/settings/class-settings-bootstrap.php:252
|
5421 |
#, fuzzy
|
5422 |
msgctxt "settings"
|
5423 |
msgid "Only enter this if using a membership plugin or custom login page"
|
5426 |
"ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
|
5427 |
"benutzt. "
|
5428 |
|
5429 |
+
#: includes/admin/settings/class-settings-bootstrap.php:253
|
5430 |
msgctxt "settings"
|
5431 |
msgid "URL of your membership plugin's login page."
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: includes/admin/settings/class-settings-bootstrap.php:262
|
5435 |
#, fuzzy
|
5436 |
msgctxt "settings"
|
5437 |
msgid "Registration URL"
|
5438 |
msgstr "Registrierungs URL"
|
5439 |
|
5440 |
+
#: includes/admin/settings/class-settings-bootstrap.php:263
|
5441 |
#, fuzzy
|
5442 |
msgctxt "settings"
|
5443 |
msgid ""
|
5447 |
"ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
|
5448 |
"benutzt. "
|
5449 |
|
5450 |
+
#: includes/admin/settings/class-settings-bootstrap.php:264
|
5451 |
#, fuzzy
|
5452 |
msgctxt "settings"
|
5453 |
msgid "URL of your membership plugin's registration page"
|
5456 |
"ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
|
5457 |
"benutzt. "
|
5458 |
|
5459 |
+
#: includes/admin/settings/class-settings-bootstrap.php:273
|
5460 |
msgctxt "settings"
|
5461 |
msgid "Allow users to create accounts during listing submit"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
+
#: includes/admin/settings/class-settings-bootstrap.php:300
|
5465 |
#, fuzzy
|
5466 |
msgctxt "settings"
|
5467 |
msgid ""
|
5472 |
"werden Bedingungen und Konditionen ersetzt durch einen Link der "
|
5473 |
"dazugehörigen Seite."
|
5474 |
|
5475 |
+
#: includes/admin/settings/class-settings-bootstrap.php:302
|
5476 |
#, fuzzy
|
5477 |
msgctxt "settings"
|
5478 |
msgid "Terms and Conditions text goes here"
|
5479 |
msgstr "Bedingungen und Konditionen"
|
5480 |
|
5481 |
+
#: includes/admin/settings/class-settings-bootstrap.php:345
|
5482 |
msgctxt "settings"
|
5483 |
+
msgid "Enable high performance search"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: includes/admin/settings/class-settings-bootstrap.php:354
|
5487 |
#, fuzzy
|
5488 |
msgctxt "settings"
|
5489 |
msgid "Advanced"
|
5490 |
msgstr "Erweitert"
|
5491 |
|
5492 |
+
#: includes/admin/settings/class-settings-bootstrap.php:360
|
5493 |
#, fuzzy
|
5494 |
msgctxt "settings"
|
5495 |
msgid "Disable advanced CPT integration"
|
5496 |
msgstr "Email Erinnerung"
|
5497 |
|
5498 |
+
#: includes/admin/settings/class-settings-bootstrap.php:369
|
5499 |
msgctxt "settings"
|
5500 |
msgid "Disable frontend listing submission"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: includes/admin/settings/class-settings-bootstrap.php:370
|
5504 |
msgctxt "settings"
|
5505 |
msgid ""
|
5506 |
"Prevents the Submit Listing button from showing on the main UI, but allows a "
|
5507 |
"shortcode for submit listing to function on other pages."
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: includes/admin/settings/class-settings-bootstrap.php:451
|
5511 |
#, fuzzy
|
5512 |
msgctxt "settings"
|
5513 |
msgid "Contact Form"
|
5514 |
msgstr "Zurücksetzen"
|
5515 |
|
5516 |
+
#: includes/admin/settings/class-settings-bootstrap.php:460
|
5517 |
#, fuzzy
|
5518 |
msgctxt "settings"
|
5519 |
msgid "Listings per page"
|
5520 |
msgstr "Einträge pro Seite"
|
5521 |
|
5522 |
+
#: includes/admin/settings/class-settings-bootstrap.php:461
|
5523 |
#, fuzzy
|
5524 |
msgctxt "settings"
|
5525 |
msgid ""
|
5529 |
"Nummer der Einträge die pro Seite angezeigt werden. Benutze einen Wert von "
|
5530 |
"\"0\" um alle Einträge anzuzeigen."
|
5531 |
|
5532 |
+
#: includes/admin/settings/class-settings-bootstrap.php:473
|
5533 |
#, fuzzy
|
5534 |
msgctxt "settings"
|
5535 |
msgid "Turn on listing renewal option"
|
5536 |
msgstr "Option zur Erneuerung von Einträgen aktivieren?"
|
5537 |
|
5538 |
+
#: includes/admin/settings/class-settings-bootstrap.php:482
|
5539 |
msgctxt "settings"
|
5540 |
msgid "Open detailed view of listing in new tab"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
+
#: includes/admin/settings/class-settings-bootstrap.php:492
|
5544 |
#, fuzzy
|
5545 |
msgctxt "settings"
|
5546 |
msgid "Include button to report listings"
|
5547 |
msgstr "Zurück zum Eintrag."
|
5548 |
|
5549 |
+
#: includes/admin/settings/class-settings-bootstrap.php:501
|
5550 |
msgctxt "settings"
|
5551 |
msgid "Enable report listing for registered users only"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: includes/admin/settings/class-settings-bootstrap.php:511
|
5555 |
msgctxt "settings"
|
5556 |
msgid "Report listing option list"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: includes/admin/settings/class-settings-bootstrap.php:512
|
5560 |
msgctxt "settings"
|
5561 |
msgid ""
|
5562 |
"Form option list to report a listing as inappropriate. One option per line."
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: includes/admin/settings/class-settings-bootstrap.php:523
|
5566 |
#, fuzzy
|
5567 |
msgctxt "settings"
|
5568 |
msgid "Include listing contact form on listing pages"
|
5569 |
msgstr "Kontaktform in Eintragsseiten einfügen?"
|
5570 |
|
5571 |
+
#: includes/admin/settings/class-settings-bootstrap.php:524
|
5572 |
#, fuzzy
|
5573 |
msgctxt "settings"
|
5574 |
msgid ""
|
5578 |
"Benutzer erlauben den Eintragsauthor privat zu kontaktieren. Der Author "
|
5579 |
"bekommt eine Nachricht per E-mail zugeschickt."
|
5580 |
|
5581 |
+
#: includes/admin/settings/class-settings-bootstrap.php:533
|
5582 |
#, fuzzy
|
5583 |
msgctxt "settings"
|
5584 |
msgid "Require login for using the contact form"
|
5585 |
msgstr "Einloggen um das Kontaktformular nutzen zu können?"
|
5586 |
|
5587 |
+
#: includes/admin/settings/class-settings-bootstrap.php:544
|
5588 |
#, fuzzy
|
5589 |
msgctxt "settings"
|
5590 |
msgid "Maximum number of daily contact form submits from registered users"
|
5591 |
msgstr "Maximale Nummer der Kontaktformmails die pro Tag zugesendet werden"
|
5592 |
|
5593 |
+
#: includes/admin/settings/class-settings-bootstrap.php:545
|
5594 |
#, fuzzy
|
5595 |
msgctxt "settings"
|
5596 |
msgid ""
|
5600 |
"Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
|
5601 |
"unbegrenzt pro Tag."
|
5602 |
|
5603 |
+
#: includes/admin/settings/class-settings-bootstrap.php:557
|
5604 |
#, fuzzy
|
5605 |
msgctxt "settings"
|
5606 |
msgid "Maximum number of contact form submits for each listing per day"
|
5607 |
msgstr "Maximale Nummer der Kontaktformmails die pro Tag zugesendet werden"
|
5608 |
|
5609 |
+
#: includes/admin/settings/class-settings-bootstrap.php:558
|
5610 |
#, fuzzy
|
5611 |
msgctxt "settings"
|
5612 |
msgid ""
|
5616 |
"Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
|
5617 |
"unbegrenzt pro Tag."
|
5618 |
|
5619 |
+
#: includes/admin/settings/class-settings-bootstrap.php:570
|
5620 |
#, fuzzy
|
5621 |
msgctxt "settings"
|
5622 |
msgid "Include comment form on listing pages?"
|
5623 |
msgstr "Kommentarform einfügen in Eintragsseiten?"
|
5624 |
|
5625 |
+
#: includes/admin/settings/class-settings-bootstrap.php:585
|
5626 |
#, fuzzy
|
5627 |
msgctxt "settings"
|
5628 |
msgid "Show listings under categories on main page"
|
5629 |
msgstr "Einträge unter Kategorien anzeigen auf der Hauptseite?"
|
5630 |
|
5631 |
+
#: includes/admin/settings/class-settings-bootstrap.php:595
|
5632 |
msgctxt "settings"
|
5633 |
msgid ""
|
5634 |
"Prevents featured listings from floating to the top of the selected page."
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: includes/admin/settings/class-settings-bootstrap.php:625
|
5638 |
msgctxt "settings"
|
5639 |
msgid ""
|
5640 |
"The user ID or login of an existing user account. If login is not required "
|
5642 |
"that will not a be posting a listing is best."
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: includes/admin/settings/class-settings-bootstrap.php:651
|
5646 |
#, fuzzy
|
5647 |
msgctxt "settings"
|
5648 |
msgid "Edit post status"
|
5649 |
msgstr "Post Status Bearbeiten"
|
5650 |
|
5651 |
+
#: includes/admin/settings/class-settings-bootstrap.php:666
|
5652 |
#, fuzzy
|
5653 |
msgctxt "settings"
|
5654 |
msgid "Status of deleted listings"
|
5655 |
msgstr "Status der gelöschten Einträge"
|
5656 |
|
5657 |
+
#: includes/admin/settings/class-settings-bootstrap.php:717
|
5658 |
#, fuzzy
|
5659 |
msgctxt "settings"
|
5660 |
msgid "Submit Listing instructions message"
|
5661 |
msgstr "Nachricht mit Anweisungen für einen neuen Eintrag"
|
5662 |
|
5663 |
+
#: includes/admin/settings/class-settings-bootstrap.php:728
|
5664 |
#, fuzzy
|
5665 |
msgctxt "settings"
|
5666 |
msgid "Order categories list by"
|
5667 |
msgstr "Kategorieliste sortieren nach"
|
5668 |
|
5669 |
+
#: includes/admin/settings/class-settings-bootstrap.php:742
|
5670 |
#, fuzzy
|
5671 |
msgctxt "settings"
|
5672 |
msgid "Sort order for categories"
|
5673 |
msgstr "Sortierung für Kategorien"
|
5674 |
|
5675 |
+
#: includes/admin/settings/class-settings-bootstrap.php:755
|
5676 |
#, fuzzy
|
5677 |
msgctxt "settings"
|
5678 |
msgid "Show category post count"
|
5679 |
msgstr "Kategoriepost Anzahl anzeigen?"
|
5680 |
|
5681 |
+
#: includes/admin/settings/class-settings-bootstrap.php:764
|
5682 |
#, fuzzy
|
5683 |
msgctxt "settings"
|
5684 |
msgid "Hide empty categories"
|
5685 |
msgstr "Leere Kategorien verbergen?"
|
5686 |
|
5687 |
+
#: includes/admin/settings/class-settings-bootstrap.php:773
|
5688 |
#, fuzzy
|
5689 |
msgctxt "settings"
|
5690 |
msgid "Show only parent categories in category list"
|
5691 |
msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
|
5692 |
|
5693 |
+
#: includes/admin/settings/class-settings-bootstrap.php:785
|
5694 |
#, fuzzy
|
5695 |
msgctxt "settings"
|
5696 |
msgid "Order directory listings by"
|
5697 |
msgstr "Anordnung Verzeichniseinträge durch"
|
5698 |
|
5699 |
+
#: includes/admin/settings/class-settings-bootstrap.php:809
|
5700 |
#, fuzzy
|
5701 |
msgctxt "settings"
|
5702 |
msgid "Sort directory listings by"
|
5703 |
msgstr "Verzeichnissortierung der Einträge durch"
|
5704 |
|
5705 |
+
#: includes/admin/settings/class-settings-bootstrap.php:810
|
5706 |
#, fuzzy
|
5707 |
msgctxt "settings"
|
5708 |
msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
|
5710 |
"Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
|
5711 |
"Reihenfolge Z-A"
|
5712 |
|
5713 |
+
#: includes/admin/settings/class-settings-bootstrap.php:823
|
5714 |
#, fuzzy
|
5715 |
msgctxt "settings"
|
5716 |
msgid "Enable sort bar"
|
5717 |
msgstr "Sortierung aktivieren?"
|
5718 |
|
5719 |
+
#: includes/admin/settings/class-settings-bootstrap.php:832
|
5720 |
#, fuzzy
|
5721 |
msgctxt "settings"
|
5722 |
msgid "Sortbar Fields"
|
5723 |
msgstr "Sortierbare Felder"
|
5724 |
|
5725 |
+
#: includes/admin/settings/class-settings-bootstrap.php:851
|
5726 |
#, fuzzy
|
5727 |
msgctxt "settings"
|
5728 |
msgid "Show the \"Submit listing\" button"
|
5729 |
msgstr "\"Eintrag erstellen” Schaltfläche anzeigen."
|
5730 |
|
5731 |
+
#: includes/admin/settings/class-settings-bootstrap.php:852
|
5732 |
msgctxt "settings"
|
5733 |
msgid ""
|
5734 |
"Hides the button used by the main UI to allow listing submission, but does "
|
5736 |
"customize the submit listing button on your own)"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: includes/admin/settings/class-settings-bootstrap.php:862
|
5740 |
#, fuzzy
|
5741 |
msgctxt "settings"
|
5742 |
msgid "Show \"Search listings\""
|
5743 |
msgstr "\"Einträge durchsuchen\" anzeigen"
|
5744 |
|
5745 |
+
#: includes/admin/settings/class-settings-bootstrap.php:871
|
5746 |
#, fuzzy
|
5747 |
msgctxt "settings"
|
5748 |
msgid "Show the \"View Listings\" button"
|
5749 |
msgstr "\"Einträge anschauen\" Schaltfläche anzeigen"
|
5750 |
|
5751 |
+
#: includes/admin/settings/class-settings-bootstrap.php:880
|
5752 |
#, fuzzy
|
5753 |
msgctxt "settings"
|
5754 |
msgid "Show the \"Manage Listings\" button"
|
5755 |
msgstr "\"Einträge anschauen\" Schaltfläche anzeigen"
|
5756 |
|
5757 |
+
#: includes/admin/settings/class-settings-bootstrap.php:924
|
|
|
|
|
|
|
|
|
|
|
|
|
5758 |
#, fuzzy
|
5759 |
msgctxt "settings"
|
5760 |
msgid "Image Settings"
|
5761 |
msgstr "Bildeinstellungen"
|
5762 |
|
5763 |
+
#: includes/admin/settings/class-settings-bootstrap.php:929
|
5764 |
#, fuzzy
|
5765 |
msgctxt "settings"
|
5766 |
msgid "Allow images"
|
5767 |
msgstr "Bilder erlauben?"
|
5768 |
|
5769 |
+
#: includes/admin/settings/class-settings-bootstrap.php:940
|
5770 |
#, fuzzy
|
5771 |
msgctxt "settings"
|
5772 |
msgid "Min Image File Size (KB)"
|
5773 |
msgstr "Maximale Bildgröße (KB)"
|
5774 |
|
5775 |
+
#: includes/admin/settings/class-settings-bootstrap.php:952
|
5776 |
#, fuzzy
|
5777 |
msgctxt "settings"
|
5778 |
msgid "Max Image File Size (KB)"
|
5779 |
msgstr "Maximale Bildgröße (KB)"
|
5780 |
|
5781 |
+
#: includes/admin/settings/class-settings-bootstrap.php:964
|
5782 |
#, fuzzy
|
5783 |
msgctxt "settings"
|
5784 |
msgid "Min image width (px)"
|
5785 |
msgstr "Bildergröße (in px):"
|
5786 |
|
5787 |
+
#: includes/admin/settings/class-settings-bootstrap.php:974
|
5788 |
#, fuzzy
|
5789 |
msgctxt "settings"
|
5790 |
msgid "Min image height (px)"
|
5791 |
msgstr "Bilderhöhe (in px):"
|
5792 |
|
5793 |
+
#: includes/admin/settings/class-settings-bootstrap.php:988
|
5794 |
#, fuzzy
|
5795 |
msgctxt "settings"
|
5796 |
msgid "Max image width (px)"
|
5797 |
msgstr "Maximale Bildbreite"
|
5798 |
|
5799 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1000
|
5800 |
#, fuzzy
|
5801 |
msgctxt "settings"
|
5802 |
msgid "Max image height (px)"
|
5803 |
msgstr "Maximale Bildhöhe"
|
5804 |
|
5805 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1012
|
5806 |
#, fuzzy
|
5807 |
msgctxt "settings"
|
5808 |
msgid "Turn on thickbox/lightbox"
|
5809 |
msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
|
5810 |
|
5811 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1013
|
5812 |
#, fuzzy
|
5813 |
msgctxt "settings"
|
5814 |
msgid ""
|
5817 |
"Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
|
5818 |
"Erweiterungen entstehen"
|
5819 |
|
5820 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1019
|
5821 |
#, fuzzy
|
5822 |
msgctxt "settings"
|
5823 |
msgid "Thumbnails"
|
5824 |
msgstr "Thumbnails"
|
5825 |
|
5826 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1026
|
5827 |
#, fuzzy
|
5828 |
msgctxt "settings"
|
5829 |
msgid "Thumbnail width (px)"
|
5830 |
msgstr "Thumbnailbreite"
|
5831 |
|
5832 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1038
|
5833 |
#, fuzzy
|
5834 |
msgctxt "settings"
|
5835 |
msgid "Thumbnail height (px)"
|
5836 |
msgstr "Thumbnailbreite"
|
5837 |
|
5838 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1048
|
5839 |
#, fuzzy
|
5840 |
msgctxt "settings"
|
5841 |
msgid "Crop thumbnails to exact dimensions"
|
5842 |
msgstr "Vorschaubild auf die exakte Maße abschneiden?"
|
5843 |
|
5844 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1049
|
5845 |
#, fuzzy
|
5846 |
msgctxt "settings"
|
5847 |
msgid ""
|
5857 |
"Abhängig von den hochgeladenen Bildern können Thumbnails unterschiedliche "
|
5858 |
"Höhen haben."
|
5859 |
|
5860 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1060
|
5861 |
msgctxt "settings"
|
5862 |
msgid "Enforce image upload on submit/edit"
|
5863 |
msgstr ""
|
5864 |
|
5865 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1081
|
5866 |
#, fuzzy
|
5867 |
msgctxt "settings"
|
5868 |
msgid "Default thumbnail image size"
|
5869 |
msgstr "Voreingestellter-Nutzer"
|
5870 |
|
5871 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1084
|
5872 |
msgctxt "settings"
|
5873 |
msgid ""
|
5874 |
"This indicates the size of the thumbnail to be used both in excerpt and "
|
5877 |
"width as the starting point."
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1093
|
5881 |
msgctxt "settings"
|
5882 |
msgid "Use \"Coming Soon\" photo for listings without any (primary) images?"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1117
|
5886 |
msgctxt "settings"
|
5887 |
msgid "Display featured (sticky) badge"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1131
|
5891 |
#, fuzzy
|
5892 |
msgctxt "settings"
|
5893 |
msgid "Featured Badge image"
|
5894 |
msgstr "Featured Levels Module"
|
5895 |
|
5896 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1141
|
5897 |
#, fuzzy
|
5898 |
msgctxt "settings"
|
5899 |
msgid "Featured Badge URL"
|
5900 |
msgstr "Featured Levels Module"
|
5901 |
|
5902 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1142
|
5903 |
msgctxt "settings"
|
5904 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1166
|
5908 |
#, fuzzy
|
5909 |
msgctxt "settings"
|
5910 |
msgid "Fee Order"
|
5911 |
msgstr "Auftrag"
|
5912 |
|
5913 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1179
|
5914 |
#, fuzzy
|
5915 |
msgctxt "settings"
|
5916 |
msgid "Put payment gateways in test mode"
|
5917 |
msgstr "Bezahlungsgateway im Testmodus ausführen?"
|
5918 |
|
5919 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1189
|
5920 |
#, fuzzy
|
5921 |
msgctxt "settings"
|
5922 |
msgid "Currency Code"
|
5923 |
msgstr "Währungsschlüssel"
|
5924 |
|
5925 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1228
|
5926 |
#, fuzzy
|
5927 |
msgctxt "settings"
|
5928 |
msgid "Currency Symbol"
|
5929 |
msgstr "Währungssymbol"
|
5930 |
|
5931 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1238
|
5932 |
#, fuzzy
|
5933 |
msgctxt "settings"
|
5934 |
msgid "Currency symbol display"
|
5935 |
msgstr "Währungssymbol Anzeige"
|
5936 |
|
5937 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5938 |
msgctxt "settings"
|
5939 |
msgid "Include plan description in receipt"
|
5940 |
msgstr ""
|
5941 |
|
5942 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1261
|
5943 |
#, fuzzy
|
5944 |
msgctxt "settings"
|
5945 |
msgid "Thank you for payment message"
|
5946 |
msgstr "Danke für die Bezahlung Nachricht"
|
5947 |
|
5948 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1314
|
5949 |
msgctxt "settings"
|
5950 |
msgid "Ask users to come back for abandoned payments"
|
5951 |
msgstr ""
|
5952 |
|
5953 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1325
|
5954 |
#, fuzzy
|
5955 |
msgctxt "settings"
|
5956 |
msgid "Listing abandonment threshold (hours)"
|
5957 |
msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
|
5958 |
|
5959 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
5960 |
#, fuzzy
|
5961 |
msgctxt "settings"
|
5962 |
msgid "Display email address fields publicly"
|
5963 |
msgstr "E-mail Adressfeld öffentlich anzeigen?"
|
5964 |
|
5965 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1343
|
5966 |
#, fuzzy
|
5967 |
msgctxt "settings"
|
5968 |
msgid ""
|
5972 |
msgstr ""
|
5973 |
"E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
|
5974 |
|
5975 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5976 |
#, fuzzy
|
5977 |
msgctxt "settings"
|
5978 |
msgid "How to determine the listing's email address?"
|
5979 |
msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
|
5980 |
|
5981 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5982 |
#, fuzzy
|
5983 |
msgctxt "settings"
|
5984 |
msgid ""
|
5988 |
"Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
|
5989 |
"Eintrag abläuft."
|
5990 |
|
5991 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1366
|
5992 |
msgctxt "settings"
|
5993 |
msgid "Email Content-Type header"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1367
|
5997 |
msgctxt "settings"
|
5998 |
msgid ""
|
5999 |
"Use this setting to control the format of the emails explicitly. Some "
|
6002 |
"then \"Both\"."
|
6003 |
msgstr ""
|
6004 |
|
6005 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1428
|
6006 |
#, fuzzy
|
6007 |
msgctxt "settings"
|
6008 |
msgid "Templates"
|
6009 |
msgstr "E-mail Templates"
|
6010 |
|
6011 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1433
|
6012 |
#, fuzzy
|
6013 |
msgctxt "settings"
|
6014 |
msgid "Email confirmation message"
|
6015 |
msgstr "Email Bestätigungsnachricht"
|
6016 |
|
6017 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
6018 |
#, fuzzy
|
6019 |
msgctxt "settings"
|
6020 |
msgid "Sent after a listing has been submitted."
|
6021 |
msgstr "Senden nachdem der Eintrag eingestellt wurde."
|
6022 |
|
6023 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1452
|
6024 |
#, fuzzy
|
6025 |
msgctxt "settings"
|
6026 |
msgid "Listing published message"
|
6027 |
msgstr "Eintrag veröffentlicht Nachricht"
|
6028 |
|
6029 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1453
|
6030 |
#, fuzzy
|
6031 |
msgctxt "settings"
|
6032 |
msgid "Sent when the listing has been published or approved by an admin."
|
6034 |
"Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
|
6035 |
"wurde."
|
6036 |
|
6037 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1470
|
6038 |
#, fuzzy
|
6039 |
msgctxt "settings"
|
6040 |
msgid "Listing Contact Message"
|
6041 |
msgstr "Neue Eintrag Anweisungen"
|
6042 |
|
6043 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1471
|
6044 |
#, fuzzy
|
6045 |
msgctxt "settings"
|
6046 |
msgid ""
|
6050 |
"An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
|
6051 |
"verwendet."
|
6052 |
|
6053 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1511
|
6054 |
#, fuzzy
|
6055 |
msgctxt "settings"
|
6056 |
msgid "Payment completed message"
|
6057 |
msgstr "Erneuerungserinnerung E-mail Nachricht"
|
6058 |
|
6059 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
6060 |
msgctxt "settings"
|
6061 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
6062 |
msgstr ""
|
6063 |
|
6064 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1548
|
6065 |
#, fuzzy
|
6066 |
msgctxt "settings"
|
6067 |
msgid "Payment abandoned reminder message"
|
6068 |
msgstr "Erneuerungserinnerung E-mail Nachricht"
|
6069 |
|
6070 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1674
|
6071 |
msgctxt "settings"
|
6072 |
msgid "Cropped"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
+
#: includes/admin/settings/class-settings.php:499
|
6076 |
+
#: includes/admin/settings/class-settings.php:510
|
6077 |
msgctxt "settings"
|
6078 |
msgid "\"%s\" can not be empty."
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: includes/admin/settings/class-settings.php:527
|
6082 |
msgctxt "settings"
|
6083 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6084 |
msgstr ""
|
6110 |
msgid "Could not change the active theme to \"%s\"."
|
6111 |
msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
|
6112 |
|
6113 |
+
#: includes/admin/controllers/class-themes-admin.php:150
|
6114 |
msgctxt "themes"
|
6115 |
msgid "Active theme changed to \"%s\"."
|
6116 |
msgstr "Das aktive Theme wurde geändert zu \"%s\"."
|
6117 |
|
6118 |
+
#: includes/admin/controllers/class-themes-admin.php:153
|
6119 |
msgctxt "themes"
|
6120 |
msgid ""
|
6121 |
"%s requires that you tag your existing fields to match some places we want "
|
6125 |
"zu treffen, um Ihre Daten auf das Theme zu platzieren. Unten sind Felder, "
|
6126 |
"von denen wir vermuten, dass sie fehlen."
|
6127 |
|
6128 |
+
#: includes/admin/controllers/class-themes-admin.php:164
|
6129 |
msgctxt "themes"
|
6130 |
msgid "Map My Fields"
|
6131 |
msgstr "Formularfelder verknüpfen"
|
6132 |
|
6133 |
+
#: includes/admin/controllers/class-themes-admin.php:172
|
6134 |
msgctxt "themes"
|
6135 |
msgid "Suggested fields created successfully."
|
6136 |
msgstr "Benötigtes Feld wurde erfolgreich erstellt."
|
6137 |
|
6138 |
+
#: includes/admin/controllers/class-themes-admin.php:175
|
6139 |
msgctxt "themes"
|
6140 |
msgid "Theme installed successfully."
|
6141 |
msgstr "Benötigtes Feld wurde erfolgreich erstellt."
|
6142 |
|
6143 |
+
#: includes/admin/controllers/class-themes-admin.php:178
|
6144 |
#, fuzzy
|
6145 |
msgctxt "themes"
|
6146 |
msgid "Theme was deleted successfully."
|
6147 |
msgstr "Der Import wurde erfolgreich abgeschlossen."
|
6148 |
|
6149 |
+
#: includes/admin/controllers/class-themes-admin.php:181
|
6150 |
msgctxt "themes"
|
6151 |
msgid "Could not delete theme directory. Check permissions."
|
6152 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
6153 |
|
6154 |
+
#: includes/admin/controllers/class-themes-admin.php:234
|
6155 |
msgctxt "themes"
|
6156 |
msgid "Please upload a valid theme file."
|
6157 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
6158 |
|
6159 |
+
#: includes/admin/controllers/class-themes-admin.php:243
|
6160 |
msgctxt "themes"
|
6161 |
msgid "Could not move \"%s\" to a temporary directory."
|
6162 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
6163 |
|
6164 |
+
#: includes/admin/controllers/class-themes-admin.php:329
|
6165 |
msgctxt "themes"
|
6166 |
msgid "Activate your <a>license key</a> to use this theme."
|
6167 |
msgstr ""
|
6168 |
"Aktivieren Sie Ihren <a>Lizenzschlüssel</a>, um dieses Theme zu verwenden."
|
6169 |
|
6170 |
+
#: includes/admin/controllers/class-themes-admin.php:372
|
6171 |
#, fuzzy
|
6172 |
msgctxt "themes"
|
6173 |
msgid "Invalid theme ID"
|
6174 |
msgstr "Ungültige Feld ID"
|
6175 |
|
6176 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
6177 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
6178 |
msgctxt "themes"
|
6179 |
msgid "Could not update theme: %s"
|
6247 |
"Erweiterungen abzuschalten und/oder den Wert von 'memory_limit' und "
|
6248 |
"'max_execution_time' in deiner php.ini Konfigurationsdatei anzupassen."
|
6249 |
|
6250 |
+
#: templates/admin/csv-export.tpl.php:30
|
6251 |
msgctxt "admin csv-export"
|
6252 |
msgid "Export settings"
|
6253 |
msgstr "Export Einstellungen"
|
6254 |
|
6255 |
+
#: templates/admin/csv-export.tpl.php:36
|
6256 |
msgctxt "admin csv-export"
|
6257 |
msgid "Which listings to export?"
|
6258 |
msgstr "Welche Einträge sollen exportiert werden?"
|
6259 |
|
6260 |
+
#: templates/admin/csv-export.tpl.php:41
|
|
|
|
|
|
|
|
|
|
|
6261 |
msgctxt "admin csv-export"
|
6262 |
msgid "Active Only"
|
6263 |
msgstr "Nur Aktiv"
|
6264 |
|
6265 |
+
#: templates/admin/csv-export.tpl.php:42
|
6266 |
msgctxt "admin csv-export"
|
6267 |
msgid "Active + Pending Renewal"
|
6268 |
msgstr "Aktiv + Ausstehende Erneuerungen"
|
6269 |
|
|
|
|
|
|
|
|
|
|
|
6270 |
#: templates/admin/csv-export.tpl.php:50
|
6271 |
msgctxt "admin csv-export"
|
6272 |
msgid "Export images"
|
6273 |
msgstr "Bilder exportieren"
|
6274 |
|
6275 |
+
#: templates/admin/csv-export.tpl.php:65
|
6276 |
+
msgctxt "admin csv-export"
|
6277 |
+
msgid "Include unique IDs for each listing (sequence_id column)."
|
6278 |
+
msgstr "Füge Schlüssel Ids für jeden Eintrag hinzu (sequence_id_column)"
|
6279 |
+
|
6280 |
+
#: templates/admin/csv-export.tpl.php:78
|
6281 |
+
msgctxt "admin csv-export"
|
6282 |
+
msgid "Author information (username)"
|
6283 |
+
msgstr "Author Informationen (Benutzername)"
|
6284 |
+
|
6285 |
+
#: templates/admin/csv-export.tpl.php:88
|
6286 |
+
msgctxt "admin csv-export"
|
6287 |
+
msgid "Listing expiration date"
|
6288 |
+
msgstr "Eintrag Enddatum"
|
6289 |
+
|
6290 |
+
#: templates/admin/csv-export.tpl.php:97
|
6291 |
+
#, fuzzy
|
6292 |
+
msgctxt "admin csv-export"
|
6293 |
+
msgid "Listing created date"
|
6294 |
+
msgstr "Eintrag Bilder"
|
6295 |
+
|
6296 |
+
#: templates/admin/csv-export.tpl.php:106
|
6297 |
+
#, fuzzy
|
6298 |
+
msgctxt "admin csv-export"
|
6299 |
+
msgid "Listing last updated date"
|
6300 |
+
msgstr "Eintrag Enddatum"
|
6301 |
+
|
6302 |
+
#: templates/admin/csv-export.tpl.php:115
|
6303 |
+
#, fuzzy
|
6304 |
+
msgctxt "admin csv-export"
|
6305 |
+
msgid "Listing T&C acceptance date"
|
6306 |
+
msgstr "Eintrag Bilder"
|
6307 |
+
|
6308 |
+
#: templates/admin/csv-export.tpl.php:128
|
6309 |
+
msgctxt "admin csv-export"
|
6310 |
+
msgid "What operating system will you use to edit the CSV file?"
|
6311 |
+
msgstr "Welches Betriebssystem verwenden Sie, um die CSV-Datei zu bearbeiten?"
|
6312 |
+
|
6313 |
+
#: templates/admin/csv-export.tpl.php:140
|
6314 |
+
msgctxt "admin csv-export"
|
6315 |
+
msgid "Windows"
|
6316 |
+
msgstr "Windows"
|
6317 |
+
|
6318 |
+
#: templates/admin/csv-export.tpl.php:148
|
6319 |
+
msgctxt "admin csv-export"
|
6320 |
+
msgid "macOS"
|
6321 |
+
msgstr "MacOS"
|
6322 |
+
|
6323 |
+
#: templates/admin/csv-export.tpl.php:162
|
6324 |
+
msgctxt "admin csv-export"
|
6325 |
+
msgid "Category Separator"
|
6326 |
+
msgstr "Kategorietrenner"
|
6327 |
+
|
6328 |
+
#: templates/admin/csv-export.tpl.php:172
|
6329 |
+
msgctxt "admin csv-export"
|
6330 |
+
msgid "Export Listings"
|
6331 |
+
msgstr "Export Einträge"
|
6332 |
+
|
6333 |
+
#: templates/admin/csv-export.tpl.php:178
|
6334 |
+
msgctxt "admin csv-export"
|
6335 |
+
msgid "Export in Progress..."
|
6336 |
+
msgstr "Export wird durchgeführt..."
|
6337 |
+
|
6338 |
+
#: templates/admin/csv-export.tpl.php:179
|
6339 |
msgctxt "admin csv-export"
|
6340 |
msgid ""
|
6341 |
+
"Your export file is being prepared. Please <u>do not leave</u> this page "
|
6342 |
+
"until the export finishes."
|
6343 |
msgstr ""
|
6344 |
+
"Die Exportdatei wurde vorbereitet. Bitte <u>verlasse</u> diese Seite nicht "
|
6345 |
+
"bis der Export abgeschlossen wurde."
|
6346 |
|
6347 |
+
#: templates/admin/csv-export.tpl.php:182
|
6348 |
msgctxt "admin csv-export"
|
6349 |
+
msgid "No. of listings:"
|
6350 |
+
msgstr "Anzahl der Einträge:"
|
6351 |
+
|
6352 |
+
#: templates/admin/csv-export.tpl.php:184
|
6353 |
+
msgctxt "admin csv-export"
|
6354 |
+
msgid "Approximate export file size:"
|
6355 |
+
msgstr "Exportdatei Größe ca. :"
|
6356 |
+
|
6357 |
+
#: templates/admin/csv-export.tpl.php:191
|
6358 |
+
msgctxt "admin csv-export"
|
6359 |
+
msgid "Cancel Export"
|
6360 |
+
msgstr "Export abbrechen"
|
6361 |
+
|
6362 |
+
#: templates/admin/csv-export.tpl.php:196
|
6363 |
+
msgctxt "admin csv-export"
|
6364 |
+
msgid "Export Complete"
|
6365 |
+
msgstr "Export vollständig"
|
6366 |
+
|
6367 |
+
#: templates/admin/csv-export.tpl.php:197
|
6368 |
+
msgctxt "admin csv-export"
|
6369 |
+
msgid ""
|
6370 |
+
"Your export file has been successfully created and it is now ready for "
|
6371 |
+
"download."
|
6372 |
+
msgstr ""
|
6373 |
+
"Der Export wurde erfolgreich generiert und steht nun zum Herunterladen zur "
|
6374 |
+
"Verfügung."
|
6375 |
+
|
6376 |
+
#: templates/admin/csv-export.tpl.php:202
|
6377 |
+
#, fuzzy
|
6378 |
+
msgctxt "admin csv-export"
|
6379 |
+
msgid "Download %1$s (%2$s)"
|
6380 |
+
msgstr "Herunterladen %s (%s)"
|
6381 |
+
|
6382 |
+
#: templates/admin/csv-export.tpl.php:210
|
6383 |
+
msgctxt "admin csv-export"
|
6384 |
+
msgid ""
|
6385 |
+
"Click \"Cleanup\" once the file has been downloaded in order to remove all "
|
6386 |
+
"temporary data created by Business Directory during the export process."
|
6387 |
+
msgstr ""
|
6388 |
+
"Klicke \"Bereinigen\" wenn die Datei heruntergeladen wurde um alle "
|
6389 |
+
"temporären Daten zu löschen, die während des Exportprozesses erzeugt wurden."
|
6390 |
+
|
6391 |
+
#: templates/admin/csv-export.tpl.php:211
|
6392 |
+
msgctxt "admin csv-export"
|
6393 |
+
msgid "Cleanup"
|
6394 |
+
msgstr "Bereinigen"
|
6395 |
+
|
6396 |
+
#: templates/admin/csv-export.tpl.php:216
|
6397 |
+
msgctxt "admin csv-export"
|
6398 |
+
msgid "Export Canceled"
|
6399 |
+
msgstr "Export abgebrochen"
|
6400 |
+
|
6401 |
+
#: templates/admin/csv-export.tpl.php:217
|
6402 |
+
msgctxt "admin csv-export"
|
6403 |
+
msgid "The export has been canceled."
|
6404 |
+
msgstr "Der Export wurde abgebrochen."
|
6405 |
+
|
6406 |
+
#: templates/admin/csv-export.tpl.php:218
|
6407 |
+
msgctxt "admin csv-export"
|
6408 |
+
msgid "← Return to CSV Export"
|
6409 |
+
msgstr "← Zurück nach CSV Export"
|
6410 |
+
|
6411 |
+
#: includes/admin/csv-import.php:177
|
6412 |
+
msgctxt "admin csv-import"
|
6413 |
+
msgid "Whatever"
|
6414 |
+
msgstr "BeispielText"
|
6415 |
+
|
6416 |
+
#: includes/admin/csv-import.php:348
|
6417 |
+
msgctxt "admin csv-import"
|
6418 |
+
msgid "Please upload or select a CSV file."
|
6419 |
+
msgstr "Die hochgeladene Datei ist nicht im CSV Format."
|
6420 |
+
|
6421 |
+
#: includes/admin/csv-import.php:377
|
6422 |
+
msgctxt "admin csv-import"
|
6423 |
+
msgid ""
|
6424 |
+
"An error was detected while validating the CSV file for import. Please fix "
|
6425 |
+
"this before proceeding."
|
6426 |
+
msgstr ""
|
6427 |
+
"Beim überprüfen der der CSV-Datei wurde ein Fehler festgestellt. Bitte "
|
6428 |
+
"beheben sie diesen, bevor Sie mit dem Importieren fortfahren."
|
6429 |
+
|
6430 |
+
#: includes/admin/csv-import.php:386
|
6431 |
+
msgctxt "admin csv-import"
|
6432 |
+
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
6433 |
+
msgstr ""
|
6434 |
+
"Der Import ist im <b>Testmodus</b>. es wird nichts in die Datenbank "
|
6435 |
+
"geschrieben."
|
6436 |
+
|
6437 |
+
#: includes/admin/helpers/csv/class-csv-import.php:533
|
6438 |
+
msgctxt "admin csv-import"
|
6439 |
+
msgid ""
|
6440 |
+
"Could not create listing category \"<category-name>\". The operation failed "
|
6441 |
+
"with the following error: <error-message>."
|
6442 |
+
msgstr ""
|
6443 |
+
"Die Kategorieauflistung \"<category-name>\" konnte nicht erstellt werden. "
|
6444 |
+
"Der Vorgang ist mit dem folgenden Fehler fehlgeschlagen: <error-message>."
|
6445 |
+
|
6446 |
+
#: includes/admin/helpers/csv/class-csv-import.php:539
|
6447 |
+
msgctxt "admin csv-import"
|
6448 |
+
msgid "Could not create listing category \"%s\""
|
6449 |
+
msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
|
6450 |
+
|
6451 |
+
#: includes/admin/helpers/csv/class-csv-import.php:730
|
6452 |
+
msgctxt "admin csv-import"
|
6453 |
+
msgid "Username \"%s\" does not exist"
|
6454 |
+
msgstr "Benutzername \"%s\" existiert nicht"
|
6455 |
+
|
6456 |
+
#: includes/admin/helpers/csv/class-csv-import.php:757
|
6457 |
+
msgctxt "admin csv-import"
|
6458 |
+
msgid "There is no Plan with ID = <fee-id>"
|
6459 |
+
msgstr ""
|
6460 |
+
|
6461 |
+
#: includes/admin/helpers/csv/class-csv-import.php:788
|
6462 |
+
msgctxt "admin csv-import"
|
6463 |
+
msgid "Missing required field: %s"
|
6464 |
+
msgstr "Benötigtes nicht vorhandenes Feld: %s"
|
6465 |
+
|
6466 |
+
#: includes/admin/helpers/csv/class-csv-import.php:833
|
6467 |
+
msgctxt "admin csv-import"
|
6468 |
+
msgid "Listing category \"%s\" does not exist"
|
6469 |
+
msgstr "Eintragskategorie \"%s\" existiert nicht"
|
6470 |
+
|
6471 |
+
#: includes/admin/helpers/csv/class-csv-import.php:907
|
6472 |
+
msgctxt "admin csv-import"
|
6473 |
+
msgid "The string <string> couldn't be converted into a valid date."
|
6474 |
+
msgstr ""
|
6475 |
+
|
6476 |
+
#: templates/admin/csv-import-progress.tpl.php:5
|
6477 |
+
msgctxt "admin csv-import"
|
6478 |
+
msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
|
6479 |
+
msgstr ""
|
6480 |
+
"Während des Importes ist ein schwerwiegender Fehler aufgetreten. Der Grund "
|
6481 |
+
"dafür war: \"%s\"."
|
6482 |
+
|
6483 |
+
#: templates/admin/csv-import-progress.tpl.php:9
|
6484 |
+
msgctxt "admin csv-import"
|
6485 |
+
msgid ""
|
6486 |
+
"A fatal error occurred during the import. If connection wasn't lost during "
|
6487 |
+
"the import, please make sure that you have enough free disk space and memory "
|
6488 |
+
"available to PHP. Check your error logs for details."
|
6489 |
+
msgstr ""
|
6490 |
+
"Ein unvorhergesehener Fehler ist während des Exports aufgetreten. Bitte "
|
6491 |
+
"stelle sicher, dass du genügend Speicherplatz für PHP vorhanden ist. Schaue "
|
6492 |
+
"ins Fehlerprotokoll."
|
6493 |
+
|
6494 |
+
#: templates/admin/csv-import-progress.tpl.php:12
|
6495 |
+
#: templates/admin/csv-import-progress.tpl.php:19
|
6496 |
+
msgctxt "admin csv-import"
|
6497 |
+
msgid "← Return to CSV Import"
|
6498 |
+
msgstr "Zurück nach \"CSV Importieren\""
|
6499 |
+
|
6500 |
+
#: templates/admin/csv-import-progress.tpl.php:17
|
6501 |
+
msgctxt "admin csv-import"
|
6502 |
+
msgid "Import Canceled"
|
6503 |
+
msgstr "Export abgebrochen"
|
6504 |
+
|
6505 |
+
#: templates/admin/csv-import-progress.tpl.php:18
|
6506 |
+
msgctxt "admin csv-import"
|
6507 |
+
msgid "The import has been canceled."
|
6508 |
+
msgstr "Der Export wurde abgebrochen."
|
6509 |
+
|
6510 |
+
#: templates/admin/csv-import-progress.tpl.php:25
|
6511 |
+
#, fuzzy
|
6512 |
+
msgctxt "admin csv-import"
|
6513 |
+
msgid "Import Progress"
|
6514 |
+
msgstr "Import wird durchgeführt..."
|
6515 |
+
|
6516 |
+
#: templates/admin/csv-import-progress.tpl.php:28
|
6517 |
+
msgctxt "admin csv-import"
|
6518 |
+
msgid "Files"
|
6519 |
+
msgstr "CSV-Datei"
|
6520 |
+
|
6521 |
+
#: templates/admin/csv-import-progress.tpl.php:31
|
6522 |
+
msgctxt "admin csv-import"
|
6523 |
+
msgid "Rows in file"
|
6524 |
+
msgstr "Zeilen in Datei"
|
6525 |
+
|
6526 |
+
#: templates/admin/csv-import-progress.tpl.php:34
|
6527 |
+
msgctxt "admin csv-import"
|
6528 |
+
msgid "Progress"
|
6529 |
+
msgstr "Fortschritt"
|
6530 |
+
|
6531 |
+
#: templates/admin/csv-import-progress.tpl.php:38
|
6532 |
+
msgctxt "admin csv-import"
|
6533 |
+
msgid "Import has not started. Click \"Start Import\" to begin."
|
6534 |
+
msgstr ""
|
6535 |
+
"Der Import wurde noch nicht gestartet. Klicken Sie auf \"CSV-Datei "
|
6536 |
+
"importieren\" um zu starten."
|
6537 |
+
|
6538 |
+
#: templates/admin/csv-import-progress.tpl.php:39
|
6539 |
+
msgctxt "admin csv-import"
|
6540 |
+
msgid "Importing CSV file..."
|
6541 |
+
msgstr "Importiere CSV-Datei…"
|
6542 |
+
|
6543 |
+
#: templates/admin/csv-import-progress.tpl.php:45
|
6544 |
+
msgctxt "admin csv-import"
|
6545 |
+
msgid "Start Import"
|
6546 |
+
msgstr "CSV-Datei importieren"
|
6547 |
+
|
6548 |
+
#: templates/admin/csv-import-progress.tpl.php:46
|
6549 |
+
msgctxt "admin csv-import"
|
6550 |
+
msgid "Cancel Import"
|
6551 |
+
msgstr "Export abbrechen"
|
6552 |
+
|
6553 |
+
#: templates/admin/csv-import-progress.tpl.php:53
|
6554 |
+
msgctxt "admin csv-import"
|
6555 |
+
msgid "Import finished"
|
6556 |
+
msgstr "Import abgeschlossen"
|
6557 |
+
|
6558 |
+
#: templates/admin/csv-import-progress.tpl.php:56
|
6559 |
+
msgctxt "admin csv-import"
|
6560 |
+
msgid "Import was completed successfully."
|
6561 |
+
msgstr "Der Import wurde erfolgreich abgeschlossen."
|
6562 |
+
|
6563 |
+
#: templates/admin/csv-import-progress.tpl.php:60
|
6564 |
+
msgctxt "admin csv-import"
|
6565 |
+
msgid "Import was completed but some rows were rejected."
|
6566 |
+
msgstr "Der Import ist abgeschlossen. Einige Zeilen wurden abgelehnt."
|
6567 |
|
6568 |
+
#: templates/admin/csv-import-progress.tpl.php:63
|
6569 |
+
msgctxt "admin csv-import"
|
6570 |
+
msgid "Import Summary"
|
6571 |
+
msgstr "Import Zusammenfassung"
|
6572 |
|
6573 |
+
#: templates/admin/csv-import-progress.tpl.php:65
|
6574 |
+
msgctxt "admin csv-import"
|
6575 |
+
msgid "Rows in file:"
|
6576 |
+
msgstr "Zeilen in Datei:"
|
6577 |
|
6578 |
+
#: templates/admin/csv-import-progress.tpl.php:68
|
6579 |
+
msgctxt "admin csv-import"
|
6580 |
+
msgid "Imported rows:"
|
6581 |
+
msgstr "Korrekt importierte Zeilen:"
|
6582 |
|
6583 |
+
#: templates/admin/csv-import-progress.tpl.php:71
|
6584 |
+
msgctxt "admin csv-import"
|
6585 |
+
msgid "Rejected rows:"
|
6586 |
+
msgstr "Abgelehnte Zeilen:"
|
|
|
6587 |
|
6588 |
+
#: templates/admin/csv-import-progress.tpl.php:76
|
6589 |
+
msgctxt "admin csv-import"
|
6590 |
+
msgid "Import Warnings"
|
6591 |
+
msgstr "Import-Einstellungen"
|
|
|
6592 |
|
6593 |
+
#: templates/admin/csv-import-progress.tpl.php:79
|
6594 |
+
msgctxt "admin csv-import"
|
6595 |
+
msgid "Line #"
|
6596 |
+
msgstr "Zeile #"
|
|
|
6597 |
|
6598 |
+
#: templates/admin/csv-import-progress.tpl.php:80
|
6599 |
+
msgctxt "admin csv-import"
|
6600 |
+
msgid "Line"
|
6601 |
+
msgstr "Zeile"
|
6602 |
|
6603 |
+
#: templates/admin/csv-import-progress.tpl.php:81
|
6604 |
+
msgctxt "admin csv-import"
|
6605 |
+
msgid "Warning"
|
6606 |
+
msgstr "Warnung"
|
6607 |
|
6608 |
+
#: templates/admin/csv-import.tpl.php:27
|
6609 |
+
msgctxt "admin csv-import"
|
6610 |
+
msgid "Here, you can import data into your directory using the CSV format."
|
6611 |
+
msgstr ""
|
6612 |
+
"Hier können Sie mit dem CSV-Format Daten in Ihr Verzeichnis importieren."
|
6613 |
|
6614 |
+
#: templates/admin/csv-import.tpl.php:61 templates/admin/csv-import.tpl.php:90
|
6615 |
+
msgctxt "admin csv-import"
|
6616 |
+
msgid "... or <a>select a file uploaded to the imports folder</a>"
|
|
|
|
|
|
|
|
|
6617 |
msgstr ""
|
6618 |
+
"... oder <a>wählen sie eine Datei die im upload Ordner hochgeladen wurde</a>"
|
|
|
|
|
|
|
|
|
6619 |
|
6620 |
+
#: templates/admin/csv-import.tpl.php:71 templates/admin/csv-import.tpl.php:101
|
6621 |
+
msgctxt "admin csv-import"
|
6622 |
+
msgid "(Upload new file)"
|
6623 |
+
msgstr "(Neue Datei hochladen)"
|
6624 |
|
6625 |
+
#: templates/admin/csv-import.tpl.php:126
|
6626 |
+
msgctxt "admin csv-import"
|
6627 |
+
msgid "Comma (,)"
|
6628 |
+
msgstr "Komma (,)"
|
6629 |
|
6630 |
+
#: templates/admin/csv-import.tpl.php:133
|
6631 |
+
msgctxt "admin csv-import"
|
6632 |
+
msgid "Semicolon (;)"
|
6633 |
+
msgstr "Semikolon (;)"
|
6634 |
|
6635 |
+
#: templates/admin/csv-import.tpl.php:192
|
6636 |
+
#, fuzzy
|
6637 |
+
msgctxt "admin csv-import"
|
6638 |
+
msgid "Preserve existing status"
|
6639 |
+
msgstr "Einträge"
|
6640 |
+
|
6641 |
+
#: templates/admin/csv-import.tpl.php:243
|
6642 |
+
msgctxt "admin csv-import"
|
6643 |
msgid ""
|
6644 |
+
"Select a default user to be used if the username column is not present in "
|
6645 |
+
"the CSV file."
|
6646 |
msgstr ""
|
6647 |
+
"Wählen Sie einen Benutzernamen der verwendet werden soll, wenn die Username-"
|
6648 |
+
"Spalte in der CSV-Datei nicht vorhanden ist."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6649 |
|
6650 |
+
#: templates/admin/csv-import.tpl.php:277
|
6651 |
+
msgctxt "admin csv-import"
|
6652 |
+
msgid "Test Import"
|
6653 |
+
msgstr "Importtest"
|
6654 |
|
6655 |
+
#: templates/admin/csv-import.tpl.php:278
|
6656 |
+
msgctxt "admin csv-import"
|
6657 |
+
msgid "Import Listings"
|
6658 |
+
msgstr "Einträge importieren"
|
6659 |
|
6660 |
+
#: templates/admin/csv-import.tpl.php:328
|
6661 |
+
#, fuzzy
|
6662 |
+
msgctxt "admin csv-import"
|
6663 |
msgid ""
|
6664 |
+
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
6665 |
+
"updating listings from external sources."
|
6666 |
msgstr ""
|
6667 |
+
"Tag des Eintragende formatiert als YYYY-MM-DD. Benutze diese Spalte, wenn "
|
6668 |
+
"Einträge aus externen Quellen hinzugefügt oder aktualisiert werden."
|
|
|
|
|
|
|
|
|
|
|
|
|
6669 |
|
6670 |
+
#: templates/admin/csv-import.tpl.php:349
|
6671 |
+
msgctxt "admin csv-import"
|
6672 |
msgid ""
|
6673 |
+
"Internal Sequence ID used to allow listing updates from external sources."
|
|
|
6674 |
msgstr ""
|
6675 |
+
"Interne Sequenz ID wird benutzt um Aktualisierungen von Einträgen aus "
|
6676 |
+
"externer Quellen durchzuführen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6677 |
|
6678 |
+
#: templates/admin/csv-import.tpl.php:356
|
6679 |
+
msgctxt "admin csv-import"
|
6680 |
+
msgid ""
|
6681 |
+
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
6682 |
+
"adding or updating listings from external sources."
|
6683 |
+
msgstr ""
|
6684 |
+
"Tag des Eintragende formatiert als YYYY-MM-DD. Benutze diese Spalte, wenn "
|
6685 |
+
"Einträge aus externen Quellen hinzugefügt oder aktualisiert werden."
|
6686 |
|
6687 |
#: includes/admin/csv-import.php:304
|
6688 |
#, fuzzy
|
6837 |
msgid "All"
|
6838 |
msgstr "Alle"
|
6839 |
|
6840 |
+
#: includes/admin/settings/class-settings-bootstrap.php:641
|
6841 |
+
#: includes/admin/settings/class-settings-bootstrap.php:654
|
6842 |
msgctxt "post status"
|
6843 |
msgid "Published"
|
6844 |
msgstr "Veröffentlicht"
|
6845 |
|
6846 |
+
#: includes/admin/settings/class-settings-bootstrap.php:669
|
6847 |
msgctxt "post status"
|
6848 |
msgid "Draft"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
+
#: includes/admin/settings/class-settings-bootstrap.php:670
|
6852 |
msgctxt "post status"
|
6853 |
msgid "Trash"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
#. translators: %s: url shortcode
|
6857 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
6858 |
msgctxt "contact email"
|
6859 |
msgid "You have received a reply from your listing at %s."
|
6860 |
msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
|
6861 |
|
6862 |
#. translators: %s: name shortcode
|
6863 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1479
|
6864 |
msgctxt "contact email"
|
6865 |
msgid "Name: %s"
|
6866 |
msgstr "Name: %s"
|
6867 |
|
6868 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1487
|
6869 |
msgctxt "contact email"
|
6870 |
msgid "Message:"
|
6871 |
msgstr "Nachricht:"
|
6872 |
|
6873 |
#. translators: %s: date shortcode
|
6874 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1491
|
6875 |
msgctxt "contact email"
|
6876 |
msgid "Time: %s"
|
6877 |
msgstr "Zeit: %s"
|
7023 |
msgid "Featured Listing"
|
7024 |
msgstr "Unterstützter Eintrag"
|
7025 |
|
7026 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:198
|
7027 |
#, fuzzy
|
7028 |
msgctxt "migrate-18"
|
7029 |
msgid "Featured Levels migration is complete."
|
7030 |
msgstr "Featured Levels Module"
|
7031 |
|
7032 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:214
|
7033 |
msgctxt "migrate-18"
|
7034 |
msgid ""
|
7035 |
"Business Directory <b>version 5.0</b> is changing how Featured Levels plugin "
|
7037 |
"confusing notion of a \"featured level\" that was limited to sticky listings."
|
7038 |
msgstr ""
|
7039 |
|
7040 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:216
|
7041 |
msgctxt "migrate-18"
|
7042 |
msgid ""
|
7043 |
"We need to migrate your existing \"featured levels\" to plans for use by the "
|
7047 |
"link> and <cancel-link>cancel migration</cancel-link>."
|
7048 |
msgstr ""
|
7049 |
|
7050 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:218
|
7051 |
msgctxt "migrate-18"
|
7052 |
msgid ""
|
7053 |
"Before we do the migration, we need to ask a few simple questions to move "
|
7055 |
"plan\" that is right for you."
|
7056 |
msgstr ""
|
7057 |
|
7058 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:263
|
7059 |
msgctxt "migrate-18"
|
7060 |
msgid "Move to: "
|
7061 |
msgstr ""
|
7062 |
|
7063 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:273
|
7064 |
msgctxt "migrate-18"
|
7065 |
msgid "New plan summary"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:300
|
7069 |
#, fuzzy
|
7070 |
msgctxt "migrate-18"
|
7071 |
msgid "Perform migration"
|
7072 |
msgstr "Preisinformation"
|
7073 |
|
7074 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:345
|
7075 |
#, fuzzy
|
7076 |
msgctxt "migrate-18"
|
7077 |
msgid "Business Directory Plugin - Featured Levels migration required."
|
7078 |
msgstr "Branchenverzeichnis - Hervorgehobene Einträge"
|
7079 |
|
7080 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:350
|
7081 |
msgctxt "migrate-18"
|
7082 |
msgid ""
|
7083 |
"Featured levels were removed in 5.0. You need to perform your <a>Featured "
|
7084 |
"Levels migration here</a>."
|
7085 |
msgstr ""
|
7086 |
|
7087 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:200
|
7088 |
#, fuzzy
|
7089 |
msgctxt "upgrade-18"
|
7090 |
msgid "← Return to Directory dashboard"
|
7091 |
msgstr "← Zurück zum Verzeichnis."
|
7092 |
|
7093 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:210
|
7094 |
msgctxt "upgrade-18"
|
7095 |
msgid "Configure Plan"
|
7096 |
msgstr ""
|
7097 |
|
7098 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:235
|
7099 |
#, fuzzy
|
7100 |
msgctxt "upgrade-18"
|
7101 |
msgid "Featured Level"
|
7102 |
msgstr "Featured Levels Module"
|
7103 |
|
7104 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:236
|
7105 |
msgctxt "upgrade-18"
|
7106 |
msgid "What to do with it?"
|
7107 |
msgstr ""
|
7108 |
|
7109 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:245
|
7110 |
#, fuzzy
|
7111 |
msgctxt "upgrade-18"
|
7112 |
msgid "%d listing is on this level."
|
7114 |
msgstr[0] "Ein Eintrag wurde bearbeitet."
|
7115 |
msgstr[1] "Ein Eintrag wurde bearbeitet."
|
7116 |
|
7117 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:249
|
7118 |
msgctxt "upgrade-18"
|
7119 |
msgid "Select an option"
|
7120 |
msgstr ""
|
7121 |
|
7122 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:250
|
7123 |
#, fuzzy
|
7124 |
msgctxt "upgrade-18"
|
7125 |
msgid "Remove \"sticky\" status for listings."
|
7126 |
msgstr "Status der importierten Einträge"
|
7127 |
|
7128 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:250
|
7129 |
msgctxt "upgrade-18"
|
7130 |
msgid "Remove this (old) level, and leave the listing on the old plan."
|
7131 |
msgstr ""
|
7132 |
|
7133 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:253
|
7134 |
msgctxt "upgrade-18"
|
7135 |
msgid "May change \"sticky\" status depending on plan."
|
7136 |
msgstr ""
|
7137 |
|
7138 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:253
|
7139 |
msgctxt "upgrade-18"
|
7140 |
msgid "Move listings with this level to existing plan."
|
7141 |
msgstr ""
|
7142 |
|
7143 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:256
|
7144 |
#, fuzzy
|
7145 |
msgctxt "upgrade-18"
|
7146 |
msgid "Keep \"sticky\" status of listings."
|
7147 |
msgstr "Status der importierten Einträge"
|
7148 |
|
7149 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:256
|
7150 |
msgctxt "upgrade-18"
|
7151 |
msgid "Replace this level with a new plan."
|
7152 |
msgstr ""
|
7582 |
"angezeigt. Wenn du das nicht möchtest, klicke <a>hier</a> um die "
|
7583 |
"Einstellungen zu ändern."
|
7584 |
|
7585 |
+
#: includes/controllers/pages/class-submit-listing.php:420
|
7586 |
msgctxt "templates"
|
7587 |
msgid ""
|
7588 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7591 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
7592 |
"Submission?\" setting checked?"
|
7593 |
|
7594 |
+
#: includes/controllers/pages/class-submit-listing.php:422
|
7595 |
msgctxt "templates"
|
7596 |
msgid ""
|
7597 |
"Listing submission has been disabled. Contact the administrator for details."
|
7598 |
msgstr ""
|
7599 |
|
7600 |
+
#: includes/controllers/pages/class-submit-listing.php:820
|
7601 |
msgctxt "templates"
|
7602 |
msgid ""
|
7603 |
"<b>There are no Plans available</b>, without a plan site users can't submit "
|
7604 |
"a listing. %s to create a plan"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
+
#: includes/controllers/pages/class-submit-listing.php:834
|
7608 |
msgctxt "templates"
|
7609 |
msgid ""
|
7610 |
"Listing submission is not available at the moment. Contact the administrator "
|
7611 |
"for details."
|
7612 |
msgstr ""
|
7613 |
|
7614 |
+
#: includes/controllers/pages/class-submit-listing.php:837
|
7615 |
msgctxt "templates"
|
7616 |
msgid ""
|
7617 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
7619 |
"an existing field"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
+
#: includes/controllers/pages/class-submit-listing.php:1284
|
7623 |
msgctxt "templates"
|
7624 |
msgid "Please agree to the Terms and Conditions."
|
7625 |
msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
|
7626 |
|
7627 |
+
#: includes/controllers/pages/class-submit-listing.php:1298
|
7628 |
msgctxt "templates"
|
7629 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7630 |
msgstr "Ich akzeptiere die <a>AGB</a>s"
|
7935 |
msgid "\"%s\" is required."
|
7936 |
msgstr "%s ist ein Pflichtfeld."
|
7937 |
|
7938 |
+
#: includes/controllers/pages/class-submit-listing.php:69
|
7939 |
msgctxt "submit listing"
|
7940 |
msgid "Click this field to add categories"
|
7941 |
msgstr ""
|
7942 |
|
7943 |
+
#: includes/controllers/pages/class-submit-listing.php:70
|
7944 |
#, fuzzy
|
7945 |
msgctxt "submit listing"
|
7946 |
msgid "Complete Listing"
|
7947 |
msgstr "Eintrag Löschen"
|
7948 |
|
7949 |
+
#: includes/controllers/pages/class-submit-listing.php:71
|
7950 |
#, fuzzy
|
7951 |
msgctxt "submit listing"
|
7952 |
msgid "Continue to Payment"
|
7953 |
msgstr "Initialbezahlung"
|
7954 |
|
7955 |
+
#: includes/controllers/pages/class-submit-listing.php:73
|
7956 |
msgctxt "submit listing"
|
7957 |
msgid "Please wait a moment!"
|
7958 |
msgstr ""
|
7959 |
|
7960 |
+
#: includes/controllers/pages/class-submit-listing.php:74
|
7961 |
msgctxt "submit listing"
|
7962 |
msgid "Something went wrong!"
|
7963 |
msgstr ""
|
7964 |
|
7965 |
+
#: includes/controllers/pages/class-submit-listing.php:99
|
7966 |
#, fuzzy
|
7967 |
msgctxt "submit listing"
|
7968 |
msgid "No listing ID was specified."
|
7969 |
msgstr "Ein Eintrag wurde bearbeitet."
|
7970 |
|
7971 |
+
#: includes/controllers/pages/class-submit-listing.php:101
|
7972 |
#, fuzzy
|
7973 |
msgctxt "submit listing"
|
7974 |
msgid "You can't edit this listing."
|
7975 |
msgstr "Kategorie für diesen Eintrag"
|
7976 |
|
7977 |
+
#: includes/controllers/pages/class-submit-listing.php:164
|
7978 |
msgctxt "submit listing"
|
7979 |
msgid ""
|
7980 |
"This listing can't be edited at this time because it has no plan associated. "
|
7981 |
"Please <a>edit the listing</a> on the backend and associate it to a plan."
|
7982 |
msgstr ""
|
7983 |
|
7984 |
+
#: includes/controllers/pages/class-submit-listing.php:170
|
7985 |
msgctxt "submit listing"
|
7986 |
msgid ""
|
7987 |
"This listing can't be edited at this time. Please try again later or contact "
|
7988 |
"the admin if the problem persists."
|
7989 |
msgstr ""
|
7990 |
|
7991 |
+
#: includes/controllers/pages/class-submit-listing.php:194
|
7992 |
#, fuzzy
|
7993 |
msgctxt "submit listing"
|
7994 |
msgid "You're logged in as admin, payment will be skipped."
|
7996 |
"Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
|
7997 |
"übersprungen."
|
7998 |
|
7999 |
+
#: includes/controllers/pages/class-submit-listing.php:509
|
8000 |
#, fuzzy
|
8001 |
msgctxt "submit listing"
|
8002 |
msgid "Category selection"
|
8003 |
msgstr "Kategorien auswählen"
|
8004 |
|
8005 |
+
#: includes/controllers/pages/class-submit-listing.php:509
|
8006 |
#, fuzzy
|
8007 |
msgctxt "submit listing"
|
8008 |
msgid "Category & plan selection"
|
8009 |
msgstr "Kategorien auswählen"
|
8010 |
|
8011 |
+
#: includes/controllers/pages/class-submit-listing.php:817
|
8012 |
#, fuzzy
|
8013 |
msgctxt "submit listing"
|
8014 |
msgid "Can not submit a listing at this moment. Please try again later."
|
8016 |
"Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
|
8017 |
"später noch einmal."
|
8018 |
|
8019 |
+
#: includes/controllers/pages/class-submit-listing.php:866
|
8020 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
8021 |
#, fuzzy
|
8022 |
msgctxt "submit listing"
|
8023 |
msgid "Please select a category."
|
8024 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
8025 |
|
8026 |
+
#: includes/controllers/pages/class-submit-listing.php:890
|
8027 |
msgctxt "submit listing"
|
8028 |
msgid "Current active plan is disabled. Please select another plan."
|
8029 |
msgstr ""
|
8030 |
|
8031 |
+
#: includes/controllers/pages/class-submit-listing.php:892
|
8032 |
msgctxt "submit listing"
|
8033 |
msgid "Please choose a valid category for your plan."
|
8034 |
msgstr ""
|
8035 |
|
8036 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
8037 |
#, fuzzy
|
8038 |
msgctxt "submit listing"
|
8039 |
msgid "Please choose a valid plan for your category selection."
|
8040 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
8041 |
|
8042 |
+
#: includes/controllers/pages/class-submit-listing.php:1204
|
8043 |
#, fuzzy
|
8044 |
msgctxt "submit listing"
|
8045 |
msgid "Please enter your desired username."
|
8046 |
msgstr "Bitte geben Sie einen Namen ein."
|
8047 |
|
8048 |
+
#: includes/controllers/pages/class-submit-listing.php:1209
|
8049 |
#, fuzzy
|
8050 |
msgctxt "submit listing"
|
8051 |
msgid "Please enter the e-mail for your new account."
|
8052 |
msgstr "Bitte geben Sie einen Namen ein."
|
8053 |
|
8054 |
+
#: includes/controllers/pages/class-submit-listing.php:1214
|
8055 |
msgctxt "submit listing"
|
8056 |
msgid "The username you chose is already in use. Please use a different one."
|
8057 |
msgstr ""
|
8058 |
|
8059 |
+
#: includes/controllers/pages/class-submit-listing.php:1219
|
8060 |
msgctxt "submit listing"
|
8061 |
msgid "The e-mail address you chose for your account is already in use."
|
8062 |
msgstr ""
|
8067 |
msgid "Listing submitted by admin. Payment skipped."
|
8068 |
msgstr "Eintrag zusenden (Initialbezahlung)"
|
8069 |
|
8070 |
+
#: includes/controllers/pages/class-submit-listing.php:1159
|
8071 |
msgctxt "listing submit"
|
8072 |
msgid ""
|
8073 |
"Image upload is required, please provide at least one image and submit again."
|
8573 |
msgid "%s. Imported Listing."
|
8574 |
msgstr "Einträge importieren"
|
8575 |
|
8576 |
+
#: includes/payment.php:57
|
8577 |
#, fuzzy
|
8578 |
msgctxt "payments"
|
8579 |
msgid "Payment #%s"
|
8589 |
msgid "Error while uploading file"
|
8590 |
msgstr "Fehler während des Hochladens der Datei"
|
8591 |
|
8592 |
+
#: includes/utils.php:407 includes/utils.php:413
|
8593 |
msgctxt "utils"
|
8594 |
msgid "File type \"%s\" is not allowed"
|
8595 |
msgstr "Dateityp \"%s\" ist nicht erlaubt"
|
8596 |
|
8597 |
+
#: includes/utils.php:664
|
8598 |
msgctxt "utils"
|
8599 |
msgid ""
|
8600 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
8699 |
msgid "Display the following fields in the form."
|
8700 |
msgstr "Diese Felder in der Form anzeigen."
|
8701 |
|
8702 |
+
#: templates/admin/home.tpl.php:12
|
8703 |
+
#, fuzzy
|
8704 |
+
msgctxt "admin home"
|
8705 |
+
msgid "Welcome to Business Directory Plugin. You are using %s."
|
8706 |
+
msgstr "Business Directory Plugin"
|
8707 |
+
|
8708 |
+
#: templates/admin/home.tpl.php:15
|
8709 |
+
msgctxt "admin home"
|
8710 |
+
msgid ""
|
8711 |
+
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
8712 |
+
"let's jump right in!"
|
8713 |
+
msgstr ""
|
8714 |
+
|
8715 |
+
#: templates/admin/home.tpl.php:28
|
8716 |
+
msgctxt "admin home"
|
8717 |
+
msgid ""
|
8718 |
+
"Our complete documentation is <a>here</a> which we encourage you to use "
|
8719 |
+
"while setting things up."
|
8720 |
+
msgstr ""
|
8721 |
+
|
8722 |
+
#: templates/admin/home.tpl.php:36
|
8723 |
+
msgctxt "admin home"
|
8724 |
+
msgid ""
|
8725 |
+
"We have some quick-start scenarios that you will find useful regarding setup "
|
8726 |
+
"and configuration <a>here</a>."
|
8727 |
+
msgstr ""
|
8728 |
+
|
8729 |
+
#: templates/admin/home.tpl.php:45
|
8730 |
+
msgctxt "admin home"
|
8731 |
+
msgid ""
|
8732 |
+
"If you have questions, please post a comment on <a>support forum</a> and "
|
8733 |
+
"we'll answer it within 24 hours most days."
|
8734 |
+
msgstr ""
|
8735 |
|
8736 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:127
|
8737 |
#, fuzzy
|
8826 |
msgid "Uninstall Plugin"
|
8827 |
msgstr "Erweiterung Deinstallieren"
|
8828 |
|
8829 |
+
#: templates/admin/uninstall-confirm.tpl.php:18
|
8830 |
#, fuzzy
|
8831 |
msgctxt "uninstall"
|
8832 |
msgid "Uninstalling Business Directory Plugin will do the following:"
|
8850 |
msgid "Remove ALL directory settings"
|
8851 |
msgstr "Verzeichnissortierung der Einträge durch"
|
8852 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8853 |
#: templates/admin/uninstall-confirm.tpl.php:26
|
8854 |
msgctxt "uninstall"
|
8855 |
msgid "Deactivate the plugin from the file system"
|
9012 |
msgid "Continue"
|
9013 |
msgstr "Weiter"
|
9014 |
|
9015 |
+
#, fuzzy
|
9016 |
+
#~ msgid "Pending Abandonment"
|
9017 |
+
#~ msgstr "Ausstehende Zahlungen"
|
9018 |
+
|
9019 |
+
#, fuzzy
|
9020 |
+
#~ msgid "Abandoned"
|
9021 |
+
#~ msgstr "Abgebrochen"
|
9022 |
+
|
9023 |
+
#, fuzzy
|
9024 |
+
#~ msgid "Disable email notifications."
|
9025 |
+
#~ msgstr "E-Mail-Benachrichtigungen beim Import deaktivieren?"
|
9026 |
+
|
9027 |
+
#~ msgctxt "admin csv-import"
|
9028 |
+
#~ msgid "Keep existing listing images?"
|
9029 |
+
#~ msgstr "Vorhandene Bilder beibehalten?"
|
9030 |
+
|
9031 |
+
#~ msgctxt "admin csv-import"
|
9032 |
+
#~ msgid "Use a default user for listings?"
|
9033 |
+
#~ msgstr "Voreingestellter-Nutzer für neue Einträge?"
|
9034 |
+
|
9035 |
+
#~ msgctxt "form-fields admin"
|
9036 |
+
#~ msgid "Required"
|
9037 |
+
#~ msgstr "Pflichfeld"
|
9038 |
+
|
9039 |
+
#~ msgctxt "form-fields admin"
|
9040 |
+
#~ msgid "Optional"
|
9041 |
+
#~ msgstr "Optional"
|
9042 |
+
|
9043 |
+
#~ msgctxt "form-fields admin"
|
9044 |
+
#~ msgid ""
|
9045 |
+
#~ "Here, you can create new fields for your listings, edit or delete "
|
9046 |
+
#~ "existing ones, change the order and visibility of the fields as well as "
|
9047 |
+
#~ "configure special options for them."
|
9048 |
+
#~ msgstr ""
|
9049 |
+
#~ "Hier können Sie neue Felder für Ihre Angebote erstellen, bestehende "
|
9050 |
+
#~ "bearbeiten oder löschen, die Reihenfolge und die Sichtbarkeit der Felder "
|
9051 |
+
#~ "ändern sowie spezielle Optionen für sie konfigurieren."
|
9052 |
+
|
9053 |
+
#, fuzzy
|
9054 |
+
#~ msgctxt "settings"
|
9055 |
+
#~ msgid "Show the \"Directory\" button."
|
9056 |
+
#~ msgstr "\"Verzeichnis\" Schaltfläche anzeigen"
|
9057 |
+
|
9058 |
+
#~ msgctxt "admin csv-export"
|
9059 |
+
#~ msgid "All"
|
9060 |
+
#~ msgstr "Alle"
|
9061 |
+
|
9062 |
+
#~ msgctxt "admin csv-export"
|
9063 |
+
#~ msgid "Export images?"
|
9064 |
+
#~ msgstr "Bilder exportieren?"
|
9065 |
+
|
9066 |
+
#~ msgctxt "admin forms"
|
9067 |
+
#~ msgid "required"
|
9068 |
+
#~ msgstr "Pflichtfeld"
|
9069 |
+
|
9070 |
#, fuzzy
|
9071 |
#~ msgid "Fee Label"
|
9072 |
#~ msgstr "Preisbezeichnung"
|
9155 |
#~ msgid "Paid"
|
9156 |
#~ msgstr "Bezahlt"
|
9157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9158 |
#, fuzzy
|
9159 |
#~ msgctxt "settings"
|
9160 |
#~ msgid "Turn On payments?"
|
languages/business-directory-plugin-en_US.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-03-
|
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"
|
@@ -38,67 +38,128 @@ msgstr ""
|
|
38 |
msgid "Selected"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
msgid ""
|
43 |
"Find out how to create a compelling, thriving business directory from "
|
44 |
"scratch in this ridiculously actionable (and FREE) 5-part email course."
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/admin/class-admin.php:
|
48 |
msgid "Want to know the Secrets of Building an Awesome Business Directory?"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/admin/class-admin.php:
|
52 |
msgid "Yes, please!"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: includes/admin/class-admin.php:
|
56 |
msgid "No, thanks"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: includes/admin/class-admin.php:
|
60 |
msgid "You're all set. Visit your new %1$sBusiness Directory%2$s page."
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: includes/admin/class-admin.php:
|
64 |
msgid "Invalid email address."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: includes/admin/class-admin.php:
|
68 |
msgid "Business Directory Admin"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: includes/admin/class-admin.php:
|
72 |
-
#:
|
73 |
-
#: includes/admin/settings/class-settings-bootstrap.php:682
|
74 |
-
#: includes/helpers/class-app.php:93
|
75 |
-
#: includes/helpers/functions/templates-ui.php:307
|
76 |
-
msgid "Directory"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: includes/admin/class-admin.php:312
|
80 |
msgid "Plans"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/admin/class-admin.php:
|
|
|
84 |
msgid "Form Fields"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/admin/class-admin.php:
|
88 |
#: includes/licensing.php:229
|
89 |
msgid "Modules"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/admin/class-admin.php:
|
93 |
msgid "Business Directory"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/admin/class-admin.php:
|
|
|
|
|
|
|
|
|
97 |
msgid "Could not send renewal email."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/admin/class-admin.php:
|
101 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
102 |
#: includes/admin/helpers/tables/class-payments-table.php:54
|
103 |
#: templates/email/listing-added.tpl.php:7
|
104 |
#: templates/email/listing-edited.tpl.php:13
|
@@ -106,12 +167,12 @@ msgstr ""
|
|
106 |
msgid "ID"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: includes/admin/class-admin.php:
|
110 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
111 |
msgid "Listing Count"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/admin/class-admin.php:
|
115 |
msgid ""
|
116 |
"We noticed you want your Business Directory users to register before posting "
|
117 |
"listings, but Registration for your site is currently disabled. Go %1$shere"
|
@@ -175,14 +236,26 @@ msgstr ""
|
|
175 |
msgid "Are you sure you want to do this?"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: includes/admin/controllers/class-admin-csv.php:
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Help"
|
181 |
msgstr ""
|
182 |
|
183 |
#: includes/admin/controllers/class-admin-fees.php:47
|
184 |
#: includes/admin/helpers/tables/class-payments-table.php:57
|
185 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
186 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:73
|
187 |
#: templates/admin/payments-details.tpl.php:113
|
188 |
#: templates/email/listing-payment-completed.tpl.php:21
|
@@ -192,42 +265,50 @@ msgstr ""
|
|
192 |
|
193 |
#: includes/admin/controllers/class-admin-fees.php:49
|
194 |
#: includes/admin/helpers/tables/class-fees-table.php:65
|
195 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
196 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
197 |
msgid "Images"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
msgid "Plan added."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
205 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
206 |
msgid "Plan updated."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
210 |
msgid "%1$sClick here to update image limits%2$s of %3$s existing listings."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
214 |
msgid "Update listing image limits?"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
218 |
msgid "Plan not found."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
222 |
msgid "Plan listings updated."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/admin/controllers/class-admin-fees.php:
|
226 |
msgid "Cannot disable plan. At least one plan should be enabled"
|
227 |
msgstr ""
|
228 |
|
229 |
#: includes/admin/controllers/class-admin-listings.php:187
|
230 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
231 |
#: templates/email/listing-reported.tpl.php:7
|
232 |
msgid "Listing Information"
|
233 |
msgstr ""
|
@@ -265,6 +346,28 @@ msgstr ""
|
|
265 |
msgid "Delete Listing"
|
266 |
msgstr ""
|
267 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
#: includes/admin/controllers/class-form-fields-admin.php:32
|
269 |
msgid ""
|
270 |
"You can create these custom fields inside \"Form Fields\" or let Business "
|
@@ -272,7 +375,7 @@ msgid ""
|
|
272 |
msgstr ""
|
273 |
|
274 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
275 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
276 |
msgid "Go to \"Form Fields\""
|
277 |
msgstr ""
|
278 |
|
@@ -287,7 +390,7 @@ msgid "Go back"
|
|
287 |
msgstr ""
|
288 |
|
289 |
#: includes/admin/controllers/class-form-fields-admin.php:342
|
290 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
291 |
#: templates/email/listing-added.tpl.php:10
|
292 |
#: templates/email/listing-edited.tpl.php:16
|
293 |
#: templates/email/listing-reported.tpl.php:11
|
@@ -309,10 +412,6 @@ msgstr ""
|
|
309 |
msgid "Content"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: includes/admin/controllers/class-form-fields-admin.php:346
|
313 |
-
msgid "Tags"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
#: includes/admin/controllers/class-form-fields-admin.php:347
|
317 |
#: includes/form-fields.php:445
|
318 |
#: includes/helpers/class-field-display-list.php:247
|
@@ -369,15 +468,15 @@ msgstr ""
|
|
369 |
msgid "Website"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
373 |
msgid "Your license key provides access to new features and updates."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
377 |
msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
381 |
#: includes/admin/helpers/tables/class-fees-table.php:180
|
382 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
383 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
@@ -418,8 +517,8 @@ msgstr ""
|
|
418 |
|
419 |
#: includes/admin/helpers/class-listing-information-metabox.php:15
|
420 |
#: includes/admin/helpers/tables/class-payments-table.php:53
|
421 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
422 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
423 |
#: includes/helpers/class-app.php:91
|
424 |
#: templates/admin/payments-details.tpl.php:53
|
425 |
msgid "Listing"
|
@@ -455,6 +554,10 @@ msgstr ""
|
|
455 |
msgid "Upgrade Now"
|
456 |
msgstr ""
|
457 |
|
|
|
|
|
|
|
|
|
458 |
#: includes/admin/helpers/csv/class-csv-import.php:676
|
459 |
msgid "Listing imported by admin. Payment skipped."
|
460 |
msgstr ""
|
@@ -476,13 +579,6 @@ msgstr ""
|
|
476 |
msgid "Pricing"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/admin/helpers/tables/class-fees-table.php:64
|
480 |
-
#: includes/admin/settings/class-settings-bootstrap.php:669
|
481 |
-
#: includes/admin/settings/class-settings-bootstrap.php:670
|
482 |
-
#: includes/helpers/class-app.php:92
|
483 |
-
msgid "Listings"
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
#: includes/admin/helpers/tables/class-fees-table.php:155
|
487 |
msgid "Disable"
|
488 |
msgstr ""
|
@@ -522,7 +618,7 @@ msgstr ""
|
|
522 |
|
523 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
524 |
#: includes/fields/class-fieldtypes-social.php:135
|
525 |
-
#: templates/admin/csv-import.tpl.php:
|
526 |
msgid "Type"
|
527 |
msgstr ""
|
528 |
|
@@ -556,119 +652,107 @@ msgstr ""
|
|
556 |
msgid "Missing tables: %s"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
560 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
561 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:140
|
562 |
#: templates/listing-contactform.tpl.php:33
|
563 |
#: templates/listing-flagging-form.tpl.php:39
|
564 |
msgid "Email"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
568 |
msgid "Module Settings"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
572 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
573 |
msgid "Miscellaneous"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
577 |
msgid "License Key"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
581 |
msgid "SEO"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
585 |
-
#: includes/class-assets.php:352
|
586 |
-
#: includes/fields/class-fieldtypes-textarea.php:200
|
587 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
588 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
589 |
-
msgid "No"
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: includes/admin/settings/class-settings-bootstrap.php:256
|
593 |
msgid "Yes, and make it optional"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
597 |
msgid "Yes, and make it required"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
601 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
602 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
603 |
msgid "Terms and Conditions"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
607 |
msgid "User Agreement"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
611 |
msgid "Display and require user agreement to Terms and Conditions"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
615 |
msgid "Data Collection"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
619 |
msgid ""
|
620 |
"Allow Business Directory to anonymously collect information about your "
|
621 |
"installed plugins, themes and WP version?"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
625 |
msgid "Learn more"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
629 |
msgid "Searching"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
633 |
msgid "Display advanced search form"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
637 |
msgid ""
|
638 |
"Enabling this sacrifices result quality to improve speed. This is helpful if "
|
639 |
"you're on shared hosting plans, where database performance is an issue."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
643 |
msgid "Quick search data"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
647 |
msgid ""
|
648 |
"If no fields are selected, the following fields will be searched in Quick "
|
649 |
"Searches:"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
653 |
msgid ""
|
654 |
"The Quick Search is a single search box, but you may choose what data is "
|
655 |
"searched. Searching too many fields can result in very slow search "
|
656 |
"performance."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
660 |
-
msgid "Categories"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: includes/admin/settings/class-settings-bootstrap.php:430
|
664 |
msgid "Buttons"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
668 |
msgid "Sorting"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
672 |
msgid ""
|
673 |
"Business Directory Plugin uses the standard WordPress comments. Most themes "
|
674 |
"allow for comments on posts, not pages. Some themes handle both. Since the "
|
@@ -677,109 +761,109 @@ msgid ""
|
|
677 |
"work, try the 3rd option."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
681 |
msgid "Include theme comment form (standard option)"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
685 |
msgid "Include directory comment form (use only if 2nd option does not work)"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
689 |
msgid "Prevent featured (sticky) status on directory pages?"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
693 |
msgid "Owner of anonymous listings"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
697 |
msgid "Default listing status"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
701 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
702 |
msgid "Pending (Require approval)"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
706 |
msgid "Message Defaults"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
710 |
msgid "Listing label"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
714 |
msgid "What is a single listing called?"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
718 |
msgid "Listing label (Plural)"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
722 |
msgid "What are your listings called?"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
726 |
msgid "Directory label"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
730 |
msgid "What should we call your directory?"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
734 |
msgid ""
|
735 |
"This text is displayed on the first page of the Submit Listing process. You "
|
736 |
"can use it for instructions about filling out the form or information to get "
|
737 |
"started."
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
741 |
#: templates/listing-contactform.tpl.php:30
|
742 |
#: templates/listing-flagging-form.tpl.php:35
|
743 |
msgid "Name"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
747 |
msgid "Show Buttons"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
751 |
-
msgid "Show the \"Directory\" and \"Return to Directory\" button
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
755 |
msgid "Styling"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
759 |
msgid "Button style"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
763 |
msgid "Override WP theme button styling"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
767 |
msgid "Primary color"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
771 |
msgid "This is used for form buttons and form rootline."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
775 |
msgid "Show Thumbnail"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
779 |
msgid "Coming Soon image"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
783 |
#: includes/fields/class-fieldtypes-social.php:89
|
784 |
#: includes/fields/class-fieldtypes-url.php:162
|
785 |
#: templates/email/listing-added.tpl.php:13
|
@@ -789,11 +873,11 @@ msgstr ""
|
|
789 |
msgid "URL"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
793 |
msgid "Thank you for your payment."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
797 |
msgid ""
|
798 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
799 |
"collect payments in this currency."
|
@@ -803,56 +887,56 @@ msgid_plural ""
|
|
803 |
msgstr[0] ""
|
804 |
msgstr[1] ""
|
805 |
|
806 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
807 |
msgid "Email Notifications"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
811 |
msgid "Notify admin via email when..."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
815 |
msgid "CC this email address too"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
819 |
msgid ""
|
820 |
"You can modify the text template used for most of these emails in the "
|
821 |
"<templates-link>Templates</templates-link> tab."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
825 |
msgid "Notify users via email when..."
|
826 |
msgstr ""
|
827 |
|
828 |
#. translators: %s: email shortcode
|
829 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
830 |
msgid "Email: %s"
|
831 |
msgstr ""
|
832 |
|
833 |
#. translators: %s: phone shortcode
|
834 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
835 |
msgid "Phone Number: %s"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
839 |
msgid "Sender's email address"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
843 |
msgid "Sender's phone number"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
847 |
msgid "Renewal and expiration"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
851 |
#: templates/admin/uninstall-complete.tpl.php:4
|
852 |
msgid "Uninstall"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: includes/admin/settings/class-settings.php:
|
856 |
msgid "%s cannot include spaces, commas, or &"
|
857 |
msgstr ""
|
858 |
|
@@ -909,17 +993,16 @@ msgstr ""
|
|
909 |
|
910 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:21
|
911 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:22
|
912 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
913 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:201
|
914 |
msgid "Business Directory - Featured Levels Migration"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
918 |
#: templates/admin/fees-form.tpl.php:17
|
919 |
msgid "Plan Label"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
923 |
msgid "Duration"
|
924 |
msgstr ""
|
925 |
|
@@ -985,34 +1068,22 @@ msgid ""
|
|
985 |
"what we can do better?"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: includes/class-assets.php:
|
989 |
#: templates/admin/settings-reset.tpl.php:8
|
990 |
#: templates/admin/themes-delete-confirm.tpl.php:21
|
991 |
#: templates/listing-flagging-form.tpl.php:65
|
992 |
msgid "Cancel"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: includes/class-assets.php:
|
996 |
msgid "Continue"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: includes/class-assets.php:
|
1000 |
msgid "Are you sure?"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: includes/class-assets.php:
|
1004 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:88
|
1005 |
-
msgid "Never"
|
1006 |
-
msgstr ""
|
1007 |
-
|
1008 |
-
#: includes/class-assets.php:351
|
1009 |
-
#: includes/fields/class-fieldtypes-textarea.php:201
|
1010 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
1011 |
-
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
1012 |
-
msgid "Yes"
|
1013 |
-
msgstr ""
|
1014 |
-
|
1015 |
-
#: includes/class-assets.php:361
|
1016 |
msgid ""
|
1017 |
"Preview is only available after you've saved the first draft. This is due to "
|
1018 |
"how WordPress stores the data."
|
@@ -1032,10 +1103,6 @@ msgstr ""
|
|
1032 |
msgid "Search Listings"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: includes/class-cpt-integration.php:23
|
1036 |
-
msgid "Directory Listings"
|
1037 |
-
msgstr ""
|
1038 |
-
|
1039 |
#: includes/class-cpt-integration.php:24
|
1040 |
msgid "No listings found"
|
1041 |
msgstr ""
|
@@ -1323,35 +1390,35 @@ msgstr ""
|
|
1323 |
msgid "This is just a preview. The listing has not been published yet."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1327 |
msgid "Listing Images"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1331 |
msgid "Account Creation"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1335 |
msgid "Go to \"Plans\""
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1339 |
msgid "Please choose a plan."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1343 |
msgid "Please check the form for errors, correct them and submit again."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1347 |
msgid "Create a user account on this site"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1351 |
msgid "Username"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
1355 |
msgid "Clear Form"
|
1356 |
msgstr ""
|
1357 |
|
@@ -1407,12 +1474,8 @@ msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
|
1407 |
msgstr ""
|
1408 |
|
1409 |
#: includes/fields/class-fieldtypes-select.php:262
|
1410 |
-
#: templates/admin/
|
1411 |
-
#: templates/admin/
|
1412 |
-
#: templates/admin/csv-import.tpl.php:150
|
1413 |
-
#: templates/admin/csv-import.tpl.php:163
|
1414 |
-
#: templates/admin/csv-import.tpl.php:215 templates/admin/fees-form.tpl.php:17
|
1415 |
-
#: templates/admin/fees-form.tpl.php:38 templates/admin/fees-form.tpl.php:58
|
1416 |
msgid "required"
|
1417 |
msgstr ""
|
1418 |
|
@@ -1549,7 +1612,7 @@ msgstr ""
|
|
1549 |
msgid "Telephone Number Validator"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:
|
1553 |
msgid "Field"
|
1554 |
msgstr ""
|
1555 |
|
@@ -1631,13 +1694,13 @@ msgid "Default Plan"
|
|
1631 |
msgstr ""
|
1632 |
|
1633 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1634 |
-
#: includes/licensing.php:
|
1635 |
msgid ""
|
1636 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1637 |
"get updates."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: includes/licensing.php:
|
1641 |
msgid "Licenses"
|
1642 |
msgstr ""
|
1643 |
|
@@ -1744,35 +1807,27 @@ msgstr ""
|
|
1744 |
msgid "Congratulations %1$s! You have collected %2$d listings."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: includes/payment.php:
|
1748 |
msgid "We couldn't find a payment associated with the given subscription."
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: includes/payment.php:
|
1752 |
msgid "The payment gateway \"<payment-gateway>\" is not available."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: includes/payment.php:
|
1756 |
msgid "Gateway Transaction ID:"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: includes/payment.php:
|
1760 |
msgid "Bill To:"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: includes/payment.php:
|
1764 |
msgid "Print Receipt"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: includes/payment.php:180
|
1768 |
-
msgid "Pending Abandonment"
|
1769 |
-
msgstr ""
|
1770 |
-
|
1771 |
#: includes/payment.php:187
|
1772 |
-
msgid "Abandoned"
|
1773 |
-
msgstr ""
|
1774 |
-
|
1775 |
-
#: includes/payment.php:278
|
1776 |
msgid "Return to plan selection"
|
1777 |
msgstr ""
|
1778 |
|
@@ -1852,6 +1907,10 @@ msgstr ""
|
|
1852 |
msgid "There are currently no listings to show."
|
1853 |
msgstr ""
|
1854 |
|
|
|
|
|
|
|
|
|
1855 |
#: templates/admin/csv-export.tpl.php:5
|
1856 |
msgid ""
|
1857 |
"An unknown error occurred during the export. Please make sure you have "
|
@@ -1859,18 +1918,39 @@ msgid ""
|
|
1859 |
"for details."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: templates/admin/csv-export.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1863 |
msgid ""
|
1864 |
"If you plan to re-import the listings into your directory and don't want new "
|
1865 |
"ones created, select this option!"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: templates/admin/csv-export.tpl.php:
|
|
|
1869 |
msgid "CSV File Settings"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: templates/admin/csv-export.tpl.php:
|
1873 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1874 |
msgid "Image Separator"
|
1875 |
msgstr ""
|
1876 |
|
@@ -1881,73 +1961,80 @@ msgid ""
|
|
1881 |
"help you do things in the right order."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: templates/admin/csv-import.tpl.php:
|
1885 |
msgid "Import Files"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: templates/admin/csv-import.tpl.php:
|
1889 |
msgid "CSV File"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: templates/admin/csv-import.tpl.php:
|
1893 |
msgid "ZIP file containing images"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: templates/admin/csv-import.tpl.php:
|
1897 |
msgid "Column Separator"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: templates/admin/csv-import.tpl.php:
|
1901 |
msgid "TAB"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: templates/admin/csv-import.tpl.php:
|
1905 |
msgid "Category Separator"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: templates/admin/csv-import.tpl.php:
|
1909 |
msgid "Import settings"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: templates/admin/csv-import.tpl.php:
|
1913 |
msgid "Post status of new imported listings"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: templates/admin/csv-import.tpl.php:
|
1917 |
msgid "Post status of existing imported listings"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: templates/admin/csv-import.tpl.php:
|
1921 |
msgid "Missing categories handling"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: templates/admin/csv-import.tpl.php:
|
1925 |
msgid "Auto-create categories"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: templates/admin/csv-import.tpl.php:
|
1929 |
msgid "Generate errors when a category is not found"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: templates/admin/csv-import.tpl.php:
|
1933 |
-
|
1934 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: templates/admin/csv-import.tpl.php:
|
1938 |
msgid "Default listing user"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: templates/admin/csv-import.tpl.php:
|
1942 |
msgid ""
|
1943 |
"This user will be used if the username column is not present in the CSV file."
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: templates/admin/csv-import.tpl.php:
|
1947 |
msgid "Number of listings imported on every cycle"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: templates/admin/csv-import.tpl.php:
|
1951 |
msgid ""
|
1952 |
"If you are having trouble importing listings due to memory problems, try "
|
1953 |
"reducing the import batch size to 5 or 1 and then re-attempt. This will "
|
@@ -1955,15 +2042,11 @@ msgid ""
|
|
1955 |
"success on shared hosting platforms and other resource-constrained servers."
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: templates/admin/csv-import.tpl.php:
|
1959 |
-
msgid "Disable email notifications during import
|
1960 |
-
msgstr ""
|
1961 |
-
|
1962 |
-
#: templates/admin/csv-import.tpl.php:299
|
1963 |
-
msgid "Disable email notifications."
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: templates/admin/csv-import.tpl.php:
|
1967 |
msgid ""
|
1968 |
"The following are the valid header names to be used in the CSV file. "
|
1969 |
"Multivalued fields (such as category or tags) can appear multiple times in "
|
@@ -1971,36 +2054,40 @@ msgid ""
|
|
1971 |
"how an import file should look like."
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: templates/admin/csv-import.tpl.php:
|
1975 |
msgid "Header name/label"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: templates/admin/csv-import.tpl.php:
|
1979 |
msgid "Required?"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: templates/admin/csv-import.tpl.php:
|
1983 |
msgid "Multivalued?"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: templates/admin/csv-import.tpl.php:
|
1987 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: templates/admin/csv-import.tpl.php:
|
1991 |
msgid "Listing author's username"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: templates/admin/debug-info.tpl.php:5
|
1995 |
-
msgid ""
|
1996 |
-
"The following information can help our team debug possible problems with "
|
1997 |
-
"your setup."
|
1998 |
msgstr ""
|
1999 |
|
2000 |
#: templates/admin/debug-info.tpl.php:8
|
2001 |
msgid "Download Debug Information"
|
2002 |
msgstr ""
|
2003 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2004 |
#: templates/admin/fees-add-fee.tpl.php:4 templates/admin/fees-form.tpl.php:245
|
2005 |
msgid "Add Plan"
|
2006 |
msgstr ""
|
@@ -2070,49 +2157,37 @@ msgstr ""
|
|
2070 |
msgid "Save Changes"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: templates/admin/fees-index.tpl.php:
|
2074 |
msgid "Add New Plan"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: templates/admin/fees-index.tpl.php:
|
2078 |
msgid "↑ Ascending"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: templates/admin/fees-index.tpl.php:
|
2082 |
msgid "↓ Descending"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: templates/admin/fees-index.tpl.php:
|
2086 |
msgid "Save front-end order"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: templates/admin/fees-index.tpl.php:
|
2090 |
msgid "Drag and drop to re-order plans."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: templates/admin/fees-index.tpl.php:
|
2094 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: templates/admin/fees-index.tpl.php:
|
2098 |
msgid "Add a payment gateway to increase conversion rates"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
#. translators: %s: payment gateway name */
|
2102 |
-
#: templates/admin/fees-index.tpl.php:
|
2103 |
-
msgid "Add
|
2104 |
-
msgstr ""
|
2105 |
-
|
2106 |
-
#: templates/admin/fees-index.tpl.php:96
|
2107 |
-
msgid "Upgrade"
|
2108 |
-
msgstr ""
|
2109 |
-
|
2110 |
-
#: templates/admin/fees-index.tpl.php:104
|
2111 |
-
msgid "Set up Authorize.net as a payment option."
|
2112 |
-
msgstr ""
|
2113 |
-
|
2114 |
-
#: templates/admin/fees-index.tpl.php:107
|
2115 |
-
msgid "Set Up"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
#: templates/admin/form-fields-addoredit.tpl.php:8
|
@@ -2139,6 +2214,25 @@ msgstr ""
|
|
2139 |
msgid "Manage Theme Tags"
|
2140 |
msgstr ""
|
2141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2142 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2143 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2144 |
#: templates/login.tpl.php:71
|
@@ -2325,11 +2419,6 @@ msgstr ""
|
|
2325 |
msgid "Directory Settings"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: templates/admin/settings-page.tpl.php:8
|
2329 |
-
#: templates/admin/settings-reset.tpl.php:26
|
2330 |
-
msgid "Reset Defaults"
|
2331 |
-
msgstr ""
|
2332 |
-
|
2333 |
#: templates/admin/settings-reset.tpl.php:4
|
2334 |
msgid "Directory Reset to Default"
|
2335 |
msgstr ""
|
@@ -2348,6 +2437,10 @@ msgstr ""
|
|
2348 |
msgid "Your existing listings will NOT be deleted doing this."
|
2349 |
msgstr ""
|
2350 |
|
|
|
|
|
|
|
|
|
2351 |
#: templates/admin/sidebar.tpl.php:7
|
2352 |
msgid "Need help?"
|
2353 |
msgstr ""
|
@@ -2426,9 +2519,13 @@ msgstr ""
|
|
2426 |
msgid "Return to Dashboard."
|
2427 |
msgstr ""
|
2428 |
|
|
|
|
|
|
|
|
|
2429 |
#. translators: %1$s: open link html, %2$s: close link html
|
2430 |
#: templates/admin/uninstall-confirm.tpl.php:43
|
2431 |
-
msgid "Go to %1$sPlugins
|
2432 |
msgstr ""
|
2433 |
|
2434 |
#. translators: %1$s: open italic html, %2$s: close italic html
|
@@ -2450,7 +2547,7 @@ msgstr ""
|
|
2450 |
|
2451 |
#. translators: %1$s: open link html, %2$s: close link html
|
2452 |
#: templates/admin/uninstall-confirm.tpl.php:65
|
2453 |
-
msgid "You can reinstall the plugin again under %1$sPlugins
|
2454 |
msgstr ""
|
2455 |
|
2456 |
#: templates/admin/uninstall-confirm.tpl.php:74
|
@@ -2819,87 +2916,87 @@ msgctxt "views"
|
|
2819 |
msgid "Find A Listing"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: includes/admin/class-admin.php:
|
2823 |
msgctxt "drip pointer"
|
2824 |
msgid "Email Address:"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: includes/admin/class-admin.php:
|
2828 |
msgctxt "admin"
|
2829 |
msgid "Business Directory"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: includes/admin/class-admin.php:
|
2833 |
msgctxt "admin"
|
2834 |
msgid "Untitled Menu"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: includes/admin/class-admin.php:
|
2838 |
msgctxt "admin"
|
2839 |
msgid "Dismiss this notice."
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: includes/admin/class-admin.php:
|
2843 |
msgctxt "admin"
|
2844 |
msgid "The listing has been updated."
|
2845 |
msgid_plural "The listings have been updated."
|
2846 |
msgstr[0] ""
|
2847 |
msgstr[1] ""
|
2848 |
|
2849 |
-
#: includes/admin/class-admin.php:
|
2850 |
msgctxt "admin"
|
2851 |
msgid "The plan was successfully assigned."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: includes/admin/class-admin.php:
|
2855 |
msgctxt "admin"
|
2856 |
msgid "Listing was renewed."
|
2857 |
msgid_plural "Listings were renewed."
|
2858 |
msgstr[0] ""
|
2859 |
msgstr[1] ""
|
2860 |
|
2861 |
-
#: includes/admin/class-admin.php:
|
2862 |
msgctxt "admin"
|
2863 |
msgid "Renewal email sent."
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: includes/admin/class-admin.php:
|
2867 |
msgctxt "admin"
|
2868 |
msgid "Listing report deleted."
|
2869 |
msgid_plural "Listing reports deleted."
|
2870 |
msgstr[0] ""
|
2871 |
msgstr[1] ""
|
2872 |
|
2873 |
-
#: includes/admin/class-admin.php:
|
2874 |
msgctxt "admin"
|
2875 |
msgid "Access keys sent."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: includes/admin/class-admin.php:
|
2879 |
msgctxt "admin"
|
2880 |
msgid "The access keys couldn't be sent."
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: includes/admin/class-admin.php:
|
2884 |
msgctxt "admin"
|
2885 |
msgid ""
|
2886 |
"<b>Business Directory Plugin</b> requires a page with the "
|
2887 |
"<tt>[businessdirectory]</tt> shortcode to function properly."
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: includes/admin/class-admin.php:
|
2891 |
msgctxt "admin"
|
2892 |
msgid ""
|
2893 |
"You can create this page by yourself or let Business Directory do this for "
|
2894 |
"you automatically."
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: includes/admin/class-admin.php:
|
2898 |
msgctxt "admin"
|
2899 |
msgid "Create required pages for me"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: includes/admin/class-admin.php:
|
2903 |
msgctxt "admin"
|
2904 |
msgid ""
|
2905 |
"<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
|
@@ -2951,17 +3048,17 @@ msgctxt "admin"
|
|
2951 |
msgid "Create these required fields for me"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: includes/admin/class-admin.php:
|
2955 |
msgctxt "admin menu"
|
2956 |
msgid "Payment History"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: includes/admin/class-admin.php:
|
2960 |
msgctxt "admin menu"
|
2961 |
msgid "Import & Export"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: includes/admin/class-admin.php:
|
2965 |
msgctxt "admin menu"
|
2966 |
msgid "Debug"
|
2967 |
msgstr ""
|
@@ -2986,324 +3083,39 @@ msgctxt "admin confirm"
|
|
2986 |
msgid "Yes, I'm sure"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: includes/admin/controllers/class-admin-
|
2990 |
-
msgctxt "
|
2991 |
-
msgid "
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: includes/admin/
|
2995 |
-
msgctxt "
|
2996 |
-
msgid "
|
2997 |
msgstr ""
|
2998 |
|
2999 |
-
#: includes/admin/
|
3000 |
-
msgctxt "
|
3001 |
-
msgid "
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: includes/admin/
|
3005 |
-
msgctxt "admin
|
3006 |
-
msgid ""
|
3007 |
-
"An error was detected while validating the CSV file for import. Please fix "
|
3008 |
-
"this before proceeding."
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: includes/admin/
|
3012 |
-
msgctxt "admin
|
3013 |
-
msgid "
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: includes/admin/
|
3017 |
-
msgctxt "admin
|
3018 |
-
msgid ""
|
3019 |
-
"Could not create listing category \"<category-name>\". The operation failed "
|
3020 |
-
"with the following error: <error-message>."
|
3021 |
msgstr ""
|
3022 |
|
3023 |
-
#: includes/admin/helpers/
|
3024 |
-
msgctxt "admin
|
3025 |
-
msgid "
|
3026 |
-
msgstr ""
|
3027 |
-
|
3028 |
-
#: includes/admin/helpers/csv/class-csv-import.php:730
|
3029 |
-
msgctxt "admin csv-import"
|
3030 |
-
msgid "Username \"%s\" does not exist"
|
3031 |
-
msgstr ""
|
3032 |
-
|
3033 |
-
#: includes/admin/helpers/csv/class-csv-import.php:757
|
3034 |
-
msgctxt "admin csv-import"
|
3035 |
-
msgid "There is no Plan with ID = <fee-id>"
|
3036 |
-
msgstr ""
|
3037 |
-
|
3038 |
-
#: includes/admin/helpers/csv/class-csv-import.php:788
|
3039 |
-
msgctxt "admin csv-import"
|
3040 |
-
msgid "Missing required field: %s"
|
3041 |
-
msgstr ""
|
3042 |
-
|
3043 |
-
#: includes/admin/helpers/csv/class-csv-import.php:833
|
3044 |
-
msgctxt "admin csv-import"
|
3045 |
-
msgid "Listing category \"%s\" does not exist"
|
3046 |
-
msgstr ""
|
3047 |
-
|
3048 |
-
#: includes/admin/helpers/csv/class-csv-import.php:907
|
3049 |
-
msgctxt "admin csv-import"
|
3050 |
-
msgid "The string <string> couldn't be converted into a valid date."
|
3051 |
-
msgstr ""
|
3052 |
-
|
3053 |
-
#: templates/admin/csv-import-progress.tpl.php:5
|
3054 |
-
msgctxt "admin csv-import"
|
3055 |
-
msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
|
3056 |
-
msgstr ""
|
3057 |
-
|
3058 |
-
#: templates/admin/csv-import-progress.tpl.php:9
|
3059 |
-
msgctxt "admin csv-import"
|
3060 |
-
msgid ""
|
3061 |
-
"A fatal error occurred during the import. If connection wasn't lost during "
|
3062 |
-
"the import, please make sure that you have enough free disk space and memory "
|
3063 |
-
"available to PHP. Check your error logs for details."
|
3064 |
-
msgstr ""
|
3065 |
-
|
3066 |
-
#: templates/admin/csv-import-progress.tpl.php:12
|
3067 |
-
#: templates/admin/csv-import-progress.tpl.php:19
|
3068 |
-
msgctxt "admin csv-import"
|
3069 |
-
msgid "← Return to CSV Import"
|
3070 |
-
msgstr ""
|
3071 |
-
|
3072 |
-
#: templates/admin/csv-import-progress.tpl.php:17
|
3073 |
-
msgctxt "admin csv-import"
|
3074 |
-
msgid "Import Canceled"
|
3075 |
-
msgstr ""
|
3076 |
-
|
3077 |
-
#: templates/admin/csv-import-progress.tpl.php:18
|
3078 |
-
msgctxt "admin csv-import"
|
3079 |
-
msgid "The import has been canceled."
|
3080 |
-
msgstr ""
|
3081 |
-
|
3082 |
-
#: templates/admin/csv-import-progress.tpl.php:25
|
3083 |
-
msgctxt "admin csv-import"
|
3084 |
-
msgid "Import Progress"
|
3085 |
-
msgstr ""
|
3086 |
-
|
3087 |
-
#: templates/admin/csv-import-progress.tpl.php:28
|
3088 |
-
msgctxt "admin csv-import"
|
3089 |
-
msgid "Files"
|
3090 |
-
msgstr ""
|
3091 |
-
|
3092 |
-
#: templates/admin/csv-import-progress.tpl.php:31
|
3093 |
-
msgctxt "admin csv-import"
|
3094 |
-
msgid "Rows in file"
|
3095 |
-
msgstr ""
|
3096 |
-
|
3097 |
-
#: templates/admin/csv-import-progress.tpl.php:34
|
3098 |
-
msgctxt "admin csv-import"
|
3099 |
-
msgid "Progress"
|
3100 |
-
msgstr ""
|
3101 |
-
|
3102 |
-
#: templates/admin/csv-import-progress.tpl.php:38
|
3103 |
-
msgctxt "admin csv-import"
|
3104 |
-
msgid "Import has not started. Click \"Start Import\" to begin."
|
3105 |
-
msgstr ""
|
3106 |
-
|
3107 |
-
#: templates/admin/csv-import-progress.tpl.php:39
|
3108 |
-
msgctxt "admin csv-import"
|
3109 |
-
msgid "Importing CSV file..."
|
3110 |
-
msgstr ""
|
3111 |
-
|
3112 |
-
#: templates/admin/csv-import-progress.tpl.php:45
|
3113 |
-
msgctxt "admin csv-import"
|
3114 |
-
msgid "Start Import"
|
3115 |
-
msgstr ""
|
3116 |
-
|
3117 |
-
#: templates/admin/csv-import-progress.tpl.php:46
|
3118 |
-
msgctxt "admin csv-import"
|
3119 |
-
msgid "Cancel Import"
|
3120 |
-
msgstr ""
|
3121 |
-
|
3122 |
-
#: templates/admin/csv-import-progress.tpl.php:53
|
3123 |
-
msgctxt "admin csv-import"
|
3124 |
-
msgid "Import finished"
|
3125 |
-
msgstr ""
|
3126 |
-
|
3127 |
-
#: templates/admin/csv-import-progress.tpl.php:56
|
3128 |
-
msgctxt "admin csv-import"
|
3129 |
-
msgid "Import was completed successfully."
|
3130 |
-
msgstr ""
|
3131 |
-
|
3132 |
-
#: templates/admin/csv-import-progress.tpl.php:60
|
3133 |
-
msgctxt "admin csv-import"
|
3134 |
-
msgid "Import was completed but some rows were rejected."
|
3135 |
-
msgstr ""
|
3136 |
-
|
3137 |
-
#: templates/admin/csv-import-progress.tpl.php:63
|
3138 |
-
msgctxt "admin csv-import"
|
3139 |
-
msgid "Import Summary"
|
3140 |
-
msgstr ""
|
3141 |
-
|
3142 |
-
#: templates/admin/csv-import-progress.tpl.php:65
|
3143 |
-
msgctxt "admin csv-import"
|
3144 |
-
msgid "Rows in file:"
|
3145 |
-
msgstr ""
|
3146 |
-
|
3147 |
-
#: templates/admin/csv-import-progress.tpl.php:68
|
3148 |
-
msgctxt "admin csv-import"
|
3149 |
-
msgid "Imported rows:"
|
3150 |
-
msgstr ""
|
3151 |
-
|
3152 |
-
#: templates/admin/csv-import-progress.tpl.php:71
|
3153 |
-
msgctxt "admin csv-import"
|
3154 |
-
msgid "Rejected rows:"
|
3155 |
-
msgstr ""
|
3156 |
-
|
3157 |
-
#: templates/admin/csv-import-progress.tpl.php:76
|
3158 |
-
msgctxt "admin csv-import"
|
3159 |
-
msgid "Import Warnings"
|
3160 |
-
msgstr ""
|
3161 |
-
|
3162 |
-
#: templates/admin/csv-import-progress.tpl.php:79
|
3163 |
-
msgctxt "admin csv-import"
|
3164 |
-
msgid "Line #"
|
3165 |
-
msgstr ""
|
3166 |
-
|
3167 |
-
#: templates/admin/csv-import-progress.tpl.php:80
|
3168 |
-
msgctxt "admin csv-import"
|
3169 |
-
msgid "Line"
|
3170 |
-
msgstr ""
|
3171 |
-
|
3172 |
-
#: templates/admin/csv-import-progress.tpl.php:81
|
3173 |
-
msgctxt "admin csv-import"
|
3174 |
-
msgid "Warning"
|
3175 |
-
msgstr ""
|
3176 |
-
|
3177 |
-
#: templates/admin/csv-import.tpl.php:27
|
3178 |
-
msgctxt "admin csv-import"
|
3179 |
-
msgid "Here, you can import data into your directory using the CSV format."
|
3180 |
-
msgstr ""
|
3181 |
-
|
3182 |
-
#: templates/admin/csv-import.tpl.php:64 templates/admin/csv-import.tpl.php:95
|
3183 |
-
msgctxt "admin csv-import"
|
3184 |
-
msgid "... or <a>select a file uploaded to the imports folder</a>"
|
3185 |
-
msgstr ""
|
3186 |
-
|
3187 |
-
#: templates/admin/csv-import.tpl.php:74 templates/admin/csv-import.tpl.php:106
|
3188 |
-
msgctxt "admin csv-import"
|
3189 |
-
msgid "(Upload new file)"
|
3190 |
-
msgstr ""
|
3191 |
-
|
3192 |
-
#: templates/admin/csv-import.tpl.php:129
|
3193 |
-
msgctxt "admin csv-import"
|
3194 |
-
msgid "Comma (,)"
|
3195 |
-
msgstr ""
|
3196 |
-
|
3197 |
-
#: templates/admin/csv-import.tpl.php:135
|
3198 |
-
msgctxt "admin csv-import"
|
3199 |
-
msgid "Semicolon (;)"
|
3200 |
-
msgstr ""
|
3201 |
-
|
3202 |
-
#: templates/admin/csv-import.tpl.php:200
|
3203 |
-
msgctxt "admin csv-import"
|
3204 |
-
msgid "Preserve existing status"
|
3205 |
-
msgstr ""
|
3206 |
-
|
3207 |
-
#: templates/admin/csv-import.tpl.php:233
|
3208 |
-
msgctxt "admin csv-import"
|
3209 |
-
msgid "Keep existing listing images?"
|
3210 |
-
msgstr ""
|
3211 |
-
|
3212 |
-
#: templates/admin/csv-import.tpl.php:238
|
3213 |
-
msgctxt "admin csv-import"
|
3214 |
-
msgid "Keep existing images."
|
3215 |
-
msgstr ""
|
3216 |
-
|
3217 |
-
#: templates/admin/csv-import.tpl.php:239
|
3218 |
-
msgctxt "admin csv-import"
|
3219 |
-
msgid "Appends new images while keeping current ones."
|
3220 |
-
msgstr ""
|
3221 |
-
|
3222 |
-
#: templates/admin/csv-import.tpl.php:257
|
3223 |
-
msgctxt "admin csv-import"
|
3224 |
-
msgid "Use a default user for listings?"
|
3225 |
-
msgstr ""
|
3226 |
-
|
3227 |
-
#: templates/admin/csv-import.tpl.php:263
|
3228 |
-
msgctxt "admin csv-import"
|
3229 |
-
msgid ""
|
3230 |
-
"Select a default user to be used if the username column is not present in "
|
3231 |
-
"the CSV file."
|
3232 |
-
msgstr ""
|
3233 |
-
|
3234 |
-
#: templates/admin/csv-import.tpl.php:306
|
3235 |
-
msgctxt "admin csv-import"
|
3236 |
-
msgid "Test Import"
|
3237 |
-
msgstr ""
|
3238 |
-
|
3239 |
-
#: templates/admin/csv-import.tpl.php:307
|
3240 |
-
msgctxt "admin csv-import"
|
3241 |
-
msgid "Import Listings"
|
3242 |
-
msgstr ""
|
3243 |
-
|
3244 |
-
#: templates/admin/csv-import.tpl.php:354
|
3245 |
-
msgctxt "admin csv-import"
|
3246 |
-
msgid ""
|
3247 |
-
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
3248 |
-
"updating listings from external sources."
|
3249 |
-
msgstr ""
|
3250 |
-
|
3251 |
-
#: templates/admin/csv-import.tpl.php:375
|
3252 |
-
msgctxt "admin csv-import"
|
3253 |
-
msgid ""
|
3254 |
-
"Internal Sequence ID used to allow listing updates from external sources."
|
3255 |
-
msgstr ""
|
3256 |
-
|
3257 |
-
#: templates/admin/csv-import.tpl.php:382
|
3258 |
-
msgctxt "admin csv-import"
|
3259 |
-
msgid ""
|
3260 |
-
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
3261 |
-
"adding or updating listings from external sources."
|
3262 |
-
msgstr ""
|
3263 |
-
|
3264 |
-
#: includes/admin/controllers/class-admin-csv.php:47
|
3265 |
-
msgctxt "admin csv"
|
3266 |
-
msgid "Import"
|
3267 |
-
msgstr ""
|
3268 |
-
|
3269 |
-
#: includes/admin/controllers/class-admin-csv.php:48
|
3270 |
-
msgctxt "admin csv"
|
3271 |
-
msgid "Export"
|
3272 |
-
msgstr ""
|
3273 |
-
|
3274 |
-
#: includes/admin/controllers/class-admin-fees.php:46
|
3275 |
-
msgctxt "fees order"
|
3276 |
-
msgid "Label"
|
3277 |
-
msgstr ""
|
3278 |
-
|
3279 |
-
#: includes/admin/controllers/class-admin-fees.php:48
|
3280 |
-
msgctxt "fees order"
|
3281 |
-
msgid "Duration"
|
3282 |
-
msgstr ""
|
3283 |
-
|
3284 |
-
#: includes/admin/controllers/class-admin-fees.php:50
|
3285 |
-
msgctxt "fees order"
|
3286 |
-
msgid "Custom Order"
|
3287 |
-
msgstr ""
|
3288 |
-
|
3289 |
-
#: includes/admin/controllers/class-admin-fees.php:244
|
3290 |
-
msgctxt "fees admin"
|
3291 |
-
msgid "Plan \"%s\" deleted."
|
3292 |
-
msgstr ""
|
3293 |
-
|
3294 |
-
#: includes/admin/controllers/class-admin-fees.php:256
|
3295 |
-
msgctxt "fees admin"
|
3296 |
-
msgid "Plan enabled."
|
3297 |
-
msgstr ""
|
3298 |
-
|
3299 |
-
#: includes/admin/controllers/class-admin-fees.php:256
|
3300 |
-
msgctxt "fees admin"
|
3301 |
-
msgid "Plan disabled."
|
3302 |
-
msgstr ""
|
3303 |
-
|
3304 |
-
#: includes/admin/helpers/tables/class-fees-table.php:20
|
3305 |
-
msgctxt "fees admin"
|
3306 |
-
msgid "fee"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
#: includes/admin/helpers/tables/class-fees-table.php:21
|
@@ -3611,19 +3423,19 @@ msgctxt "admin actions"
|
|
3611 |
msgid "Send access keys"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: includes/admin/controllers/class-admin-payments.php:
|
3615 |
msgctxt "payments admin"
|
3616 |
msgid "Payment deleted."
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: includes/admin/controllers/class-admin-payments.php:
|
3620 |
msgctxt "payments admin"
|
3621 |
msgid ""
|
3622 |
"You're seeing payments related to listing: \"%1$s\" (ID #%2$d). <a>Click "
|
3623 |
"here</a> to see all payments."
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: includes/admin/controllers/class-admin-payments.php:
|
3627 |
msgctxt "payments admin"
|
3628 |
msgid "Payment details updated."
|
3629 |
msgstr ""
|
@@ -3712,42 +3524,32 @@ msgctxt "form-fields admin"
|
|
3712 |
msgid "Field Attributes"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
3716 |
msgctxt "form-fields admin"
|
3717 |
msgid "Shortname"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
3721 |
-
msgctxt "form-fields admin"
|
3722 |
-
msgid "Required"
|
3723 |
-
msgstr ""
|
3724 |
-
|
3725 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:156
|
3726 |
-
msgctxt "form-fields admin"
|
3727 |
-
msgid "Optional"
|
3728 |
-
msgstr ""
|
3729 |
-
|
3730 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:163
|
3731 |
msgctxt "form-fields admin"
|
3732 |
msgid "Private"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
3736 |
msgctxt "form-fields admin"
|
3737 |
msgid "This field value is shown in the excerpt view of a listing."
|
3738 |
msgstr ""
|
3739 |
|
3740 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
3741 |
msgctxt "form-fields admin"
|
3742 |
msgid "In Excerpt"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
3746 |
msgctxt "form-fields admin"
|
3747 |
msgid "This field value is shown in the single view of a listing."
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: includes/admin/helpers/tables/class-form-fields-table.php:
|
3751 |
msgctxt "form-fields admin"
|
3752 |
msgid "In Listing"
|
3753 |
msgstr ""
|
@@ -4058,52 +3860,39 @@ msgctxt "form-fields admin"
|
|
4058 |
msgid "Create Missing Fields"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#:
|
4062 |
-
msgctxt "form-fields admin"
|
4063 |
-
msgid ""
|
4064 |
-
"Here, you can create new fields for your listings, edit or delete existing "
|
4065 |
-
"ones, change the order and visibility of the fields as well as configure "
|
4066 |
-
"special options for them."
|
4067 |
-
msgstr ""
|
4068 |
-
|
4069 |
-
#: templates/admin/form-fields.tpl.php:32
|
4070 |
-
msgctxt "form-fields admin"
|
4071 |
-
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
4072 |
-
msgstr ""
|
4073 |
-
|
4074 |
-
#: includes/admin/controllers/class-settings-admin.php:369
|
4075 |
msgctxt "admin settings"
|
4076 |
msgid "Remove"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4080 |
msgctxt "admin settings"
|
4081 |
msgid "Valid placeholders: %s"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4085 |
msgctxt "admin settings"
|
4086 |
msgid ""
|
4087 |
"IMPORTANT: subpages of the main directory page cannot be accesed while this "
|
4088 |
"setting is checked."
|
4089 |
msgstr ""
|
4090 |
|
4091 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4092 |
msgctxt "admin settings"
|
4093 |
msgid "Above results"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4097 |
msgctxt "admin settings"
|
4098 |
msgid "Below results"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4102 |
msgctxt "admin settings"
|
4103 |
msgid "Don't show with results"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4107 |
msgctxt "admin settings"
|
4108 |
msgid ""
|
4109 |
"You have selected a textarea field to be included in quick searches. "
|
@@ -4111,428 +3900,428 @@ msgid ""
|
|
4111 |
"timeouts and/or general slowness."
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4115 |
msgctxt "admin settings"
|
4116 |
msgid "Do not include comments in listings"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4120 |
msgctxt "admin settings"
|
4121 |
msgid "Directory view."
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4125 |
msgctxt "admin settings"
|
4126 |
msgid "All Listings view."
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4130 |
msgctxt "admin settings"
|
4131 |
msgid "Category view."
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4135 |
msgctxt "admin settings"
|
4136 |
msgid "Search view."
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4140 |
msgctxt "admin settings"
|
4141 |
msgid "Slug"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4145 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4146 |
msgctxt "admin settings"
|
4147 |
msgid "Ascending"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4151 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4152 |
msgctxt "admin settings"
|
4153 |
msgid "Descending"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4157 |
msgctxt "admin settings"
|
4158 |
msgid "Plan Custom Order can be changed under <a>Plans</a>"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4162 |
msgctxt "admin settings"
|
4163 |
msgid "Author"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4167 |
#: includes/helpers/functions/general.php:1285
|
4168 |
msgctxt "admin settings"
|
4169 |
msgid "Date posted"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4173 |
#: includes/helpers/functions/general.php:1286
|
4174 |
msgctxt "admin settings"
|
4175 |
msgid "Date last modified"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4179 |
msgctxt "admin settings"
|
4180 |
msgid "Random"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4184 |
msgctxt "admin settings"
|
4185 |
msgid "Paid first then free. Inside each group by date."
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4189 |
msgctxt "admin settings"
|
4190 |
msgid "Paid first then free. Inside each group by title."
|
4191 |
msgstr ""
|
4192 |
|
4193 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4194 |
msgctxt "admin settings"
|
4195 |
msgid "Plan Custom Order, then Date"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4199 |
msgctxt "admin settings"
|
4200 |
msgid "Plan Custom Order, then Title"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4204 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4205 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4206 |
msgctxt "admin settings"
|
4207 |
msgid "Excerpt view."
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4211 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4212 |
msgctxt "admin settings"
|
4213 |
msgid "Detail view."
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4217 |
msgctxt "admin settings"
|
4218 |
msgid "Australian Dollar (AUD)"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4222 |
msgctxt "admin settings"
|
4223 |
msgid "Brazilian Real (BRL)"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4227 |
msgctxt "admin settings"
|
4228 |
msgid "Canadian Dollar (CAD)"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4232 |
msgctxt "admin settings"
|
4233 |
msgid "Czech Koruna (CZK)"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4237 |
msgctxt "admin settings"
|
4238 |
msgid "Danish Krone (DKK)"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4242 |
msgctxt "admin settings"
|
4243 |
msgid "United Arab Emirates Dirham (AED)"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4247 |
msgctxt "admin settings"
|
4248 |
msgid "Euro (EUR)"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4252 |
msgctxt "admin settings"
|
4253 |
msgid "Hong Kong Dollar (HKD)"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4257 |
msgctxt "admin settings"
|
4258 |
msgid "Hungarian Forint (HUF)"
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4262 |
msgctxt "admin settings"
|
4263 |
msgid "Israeli New Shequel (ILS)"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4267 |
msgctxt "admin settings"
|
4268 |
msgid "Japanese Yen (JPY)"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4272 |
msgctxt "admin settings"
|
4273 |
msgid "Moroccan Dirham (MAD)"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4277 |
msgctxt "admin settings"
|
4278 |
msgid "Malasian Ringgit (MYR)"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4282 |
msgctxt "admin settings"
|
4283 |
msgid "Mexican Peso (MXN)"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4287 |
msgctxt "admin settings"
|
4288 |
msgid "Norwegian Krone (NOK)"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4292 |
msgctxt "admin settings"
|
4293 |
msgid "New Zealand Dollar (NZD)"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4297 |
msgctxt "admin settings"
|
4298 |
msgid "Philippine Peso (PHP)"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4302 |
msgctxt "admin settings"
|
4303 |
msgid "Polish Zloty (PLN)"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4307 |
msgctxt "admin settings"
|
4308 |
msgid "Pound Sterling (GBP)"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4312 |
msgctxt "admin settings"
|
4313 |
msgid "Singapore Dollar (SGD)"
|
4314 |
msgstr ""
|
4315 |
|
4316 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4317 |
msgctxt "admin settings"
|
4318 |
msgid "Swedish Krona (SEK)"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4322 |
msgctxt "admin settings"
|
4323 |
msgid "Swiss Franc (CHF)"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4327 |
msgctxt "admin settings"
|
4328 |
msgid "Taiwan Dollar (TWD)"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4332 |
msgctxt "admin settings"
|
4333 |
msgid "Thai Baht (THB)"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4337 |
msgctxt "admin settings"
|
4338 |
msgid "Turkish Lira (TRY)"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4342 |
msgctxt "admin settings"
|
4343 |
msgid "U.S. Dollar (USD)"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4347 |
msgctxt "admin settings"
|
4348 |
msgid "Show currency symbol on the left"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4352 |
msgctxt "admin settings"
|
4353 |
msgid "Show currency symbol on the right"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4357 |
msgctxt "admin settings"
|
4358 |
msgid "Do not show currency symbol"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4362 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4363 |
msgctxt "admin settings"
|
4364 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4368 |
msgctxt "admin settings"
|
4369 |
msgid ""
|
4370 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4371 |
"can also <a>customize the email</a> users receive."
|
4372 |
msgstr ""
|
4373 |
|
4374 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4375 |
msgctxt "admin settings"
|
4376 |
msgid "Try listing's email field first, then author's email."
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4380 |
msgctxt "admin settings"
|
4381 |
msgid "Try author's email first and then listing's email field."
|
4382 |
msgstr ""
|
4383 |
|
4384 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4385 |
msgctxt "admin settings"
|
4386 |
msgid "Plain (text/plain)"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4390 |
msgctxt "admin settings"
|
4391 |
msgid "HTML (text/html)"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4395 |
msgctxt "admin settings"
|
4396 |
msgid "Both (multipart/alternative)"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4400 |
msgctxt "admin settings"
|
4401 |
msgid "A new listing is submitted."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4405 |
msgctxt "admin settings"
|
4406 |
msgid "A listing is edited."
|
4407 |
msgstr ""
|
4408 |
|
4409 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4410 |
msgctxt "admin settings"
|
4411 |
msgid "A listing expires."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4415 |
msgctxt "admin settings"
|
4416 |
msgid "A listing is renewed."
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4420 |
msgctxt "admin settings"
|
4421 |
msgid "A listing payment is completed."
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4425 |
msgctxt "admin settings"
|
4426 |
msgid "A listing has been reported as inappropriate."
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4430 |
msgctxt "admin settings"
|
4431 |
msgid "A contact message is sent to a listing's owner."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4435 |
msgctxt "admin settings"
|
4436 |
msgid "Their listing is submitted."
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4440 |
msgctxt "admin settings"
|
4441 |
msgid "Their listing is approved/published."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4445 |
msgctxt "admin settings"
|
4446 |
msgid "A payment for their listing is completed."
|
4447 |
msgstr ""
|
4448 |
|
4449 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4450 |
msgctxt "admin settings"
|
4451 |
msgid "Their listing expired or is about to expire."
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4455 |
-
#: includes/admin/settings/class-settings-bootstrap.php:1423
|
4456 |
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
4457 |
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
4458 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
|
|
4459 |
msgctxt "admin settings"
|
4460 |
msgid "Listing's title"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4464 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4465 |
msgctxt "admin settings"
|
4466 |
msgid "Listing's plan name"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4470 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4471 |
msgctxt "admin settings"
|
4472 |
msgid "Listing's plan description"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4476 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4477 |
msgctxt "admin settings"
|
4478 |
msgid "Listing's plan details"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4482 |
msgctxt "admin settings"
|
4483 |
msgid ""
|
4484 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4485 |
"viewed by the public."
|
4486 |
msgstr ""
|
4487 |
|
4488 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4489 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4490 |
msgctxt "admin settings"
|
4491 |
msgid "Listing's URL"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4495 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4496 |
msgctxt "admin settings"
|
4497 |
msgid "Listing's Access Key"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4501 |
msgctxt "admin settings"
|
4502 |
msgid "Sender's name"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4506 |
msgctxt "admin settings"
|
4507 |
msgid "Contact message"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4511 |
msgctxt "admin settings"
|
4512 |
msgid "Date and time the message was sent"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4516 |
msgctxt "admin settings"
|
4517 |
msgid "Payment items details."
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4521 |
msgctxt "admin settings"
|
4522 |
msgid "URL where user can review and print payment receipt."
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4526 |
msgctxt "admin settings"
|
4527 |
msgid "Gateway used to process listing's payment."
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4531 |
msgctxt "admin settings"
|
4532 |
msgid "Checkout URL link"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4536 |
msgctxt "admin settings"
|
4537 |
msgid "Uploaded Image (no resize)"
|
4538 |
msgstr ""
|
@@ -4547,56 +4336,56 @@ msgctxt "admin settings"
|
|
4547 |
msgid "User registration date"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4551 |
msgctxt "expiration notices"
|
4552 |
msgid "Add notice"
|
4553 |
msgstr ""
|
4554 |
|
4555 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4556 |
msgctxt "expiration notices"
|
4557 |
msgid "No notices configured."
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4561 |
msgctxt "expiration notices"
|
4562 |
msgid "recurring and non-recurring"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4566 |
msgctxt "expiration notices"
|
4567 |
msgid "recurring only"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4571 |
msgctxt "expiration notices"
|
4572 |
msgid "non-recurring only"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4576 |
msgctxt "expiration notices"
|
4577 |
msgid "Sent when a listing (%s) is renewed."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4581 |
msgctxt "expiration notices"
|
4582 |
msgid "Sent when a listing (%s) expires."
|
4583 |
msgstr ""
|
4584 |
|
4585 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4586 |
msgctxt "expiration notices"
|
4587 |
msgid "%d day"
|
4588 |
msgid_plural "%d days"
|
4589 |
msgstr[0] ""
|
4590 |
msgstr[1] ""
|
4591 |
|
4592 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4593 |
msgctxt "expiration notices"
|
4594 |
msgid "%d week"
|
4595 |
msgid_plural "%d weeks"
|
4596 |
msgstr[0] ""
|
4597 |
msgstr[1] ""
|
4598 |
|
4599 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4600 |
msgctxt "expiration notices"
|
4601 |
msgid "%d month"
|
4602 |
msgid_plural "%d months"
|
@@ -4605,141 +4394,141 @@ msgstr[1] ""
|
|
4605 |
|
4606 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
4607 |
#. non-recuring only)
|
4608 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4609 |
msgctxt "expiration notices"
|
4610 |
msgid "Sent %1$s before a listing (%2$s) expires."
|
4611 |
msgstr ""
|
4612 |
|
4613 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
4614 |
#. non-recuring only)
|
4615 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4616 |
msgctxt "expiration notices"
|
4617 |
msgid "Sent %1$s after a listing (%2$s) expires."
|
4618 |
msgstr ""
|
4619 |
|
4620 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4621 |
msgctxt "expiration notices"
|
4622 |
msgid "At the time of expiration"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4626 |
msgctxt "expiration notices"
|
4627 |
msgid "Right after a successful renewal"
|
4628 |
msgstr ""
|
4629 |
|
4630 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4631 |
msgctxt "expiration notices"
|
4632 |
msgid "%d day before expiration"
|
4633 |
msgid_plural "%d days before expiration"
|
4634 |
msgstr[0] ""
|
4635 |
msgstr[1] ""
|
4636 |
|
4637 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4638 |
msgctxt "expiration notices"
|
4639 |
msgid "%d day after expiration"
|
4640 |
msgid_plural "%d days after expiration"
|
4641 |
msgstr[0] ""
|
4642 |
msgstr[1] ""
|
4643 |
|
4644 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4645 |
msgctxt "expiration notices"
|
4646 |
msgid "%d week before expiration"
|
4647 |
msgid_plural "%d weeks before expiration"
|
4648 |
msgstr[0] ""
|
4649 |
msgstr[1] ""
|
4650 |
|
4651 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4652 |
msgctxt "expiration notices"
|
4653 |
msgid "%d week after expiration"
|
4654 |
msgid_plural "%d weeks after expiration"
|
4655 |
msgstr[0] ""
|
4656 |
msgstr[1] ""
|
4657 |
|
4658 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4659 |
msgctxt "expiration notices"
|
4660 |
msgid "%d month before expiration"
|
4661 |
msgid_plural "%d months before expiration"
|
4662 |
msgstr[0] ""
|
4663 |
msgstr[1] ""
|
4664 |
|
4665 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4666 |
msgctxt "expiration notices"
|
4667 |
msgid "%d month after expiration"
|
4668 |
msgid_plural "%d months after expiration"
|
4669 |
msgstr[0] ""
|
4670 |
msgstr[1] ""
|
4671 |
|
4672 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4673 |
msgctxt "expiration notices"
|
4674 |
msgid "Applies to"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4678 |
msgctxt "expiration notices"
|
4679 |
msgid "Non-recurring listings"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4683 |
msgctxt "expiration notices"
|
4684 |
msgid "Recurring listings"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4688 |
msgctxt "expiration notices"
|
4689 |
msgid "Recurring and non-recurring listings"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4693 |
msgctxt "expiration notices"
|
4694 |
msgid "When to send?"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4698 |
msgctxt "settings"
|
4699 |
msgid "Site title (with link)"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4703 |
msgctxt "settings"
|
4704 |
msgid "Author's name"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4708 |
msgctxt "settings"
|
4709 |
msgid "Listing's name (with link)"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4713 |
msgctxt "settings"
|
4714 |
msgid "Listing's expiration date"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4718 |
msgctxt "settings"
|
4719 |
msgid "Listing's renewal link, formatted with an anchor tag"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4723 |
msgctxt "settings"
|
4724 |
msgid "Listing's renewal URL, unformatted by any tags"
|
4725 |
msgstr ""
|
4726 |
|
4727 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4728 |
msgctxt "settings"
|
4729 |
msgid "Listing's categories"
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4733 |
msgctxt "settings"
|
4734 |
msgid "Listing's last payment date"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4738 |
msgctxt "settings"
|
4739 |
msgid "Listing's access key"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: includes/admin/controllers/class-settings-admin.php:
|
4743 |
msgctxt "settings"
|
4744 |
msgid "Settings reset to default."
|
4745 |
msgstr ""
|
@@ -4749,136 +4538,131 @@ msgctxt "settings"
|
|
4749 |
msgid "General"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4753 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4754 |
msgctxt "settings"
|
4755 |
msgid "Listings"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4759 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4760 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4761 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4762 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4763 |
-
#: includes/admin/settings/class-settings.php:
|
4764 |
msgctxt "settings"
|
4765 |
msgid "General Settings"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4769 |
msgctxt "settings"
|
4770 |
msgid "Payment"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4774 |
msgctxt "settings"
|
4775 |
msgid "Appearance"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4779 |
msgctxt "settings"
|
4780 |
msgid "Permalink Settings"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4784 |
msgctxt "settings"
|
4785 |
msgid "Directory Listings Slug"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4789 |
msgctxt "settings"
|
4790 |
msgid "Categories Slug"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4794 |
msgctxt "settings"
|
4795 |
msgid ""
|
4796 |
"The slug can't be in use by another term. Avoid \"category\", for instance."
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4800 |
msgctxt "settings"
|
4801 |
msgid "Tags Slug"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4805 |
msgctxt "settings"
|
4806 |
msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4810 |
-
msgctxt "settings"
|
4811 |
-
msgid "Remove listing ID from directory URLs?"
|
4812 |
-
msgstr ""
|
4813 |
-
|
4814 |
-
#: includes/admin/settings/class-settings-bootstrap.php:100
|
4815 |
msgctxt "settings"
|
4816 |
-
msgid "
|
4817 |
msgstr ""
|
4818 |
|
4819 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4820 |
msgctxt "settings"
|
4821 |
msgid ""
|
4822 |
"Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
|
4823 |
"directory/1809/listing-title\"."
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4827 |
msgctxt "settings"
|
4828 |
msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4832 |
msgctxt "settings"
|
4833 |
msgid "Use reCAPTCHA for contact forms"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4837 |
msgctxt "settings"
|
4838 |
-
msgid "
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4842 |
msgctxt "settings"
|
4843 |
msgid "Use reCAPTCHA for listing submits"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4847 |
msgctxt "settings"
|
4848 |
msgid "Use reCAPTCHA for edit listings"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4852 |
msgctxt "settings"
|
4853 |
msgid "Use reCAPTCHA for report listings"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4857 |
msgctxt "settings"
|
4858 |
msgid "Use reCAPTCHA for listing comments"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4862 |
msgctxt "settings"
|
4863 |
msgid "reCAPTCHA Public Key"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4867 |
msgctxt "settings"
|
4868 |
msgid "reCAPTCHA Private Key"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4872 |
msgctxt "settings"
|
4873 |
msgid "reCAPTCHA version"
|
4874 |
msgstr ""
|
4875 |
|
4876 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4877 |
msgctxt "settings"
|
4878 |
msgid "reCAPTCHA V3 threshold score"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4882 |
msgctxt "settings"
|
4883 |
msgid ""
|
4884 |
"reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is "
|
@@ -4887,12 +4671,12 @@ msgid ""
|
|
4887 |
"this value will result in reCAPTCHA validation error."
|
4888 |
msgstr ""
|
4889 |
|
4890 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4891 |
msgctxt "settings"
|
4892 |
msgid "Registration"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4896 |
msgctxt "settings"
|
4897 |
msgid ""
|
4898 |
"We expect that a membership plugin supports the 'redirect_to' parameter for "
|
@@ -4901,197 +4685,197 @@ msgid ""
|
|
4901 |
"them to support the WP standard 'redirect_to' query parameter."
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4905 |
msgctxt "settings"
|
4906 |
msgid "Require login to post listings"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4910 |
msgctxt "settings"
|
4911 |
msgid "Allow anonymous users to edit/manage listings with an access key"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4915 |
msgctxt "settings"
|
4916 |
msgid "Login URL"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4920 |
msgctxt "settings"
|
4921 |
msgid "Only enter this if using a membership plugin or custom login page"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4925 |
msgctxt "settings"
|
4926 |
msgid "URL of your membership plugin's login page."
|
4927 |
msgstr ""
|
4928 |
|
4929 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4930 |
msgctxt "settings"
|
4931 |
msgid "Registration URL"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4935 |
msgctxt "settings"
|
4936 |
msgid ""
|
4937 |
"Only enter this if using a membership plugin or custom registration page."
|
4938 |
msgstr ""
|
4939 |
|
4940 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4941 |
msgctxt "settings"
|
4942 |
msgid "URL of your membership plugin's registration page"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4946 |
msgctxt "settings"
|
4947 |
msgid "Allow users to create accounts during listing submit"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4951 |
msgctxt "settings"
|
4952 |
msgid ""
|
4953 |
"Enter text or a URL starting with http. If you use a URL, the Terms and "
|
4954 |
"Conditions text will be replaced by a link to the appropiate page."
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4958 |
msgctxt "settings"
|
4959 |
msgid "Terms and Conditions text goes here"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4963 |
msgctxt "settings"
|
4964 |
-
msgid "Enable high performance
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4968 |
msgctxt "settings"
|
4969 |
msgid "Advanced"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4973 |
msgctxt "settings"
|
4974 |
msgid "Disable advanced CPT integration"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4978 |
msgctxt "settings"
|
4979 |
msgid "Disable frontend listing submission"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4983 |
msgctxt "settings"
|
4984 |
msgid ""
|
4985 |
"Prevents the Submit Listing button from showing on the main UI, but allows a "
|
4986 |
"shortcode for submit listing to function on other pages."
|
4987 |
msgstr ""
|
4988 |
|
4989 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4990 |
msgctxt "settings"
|
4991 |
msgid "Contact Form"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
4995 |
msgctxt "settings"
|
4996 |
msgid "Listings per page"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5000 |
msgctxt "settings"
|
5001 |
msgid ""
|
5002 |
"Number of listings to show per page. Use a value of \"0\" to show all "
|
5003 |
"listings."
|
5004 |
msgstr ""
|
5005 |
|
5006 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5007 |
msgctxt "settings"
|
5008 |
msgid "Turn on listing renewal option"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5012 |
msgctxt "settings"
|
5013 |
msgid "Open detailed view of listing in new tab"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5017 |
msgctxt "settings"
|
5018 |
msgid "Include button to report listings"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5022 |
msgctxt "settings"
|
5023 |
msgid "Enable report listing for registered users only"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5027 |
msgctxt "settings"
|
5028 |
msgid "Report listing option list"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5032 |
msgctxt "settings"
|
5033 |
msgid ""
|
5034 |
"Form option list to report a listing as inappropriate. One option per line."
|
5035 |
msgstr ""
|
5036 |
|
5037 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5038 |
msgctxt "settings"
|
5039 |
msgid "Include listing contact form on listing pages"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5043 |
msgctxt "settings"
|
5044 |
msgid ""
|
5045 |
"Allows visitors to contact listing authors privately. Authors will receive "
|
5046 |
"the messages via email."
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5050 |
msgctxt "settings"
|
5051 |
msgid "Require login for using the contact form"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5055 |
msgctxt "settings"
|
5056 |
msgid "Maximum number of daily contact form submits from registered users"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5060 |
msgctxt "settings"
|
5061 |
msgid ""
|
5062 |
"Use this to prevent spamming of listing owners from logged in users. 0 means "
|
5063 |
"unlimited submits per day."
|
5064 |
msgstr ""
|
5065 |
|
5066 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5067 |
msgctxt "settings"
|
5068 |
msgid "Maximum number of contact form submits for each listing per day"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5072 |
msgctxt "settings"
|
5073 |
msgid ""
|
5074 |
"Use this to set contact submits limit for each listing in the directory. 0 "
|
5075 |
"means unlimited submits per day."
|
5076 |
msgstr ""
|
5077 |
|
5078 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5079 |
msgctxt "settings"
|
5080 |
msgid "Include comment form on listing pages?"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5084 |
msgctxt "settings"
|
5085 |
msgid "Show listings under categories on main page"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5089 |
msgctxt "settings"
|
5090 |
msgid ""
|
5091 |
"Prevents featured listings from floating to the top of the selected page."
|
5092 |
msgstr ""
|
5093 |
|
5094 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5095 |
msgctxt "settings"
|
5096 |
msgid ""
|
5097 |
"The user ID or login of an existing user account. If login is not required "
|
@@ -5099,77 +4883,77 @@ msgid ""
|
|
5099 |
"that will not a be posting a listing is best."
|
5100 |
msgstr ""
|
5101 |
|
5102 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5103 |
msgctxt "settings"
|
5104 |
msgid "Edit post status"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5108 |
msgctxt "settings"
|
5109 |
msgid "Status of deleted listings"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5113 |
msgctxt "settings"
|
5114 |
msgid "Submit Listing instructions message"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5118 |
msgctxt "settings"
|
5119 |
msgid "Order categories list by"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5123 |
msgctxt "settings"
|
5124 |
msgid "Sort order for categories"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5128 |
msgctxt "settings"
|
5129 |
msgid "Show category post count"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5133 |
msgctxt "settings"
|
5134 |
msgid "Hide empty categories"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5138 |
msgctxt "settings"
|
5139 |
msgid "Show only parent categories in category list"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5143 |
msgctxt "settings"
|
5144 |
msgid "Order directory listings by"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5148 |
msgctxt "settings"
|
5149 |
msgid "Sort directory listings by"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5153 |
msgctxt "settings"
|
5154 |
msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5158 |
msgctxt "settings"
|
5159 |
msgid "Enable sort bar"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5163 |
msgctxt "settings"
|
5164 |
msgid "Sortbar Fields"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5168 |
msgctxt "settings"
|
5169 |
msgid "Show the \"Submit listing\" button"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5173 |
msgctxt "settings"
|
5174 |
msgid ""
|
5175 |
"Hides the button used by the main UI to allow listing submission, but does "
|
@@ -5177,98 +4961,93 @@ msgid ""
|
|
5177 |
"customize the submit listing button on your own)"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5181 |
msgctxt "settings"
|
5182 |
msgid "Show \"Search listings\""
|
5183 |
msgstr ""
|
5184 |
|
5185 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5186 |
msgctxt "settings"
|
5187 |
msgid "Show the \"View Listings\" button"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5191 |
msgctxt "settings"
|
5192 |
msgid "Show the \"Manage Listings\" button"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5196 |
-
msgctxt "settings"
|
5197 |
-
msgid "Show the \"Directory\" button."
|
5198 |
-
msgstr ""
|
5199 |
-
|
5200 |
-
#: includes/admin/settings/class-settings-bootstrap.php:898
|
5201 |
msgctxt "settings"
|
5202 |
msgid "Image Settings"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5206 |
msgctxt "settings"
|
5207 |
msgid "Allow images"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5211 |
msgctxt "settings"
|
5212 |
msgid "Min Image File Size (KB)"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5216 |
msgctxt "settings"
|
5217 |
msgid "Max Image File Size (KB)"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5221 |
msgctxt "settings"
|
5222 |
msgid "Min image width (px)"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5226 |
msgctxt "settings"
|
5227 |
msgid "Min image height (px)"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5231 |
msgctxt "settings"
|
5232 |
msgid "Max image width (px)"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5236 |
msgctxt "settings"
|
5237 |
msgid "Max image height (px)"
|
5238 |
msgstr ""
|
5239 |
|
5240 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5241 |
msgctxt "settings"
|
5242 |
msgid "Turn on thickbox/lightbox"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5246 |
msgctxt "settings"
|
5247 |
msgid ""
|
5248 |
"Uncheck if it conflicts with other elements or plugins installed on your site"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5252 |
msgctxt "settings"
|
5253 |
msgid "Thumbnails"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5257 |
msgctxt "settings"
|
5258 |
msgid "Thumbnail width (px)"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5262 |
msgctxt "settings"
|
5263 |
msgid "Thumbnail height (px)"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5267 |
msgctxt "settings"
|
5268 |
msgid "Crop thumbnails to exact dimensions"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5272 |
msgctxt "settings"
|
5273 |
msgid ""
|
5274 |
"When enabled images will match exactly the dimensions above but part of the "
|
@@ -5277,17 +5056,17 @@ msgid ""
|
|
5277 |
"Depending on the uploaded images, thumbnails may have different heights."
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5281 |
msgctxt "settings"
|
5282 |
msgid "Enforce image upload on submit/edit"
|
5283 |
msgstr ""
|
5284 |
|
5285 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5286 |
msgctxt "settings"
|
5287 |
msgid "Default thumbnail image size"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5291 |
msgctxt "settings"
|
5292 |
msgid ""
|
5293 |
"This indicates the size of the thumbnail to be used both in excerpt and "
|
@@ -5296,82 +5075,82 @@ msgid ""
|
|
5296 |
"width as the starting point."
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5300 |
msgctxt "settings"
|
5301 |
msgid "Use \"Coming Soon\" photo for listings without any (primary) images?"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5305 |
msgctxt "settings"
|
5306 |
msgid "Display featured (sticky) badge"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5310 |
msgctxt "settings"
|
5311 |
msgid "Featured Badge image"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5315 |
msgctxt "settings"
|
5316 |
msgid "Featured Badge URL"
|
5317 |
msgstr ""
|
5318 |
|
5319 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5320 |
msgctxt "settings"
|
5321 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5325 |
msgctxt "settings"
|
5326 |
msgid "Fee Order"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5330 |
msgctxt "settings"
|
5331 |
msgid "Put payment gateways in test mode"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5335 |
msgctxt "settings"
|
5336 |
msgid "Currency Code"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5340 |
msgctxt "settings"
|
5341 |
msgid "Currency Symbol"
|
5342 |
msgstr ""
|
5343 |
|
5344 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5345 |
msgctxt "settings"
|
5346 |
msgid "Currency symbol display"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5350 |
msgctxt "settings"
|
5351 |
msgid "Include plan description in receipt"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5355 |
msgctxt "settings"
|
5356 |
msgid "Thank you for payment message"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5360 |
msgctxt "settings"
|
5361 |
msgid "Ask users to come back for abandoned payments"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5365 |
msgctxt "settings"
|
5366 |
msgid "Listing abandonment threshold (hours)"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5370 |
msgctxt "settings"
|
5371 |
msgid "Display email address fields publicly"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5375 |
msgctxt "settings"
|
5376 |
msgid ""
|
5377 |
"Shows the email address of the listing owner to all web users. NOT "
|
@@ -5379,24 +5158,24 @@ msgid ""
|
|
5379 |
"harvest it for future use."
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5383 |
msgctxt "settings"
|
5384 |
msgid "How to determine the listing's email address?"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5388 |
msgctxt "settings"
|
5389 |
msgid ""
|
5390 |
"This affects emails sent to listing owners via contact forms or when their "
|
5391 |
"listings expire."
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5395 |
msgctxt "settings"
|
5396 |
msgid "Email Content-Type header"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5400 |
msgctxt "settings"
|
5401 |
msgid ""
|
5402 |
"Use this setting to control the format of the emails explicitly. Some "
|
@@ -5405,70 +5184,70 @@ msgid ""
|
|
5405 |
"then \"Both\"."
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5409 |
msgctxt "settings"
|
5410 |
msgid "Templates"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5414 |
msgctxt "settings"
|
5415 |
msgid "Email confirmation message"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5419 |
msgctxt "settings"
|
5420 |
msgid "Sent after a listing has been submitted."
|
5421 |
msgstr ""
|
5422 |
|
5423 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5424 |
msgctxt "settings"
|
5425 |
msgid "Listing published message"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5429 |
msgctxt "settings"
|
5430 |
msgid "Sent when the listing has been published or approved by an admin."
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5434 |
msgctxt "settings"
|
5435 |
msgid "Listing Contact Message"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5439 |
msgctxt "settings"
|
5440 |
msgid ""
|
5441 |
"Sent to listing owners when someone uses the contact form on their listing "
|
5442 |
"pages."
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5446 |
msgctxt "settings"
|
5447 |
msgid "Payment completed message"
|
5448 |
msgstr ""
|
5449 |
|
5450 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5451 |
msgctxt "settings"
|
5452 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5456 |
msgctxt "settings"
|
5457 |
msgid "Payment abandoned reminder message"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5461 |
msgctxt "settings"
|
5462 |
msgid "Cropped"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
-
#: includes/admin/settings/class-settings.php:
|
5466 |
-
#: includes/admin/settings/class-settings.php:
|
5467 |
msgctxt "settings"
|
5468 |
msgid "\"%s\" can not be empty."
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: includes/admin/settings/class-settings.php:
|
5472 |
msgctxt "settings"
|
5473 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5474 |
msgstr ""
|
@@ -5498,64 +5277,64 @@ msgctxt "themes"
|
|
5498 |
msgid "Could not change the active theme to \"%s\"."
|
5499 |
msgstr ""
|
5500 |
|
5501 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5502 |
msgctxt "themes"
|
5503 |
msgid "Active theme changed to \"%s\"."
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5507 |
msgctxt "themes"
|
5508 |
msgid ""
|
5509 |
"%s requires that you tag your existing fields to match some places we want "
|
5510 |
"to put your data on the theme. Below are fields we think are missing."
|
5511 |
msgstr ""
|
5512 |
|
5513 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5514 |
msgctxt "themes"
|
5515 |
msgid "Map My Fields"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5519 |
msgctxt "themes"
|
5520 |
msgid "Suggested fields created successfully."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5524 |
msgctxt "themes"
|
5525 |
msgid "Theme installed successfully."
|
5526 |
msgstr ""
|
5527 |
|
5528 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5529 |
msgctxt "themes"
|
5530 |
msgid "Theme was deleted successfully."
|
5531 |
msgstr ""
|
5532 |
|
5533 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5534 |
msgctxt "themes"
|
5535 |
msgid "Could not delete theme directory. Check permissions."
|
5536 |
msgstr ""
|
5537 |
|
5538 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5539 |
msgctxt "themes"
|
5540 |
msgid "Please upload a valid theme file."
|
5541 |
msgstr ""
|
5542 |
|
5543 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5544 |
msgctxt "themes"
|
5545 |
msgid "Could not move \"%s\" to a temporary directory."
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5549 |
msgctxt "themes"
|
5550 |
msgid "Activate your <a>license key</a> to use this theme."
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5554 |
msgctxt "themes"
|
5555 |
msgid "Invalid theme ID"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: includes/admin/controllers/class-themes-admin.php:
|
5559 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
5560 |
msgctxt "themes"
|
5561 |
msgid "Could not update theme: %s"
|
@@ -5591,215 +5370,434 @@ msgctxt "themes"
|
|
5591 |
msgid "Could not remove previous theme directory \"%s\"."
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: includes/themes.php:972
|
5595 |
-
msgctxt "themes"
|
5596 |
-
msgid "Could not move new theme into theme directory."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: includes/admin/csv-
|
5600 |
-
msgctxt "admin csv-
|
5601 |
-
msgid "
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: includes/admin/helpers/csv/class-csv-
|
5605 |
-
msgctxt "admin csv-
|
5606 |
-
msgid "
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#:
|
5610 |
-
msgctxt "admin csv-
|
5611 |
-
msgid "
|
5612 |
msgstr ""
|
5613 |
|
5614 |
-
#: templates/admin/csv-
|
5615 |
-
msgctxt "admin csv-
|
5616 |
msgid ""
|
5617 |
-
"
|
5618 |
-
"
|
5619 |
-
"
|
5620 |
-
"server's php.ini configuration file."
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: templates/admin/csv-
|
5624 |
-
|
5625 |
-
|
|
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#: templates/admin/csv-
|
5629 |
-
msgctxt "admin csv-
|
5630 |
-
msgid "
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: templates/admin/csv-
|
5634 |
-
msgctxt "admin csv-
|
5635 |
-
msgid "
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: templates/admin/csv-
|
5639 |
-
msgctxt "admin csv-
|
5640 |
-
msgid "
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: templates/admin/csv-
|
5644 |
-
msgctxt "admin csv-
|
5645 |
-
msgid "
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: templates/admin/csv-
|
5649 |
-
msgctxt "admin csv-
|
5650 |
-
msgid "
|
5651 |
msgstr ""
|
5652 |
|
5653 |
-
#: templates/admin/csv-
|
5654 |
-
msgctxt "admin csv-
|
5655 |
-
msgid "
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: templates/admin/csv-
|
5659 |
-
msgctxt "admin csv-
|
5660 |
-
msgid ""
|
5661 |
-
"When checked, instead of just a CSV file a ZIP file will be generated with "
|
5662 |
-
"both a CSV file and listing images."
|
5663 |
msgstr ""
|
5664 |
|
5665 |
-
#: templates/admin/csv-
|
5666 |
-
msgctxt "admin csv-
|
5667 |
-
msgid "
|
5668 |
msgstr ""
|
5669 |
|
5670 |
-
#: templates/admin/csv-
|
5671 |
-
msgctxt "admin csv-
|
5672 |
-
msgid "
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: templates/admin/csv-
|
5676 |
-
msgctxt "admin csv-
|
5677 |
-
msgid "
|
5678 |
msgstr ""
|
5679 |
|
5680 |
-
#: templates/admin/csv-
|
5681 |
-
msgctxt "admin csv-
|
5682 |
-
msgid "
|
5683 |
msgstr ""
|
5684 |
|
5685 |
-
#: templates/admin/csv-
|
5686 |
-
msgctxt "admin csv-
|
5687 |
-
msgid "
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#: templates/admin/csv-
|
5691 |
-
msgctxt "admin csv-
|
5692 |
-
msgid "
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: templates/admin/csv-
|
5696 |
-
msgctxt "admin csv-
|
5697 |
-
msgid "
|
5698 |
msgstr ""
|
5699 |
|
5700 |
-
#: templates/admin/csv-
|
5701 |
-
msgctxt "admin csv-
|
5702 |
-
msgid "
|
5703 |
msgstr ""
|
5704 |
|
5705 |
-
#: templates/admin/csv-
|
5706 |
-
msgctxt "admin csv-
|
5707 |
-
msgid "
|
5708 |
msgstr ""
|
5709 |
|
5710 |
-
#: templates/admin/csv-
|
5711 |
-
msgctxt "admin csv-
|
5712 |
-
msgid "
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#: templates/admin/csv-
|
5716 |
-
msgctxt "admin csv-
|
5717 |
-
msgid ""
|
5718 |
-
"Windows and macOS versions of MS Excel handle CSV files differently. To make "
|
5719 |
-
"sure all your listings information is displayed properly when you view or "
|
5720 |
-
"edit the CSV file, we need to generate different versions of the file for "
|
5721 |
-
"each operating system."
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#: templates/admin/csv-
|
5725 |
-
msgctxt "admin csv-
|
5726 |
-
msgid "
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
#: templates/admin/csv-
|
5730 |
-
msgctxt "admin csv-
|
5731 |
-
msgid "
|
5732 |
msgstr ""
|
5733 |
|
5734 |
-
#: templates/admin/csv-
|
5735 |
-
msgctxt "admin csv-
|
5736 |
-
msgid "
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: templates/admin/csv-
|
5740 |
-
msgctxt "admin csv-
|
5741 |
-
msgid ""
|
5742 |
-
"Your export file is being prepared. Please <u>do not leave</u> this page "
|
5743 |
-
"until the export finishes."
|
5744 |
msgstr ""
|
5745 |
|
5746 |
-
#: templates/admin/csv-
|
5747 |
-
msgctxt "admin csv-
|
5748 |
-
msgid "
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#: templates/admin/csv-
|
5752 |
-
msgctxt "admin csv-
|
5753 |
-
msgid "
|
5754 |
msgstr ""
|
5755 |
|
5756 |
-
#: templates/admin/csv-
|
5757 |
-
msgctxt "admin csv-
|
5758 |
-
msgid "
|
5759 |
msgstr ""
|
5760 |
|
5761 |
-
#: templates/admin/csv-
|
5762 |
-
msgctxt "admin csv-
|
5763 |
-
msgid "
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: templates/admin/csv-
|
5767 |
-
msgctxt "admin csv-
|
5768 |
-
msgid ""
|
5769 |
-
"Your export file has been successfully created and it is now ready for "
|
5770 |
-
"download."
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: templates/admin/csv-
|
5774 |
-
msgctxt "admin csv-
|
5775 |
-
msgid "
|
|
|
|
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: templates/admin/csv-
|
5779 |
-
msgctxt "admin csv-
|
5780 |
-
msgid ""
|
5781 |
-
"Click \"Cleanup\" once the file has been downloaded in order to remove all "
|
5782 |
-
"temporary data created by Business Directory during the export process."
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: templates/admin/csv-
|
5786 |
-
msgctxt "admin csv-
|
5787 |
-
msgid "
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: templates/admin/csv-
|
5791 |
-
msgctxt "admin csv-
|
5792 |
-
msgid "
|
|
|
|
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: templates/admin/csv-
|
5796 |
-
msgctxt "admin csv-
|
5797 |
-
msgid "
|
|
|
5798 |
msgstr ""
|
5799 |
|
5800 |
-
#: templates/admin/csv-
|
5801 |
-
msgctxt "admin csv-
|
5802 |
-
msgid "
|
|
|
|
|
5803 |
msgstr ""
|
5804 |
|
5805 |
#: includes/admin/csv-import.php:304
|
@@ -5930,41 +5928,41 @@ msgctxt "admin fees table"
|
|
5930 |
msgid "All"
|
5931 |
msgstr ""
|
5932 |
|
5933 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5934 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5935 |
msgctxt "post status"
|
5936 |
msgid "Published"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5940 |
msgctxt "post status"
|
5941 |
msgid "Draft"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5945 |
msgctxt "post status"
|
5946 |
msgid "Trash"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
#. translators: %s: url shortcode
|
5950 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5951 |
msgctxt "contact email"
|
5952 |
msgid "You have received a reply from your listing at %s."
|
5953 |
msgstr ""
|
5954 |
|
5955 |
#. translators: %s: name shortcode
|
5956 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5957 |
msgctxt "contact email"
|
5958 |
msgid "Name: %s"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5962 |
msgctxt "contact email"
|
5963 |
msgid "Message:"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
#. translators: %s: date shortcode
|
5967 |
-
#: includes/admin/settings/class-settings-bootstrap.php:
|
5968 |
msgctxt "contact email"
|
5969 |
msgid "Time: %s"
|
5970 |
msgstr ""
|
@@ -6099,12 +6097,12 @@ msgctxt "listings-api"
|
|
6099 |
msgid "Featured Listing"
|
6100 |
msgstr ""
|
6101 |
|
6102 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6103 |
msgctxt "migrate-18"
|
6104 |
msgid "Featured Levels migration is complete."
|
6105 |
msgstr ""
|
6106 |
|
6107 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6108 |
msgctxt "migrate-18"
|
6109 |
msgid ""
|
6110 |
"Business Directory <b>version 5.0</b> is changing how Featured Levels plugin "
|
@@ -6112,7 +6110,7 @@ msgid ""
|
|
6112 |
"confusing notion of a \"featured level\" that was limited to sticky listings."
|
6113 |
msgstr ""
|
6114 |
|
6115 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6116 |
msgctxt "migrate-18"
|
6117 |
msgid ""
|
6118 |
"We need to migrate your existing \"featured levels\" to plans for use by the "
|
@@ -6122,7 +6120,7 @@ msgid ""
|
|
6122 |
"link> and <cancel-link>cancel migration</cancel-link>."
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6126 |
msgctxt "migrate-18"
|
6127 |
msgid ""
|
6128 |
"Before we do the migration, we need to ask a few simple questions to move "
|
@@ -6130,91 +6128,91 @@ msgid ""
|
|
6130 |
"plan\" that is right for you."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6134 |
msgctxt "migrate-18"
|
6135 |
msgid "Move to: "
|
6136 |
msgstr ""
|
6137 |
|
6138 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6139 |
msgctxt "migrate-18"
|
6140 |
msgid "New plan summary"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6144 |
msgctxt "migrate-18"
|
6145 |
msgid "Perform migration"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6149 |
msgctxt "migrate-18"
|
6150 |
msgid "Business Directory Plugin - Featured Levels migration required."
|
6151 |
msgstr ""
|
6152 |
|
6153 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6154 |
msgctxt "migrate-18"
|
6155 |
msgid ""
|
6156 |
"Featured levels were removed in 5.0. You need to perform your <a>Featured "
|
6157 |
"Levels migration here</a>."
|
6158 |
msgstr ""
|
6159 |
|
6160 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6161 |
msgctxt "upgrade-18"
|
6162 |
msgid "← Return to Directory dashboard"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6166 |
msgctxt "upgrade-18"
|
6167 |
msgid "Configure Plan"
|
6168 |
msgstr ""
|
6169 |
|
6170 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6171 |
msgctxt "upgrade-18"
|
6172 |
msgid "Featured Level"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6176 |
msgctxt "upgrade-18"
|
6177 |
msgid "What to do with it?"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6181 |
msgctxt "upgrade-18"
|
6182 |
msgid "%d listing is on this level."
|
6183 |
msgid_plural "%d listings are on this level."
|
6184 |
msgstr[0] ""
|
6185 |
msgstr[1] ""
|
6186 |
|
6187 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6188 |
msgctxt "upgrade-18"
|
6189 |
msgid "Select an option"
|
6190 |
msgstr ""
|
6191 |
|
6192 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6193 |
msgctxt "upgrade-18"
|
6194 |
msgid "Remove \"sticky\" status for listings."
|
6195 |
msgstr ""
|
6196 |
|
6197 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6198 |
msgctxt "upgrade-18"
|
6199 |
msgid "Remove this (old) level, and leave the listing on the old plan."
|
6200 |
msgstr ""
|
6201 |
|
6202 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6203 |
msgctxt "upgrade-18"
|
6204 |
msgid "May change \"sticky\" status depending on plan."
|
6205 |
msgstr ""
|
6206 |
|
6207 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6208 |
msgctxt "upgrade-18"
|
6209 |
msgid "Move listings with this level to existing plan."
|
6210 |
msgstr ""
|
6211 |
|
6212 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6213 |
msgctxt "upgrade-18"
|
6214 |
msgid "Keep \"sticky\" status of listings."
|
6215 |
msgstr ""
|
6216 |
|
6217 |
-
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:
|
6218 |
msgctxt "upgrade-18"
|
6219 |
msgid "Replace this level with a new plan."
|
6220 |
msgstr ""
|
@@ -6599,34 +6597,34 @@ msgid ""
|
|
6599 |
"site. If you didn't want that, click <a>here</a> to change the setting."
|
6600 |
msgstr ""
|
6601 |
|
6602 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6603 |
msgctxt "templates"
|
6604 |
msgid ""
|
6605 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
6606 |
"Submission?\" setting checked?"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6610 |
msgctxt "templates"
|
6611 |
msgid ""
|
6612 |
"Listing submission has been disabled. Contact the administrator for details."
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6616 |
msgctxt "templates"
|
6617 |
msgid ""
|
6618 |
"<b>There are no Plans available</b>, without a plan site users can't submit "
|
6619 |
"a listing. %s to create a plan"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6623 |
msgctxt "templates"
|
6624 |
msgid ""
|
6625 |
"Listing submission is not available at the moment. Contact the administrator "
|
6626 |
"for details."
|
6627 |
msgstr ""
|
6628 |
|
6629 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6630 |
msgctxt "templates"
|
6631 |
msgid ""
|
6632 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
@@ -6634,12 +6632,12 @@ msgid ""
|
|
6634 |
"an existing field"
|
6635 |
msgstr ""
|
6636 |
|
6637 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6638 |
msgctxt "templates"
|
6639 |
msgid "Please agree to the Terms and Conditions."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6643 |
msgctxt "templates"
|
6644 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6645 |
msgstr ""
|
@@ -6915,112 +6913,112 @@ msgctxt "search"
|
|
6915 |
msgid "\"%s\" is required."
|
6916 |
msgstr ""
|
6917 |
|
6918 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6919 |
msgctxt "submit listing"
|
6920 |
msgid "Click this field to add categories"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6924 |
msgctxt "submit listing"
|
6925 |
msgid "Complete Listing"
|
6926 |
msgstr ""
|
6927 |
|
6928 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6929 |
msgctxt "submit listing"
|
6930 |
msgid "Continue to Payment"
|
6931 |
msgstr ""
|
6932 |
|
6933 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6934 |
msgctxt "submit listing"
|
6935 |
msgid "Please wait a moment!"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6939 |
msgctxt "submit listing"
|
6940 |
msgid "Something went wrong!"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6944 |
msgctxt "submit listing"
|
6945 |
msgid "No listing ID was specified."
|
6946 |
msgstr ""
|
6947 |
|
6948 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6949 |
msgctxt "submit listing"
|
6950 |
msgid "You can't edit this listing."
|
6951 |
msgstr ""
|
6952 |
|
6953 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6954 |
msgctxt "submit listing"
|
6955 |
msgid ""
|
6956 |
"This listing can't be edited at this time because it has no plan associated. "
|
6957 |
"Please <a>edit the listing</a> on the backend and associate it to a plan."
|
6958 |
msgstr ""
|
6959 |
|
6960 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6961 |
msgctxt "submit listing"
|
6962 |
msgid ""
|
6963 |
"This listing can't be edited at this time. Please try again later or contact "
|
6964 |
"the admin if the problem persists."
|
6965 |
msgstr ""
|
6966 |
|
6967 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6968 |
msgctxt "submit listing"
|
6969 |
msgid "You're logged in as admin, payment will be skipped."
|
6970 |
msgstr ""
|
6971 |
|
6972 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6973 |
msgctxt "submit listing"
|
6974 |
msgid "Category selection"
|
6975 |
msgstr ""
|
6976 |
|
6977 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6978 |
msgctxt "submit listing"
|
6979 |
msgid "Category & plan selection"
|
6980 |
msgstr ""
|
6981 |
|
6982 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6983 |
msgctxt "submit listing"
|
6984 |
msgid "Can not submit a listing at this moment. Please try again later."
|
6985 |
msgstr ""
|
6986 |
|
6987 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6988 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6989 |
msgctxt "submit listing"
|
6990 |
msgid "Please select a category."
|
6991 |
msgstr ""
|
6992 |
|
6993 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6994 |
msgctxt "submit listing"
|
6995 |
msgid "Current active plan is disabled. Please select another plan."
|
6996 |
msgstr ""
|
6997 |
|
6998 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
6999 |
msgctxt "submit listing"
|
7000 |
msgid "Please choose a valid category for your plan."
|
7001 |
msgstr ""
|
7002 |
|
7003 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7004 |
msgctxt "submit listing"
|
7005 |
msgid "Please choose a valid plan for your category selection."
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7009 |
msgctxt "submit listing"
|
7010 |
msgid "Please enter your desired username."
|
7011 |
msgstr ""
|
7012 |
|
7013 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7014 |
msgctxt "submit listing"
|
7015 |
msgid "Please enter the e-mail for your new account."
|
7016 |
msgstr ""
|
7017 |
|
7018 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7019 |
msgctxt "submit listing"
|
7020 |
msgid "The username you chose is already in use. Please use a different one."
|
7021 |
msgstr ""
|
7022 |
|
7023 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7024 |
msgctxt "submit listing"
|
7025 |
msgid "The e-mail address you chose for your account is already in use."
|
7026 |
msgstr ""
|
@@ -7030,7 +7028,7 @@ msgctxt "submit listing"
|
|
7030 |
msgid "Listing submitted by admin. Payment skipped."
|
7031 |
msgstr ""
|
7032 |
|
7033 |
-
#: includes/controllers/pages/class-submit-listing.php:
|
7034 |
msgctxt "listing submit"
|
7035 |
msgid ""
|
7036 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -7503,7 +7501,7 @@ msgctxt "payment summary"
|
|
7503 |
msgid "%s. Imported Listing."
|
7504 |
msgstr ""
|
7505 |
|
7506 |
-
#: includes/payment.php:
|
7507 |
msgctxt "payments"
|
7508 |
msgid "Payment #%s"
|
7509 |
msgstr ""
|
@@ -7518,12 +7516,12 @@ msgctxt "utils"
|
|
7518 |
msgid "Error while uploading file"
|
7519 |
msgstr ""
|
7520 |
|
7521 |
-
#: includes/utils.php:
|
7522 |
msgctxt "utils"
|
7523 |
msgid "File type \"%s\" is not allowed"
|
7524 |
msgstr ""
|
7525 |
|
7526 |
-
#: includes/utils.php:
|
7527 |
msgctxt "utils"
|
7528 |
msgid ""
|
7529 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
@@ -7624,9 +7622,37 @@ msgctxt "widgets"
|
|
7624 |
msgid "Display the following fields in the form."
|
7625 |
msgstr ""
|
7626 |
|
7627 |
-
#: templates/admin/
|
7628 |
-
msgctxt "admin
|
7629 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7630 |
msgstr ""
|
7631 |
|
7632 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:127
|
@@ -7712,7 +7738,7 @@ msgctxt "uninstall"
|
|
7712 |
msgid "Uninstall Plugin"
|
7713 |
msgstr ""
|
7714 |
|
7715 |
-
#: templates/admin/uninstall-confirm.tpl.php:
|
7716 |
msgctxt "uninstall"
|
7717 |
msgid "Uninstalling Business Directory Plugin will do the following:"
|
7718 |
msgstr ""
|
@@ -7732,13 +7758,6 @@ msgctxt "uninstall"
|
|
7732 |
msgid "Remove ALL directory settings"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
-
#: templates/admin/uninstall-confirm.tpl.php:25
|
7736 |
-
msgctxt "uninstall"
|
7737 |
-
msgid ""
|
7738 |
-
"Remove ALL premium module configuration data (regions, maps, ratings, "
|
7739 |
-
"featured levels)"
|
7740 |
-
msgstr ""
|
7741 |
-
|
7742 |
#: templates/admin/uninstall-confirm.tpl.php:26
|
7743 |
msgctxt "uninstall"
|
7744 |
msgid "Deactivate the plugin from the file system"
|
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-03-31 18:58:23+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"
|
38 |
msgid "Selected"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: includes/admin/admin-pages.php:44 includes/admin/admin-pages.php:474
|
42 |
+
#: includes/admin/helpers/tables/class-fees-table.php:64
|
43 |
+
#: includes/admin/settings/class-settings-bootstrap.php:695
|
44 |
+
#: includes/admin/settings/class-settings-bootstrap.php:696
|
45 |
+
#: includes/helpers/class-app.php:92
|
46 |
+
msgid "Listings"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/admin/admin-pages.php:51
|
50 |
+
msgid "Add New Listing"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/admin/admin-pages.php:70
|
54 |
+
#: includes/admin/settings/class-settings-bootstrap.php:450
|
55 |
+
msgid "Categories"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/admin/admin-pages.php:72
|
59 |
+
msgid "Add New Category"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/admin/admin-pages.php:87
|
63 |
+
#: includes/admin/controllers/class-form-fields-admin.php:346
|
64 |
+
msgid "Tags"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: includes/admin/admin-pages.php:89
|
68 |
+
msgid "Add New Tag"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: includes/admin/admin-pages.php:104
|
72 |
+
msgid "Edit Category"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: includes/admin/admin-pages.php:106
|
76 |
+
msgid "Back to Categories"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: includes/admin/admin-pages.php:120
|
80 |
+
msgid "Edit Tag"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: includes/admin/admin-pages.php:122
|
84 |
+
msgid "Back to Tags"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#. translators: %s: Search query.
|
88 |
+
#: includes/admin/admin-pages.php:186
|
89 |
+
msgid "Search results for: %s"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: includes/admin/admin-pages.php:473 includes/admin/class-admin.php:487
|
93 |
+
msgid "Directory Content"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: includes/admin/admin-pages.php:479 includes/admin/class-admin.php:309
|
97 |
+
#: includes/admin/settings/class-settings-bootstrap.php:707
|
98 |
+
#: includes/admin/settings/class-settings-bootstrap.php:708
|
99 |
+
#: includes/helpers/class-app.php:93
|
100 |
+
#: includes/helpers/functions/templates-ui.php:307
|
101 |
+
msgid "Directory"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: includes/admin/class-admin.php:198
|
105 |
msgid ""
|
106 |
"Find out how to create a compelling, thriving business directory from "
|
107 |
"scratch in this ridiculously actionable (and FREE) 5-part email course."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: includes/admin/class-admin.php:207
|
111 |
msgid "Want to know the Secrets of Building an Awesome Business Directory?"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/admin/class-admin.php:209
|
115 |
msgid "Yes, please!"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: includes/admin/class-admin.php:211 includes/admin/tracking.php:215
|
119 |
msgid "No, thanks"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: includes/admin/class-admin.php:244
|
123 |
msgid "You're all set. Visit your new %1$sBusiness Directory%2$s page."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/admin/class-admin.php:272
|
127 |
msgid "Invalid email address."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: includes/admin/class-admin.php:308
|
131 |
msgid "Business Directory Admin"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: includes/admin/class-admin.php:320 templates/admin/fees-index.tpl.php:5
|
135 |
+
#: templates/admin/home.tpl.php:65
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
msgid "Plans"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/admin/class-admin.php:323 templates/admin/form-fields.tpl.php:20
|
140 |
+
#: templates/admin/home.tpl.php:60
|
141 |
msgid "Form Fields"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: includes/admin/class-admin.php:352 includes/admin/class-admin.php:353
|
145 |
#: includes/licensing.php:229
|
146 |
msgid "Modules"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/admin/class-admin.php:353
|
150 |
msgid "Business Directory"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/admin/class-admin.php:486 includes/class-cpt-integration.php:23
|
154 |
+
msgid "Directory Listings"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: includes/admin/class-admin.php:1015
|
158 |
msgid "Could not send renewal email."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/admin/class-admin.php:1149
|
162 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:129
|
163 |
#: includes/admin/helpers/tables/class-payments-table.php:54
|
164 |
#: templates/email/listing-added.tpl.php:7
|
165 |
#: templates/email/listing-edited.tpl.php:13
|
167 |
msgid "ID"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: includes/admin/class-admin.php:1151 includes/admin/class-admin.php:1159
|
171 |
+
#: includes/admin/settings/class-settings-bootstrap.php:733
|
172 |
msgid "Listing Count"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/admin/class-admin.php:1316
|
176 |
msgid ""
|
177 |
"We noticed you want your Business Directory users to register before posting "
|
178 |
"listings, but Registration for your site is currently disabled. Go %1$shere"
|
236 |
msgid "Are you sure you want to do this?"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/admin/controllers/class-admin-csv.php:38
|
240 |
+
msgid "Import"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: includes/admin/controllers/class-admin-csv.php:42
|
244 |
+
msgid "Export"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: includes/admin/controllers/class-admin-csv.php:50
|
248 |
+
msgid "See an example CSV import file"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: includes/admin/controllers/class-admin-csv.php:54
|
252 |
+
#: templates/admin/csv-import.tpl.php:285
|
253 |
msgid "Help"
|
254 |
msgstr ""
|
255 |
|
256 |
#: includes/admin/controllers/class-admin-fees.php:47
|
257 |
#: includes/admin/helpers/tables/class-payments-table.php:57
|
258 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:277
|
259 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:73
|
260 |
#: templates/admin/payments-details.tpl.php:113
|
261 |
#: templates/email/listing-payment-completed.tpl.php:21
|
265 |
|
266 |
#: includes/admin/controllers/class-admin-fees.php:49
|
267 |
#: includes/admin/helpers/tables/class-fees-table.php:65
|
268 |
+
#: includes/admin/settings/class-settings-bootstrap.php:923
|
269 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:279
|
270 |
msgid "Images"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/admin/controllers/class-admin-fees.php:79
|
274 |
+
msgid "Upgrade"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: includes/admin/controllers/class-admin-fees.php:90
|
278 |
+
msgid "Set Up"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: includes/admin/controllers/class-admin-fees.php:153
|
282 |
msgid "Plan added."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/admin/controllers/class-admin-fees.php:157
|
286 |
+
#: includes/admin/controllers/class-admin-fees.php:172
|
287 |
msgid "Plan updated."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/admin/controllers/class-admin-fees.php:192
|
291 |
msgid "%1$sClick here to update image limits%2$s of %3$s existing listings."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/admin/controllers/class-admin-fees.php:193
|
295 |
msgid "Update listing image limits?"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/admin/controllers/class-admin-fees.php:214
|
299 |
msgid "Plan not found."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/admin/controllers/class-admin-fees.php:218
|
303 |
msgid "Plan listings updated."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/admin/controllers/class-admin-fees.php:296
|
307 |
msgid "Cannot disable plan. At least one plan should be enabled"
|
308 |
msgstr ""
|
309 |
|
310 |
#: includes/admin/controllers/class-admin-listings.php:187
|
311 |
+
#: includes/controllers/pages/class-submit-listing.php:514
|
312 |
#: templates/email/listing-reported.tpl.php:7
|
313 |
msgid "Listing Information"
|
314 |
msgstr ""
|
346 |
msgid "Delete Listing"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/admin/controllers/class-admin-listings.php:733
|
350 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:88
|
351 |
+
msgid "Never"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: includes/admin/controllers/class-admin-listings.php:744
|
355 |
+
#: includes/admin/controllers/class-admin-listings.php:745
|
356 |
+
#: includes/fields/class-fieldtypes-textarea.php:201
|
357 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
358 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
359 |
+
msgid "Yes"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: includes/admin/controllers/class-admin-listings.php:744
|
363 |
+
#: includes/admin/controllers/class-admin-listings.php:745
|
364 |
+
#: includes/admin/settings/class-settings-bootstrap.php:276
|
365 |
+
#: includes/fields/class-fieldtypes-textarea.php:200
|
366 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:113
|
367 |
+
#: templates/admin/metaboxes-listing-information-plan.tpl.php:120
|
368 |
+
msgid "No"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
#: includes/admin/controllers/class-form-fields-admin.php:32
|
372 |
msgid ""
|
373 |
"You can create these custom fields inside \"Form Fields\" or let Business "
|
375 |
msgstr ""
|
376 |
|
377 |
#: includes/admin/controllers/class-form-fields-admin.php:37
|
378 |
+
#: includes/controllers/pages/class-submit-listing.php:844
|
379 |
msgid "Go to \"Form Fields\""
|
380 |
msgstr ""
|
381 |
|
390 |
msgstr ""
|
391 |
|
392 |
#: includes/admin/controllers/class-form-fields-admin.php:342
|
393 |
+
#: includes/admin/settings/class-settings-bootstrap.php:791
|
394 |
#: templates/email/listing-added.tpl.php:10
|
395 |
#: templates/email/listing-edited.tpl.php:16
|
396 |
#: templates/email/listing-reported.tpl.php:11
|
412 |
msgid "Content"
|
413 |
msgstr ""
|
414 |
|
|
|
|
|
|
|
|
|
415 |
#: includes/admin/controllers/class-form-fields-admin.php:347
|
416 |
#: includes/form-fields.php:445
|
417 |
#: includes/helpers/class-field-display-list.php:247
|
468 |
msgid "Website"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/admin/controllers/class-settings-admin.php:609
|
472 |
msgid "Your license key provides access to new features and updates."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/admin/controllers/class-settings-admin.php:611
|
476 |
msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/admin/controllers/class-settings-admin.php:669
|
480 |
#: includes/admin/helpers/tables/class-fees-table.php:180
|
481 |
#: includes/admin/helpers/tables/class-form-fields-table.php:105
|
482 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
517 |
|
518 |
#: includes/admin/helpers/class-listing-information-metabox.php:15
|
519 |
#: includes/admin/helpers/tables/class-payments-table.php:53
|
520 |
+
#: includes/admin/settings/class-settings-bootstrap.php:683
|
521 |
+
#: includes/admin/settings/class-settings-bootstrap.php:684
|
522 |
#: includes/helpers/class-app.php:91
|
523 |
#: templates/admin/payments-details.tpl.php:53
|
524 |
msgid "Listing"
|
554 |
msgid "Upgrade Now"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: includes/admin/helpers/class-notices.php:30
|
558 |
+
msgid "Hide notifications"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
#: includes/admin/helpers/csv/class-csv-import.php:676
|
562 |
msgid "Listing imported by admin. Payment skipped."
|
563 |
msgstr ""
|
579 |
msgid "Pricing"
|
580 |
msgstr ""
|
581 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
#: includes/admin/helpers/tables/class-fees-table.php:155
|
583 |
msgid "Disable"
|
584 |
msgstr ""
|
618 |
|
619 |
#: includes/admin/helpers/tables/class-form-fields-table.php:31
|
620 |
#: includes/fields/class-fieldtypes-social.php:135
|
621 |
+
#: templates/admin/csv-import.tpl.php:301
|
622 |
msgid "Type"
|
623 |
msgstr ""
|
624 |
|
652 |
msgid "Missing tables: %s"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: includes/admin/settings/class-settings-bootstrap.php:17
|
656 |
+
#: includes/controllers/pages/class-submit-listing.php:1250
|
657 |
#: includes/form-fields.php:428 templates/admin/payments-details.tpl.php:140
|
658 |
#: templates/listing-contactform.tpl.php:33
|
659 |
#: templates/listing-flagging-form.tpl.php:39
|
660 |
msgid "Email"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: includes/admin/settings/class-settings-bootstrap.php:31
|
664 |
msgid "Module Settings"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: includes/admin/settings/class-settings-bootstrap.php:35
|
668 |
+
#: includes/admin/settings/class-settings-bootstrap.php:309
|
669 |
msgid "Miscellaneous"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: includes/admin/settings/class-settings-bootstrap.php:51
|
673 |
msgid "License Key"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/admin/settings/class-settings-bootstrap.php:72
|
677 |
msgid "SEO"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/admin/settings/class-settings-bootstrap.php:277
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
681 |
msgid "Yes, and make it optional"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/admin/settings/class-settings-bootstrap.php:278
|
685 |
msgid "Yes, and make it required"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/admin/settings/class-settings-bootstrap.php:285
|
689 |
+
#: includes/admin/settings/class-settings-bootstrap.php:299
|
690 |
+
#: includes/controllers/pages/class-submit-listing.php:527
|
691 |
msgid "Terms and Conditions"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/admin/settings/class-settings-bootstrap.php:290
|
695 |
msgid "User Agreement"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: includes/admin/settings/class-settings-bootstrap.php:291
|
699 |
msgid "Display and require user agreement to Terms and Conditions"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: includes/admin/settings/class-settings-bootstrap.php:315
|
703 |
msgid "Data Collection"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/admin/settings/class-settings-bootstrap.php:316
|
707 |
msgid ""
|
708 |
"Allow Business Directory to anonymously collect information about your "
|
709 |
"installed plugins, themes and WP version?"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/admin/settings/class-settings-bootstrap.php:317
|
713 |
msgid "Learn more"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/admin/settings/class-settings-bootstrap.php:323
|
717 |
msgid "Searching"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/admin/settings/class-settings-bootstrap.php:328
|
721 |
msgid "Display advanced search form"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: includes/admin/settings/class-settings-bootstrap.php:346
|
725 |
msgid ""
|
726 |
"Enabling this sacrifices result quality to improve speed. This is helpful if "
|
727 |
"you're on shared hosting plans, where database performance is an issue."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/admin/settings/class-settings-bootstrap.php:391
|
731 |
msgid "Quick search data"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/admin/settings/class-settings-bootstrap.php:417
|
735 |
msgid ""
|
736 |
"If no fields are selected, the following fields will be searched in Quick "
|
737 |
"Searches:"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: includes/admin/settings/class-settings-bootstrap.php:419
|
741 |
msgid ""
|
742 |
"The Quick Search is a single search box, but you may choose what data is "
|
743 |
"searched. Searching too many fields can result in very slow search "
|
744 |
"performance."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/admin/settings/class-settings-bootstrap.php:452
|
|
|
|
|
|
|
|
|
748 |
msgid "Buttons"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: includes/admin/settings/class-settings-bootstrap.php:454
|
752 |
msgid "Sorting"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/admin/settings/class-settings-bootstrap.php:571
|
756 |
msgid ""
|
757 |
"Business Directory Plugin uses the standard WordPress comments. Most themes "
|
758 |
"allow for comments on posts, not pages. Some themes handle both. Since the "
|
761 |
"work, try the 3rd option."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/admin/settings/class-settings-bootstrap.php:575
|
765 |
msgid "Include theme comment form (standard option)"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: includes/admin/settings/class-settings-bootstrap.php:576
|
769 |
msgid "Include directory comment form (use only if 2nd option does not work)"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: includes/admin/settings/class-settings-bootstrap.php:594
|
773 |
msgid "Prevent featured (sticky) status on directory pages?"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: includes/admin/settings/class-settings-bootstrap.php:622
|
777 |
msgid "Owner of anonymous listings"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: includes/admin/settings/class-settings-bootstrap.php:638
|
781 |
msgid "Default listing status"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: includes/admin/settings/class-settings-bootstrap.php:642
|
785 |
+
#: includes/admin/settings/class-settings-bootstrap.php:655
|
786 |
msgid "Pending (Require approval)"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: includes/admin/settings/class-settings-bootstrap.php:676
|
790 |
msgid "Message Defaults"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/admin/settings/class-settings-bootstrap.php:681
|
794 |
msgid "Listing label"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: includes/admin/settings/class-settings-bootstrap.php:682
|
798 |
msgid "What is a single listing called?"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/admin/settings/class-settings-bootstrap.php:693
|
802 |
msgid "Listing label (Plural)"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/admin/settings/class-settings-bootstrap.php:694
|
806 |
msgid "What are your listings called?"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: includes/admin/settings/class-settings-bootstrap.php:705
|
810 |
msgid "Directory label"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/admin/settings/class-settings-bootstrap.php:706
|
814 |
msgid "What should we call your directory?"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: includes/admin/settings/class-settings-bootstrap.php:718
|
818 |
msgid ""
|
819 |
"This text is displayed on the first page of the Submit Listing process. You "
|
820 |
"can use it for instructions about filling out the form or information to get "
|
821 |
"started."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: includes/admin/settings/class-settings-bootstrap.php:731
|
825 |
#: templates/listing-contactform.tpl.php:30
|
826 |
#: templates/listing-flagging-form.tpl.php:35
|
827 |
msgid "Name"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/admin/settings/class-settings-bootstrap.php:846
|
831 |
msgid "Show Buttons"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: includes/admin/settings/class-settings-bootstrap.php:889
|
835 |
+
msgid "Show the \"Directory\" and \"Return to Directory\" button"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/admin/settings/class-settings-bootstrap.php:896
|
839 |
msgid "Styling"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: includes/admin/settings/class-settings-bootstrap.php:902
|
843 |
msgid "Button style"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: includes/admin/settings/class-settings-bootstrap.php:905
|
847 |
msgid "Override WP theme button styling"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: includes/admin/settings/class-settings-bootstrap.php:913
|
851 |
msgid "Primary color"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: includes/admin/settings/class-settings-bootstrap.php:916
|
855 |
msgid "This is used for form buttons and form rootline."
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1070
|
859 |
msgid "Show Thumbnail"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1106
|
863 |
msgid "Coming Soon image"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1143
|
867 |
#: includes/fields/class-fieldtypes-social.php:89
|
868 |
#: includes/fields/class-fieldtypes-url.php:162
|
869 |
#: templates/email/listing-added.tpl.php:13
|
873 |
msgid "URL"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1262
|
877 |
msgid "Thank you for your payment."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1290
|
881 |
msgid ""
|
882 |
"If you are using this gateway, we recommend you disable it if you wish to "
|
883 |
"collect payments in this currency."
|
887 |
msgstr[0] ""
|
888 |
msgstr[1] ""
|
889 |
|
890 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1378
|
891 |
msgid "Email Notifications"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1383
|
895 |
msgid "Notify admin via email when..."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1401
|
899 |
msgid "CC this email address too"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1407
|
903 |
msgid ""
|
904 |
"You can modify the text template used for most of these emails in the "
|
905 |
"<templates-link>Templates</templates-link> tab."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1415
|
909 |
msgid "Notify users via email when..."
|
910 |
msgstr ""
|
911 |
|
912 |
#. translators: %s: email shortcode
|
913 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1482
|
914 |
msgid "Email: %s"
|
915 |
msgstr ""
|
916 |
|
917 |
#. translators: %s: phone shortcode
|
918 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1485
|
919 |
msgid "Phone Number: %s"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1497
|
923 |
msgid "Sender's email address"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1498
|
927 |
msgid "Sender's phone number"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1562
|
931 |
msgid "Renewal and expiration"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1698
|
935 |
#: templates/admin/uninstall-complete.tpl.php:4
|
936 |
msgid "Uninstall"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: includes/admin/settings/class-settings.php:519
|
940 |
msgid "%s cannot include spaces, commas, or &"
|
941 |
msgstr ""
|
942 |
|
993 |
|
994 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:21
|
995 |
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:22
|
996 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:189
|
|
|
997 |
msgid "Business Directory - Featured Levels Migration"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:276
|
1001 |
#: templates/admin/fees-form.tpl.php:17
|
1002 |
msgid "Plan Label"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:278
|
1006 |
msgid "Duration"
|
1007 |
msgstr ""
|
1008 |
|
1068 |
"what we can do better?"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: includes/class-assets.php:191 templates/admin/settings-email.tpl.php:103
|
1072 |
#: templates/admin/settings-reset.tpl.php:8
|
1073 |
#: templates/admin/themes-delete-confirm.tpl.php:21
|
1074 |
#: templates/listing-flagging-form.tpl.php:65
|
1075 |
msgid "Cancel"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/class-assets.php:192
|
1079 |
msgid "Continue"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/class-assets.php:193
|
1083 |
msgid "Are you sure?"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/class-assets.php:357
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1087 |
msgid ""
|
1088 |
"Preview is only available after you've saved the first draft. This is due to "
|
1089 |
"how WordPress stores the data."
|
1103 |
msgid "Search Listings"
|
1104 |
msgstr ""
|
1105 |
|
|
|
|
|
|
|
|
|
1106 |
#: includes/class-cpt-integration.php:24
|
1107 |
msgid "No listings found"
|
1108 |
msgstr ""
|
1390 |
msgid "This is just a preview. The listing has not been published yet."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: includes/controllers/pages/class-submit-listing.php:560
|
1394 |
msgid "Listing Images"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: includes/controllers/pages/class-submit-listing.php:628
|
1398 |
msgid "Account Creation"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: includes/controllers/pages/class-submit-listing.php:827
|
1402 |
msgid "Go to \"Plans\""
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: includes/controllers/pages/class-submit-listing.php:883
|
1406 |
msgid "Please choose a plan."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: includes/controllers/pages/class-submit-listing.php:1073
|
1410 |
msgid "Please check the form for errors, correct them and submit again."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: includes/controllers/pages/class-submit-listing.php:1234
|
1414 |
msgid "Create a user account on this site"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: includes/controllers/pages/class-submit-listing.php:1241
|
1418 |
msgid "Username"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: includes/controllers/pages/class-submit-listing.php:1263
|
1422 |
msgid "Clear Form"
|
1423 |
msgstr ""
|
1424 |
|
1474 |
msgstr ""
|
1475 |
|
1476 |
#: includes/fields/class-fieldtypes-select.php:262
|
1477 |
+
#: templates/admin/fees-form.tpl.php:17 templates/admin/fees-form.tpl.php:38
|
1478 |
+
#: templates/admin/fees-form.tpl.php:58
|
|
|
|
|
|
|
|
|
1479 |
msgid "required"
|
1480 |
msgstr ""
|
1481 |
|
1612 |
msgid "Telephone Number Validator"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: includes/form-fields.php:595 templates/admin/csv-import.tpl.php:300
|
1616 |
msgid "Field"
|
1617 |
msgstr ""
|
1618 |
|
1694 |
msgstr ""
|
1695 |
|
1696 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1697 |
+
#: includes/licensing.php:151
|
1698 |
msgid ""
|
1699 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1700 |
"get updates."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: includes/licensing.php:203 includes/licensing.php:208
|
1704 |
msgid "Licenses"
|
1705 |
msgstr ""
|
1706 |
|
1807 |
msgid "Congratulations %1$s! You have collected %2$d listings."
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: includes/payment.php:30
|
1811 |
msgid "We couldn't find a payment associated with the given subscription."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: includes/payment.php:37
|
1815 |
msgid "The payment gateway \"<payment-gateway>\" is not available."
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: includes/payment.php:65
|
1819 |
msgid "Gateway Transaction ID:"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: includes/payment.php:77
|
1823 |
msgid "Bill To:"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: includes/payment.php:88
|
1827 |
msgid "Print Receipt"
|
1828 |
msgstr ""
|
1829 |
|
|
|
|
|
|
|
|
|
1830 |
#: includes/payment.php:187
|
|
|
|
|
|
|
|
|
1831 |
msgid "Return to plan selection"
|
1832 |
msgstr ""
|
1833 |
|
1907 |
msgid "There are currently no listings to show."
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: templates/admin/_admin-menu.php:42
|
1911 |
+
msgid "Minimize Navigation"
|
1912 |
+
msgstr ""
|
1913 |
+
|
1914 |
#: templates/admin/csv-export.tpl.php:5
|
1915 |
msgid ""
|
1916 |
"An unknown error occurred during the export. Please make sure you have "
|
1918 |
"for details."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: templates/admin/csv-export.tpl.php:40
|
1922 |
+
msgid "All"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: templates/admin/csv-export.tpl.php:53
|
1926 |
+
msgid "Create a ZIP file with both a CSV file and listing images."
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: templates/admin/csv-export.tpl.php:58
|
1930 |
+
msgid "Additional metadata to export"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: templates/admin/csv-export.tpl.php:68
|
1934 |
msgid ""
|
1935 |
"If you plan to re-import the listings into your directory and don't want new "
|
1936 |
"ones created, select this option!"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: templates/admin/csv-export.tpl.php:122
|
1940 |
+
#: templates/admin/csv-import.tpl.php:111
|
1941 |
msgid "CSV File Settings"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: templates/admin/csv-export.tpl.php:132
|
1945 |
+
msgid ""
|
1946 |
+
"Windows and macOS versions of MS Excel handle CSV files differently. To make "
|
1947 |
+
"sure all your listings information is displayed properly when you view or "
|
1948 |
+
"edit the CSV file, we need to generate different versions of the file for "
|
1949 |
+
"each operating system."
|
1950 |
+
msgstr ""
|
1951 |
+
|
1952 |
+
#: templates/admin/csv-export.tpl.php:153
|
1953 |
+
#: templates/admin/csv-import.tpl.php:147
|
1954 |
msgid "Image Separator"
|
1955 |
msgstr ""
|
1956 |
|
1961 |
"help you do things in the right order."
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: templates/admin/csv-import.tpl.php:46
|
1965 |
msgid "Import Files"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: templates/admin/csv-import.tpl.php:51
|
1969 |
msgid "CSV File"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: templates/admin/csv-import.tpl.php:80
|
1973 |
msgid "ZIP file containing images"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: templates/admin/csv-import.tpl.php:117
|
1977 |
msgid "Column Separator"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: templates/admin/csv-import.tpl.php:140
|
1981 |
msgid "TAB"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: templates/admin/csv-import.tpl.php:158
|
1985 |
msgid "Category Separator"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: templates/admin/csv-import.tpl.php:169
|
1989 |
msgid "Import settings"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: templates/admin/csv-import.tpl.php:174
|
1993 |
msgid "Post status of new imported listings"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: templates/admin/csv-import.tpl.php:189
|
1997 |
msgid "Post status of existing imported listings"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: templates/admin/csv-import.tpl.php:206
|
2001 |
msgid "Missing categories handling"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: templates/admin/csv-import.tpl.php:212
|
2005 |
msgid "Auto-create categories"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: templates/admin/csv-import.tpl.php:217
|
2009 |
msgid "Generate errors when a category is not found"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: templates/admin/csv-import.tpl.php:225
|
2013 |
+
msgid "Keep existing images"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: templates/admin/csv-import.tpl.php:228
|
2017 |
+
msgid "Appends new images while keeping current ones."
|
2018 |
+
msgstr ""
|
2019 |
+
|
2020 |
+
#: templates/admin/csv-import.tpl.php:236
|
2021 |
+
msgid "Assign listings to a user"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: templates/admin/csv-import.tpl.php:248
|
2025 |
msgid "Default listing user"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: templates/admin/csv-import.tpl.php:250
|
2029 |
msgid ""
|
2030 |
"This user will be used if the username column is not present in the CSV file."
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: templates/admin/csv-import.tpl.php:257
|
2034 |
msgid "Number of listings imported on every cycle"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: templates/admin/csv-import.tpl.php:259
|
2038 |
msgid ""
|
2039 |
"If you are having trouble importing listings due to memory problems, try "
|
2040 |
"reducing the import batch size to 5 or 1 and then re-attempt. This will "
|
2042 |
"success on shared hosting platforms and other resource-constrained servers."
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: templates/admin/csv-import.tpl.php:271
|
2046 |
+
msgid "Disable email notifications during import"
|
|
|
|
|
|
|
|
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: templates/admin/csv-import.tpl.php:290
|
2050 |
msgid ""
|
2051 |
"The following are the valid header names to be used in the CSV file. "
|
2052 |
"Multivalued fields (such as category or tags) can appear multiple times in "
|
2054 |
"how an import file should look like."
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: templates/admin/csv-import.tpl.php:299
|
2058 |
msgid "Header name/label"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: templates/admin/csv-import.tpl.php:302
|
2062 |
msgid "Required?"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
+
#: templates/admin/csv-import.tpl.php:303
|
2066 |
msgid "Multivalued?"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
#: templates/admin/csv-import.tpl.php:335
|
2070 |
msgid "Semicolon separated list of listing images (from the ZIP file)"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: templates/admin/csv-import.tpl.php:342
|
2074 |
msgid "Listing author's username"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
#: templates/admin/debug-info.tpl.php:5
|
2078 |
+
msgid "Debug"
|
|
|
|
|
2079 |
msgstr ""
|
2080 |
|
2081 |
#: templates/admin/debug-info.tpl.php:8
|
2082 |
msgid "Download Debug Information"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: templates/admin/debug-info.tpl.php:18
|
2086 |
+
msgid ""
|
2087 |
+
"The following information can help our team debug possible problems with "
|
2088 |
+
"your setup."
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
#: templates/admin/fees-add-fee.tpl.php:4 templates/admin/fees-form.tpl.php:245
|
2092 |
msgid "Add Plan"
|
2093 |
msgstr ""
|
2157 |
msgid "Save Changes"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: templates/admin/fees-index.tpl.php:7
|
2161 |
msgid "Add New Plan"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: templates/admin/fees-index.tpl.php:27
|
2165 |
msgid "↑ Ascending"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: templates/admin/fees-index.tpl.php:28
|
2169 |
msgid "↓ Descending"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: templates/admin/fees-index.tpl.php:36
|
2173 |
msgid "Save front-end order"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: templates/admin/fees-index.tpl.php:40
|
2177 |
msgid "Drag and drop to re-order plans."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: templates/admin/fees-index.tpl.php:56
|
2181 |
msgid "Set up a payment gateway to charge a fee for listings"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: templates/admin/fees-index.tpl.php:58
|
2185 |
msgid "Add a payment gateway to increase conversion rates"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
#. translators: %s: payment gateway name */
|
2189 |
+
#: templates/admin/fees-index.tpl.php:75
|
2190 |
+
msgid "Add %s as a payment option."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2191 |
msgstr ""
|
2192 |
|
2193 |
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2214 |
msgid "Manage Theme Tags"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: templates/admin/form-fields.tpl.php:27
|
2218 |
+
msgid ""
|
2219 |
+
"Create new fields, edit existing fields, change the field order and "
|
2220 |
+
"visibility."
|
2221 |
+
msgstr ""
|
2222 |
+
|
2223 |
+
#. translators: %1$s open link, %2$s close link
|
2224 |
+
#: templates/admin/form-fields.tpl.php:35
|
2225 |
+
msgid "Please see the %1$sForm Fields documentation%2$s for more details."
|
2226 |
+
msgstr ""
|
2227 |
+
|
2228 |
+
#: templates/admin/home.tpl.php:55
|
2229 |
+
msgid "Manage Options"
|
2230 |
+
msgstr ""
|
2231 |
+
|
2232 |
+
#: templates/admin/home.tpl.php:74
|
2233 |
+
msgid "Manage Paid Listings"
|
2234 |
+
msgstr ""
|
2235 |
+
|
2236 |
#: templates/admin/metaboxes-listing-information-other.tpl.php:3
|
2237 |
#: templates/email-access-keys.tpl.php:5 templates/login.tpl.php:69
|
2238 |
#: templates/login.tpl.php:71
|
2419 |
msgid "Directory Settings"
|
2420 |
msgstr ""
|
2421 |
|
|
|
|
|
|
|
|
|
|
|
2422 |
#: templates/admin/settings-reset.tpl.php:4
|
2423 |
msgid "Directory Reset to Default"
|
2424 |
msgstr ""
|
2437 |
msgid "Your existing listings will NOT be deleted doing this."
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: templates/admin/settings-reset.tpl.php:26
|
2441 |
+
msgid "Reset Defaults"
|
2442 |
+
msgstr ""
|
2443 |
+
|
2444 |
#: templates/admin/sidebar.tpl.php:7
|
2445 |
msgid "Need help?"
|
2446 |
msgstr ""
|
2519 |
msgid "Return to Dashboard."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: templates/admin/uninstall-confirm.tpl.php:25
|
2523 |
+
msgid "Remove ALL module data (regions, maps, ratings, featured levels)"
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
#. translators: %1$s: open link html, %2$s: close link html
|
2527 |
#: templates/admin/uninstall-confirm.tpl.php:43
|
2528 |
+
msgid "Go to %1$sPlugins > Installed Plugins%2$s"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
#. translators: %1$s: open italic html, %2$s: close italic html
|
2547 |
|
2548 |
#. translators: %1$s: open link html, %2$s: close link html
|
2549 |
#: templates/admin/uninstall-confirm.tpl.php:65
|
2550 |
+
msgid "You can reinstall the plugin again under %1$sPlugins > Add New%2$s"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
#: templates/admin/uninstall-confirm.tpl.php:74
|
2916 |
msgid "Find A Listing"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: includes/admin/class-admin.php:200
|
2920 |
msgctxt "drip pointer"
|
2921 |
msgid "Email Address:"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: includes/admin/class-admin.php:232
|
2925 |
msgctxt "admin"
|
2926 |
msgid "Business Directory"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: includes/admin/class-admin.php:504
|
2930 |
msgctxt "admin"
|
2931 |
msgid "Untitled Menu"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: includes/admin/class-admin.php:848
|
2935 |
msgctxt "admin"
|
2936 |
msgid "Dismiss this notice."
|
2937 |
msgstr ""
|
2938 |
|
2939 |
+
#: includes/admin/class-admin.php:953 includes/admin/class-admin.php:963
|
2940 |
msgctxt "admin"
|
2941 |
msgid "The listing has been updated."
|
2942 |
msgid_plural "The listings have been updated."
|
2943 |
msgstr[0] ""
|
2944 |
msgstr[1] ""
|
2945 |
|
2946 |
+
#: includes/admin/class-admin.php:989
|
2947 |
msgctxt "admin"
|
2948 |
msgid "The plan was successfully assigned."
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: includes/admin/class-admin.php:999
|
2952 |
msgctxt "admin"
|
2953 |
msgid "Listing was renewed."
|
2954 |
msgid_plural "Listings were renewed."
|
2955 |
msgstr[0] ""
|
2956 |
msgstr[1] ""
|
2957 |
|
2958 |
+
#: includes/admin/class-admin.php:1011
|
2959 |
msgctxt "admin"
|
2960 |
msgid "Renewal email sent."
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: includes/admin/class-admin.php:1024
|
2964 |
msgctxt "admin"
|
2965 |
msgid "Listing report deleted."
|
2966 |
msgid_plural "Listing reports deleted."
|
2967 |
msgstr[0] ""
|
2968 |
msgstr[1] ""
|
2969 |
|
2970 |
+
#: includes/admin/class-admin.php:1073
|
2971 |
msgctxt "admin"
|
2972 |
msgid "Access keys sent."
|
2973 |
msgstr ""
|
2974 |
|
2975 |
+
#: includes/admin/class-admin.php:1075
|
2976 |
msgctxt "admin"
|
2977 |
msgid "The access keys couldn't be sent."
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: includes/admin/class-admin.php:1233
|
2981 |
msgctxt "admin"
|
2982 |
msgid ""
|
2983 |
"<b>Business Directory Plugin</b> requires a page with the "
|
2984 |
"<tt>[businessdirectory]</tt> shortcode to function properly."
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: includes/admin/class-admin.php:1235
|
2988 |
msgctxt "admin"
|
2989 |
msgid ""
|
2990 |
"You can create this page by yourself or let Business Directory do this for "
|
2991 |
"you automatically."
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: includes/admin/class-admin.php:1240
|
2995 |
msgctxt "admin"
|
2996 |
msgid "Create required pages for me"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
+
#: includes/admin/class-admin.php:1293
|
3000 |
msgctxt "admin"
|
3001 |
msgid ""
|
3002 |
"<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
|
3048 |
msgid "Create these required fields for me"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: includes/admin/class-admin.php:327
|
3052 |
msgctxt "admin menu"
|
3053 |
msgid "Payment History"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: includes/admin/class-admin.php:330
|
3057 |
msgctxt "admin menu"
|
3058 |
msgid "Import & Export"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: includes/admin/class-admin.php:333
|
3062 |
msgctxt "admin menu"
|
3063 |
msgid "Debug"
|
3064 |
msgstr ""
|
3083 |
msgid "Yes, I'm sure"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: includes/admin/controllers/class-admin-fees.php:46
|
3087 |
+
msgctxt "fees order"
|
3088 |
+
msgid "Label"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: includes/admin/controllers/class-admin-fees.php:48
|
3092 |
+
msgctxt "fees order"
|
3093 |
+
msgid "Duration"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: includes/admin/controllers/class-admin-fees.php:50
|
3097 |
+
msgctxt "fees order"
|
3098 |
+
msgid "Custom Order"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: includes/admin/controllers/class-admin-fees.php:282
|
3102 |
+
msgctxt "fees admin"
|
3103 |
+
msgid "Plan \"%s\" deleted."
|
|
|
|
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: includes/admin/controllers/class-admin-fees.php:294
|
3107 |
+
msgctxt "fees admin"
|
3108 |
+
msgid "Plan enabled."
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: includes/admin/controllers/class-admin-fees.php:294
|
3112 |
+
msgctxt "fees admin"
|
3113 |
+
msgid "Plan disabled."
|
|
|
|
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: includes/admin/helpers/tables/class-fees-table.php:20
|
3117 |
+
msgctxt "fees admin"
|
3118 |
+
msgid "fee"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3119 |
msgstr ""
|
3120 |
|
3121 |
#: includes/admin/helpers/tables/class-fees-table.php:21
|
3423 |
msgid "Send access keys"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: includes/admin/controllers/class-admin-payments.php:18
|
3427 |
msgctxt "payments admin"
|
3428 |
msgid "Payment deleted."
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: includes/admin/controllers/class-admin-payments.php:36
|
3432 |
msgctxt "payments admin"
|
3433 |
msgid ""
|
3434 |
"You're seeing payments related to listing: \"%1$s\" (ID #%2$d). <a>Click "
|
3435 |
"here</a> to see all payments."
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: includes/admin/controllers/class-admin-payments.php:55
|
3439 |
msgctxt "payments admin"
|
3440 |
msgid "Payment details updated."
|
3441 |
msgstr ""
|
3524 |
msgid "Field Attributes"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:135
|
3528 |
msgctxt "form-fields admin"
|
3529 |
msgid "Shortname"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:158
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3533 |
msgctxt "form-fields admin"
|
3534 |
msgid "Private"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:165
|
3538 |
msgctxt "form-fields admin"
|
3539 |
msgid "This field value is shown in the excerpt view of a listing."
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:166
|
3543 |
msgctxt "form-fields admin"
|
3544 |
msgid "In Excerpt"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:173
|
3548 |
msgctxt "form-fields admin"
|
3549 |
msgid "This field value is shown in the single view of a listing."
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: includes/admin/helpers/tables/class-form-fields-table.php:174
|
3553 |
msgctxt "form-fields admin"
|
3554 |
msgid "In Listing"
|
3555 |
msgstr ""
|
3860 |
msgid "Create Missing Fields"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
+
#: includes/admin/controllers/class-settings-admin.php:516
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3864 |
msgctxt "admin settings"
|
3865 |
msgid "Remove"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: includes/admin/controllers/class-settings-admin.php:570
|
3869 |
msgctxt "admin settings"
|
3870 |
msgid "Valid placeholders: %s"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
+
#: includes/admin/settings/class-settings-bootstrap.php:114
|
3874 |
msgctxt "admin settings"
|
3875 |
msgid ""
|
3876 |
"IMPORTANT: subpages of the main directory page cannot be accesed while this "
|
3877 |
"setting is checked."
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: includes/admin/settings/class-settings-bootstrap.php:331
|
3881 |
msgctxt "admin settings"
|
3882 |
msgid "Above results"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: includes/admin/settings/class-settings-bootstrap.php:332
|
3886 |
msgctxt "admin settings"
|
3887 |
msgid "Below results"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: includes/admin/settings/class-settings-bootstrap.php:333
|
3891 |
msgctxt "admin settings"
|
3892 |
msgid "Don't show with results"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: includes/admin/settings/class-settings-bootstrap.php:414
|
3896 |
msgctxt "admin settings"
|
3897 |
msgid ""
|
3898 |
"You have selected a textarea field to be included in quick searches. "
|
3900 |
"timeouts and/or general slowness."
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: includes/admin/settings/class-settings-bootstrap.php:574
|
3904 |
msgctxt "admin settings"
|
3905 |
msgid "Do not include comments in listings"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: includes/admin/settings/class-settings-bootstrap.php:598
|
3909 |
msgctxt "admin settings"
|
3910 |
msgid "Directory view."
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: includes/admin/settings/class-settings-bootstrap.php:599
|
3914 |
msgctxt "admin settings"
|
3915 |
msgid "All Listings view."
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: includes/admin/settings/class-settings-bootstrap.php:600
|
3919 |
msgctxt "admin settings"
|
3920 |
msgid "Category view."
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: includes/admin/settings/class-settings-bootstrap.php:601
|
3924 |
msgctxt "admin settings"
|
3925 |
msgid "Search view."
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: includes/admin/settings/class-settings-bootstrap.php:732
|
3929 |
msgctxt "admin settings"
|
3930 |
msgid "Slug"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: includes/admin/settings/class-settings-bootstrap.php:745
|
3934 |
+
#: includes/admin/settings/class-settings-bootstrap.php:813
|
3935 |
msgctxt "admin settings"
|
3936 |
msgid "Ascending"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: includes/admin/settings/class-settings-bootstrap.php:746
|
3940 |
+
#: includes/admin/settings/class-settings-bootstrap.php:814
|
3941 |
msgctxt "admin settings"
|
3942 |
msgid "Descending"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: includes/admin/settings/class-settings-bootstrap.php:779
|
3946 |
msgctxt "admin settings"
|
3947 |
msgid "Plan Custom Order can be changed under <a>Plans</a>"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: includes/admin/settings/class-settings-bootstrap.php:792
|
3951 |
msgctxt "admin settings"
|
3952 |
msgid "Author"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: includes/admin/settings/class-settings-bootstrap.php:793
|
3956 |
#: includes/helpers/functions/general.php:1285
|
3957 |
msgctxt "admin settings"
|
3958 |
msgid "Date posted"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: includes/admin/settings/class-settings-bootstrap.php:794
|
3962 |
#: includes/helpers/functions/general.php:1286
|
3963 |
msgctxt "admin settings"
|
3964 |
msgid "Date last modified"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: includes/admin/settings/class-settings-bootstrap.php:795
|
3968 |
msgctxt "admin settings"
|
3969 |
msgid "Random"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: includes/admin/settings/class-settings-bootstrap.php:796
|
3973 |
msgctxt "admin settings"
|
3974 |
msgid "Paid first then free. Inside each group by date."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: includes/admin/settings/class-settings-bootstrap.php:797
|
3978 |
msgctxt "admin settings"
|
3979 |
msgid "Paid first then free. Inside each group by title."
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: includes/admin/settings/class-settings-bootstrap.php:798
|
3983 |
msgctxt "admin settings"
|
3984 |
msgid "Plan Custom Order, then Date"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: includes/admin/settings/class-settings-bootstrap.php:799
|
3988 |
msgctxt "admin settings"
|
3989 |
msgid "Plan Custom Order, then Title"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1071
|
3993 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1096
|
3994 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1120
|
3995 |
msgctxt "admin settings"
|
3996 |
msgid "Excerpt view."
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1097
|
4000 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1121
|
4001 |
msgctxt "admin settings"
|
4002 |
msgid "Detail view."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1192
|
4006 |
msgctxt "admin settings"
|
4007 |
msgid "Australian Dollar (AUD)"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1193
|
4011 |
msgctxt "admin settings"
|
4012 |
msgid "Brazilian Real (BRL)"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1194
|
4016 |
msgctxt "admin settings"
|
4017 |
msgid "Canadian Dollar (CAD)"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1195
|
4021 |
msgctxt "admin settings"
|
4022 |
msgid "Czech Koruna (CZK)"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1196
|
4026 |
msgctxt "admin settings"
|
4027 |
msgid "Danish Krone (DKK)"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1197
|
4031 |
msgctxt "admin settings"
|
4032 |
msgid "United Arab Emirates Dirham (AED)"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1198
|
4036 |
msgctxt "admin settings"
|
4037 |
msgid "Euro (EUR)"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1199
|
4041 |
msgctxt "admin settings"
|
4042 |
msgid "Hong Kong Dollar (HKD)"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1200
|
4046 |
msgctxt "admin settings"
|
4047 |
msgid "Hungarian Forint (HUF)"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1201
|
4051 |
msgctxt "admin settings"
|
4052 |
msgid "Israeli New Shequel (ILS)"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1202
|
4056 |
msgctxt "admin settings"
|
4057 |
msgid "Japanese Yen (JPY)"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1203
|
4061 |
msgctxt "admin settings"
|
4062 |
msgid "Moroccan Dirham (MAD)"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1204
|
4066 |
msgctxt "admin settings"
|
4067 |
msgid "Malasian Ringgit (MYR)"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1205
|
4071 |
msgctxt "admin settings"
|
4072 |
msgid "Mexican Peso (MXN)"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1206
|
4076 |
msgctxt "admin settings"
|
4077 |
msgid "Norwegian Krone (NOK)"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1207
|
4081 |
msgctxt "admin settings"
|
4082 |
msgid "New Zealand Dollar (NZD)"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1208
|
4086 |
msgctxt "admin settings"
|
4087 |
msgid "Philippine Peso (PHP)"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1209
|
4091 |
msgctxt "admin settings"
|
4092 |
msgid "Polish Zloty (PLN)"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1210
|
4096 |
msgctxt "admin settings"
|
4097 |
msgid "Pound Sterling (GBP)"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1211
|
4101 |
msgctxt "admin settings"
|
4102 |
msgid "Singapore Dollar (SGD)"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1212
|
4106 |
msgctxt "admin settings"
|
4107 |
msgid "Swedish Krona (SEK)"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1213
|
4111 |
msgctxt "admin settings"
|
4112 |
msgid "Swiss Franc (CHF)"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1214
|
4116 |
msgctxt "admin settings"
|
4117 |
msgid "Taiwan Dollar (TWD)"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1215
|
4121 |
msgctxt "admin settings"
|
4122 |
msgid "Thai Baht (THB)"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1216
|
4126 |
msgctxt "admin settings"
|
4127 |
msgid "Turkish Lira (TRY)"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1217
|
4131 |
msgctxt "admin settings"
|
4132 |
msgid "U.S. Dollar (USD)"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1241
|
4136 |
msgctxt "admin settings"
|
4137 |
msgid "Show currency symbol on the left"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1242
|
4141 |
msgctxt "admin settings"
|
4142 |
msgid "Show currency symbol on the right"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1243
|
4146 |
msgctxt "admin settings"
|
4147 |
msgid "Do not show currency symbol"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
#. translators: %1$s: gateway name, %2$s: explanation string
|
4151 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1288
|
4152 |
msgctxt "admin settings"
|
4153 |
msgid "AED currency is not supported by %1$s. %2$s"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1326
|
4157 |
msgctxt "admin settings"
|
4158 |
msgid ""
|
4159 |
"Listings with pending payments are marked as abandoned after this time. You "
|
4160 |
"can also <a>customize the email</a> users receive."
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1356
|
4164 |
msgctxt "admin settings"
|
4165 |
msgid "Try listing's email field first, then author's email."
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1357
|
4169 |
msgctxt "admin settings"
|
4170 |
msgid "Try author's email first and then listing's email field."
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1370
|
4174 |
msgctxt "admin settings"
|
4175 |
msgid "Plain (text/plain)"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1371
|
4179 |
msgctxt "admin settings"
|
4180 |
msgid "HTML (text/html)"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1372
|
4184 |
msgctxt "admin settings"
|
4185 |
msgid "Both (multipart/alternative)"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1386
|
4189 |
msgctxt "admin settings"
|
4190 |
msgid "A new listing is submitted."
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1387
|
4194 |
msgctxt "admin settings"
|
4195 |
msgid "A listing is edited."
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1388
|
4199 |
msgctxt "admin settings"
|
4200 |
msgid "A listing expires."
|
4201 |
msgstr ""
|
4202 |
|
4203 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1389
|
4204 |
msgctxt "admin settings"
|
4205 |
msgid "A listing is renewed."
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1390
|
4209 |
msgctxt "admin settings"
|
4210 |
msgid "A listing payment is completed."
|
4211 |
msgstr ""
|
4212 |
|
4213 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1391
|
4214 |
msgctxt "admin settings"
|
4215 |
msgid "A listing has been reported as inappropriate."
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1392
|
4219 |
msgctxt "admin settings"
|
4220 |
msgid "A contact message is sent to a listing's owner."
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1419
|
4224 |
msgctxt "admin settings"
|
4225 |
msgid "Their listing is submitted."
|
4226 |
msgstr ""
|
4227 |
|
4228 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1420
|
4229 |
msgctxt "admin settings"
|
4230 |
msgid "Their listing is approved/published."
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1421
|
4234 |
msgctxt "admin settings"
|
4235 |
msgid "A payment for their listing is completed."
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1422
|
4239 |
msgctxt "admin settings"
|
4240 |
msgid "Their listing expired or is about to expire."
|
4241 |
msgstr ""
|
4242 |
|
4243 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1440
|
|
|
4244 |
#: includes/admin/settings/class-settings-bootstrap.php:1459
|
4245 |
#: includes/admin/settings/class-settings-bootstrap.php:1495
|
4246 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1531
|
4247 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1550
|
4248 |
msgctxt "admin settings"
|
4249 |
msgid "Listing's title"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1441
|
4253 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1532
|
4254 |
msgctxt "admin settings"
|
4255 |
msgid "Listing's plan name"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1442
|
4259 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1533
|
4260 |
msgctxt "admin settings"
|
4261 |
msgid "Listing's plan description"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1443
|
4265 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1534
|
4266 |
msgctxt "admin settings"
|
4267 |
msgid "Listing's plan details"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1456
|
4271 |
msgctxt "admin settings"
|
4272 |
msgid ""
|
4273 |
"Your listing \"[listing]\" is now available at [listing-url] and can be "
|
4274 |
"viewed by the public."
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1460
|
4278 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1494
|
4279 |
msgctxt "admin settings"
|
4280 |
msgid "Listing's URL"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1461
|
4284 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1501
|
4285 |
msgctxt "admin settings"
|
4286 |
msgid "Listing's Access Key"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1496
|
4290 |
msgctxt "admin settings"
|
4291 |
msgid "Sender's name"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1499
|
4295 |
msgctxt "admin settings"
|
4296 |
msgid "Contact message"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1500
|
4300 |
msgctxt "admin settings"
|
4301 |
msgid "Date and time the message was sent"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1535
|
4305 |
msgctxt "admin settings"
|
4306 |
msgid "Payment items details."
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1536
|
4310 |
msgctxt "admin settings"
|
4311 |
msgid "URL where user can review and print payment receipt."
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1537
|
4315 |
msgctxt "admin settings"
|
4316 |
msgid "Gateway used to process listing's payment."
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1551
|
4320 |
msgctxt "admin settings"
|
4321 |
msgid "Checkout URL link"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1653
|
4325 |
msgctxt "admin settings"
|
4326 |
msgid "Uploaded Image (no resize)"
|
4327 |
msgstr ""
|
4336 |
msgid "User registration date"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: includes/admin/controllers/class-settings-admin.php:636
|
4340 |
msgctxt "expiration notices"
|
4341 |
msgid "Add notice"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
+
#: includes/admin/controllers/class-settings-admin.php:655
|
4345 |
msgctxt "expiration notices"
|
4346 |
msgid "No notices configured."
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: includes/admin/controllers/class-settings-admin.php:697
|
4350 |
msgctxt "expiration notices"
|
4351 |
msgid "recurring and non-recurring"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
+
#: includes/admin/controllers/class-settings-admin.php:699
|
4355 |
msgctxt "expiration notices"
|
4356 |
msgid "recurring only"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
+
#: includes/admin/controllers/class-settings-admin.php:701
|
4360 |
msgctxt "expiration notices"
|
4361 |
msgid "non-recurring only"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: includes/admin/controllers/class-settings-admin.php:705
|
4365 |
msgctxt "expiration notices"
|
4366 |
msgid "Sent when a listing (%s) is renewed."
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: includes/admin/controllers/class-settings-admin.php:710
|
4370 |
msgctxt "expiration notices"
|
4371 |
msgid "Sent when a listing (%s) expires."
|
4372 |
msgstr ""
|
4373 |
|
4374 |
+
#: includes/admin/controllers/class-settings-admin.php:718
|
4375 |
msgctxt "expiration notices"
|
4376 |
msgid "%d day"
|
4377 |
msgid_plural "%d days"
|
4378 |
msgstr[0] ""
|
4379 |
msgstr[1] ""
|
4380 |
|
4381 |
+
#: includes/admin/controllers/class-settings-admin.php:721
|
4382 |
msgctxt "expiration notices"
|
4383 |
msgid "%d week"
|
4384 |
msgid_plural "%d weeks"
|
4385 |
msgstr[0] ""
|
4386 |
msgstr[1] ""
|
4387 |
|
4388 |
+
#: includes/admin/controllers/class-settings-admin.php:724
|
4389 |
msgctxt "expiration notices"
|
4390 |
msgid "%d month"
|
4391 |
msgid_plural "%d months"
|
4394 |
|
4395 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
4396 |
#. non-recuring only)
|
4397 |
+
#: includes/admin/controllers/class-settings-admin.php:730
|
4398 |
msgctxt "expiration notices"
|
4399 |
msgid "Sent %1$s before a listing (%2$s) expires."
|
4400 |
msgstr ""
|
4401 |
|
4402 |
#. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
|
4403 |
#. non-recuring only)
|
4404 |
+
#: includes/admin/controllers/class-settings-admin.php:733
|
4405 |
msgctxt "expiration notices"
|
4406 |
msgid "Sent %1$s after a listing (%2$s) expires."
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: includes/admin/controllers/class-settings-admin.php:750
|
4410 |
msgctxt "expiration notices"
|
4411 |
msgid "At the time of expiration"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: includes/admin/controllers/class-settings-admin.php:751
|
4415 |
msgctxt "expiration notices"
|
4416 |
msgid "Right after a successful renewal"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: includes/admin/controllers/class-settings-admin.php:762
|
4420 |
msgctxt "expiration notices"
|
4421 |
msgid "%d day before expiration"
|
4422 |
msgid_plural "%d days before expiration"
|
4423 |
msgstr[0] ""
|
4424 |
msgstr[1] ""
|
4425 |
|
4426 |
+
#: includes/admin/controllers/class-settings-admin.php:762
|
4427 |
msgctxt "expiration notices"
|
4428 |
msgid "%d day after expiration"
|
4429 |
msgid_plural "%d days after expiration"
|
4430 |
msgstr[0] ""
|
4431 |
msgstr[1] ""
|
4432 |
|
4433 |
+
#: includes/admin/controllers/class-settings-admin.php:765
|
4434 |
msgctxt "expiration notices"
|
4435 |
msgid "%d week before expiration"
|
4436 |
msgid_plural "%d weeks before expiration"
|
4437 |
msgstr[0] ""
|
4438 |
msgstr[1] ""
|
4439 |
|
4440 |
+
#: includes/admin/controllers/class-settings-admin.php:765
|
4441 |
msgctxt "expiration notices"
|
4442 |
msgid "%d week after expiration"
|
4443 |
msgid_plural "%d weeks after expiration"
|
4444 |
msgstr[0] ""
|
4445 |
msgstr[1] ""
|
4446 |
|
4447 |
+
#: includes/admin/controllers/class-settings-admin.php:768
|
4448 |
msgctxt "expiration notices"
|
4449 |
msgid "%d month before expiration"
|
4450 |
msgid_plural "%d months before expiration"
|
4451 |
msgstr[0] ""
|
4452 |
msgstr[1] ""
|
4453 |
|
4454 |
+
#: includes/admin/controllers/class-settings-admin.php:768
|
4455 |
msgctxt "expiration notices"
|
4456 |
msgid "%d month after expiration"
|
4457 |
msgid_plural "%d months after expiration"
|
4458 |
msgstr[0] ""
|
4459 |
msgstr[1] ""
|
4460 |
|
4461 |
+
#: includes/admin/controllers/class-settings-admin.php:795
|
4462 |
msgctxt "expiration notices"
|
4463 |
msgid "Applies to"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: includes/admin/controllers/class-settings-admin.php:798
|
4467 |
msgctxt "expiration notices"
|
4468 |
msgid "Non-recurring listings"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: includes/admin/controllers/class-settings-admin.php:799
|
4472 |
msgctxt "expiration notices"
|
4473 |
msgid "Recurring listings"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: includes/admin/controllers/class-settings-admin.php:800
|
4477 |
msgctxt "expiration notices"
|
4478 |
msgid "Recurring and non-recurring listings"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
+
#: includes/admin/controllers/class-settings-admin.php:805
|
4482 |
msgctxt "expiration notices"
|
4483 |
msgid "When to send?"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: includes/admin/controllers/class-settings-admin.php:672
|
4487 |
msgctxt "settings"
|
4488 |
msgid "Site title (with link)"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: includes/admin/controllers/class-settings-admin.php:673
|
4492 |
msgctxt "settings"
|
4493 |
msgid "Author's name"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: includes/admin/controllers/class-settings-admin.php:674
|
4497 |
msgctxt "settings"
|
4498 |
msgid "Listing's name (with link)"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
+
#: includes/admin/controllers/class-settings-admin.php:675
|
4502 |
msgctxt "settings"
|
4503 |
msgid "Listing's expiration date"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: includes/admin/controllers/class-settings-admin.php:676
|
4507 |
msgctxt "settings"
|
4508 |
msgid "Listing's renewal link, formatted with an anchor tag"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: includes/admin/controllers/class-settings-admin.php:677
|
4512 |
msgctxt "settings"
|
4513 |
msgid "Listing's renewal URL, unformatted by any tags"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
+
#: includes/admin/controllers/class-settings-admin.php:678
|
4517 |
msgctxt "settings"
|
4518 |
msgid "Listing's categories"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: includes/admin/controllers/class-settings-admin.php:679
|
4522 |
msgctxt "settings"
|
4523 |
msgid "Listing's last payment date"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: includes/admin/controllers/class-settings-admin.php:680
|
4527 |
msgctxt "settings"
|
4528 |
msgid "Listing's access key"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: includes/admin/controllers/class-settings-admin.php:837
|
4532 |
msgctxt "settings"
|
4533 |
msgid "Settings reset to default."
|
4534 |
msgstr ""
|
4538 |
msgid "General"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: includes/admin/settings/class-settings-bootstrap.php:12
|
4542 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1055
|
4543 |
msgctxt "settings"
|
4544 |
msgid "Listings"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
+
#: includes/admin/settings/class-settings-bootstrap.php:15
|
4548 |
+
#: includes/admin/settings/class-settings-bootstrap.php:20
|
4549 |
+
#: includes/admin/settings/class-settings-bootstrap.php:25
|
4550 |
+
#: includes/admin/settings/class-settings-bootstrap.php:50
|
4551 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1337
|
4552 |
+
#: includes/admin/settings/class-settings.php:345
|
4553 |
msgctxt "settings"
|
4554 |
msgid "General Settings"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
+
#: includes/admin/settings/class-settings-bootstrap.php:22
|
4558 |
msgctxt "settings"
|
4559 |
msgid "Payment"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: includes/admin/settings/class-settings-bootstrap.php:27
|
4563 |
msgctxt "settings"
|
4564 |
msgid "Appearance"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: includes/admin/settings/class-settings-bootstrap.php:73
|
4568 |
msgctxt "settings"
|
4569 |
msgid "Permalink Settings"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
+
#: includes/admin/settings/class-settings-bootstrap.php:78
|
4573 |
msgctxt "settings"
|
4574 |
msgid "Directory Listings Slug"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: includes/admin/settings/class-settings-bootstrap.php:88
|
4578 |
msgctxt "settings"
|
4579 |
msgid "Categories Slug"
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: includes/admin/settings/class-settings-bootstrap.php:89
|
4583 |
msgctxt "settings"
|
4584 |
msgid ""
|
4585 |
"The slug can't be in use by another term. Avoid \"category\", for instance."
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: includes/admin/settings/class-settings-bootstrap.php:100
|
4589 |
msgctxt "settings"
|
4590 |
msgid "Tags Slug"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
+
#: includes/admin/settings/class-settings-bootstrap.php:101
|
4594 |
msgctxt "settings"
|
4595 |
msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: includes/admin/settings/class-settings-bootstrap.php:113
|
|
|
|
|
|
|
|
|
|
|
4599 |
msgctxt "settings"
|
4600 |
+
msgid "Remove listing ID from URLs for better SEO"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
+
#: includes/admin/settings/class-settings-bootstrap.php:114
|
4604 |
msgctxt "settings"
|
4605 |
msgid ""
|
4606 |
"Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
|
4607 |
"directory/1809/listing-title\"."
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: includes/admin/settings/class-settings-bootstrap.php:125
|
4611 |
msgctxt "settings"
|
4612 |
msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
|
4613 |
msgstr ""
|
4614 |
|
4615 |
+
#: includes/admin/settings/class-settings-bootstrap.php:132
|
4616 |
msgctxt "settings"
|
4617 |
msgid "Use reCAPTCHA for contact forms"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
+
#: includes/admin/settings/class-settings-bootstrap.php:140
|
4621 |
msgctxt "settings"
|
4622 |
+
msgid "Use reCAPTCHA only for logged-out users"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: includes/admin/settings/class-settings-bootstrap.php:148
|
4626 |
msgctxt "settings"
|
4627 |
msgid "Use reCAPTCHA for listing submits"
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: includes/admin/settings/class-settings-bootstrap.php:156
|
4631 |
msgctxt "settings"
|
4632 |
msgid "Use reCAPTCHA for edit listings"
|
4633 |
msgstr ""
|
4634 |
|
4635 |
+
#: includes/admin/settings/class-settings-bootstrap.php:164
|
4636 |
msgctxt "settings"
|
4637 |
msgid "Use reCAPTCHA for report listings"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: includes/admin/settings/class-settings-bootstrap.php:172
|
4641 |
msgctxt "settings"
|
4642 |
msgid "Use reCAPTCHA for listing comments"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: includes/admin/settings/class-settings-bootstrap.php:180
|
4646 |
msgctxt "settings"
|
4647 |
msgid "reCAPTCHA Public Key"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: includes/admin/settings/class-settings-bootstrap.php:189
|
4651 |
msgctxt "settings"
|
4652 |
msgid "reCAPTCHA Private Key"
|
4653 |
msgstr ""
|
4654 |
|
4655 |
+
#: includes/admin/settings/class-settings-bootstrap.php:198
|
4656 |
msgctxt "settings"
|
4657 |
msgid "reCAPTCHA version"
|
4658 |
msgstr ""
|
4659 |
|
4660 |
+
#: includes/admin/settings/class-settings-bootstrap.php:215
|
4661 |
msgctxt "settings"
|
4662 |
msgid "reCAPTCHA V3 threshold score"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: includes/admin/settings/class-settings-bootstrap.php:220
|
4666 |
msgctxt "settings"
|
4667 |
msgid ""
|
4668 |
"reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is "
|
4671 |
"this value will result in reCAPTCHA validation error."
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: includes/admin/settings/class-settings-bootstrap.php:229
|
4675 |
msgctxt "settings"
|
4676 |
msgid "Registration"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
+
#: includes/admin/settings/class-settings-bootstrap.php:229
|
4680 |
msgctxt "settings"
|
4681 |
msgid ""
|
4682 |
"We expect that a membership plugin supports the 'redirect_to' parameter for "
|
4685 |
"them to support the WP standard 'redirect_to' query parameter."
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: includes/admin/settings/class-settings-bootstrap.php:234
|
4689 |
msgctxt "settings"
|
4690 |
msgid "Require login to post listings"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: includes/admin/settings/class-settings-bootstrap.php:243
|
4694 |
msgctxt "settings"
|
4695 |
msgid "Allow anonymous users to edit/manage listings with an access key"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: includes/admin/settings/class-settings-bootstrap.php:251
|
4699 |
msgctxt "settings"
|
4700 |
msgid "Login URL"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: includes/admin/settings/class-settings-bootstrap.php:252
|
4704 |
msgctxt "settings"
|
4705 |
msgid "Only enter this if using a membership plugin or custom login page"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
+
#: includes/admin/settings/class-settings-bootstrap.php:253
|
4709 |
msgctxt "settings"
|
4710 |
msgid "URL of your membership plugin's login page."
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: includes/admin/settings/class-settings-bootstrap.php:262
|
4714 |
msgctxt "settings"
|
4715 |
msgid "Registration URL"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
+
#: includes/admin/settings/class-settings-bootstrap.php:263
|
4719 |
msgctxt "settings"
|
4720 |
msgid ""
|
4721 |
"Only enter this if using a membership plugin or custom registration page."
|
4722 |
msgstr ""
|
4723 |
|
4724 |
+
#: includes/admin/settings/class-settings-bootstrap.php:264
|
4725 |
msgctxt "settings"
|
4726 |
msgid "URL of your membership plugin's registration page"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: includes/admin/settings/class-settings-bootstrap.php:273
|
4730 |
msgctxt "settings"
|
4731 |
msgid "Allow users to create accounts during listing submit"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: includes/admin/settings/class-settings-bootstrap.php:300
|
4735 |
msgctxt "settings"
|
4736 |
msgid ""
|
4737 |
"Enter text or a URL starting with http. If you use a URL, the Terms and "
|
4738 |
"Conditions text will be replaced by a link to the appropiate page."
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: includes/admin/settings/class-settings-bootstrap.php:302
|
4742 |
msgctxt "settings"
|
4743 |
msgid "Terms and Conditions text goes here"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: includes/admin/settings/class-settings-bootstrap.php:345
|
4747 |
msgctxt "settings"
|
4748 |
+
msgid "Enable high performance search"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: includes/admin/settings/class-settings-bootstrap.php:354
|
4752 |
msgctxt "settings"
|
4753 |
msgid "Advanced"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: includes/admin/settings/class-settings-bootstrap.php:360
|
4757 |
msgctxt "settings"
|
4758 |
msgid "Disable advanced CPT integration"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: includes/admin/settings/class-settings-bootstrap.php:369
|
4762 |
msgctxt "settings"
|
4763 |
msgid "Disable frontend listing submission"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
+
#: includes/admin/settings/class-settings-bootstrap.php:370
|
4767 |
msgctxt "settings"
|
4768 |
msgid ""
|
4769 |
"Prevents the Submit Listing button from showing on the main UI, but allows a "
|
4770 |
"shortcode for submit listing to function on other pages."
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: includes/admin/settings/class-settings-bootstrap.php:451
|
4774 |
msgctxt "settings"
|
4775 |
msgid "Contact Form"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
+
#: includes/admin/settings/class-settings-bootstrap.php:460
|
4779 |
msgctxt "settings"
|
4780 |
msgid "Listings per page"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
+
#: includes/admin/settings/class-settings-bootstrap.php:461
|
4784 |
msgctxt "settings"
|
4785 |
msgid ""
|
4786 |
"Number of listings to show per page. Use a value of \"0\" to show all "
|
4787 |
"listings."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: includes/admin/settings/class-settings-bootstrap.php:473
|
4791 |
msgctxt "settings"
|
4792 |
msgid "Turn on listing renewal option"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
+
#: includes/admin/settings/class-settings-bootstrap.php:482
|
4796 |
msgctxt "settings"
|
4797 |
msgid "Open detailed view of listing in new tab"
|
4798 |
msgstr ""
|
4799 |
|
4800 |
+
#: includes/admin/settings/class-settings-bootstrap.php:492
|
4801 |
msgctxt "settings"
|
4802 |
msgid "Include button to report listings"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: includes/admin/settings/class-settings-bootstrap.php:501
|
4806 |
msgctxt "settings"
|
4807 |
msgid "Enable report listing for registered users only"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: includes/admin/settings/class-settings-bootstrap.php:511
|
4811 |
msgctxt "settings"
|
4812 |
msgid "Report listing option list"
|
4813 |
msgstr ""
|
4814 |
|
4815 |
+
#: includes/admin/settings/class-settings-bootstrap.php:512
|
4816 |
msgctxt "settings"
|
4817 |
msgid ""
|
4818 |
"Form option list to report a listing as inappropriate. One option per line."
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: includes/admin/settings/class-settings-bootstrap.php:523
|
4822 |
msgctxt "settings"
|
4823 |
msgid "Include listing contact form on listing pages"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: includes/admin/settings/class-settings-bootstrap.php:524
|
4827 |
msgctxt "settings"
|
4828 |
msgid ""
|
4829 |
"Allows visitors to contact listing authors privately. Authors will receive "
|
4830 |
"the messages via email."
|
4831 |
msgstr ""
|
4832 |
|
4833 |
+
#: includes/admin/settings/class-settings-bootstrap.php:533
|
4834 |
msgctxt "settings"
|
4835 |
msgid "Require login for using the contact form"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: includes/admin/settings/class-settings-bootstrap.php:544
|
4839 |
msgctxt "settings"
|
4840 |
msgid "Maximum number of daily contact form submits from registered users"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
+
#: includes/admin/settings/class-settings-bootstrap.php:545
|
4844 |
msgctxt "settings"
|
4845 |
msgid ""
|
4846 |
"Use this to prevent spamming of listing owners from logged in users. 0 means "
|
4847 |
"unlimited submits per day."
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: includes/admin/settings/class-settings-bootstrap.php:557
|
4851 |
msgctxt "settings"
|
4852 |
msgid "Maximum number of contact form submits for each listing per day"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: includes/admin/settings/class-settings-bootstrap.php:558
|
4856 |
msgctxt "settings"
|
4857 |
msgid ""
|
4858 |
"Use this to set contact submits limit for each listing in the directory. 0 "
|
4859 |
"means unlimited submits per day."
|
4860 |
msgstr ""
|
4861 |
|
4862 |
+
#: includes/admin/settings/class-settings-bootstrap.php:570
|
4863 |
msgctxt "settings"
|
4864 |
msgid "Include comment form on listing pages?"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
+
#: includes/admin/settings/class-settings-bootstrap.php:585
|
4868 |
msgctxt "settings"
|
4869 |
msgid "Show listings under categories on main page"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
+
#: includes/admin/settings/class-settings-bootstrap.php:595
|
4873 |
msgctxt "settings"
|
4874 |
msgid ""
|
4875 |
"Prevents featured listings from floating to the top of the selected page."
|
4876 |
msgstr ""
|
4877 |
|
4878 |
+
#: includes/admin/settings/class-settings-bootstrap.php:625
|
4879 |
msgctxt "settings"
|
4880 |
msgid ""
|
4881 |
"The user ID or login of an existing user account. If login is not required "
|
4883 |
"that will not a be posting a listing is best."
|
4884 |
msgstr ""
|
4885 |
|
4886 |
+
#: includes/admin/settings/class-settings-bootstrap.php:651
|
4887 |
msgctxt "settings"
|
4888 |
msgid "Edit post status"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
+
#: includes/admin/settings/class-settings-bootstrap.php:666
|
4892 |
msgctxt "settings"
|
4893 |
msgid "Status of deleted listings"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: includes/admin/settings/class-settings-bootstrap.php:717
|
4897 |
msgctxt "settings"
|
4898 |
msgid "Submit Listing instructions message"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
+
#: includes/admin/settings/class-settings-bootstrap.php:728
|
4902 |
msgctxt "settings"
|
4903 |
msgid "Order categories list by"
|
4904 |
msgstr ""
|
4905 |
|
4906 |
+
#: includes/admin/settings/class-settings-bootstrap.php:742
|
4907 |
msgctxt "settings"
|
4908 |
msgid "Sort order for categories"
|
4909 |
msgstr ""
|
4910 |
|
4911 |
+
#: includes/admin/settings/class-settings-bootstrap.php:755
|
4912 |
msgctxt "settings"
|
4913 |
msgid "Show category post count"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: includes/admin/settings/class-settings-bootstrap.php:764
|
4917 |
msgctxt "settings"
|
4918 |
msgid "Hide empty categories"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
+
#: includes/admin/settings/class-settings-bootstrap.php:773
|
4922 |
msgctxt "settings"
|
4923 |
msgid "Show only parent categories in category list"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
+
#: includes/admin/settings/class-settings-bootstrap.php:785
|
4927 |
msgctxt "settings"
|
4928 |
msgid "Order directory listings by"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: includes/admin/settings/class-settings-bootstrap.php:809
|
4932 |
msgctxt "settings"
|
4933 |
msgid "Sort directory listings by"
|
4934 |
msgstr ""
|
4935 |
|
4936 |
+
#: includes/admin/settings/class-settings-bootstrap.php:810
|
4937 |
msgctxt "settings"
|
4938 |
msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
+
#: includes/admin/settings/class-settings-bootstrap.php:823
|
4942 |
msgctxt "settings"
|
4943 |
msgid "Enable sort bar"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
+
#: includes/admin/settings/class-settings-bootstrap.php:832
|
4947 |
msgctxt "settings"
|
4948 |
msgid "Sortbar Fields"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: includes/admin/settings/class-settings-bootstrap.php:851
|
4952 |
msgctxt "settings"
|
4953 |
msgid "Show the \"Submit listing\" button"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
+
#: includes/admin/settings/class-settings-bootstrap.php:852
|
4957 |
msgctxt "settings"
|
4958 |
msgid ""
|
4959 |
"Hides the button used by the main UI to allow listing submission, but does "
|
4961 |
"customize the submit listing button on your own)"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
+
#: includes/admin/settings/class-settings-bootstrap.php:862
|
4965 |
msgctxt "settings"
|
4966 |
msgid "Show \"Search listings\""
|
4967 |
msgstr ""
|
4968 |
|
4969 |
+
#: includes/admin/settings/class-settings-bootstrap.php:871
|
4970 |
msgctxt "settings"
|
4971 |
msgid "Show the \"View Listings\" button"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
+
#: includes/admin/settings/class-settings-bootstrap.php:880
|
4975 |
msgctxt "settings"
|
4976 |
msgid "Show the \"Manage Listings\" button"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: includes/admin/settings/class-settings-bootstrap.php:924
|
|
|
|
|
|
|
|
|
|
|
4980 |
msgctxt "settings"
|
4981 |
msgid "Image Settings"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
+
#: includes/admin/settings/class-settings-bootstrap.php:929
|
4985 |
msgctxt "settings"
|
4986 |
msgid "Allow images"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
+
#: includes/admin/settings/class-settings-bootstrap.php:940
|
4990 |
msgctxt "settings"
|
4991 |
msgid "Min Image File Size (KB)"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
+
#: includes/admin/settings/class-settings-bootstrap.php:952
|
4995 |
msgctxt "settings"
|
4996 |
msgid "Max Image File Size (KB)"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: includes/admin/settings/class-settings-bootstrap.php:964
|
5000 |
msgctxt "settings"
|
5001 |
msgid "Min image width (px)"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
+
#: includes/admin/settings/class-settings-bootstrap.php:974
|
5005 |
msgctxt "settings"
|
5006 |
msgid "Min image height (px)"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
+
#: includes/admin/settings/class-settings-bootstrap.php:988
|
5010 |
msgctxt "settings"
|
5011 |
msgid "Max image width (px)"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1000
|
5015 |
msgctxt "settings"
|
5016 |
msgid "Max image height (px)"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1012
|
5020 |
msgctxt "settings"
|
5021 |
msgid "Turn on thickbox/lightbox"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1013
|
5025 |
msgctxt "settings"
|
5026 |
msgid ""
|
5027 |
"Uncheck if it conflicts with other elements or plugins installed on your site"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1019
|
5031 |
msgctxt "settings"
|
5032 |
msgid "Thumbnails"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1026
|
5036 |
msgctxt "settings"
|
5037 |
msgid "Thumbnail width (px)"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1038
|
5041 |
msgctxt "settings"
|
5042 |
msgid "Thumbnail height (px)"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1048
|
5046 |
msgctxt "settings"
|
5047 |
msgid "Crop thumbnails to exact dimensions"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1049
|
5051 |
msgctxt "settings"
|
5052 |
msgid ""
|
5053 |
"When enabled images will match exactly the dimensions above but part of the "
|
5056 |
"Depending on the uploaded images, thumbnails may have different heights."
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1060
|
5060 |
msgctxt "settings"
|
5061 |
msgid "Enforce image upload on submit/edit"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1081
|
5065 |
msgctxt "settings"
|
5066 |
msgid "Default thumbnail image size"
|
5067 |
msgstr ""
|
5068 |
|
5069 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1084
|
5070 |
msgctxt "settings"
|
5071 |
msgid ""
|
5072 |
"This indicates the size of the thumbnail to be used both in excerpt and "
|
5075 |
"width as the starting point."
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1093
|
5079 |
msgctxt "settings"
|
5080 |
msgid "Use \"Coming Soon\" photo for listings without any (primary) images?"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1117
|
5084 |
msgctxt "settings"
|
5085 |
msgid "Display featured (sticky) badge"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1131
|
5089 |
msgctxt "settings"
|
5090 |
msgid "Featured Badge image"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1141
|
5094 |
msgctxt "settings"
|
5095 |
msgid "Featured Badge URL"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1142
|
5099 |
msgctxt "settings"
|
5100 |
msgid "Use this to set Featured Badge image as a link to a defined URL."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1166
|
5104 |
msgctxt "settings"
|
5105 |
msgid "Fee Order"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1179
|
5109 |
msgctxt "settings"
|
5110 |
msgid "Put payment gateways in test mode"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1189
|
5114 |
msgctxt "settings"
|
5115 |
msgid "Currency Code"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1228
|
5119 |
msgctxt "settings"
|
5120 |
msgid "Currency Symbol"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1238
|
5124 |
msgctxt "settings"
|
5125 |
msgid "Currency symbol display"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1252
|
5129 |
msgctxt "settings"
|
5130 |
msgid "Include plan description in receipt"
|
5131 |
msgstr ""
|
5132 |
|
5133 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1261
|
5134 |
msgctxt "settings"
|
5135 |
msgid "Thank you for payment message"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1314
|
5139 |
msgctxt "settings"
|
5140 |
msgid "Ask users to come back for abandoned payments"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1325
|
5144 |
msgctxt "settings"
|
5145 |
msgid "Listing abandonment threshold (hours)"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1342
|
5149 |
msgctxt "settings"
|
5150 |
msgid "Display email address fields publicly"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1343
|
5154 |
msgctxt "settings"
|
5155 |
msgid ""
|
5156 |
"Shows the email address of the listing owner to all web users. NOT "
|
5158 |
"harvest it for future use."
|
5159 |
msgstr ""
|
5160 |
|
5161 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1352
|
5162 |
msgctxt "settings"
|
5163 |
msgid "How to determine the listing's email address?"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1353
|
5167 |
msgctxt "settings"
|
5168 |
msgid ""
|
5169 |
"This affects emails sent to listing owners via contact forms or when their "
|
5170 |
"listings expire."
|
5171 |
msgstr ""
|
5172 |
|
5173 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1366
|
5174 |
msgctxt "settings"
|
5175 |
msgid "Email Content-Type header"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1367
|
5179 |
msgctxt "settings"
|
5180 |
msgid ""
|
5181 |
"Use this setting to control the format of the emails explicitly. Some "
|
5184 |
"then \"Both\"."
|
5185 |
msgstr ""
|
5186 |
|
5187 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1428
|
5188 |
msgctxt "settings"
|
5189 |
msgid "Templates"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1433
|
5193 |
msgctxt "settings"
|
5194 |
msgid "Email confirmation message"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1434
|
5198 |
msgctxt "settings"
|
5199 |
msgid "Sent after a listing has been submitted."
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1452
|
5203 |
msgctxt "settings"
|
5204 |
msgid "Listing published message"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1453
|
5208 |
msgctxt "settings"
|
5209 |
msgid "Sent when the listing has been published or approved by an admin."
|
5210 |
msgstr ""
|
5211 |
|
5212 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1470
|
5213 |
msgctxt "settings"
|
5214 |
msgid "Listing Contact Message"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1471
|
5218 |
msgctxt "settings"
|
5219 |
msgid ""
|
5220 |
"Sent to listing owners when someone uses the contact form on their listing "
|
5221 |
"pages."
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1511
|
5225 |
msgctxt "settings"
|
5226 |
msgid "Payment completed message"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1512
|
5230 |
msgctxt "settings"
|
5231 |
msgid "Sent after a Listing's payment is verified by Gateway or admins."
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1548
|
5235 |
msgctxt "settings"
|
5236 |
msgid "Payment abandoned reminder message"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1674
|
5240 |
msgctxt "settings"
|
5241 |
msgid "Cropped"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
+
#: includes/admin/settings/class-settings.php:499
|
5245 |
+
#: includes/admin/settings/class-settings.php:510
|
5246 |
msgctxt "settings"
|
5247 |
msgid "\"%s\" can not be empty."
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: includes/admin/settings/class-settings.php:527
|
5251 |
msgctxt "settings"
|
5252 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5253 |
msgstr ""
|
5277 |
msgid "Could not change the active theme to \"%s\"."
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: includes/admin/controllers/class-themes-admin.php:150
|
5281 |
msgctxt "themes"
|
5282 |
msgid "Active theme changed to \"%s\"."
|
5283 |
msgstr ""
|
5284 |
|
5285 |
+
#: includes/admin/controllers/class-themes-admin.php:153
|
5286 |
msgctxt "themes"
|
5287 |
msgid ""
|
5288 |
"%s requires that you tag your existing fields to match some places we want "
|
5289 |
"to put your data on the theme. Below are fields we think are missing."
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: includes/admin/controllers/class-themes-admin.php:164
|
5293 |
msgctxt "themes"
|
5294 |
msgid "Map My Fields"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: includes/admin/controllers/class-themes-admin.php:172
|
5298 |
msgctxt "themes"
|
5299 |
msgid "Suggested fields created successfully."
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: includes/admin/controllers/class-themes-admin.php:175
|
5303 |
msgctxt "themes"
|
5304 |
msgid "Theme installed successfully."
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: includes/admin/controllers/class-themes-admin.php:178
|
5308 |
msgctxt "themes"
|
5309 |
msgid "Theme was deleted successfully."
|
5310 |
msgstr ""
|
5311 |
|
5312 |
+
#: includes/admin/controllers/class-themes-admin.php:181
|
5313 |
msgctxt "themes"
|
5314 |
msgid "Could not delete theme directory. Check permissions."
|
5315 |
msgstr ""
|
5316 |
|
5317 |
+
#: includes/admin/controllers/class-themes-admin.php:234
|
5318 |
msgctxt "themes"
|
5319 |
msgid "Please upload a valid theme file."
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: includes/admin/controllers/class-themes-admin.php:243
|
5323 |
msgctxt "themes"
|
5324 |
msgid "Could not move \"%s\" to a temporary directory."
|
5325 |
msgstr ""
|
5326 |
|
5327 |
+
#: includes/admin/controllers/class-themes-admin.php:329
|
5328 |
msgctxt "themes"
|
5329 |
msgid "Activate your <a>license key</a> to use this theme."
|
5330 |
msgstr ""
|
5331 |
|
5332 |
+
#: includes/admin/controllers/class-themes-admin.php:372
|
5333 |
msgctxt "themes"
|
5334 |
msgid "Invalid theme ID"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: includes/admin/controllers/class-themes-admin.php:378
|
5338 |
#: includes/admin/upgrades/class-themes-updater.php:170
|
5339 |
msgctxt "themes"
|
5340 |
msgid "Could not update theme: %s"
|
5370 |
msgid "Could not remove previous theme directory \"%s\"."
|
5371 |
msgstr ""
|
5372 |
|
5373 |
+
#: includes/themes.php:972
|
5374 |
+
msgctxt "themes"
|
5375 |
+
msgid "Could not move new theme into theme directory."
|
5376 |
+
msgstr ""
|
5377 |
+
|
5378 |
+
#: includes/admin/csv-export.php:50
|
5379 |
+
msgctxt "admin csv-export"
|
5380 |
+
msgid "Could not decode export state information."
|
5381 |
+
msgstr ""
|
5382 |
+
|
5383 |
+
#: includes/admin/helpers/csv/class-csv-exporter.php:110
|
5384 |
+
msgctxt "admin csv-export"
|
5385 |
+
msgid "Could not create a temporary directory for handling this CSV export."
|
5386 |
+
msgstr ""
|
5387 |
+
|
5388 |
+
#: includes/admin/helpers/csv/class-csv-exporter.php:111
|
5389 |
+
msgctxt "admin csv-export"
|
5390 |
+
msgid "Error while creating a temporary directory for CSV export: %s"
|
5391 |
+
msgstr ""
|
5392 |
+
|
5393 |
+
#: templates/admin/csv-export.tpl.php:13
|
5394 |
+
msgctxt "admin csv-export"
|
5395 |
+
msgid ""
|
5396 |
+
"Please note that the export process is a resource intensive task. If your "
|
5397 |
+
"export does not succeed try disabling other plugins first and/or increasing "
|
5398 |
+
"the values of the 'memory_limit' and 'max_execution_time' directives in your "
|
5399 |
+
"server's php.ini configuration file."
|
5400 |
+
msgstr ""
|
5401 |
+
|
5402 |
+
#: templates/admin/csv-export.tpl.php:30
|
5403 |
+
msgctxt "admin csv-export"
|
5404 |
+
msgid "Export settings"
|
5405 |
+
msgstr ""
|
5406 |
+
|
5407 |
+
#: templates/admin/csv-export.tpl.php:36
|
5408 |
+
msgctxt "admin csv-export"
|
5409 |
+
msgid "Which listings to export?"
|
5410 |
+
msgstr ""
|
5411 |
+
|
5412 |
+
#: templates/admin/csv-export.tpl.php:41
|
5413 |
+
msgctxt "admin csv-export"
|
5414 |
+
msgid "Active Only"
|
5415 |
+
msgstr ""
|
5416 |
+
|
5417 |
+
#: templates/admin/csv-export.tpl.php:42
|
5418 |
+
msgctxt "admin csv-export"
|
5419 |
+
msgid "Active + Pending Renewal"
|
5420 |
+
msgstr ""
|
5421 |
+
|
5422 |
+
#: templates/admin/csv-export.tpl.php:50
|
5423 |
+
msgctxt "admin csv-export"
|
5424 |
+
msgid "Export images"
|
5425 |
+
msgstr ""
|
5426 |
+
|
5427 |
+
#: templates/admin/csv-export.tpl.php:65
|
5428 |
+
msgctxt "admin csv-export"
|
5429 |
+
msgid "Include unique IDs for each listing (sequence_id column)."
|
5430 |
+
msgstr ""
|
5431 |
+
|
5432 |
+
#: templates/admin/csv-export.tpl.php:78
|
5433 |
+
msgctxt "admin csv-export"
|
5434 |
+
msgid "Author information (username)"
|
5435 |
+
msgstr ""
|
5436 |
+
|
5437 |
+
#: templates/admin/csv-export.tpl.php:88
|
5438 |
+
msgctxt "admin csv-export"
|
5439 |
+
msgid "Listing expiration date"
|
5440 |
+
msgstr ""
|
5441 |
+
|
5442 |
+
#: templates/admin/csv-export.tpl.php:97
|
5443 |
+
msgctxt "admin csv-export"
|
5444 |
+
msgid "Listing created date"
|
5445 |
+
msgstr ""
|
5446 |
+
|
5447 |
+
#: templates/admin/csv-export.tpl.php:106
|
5448 |
+
msgctxt "admin csv-export"
|
5449 |
+
msgid "Listing last updated date"
|
5450 |
+
msgstr ""
|
5451 |
+
|
5452 |
+
#: templates/admin/csv-export.tpl.php:115
|
5453 |
+
msgctxt "admin csv-export"
|
5454 |
+
msgid "Listing T&C acceptance date"
|
5455 |
+
msgstr ""
|
5456 |
+
|
5457 |
+
#: templates/admin/csv-export.tpl.php:128
|
5458 |
+
msgctxt "admin csv-export"
|
5459 |
+
msgid "What operating system will you use to edit the CSV file?"
|
5460 |
+
msgstr ""
|
5461 |
+
|
5462 |
+
#: templates/admin/csv-export.tpl.php:140
|
5463 |
+
msgctxt "admin csv-export"
|
5464 |
+
msgid "Windows"
|
5465 |
+
msgstr ""
|
5466 |
+
|
5467 |
+
#: templates/admin/csv-export.tpl.php:148
|
5468 |
+
msgctxt "admin csv-export"
|
5469 |
+
msgid "macOS"
|
5470 |
+
msgstr ""
|
5471 |
+
|
5472 |
+
#: templates/admin/csv-export.tpl.php:162
|
5473 |
+
msgctxt "admin csv-export"
|
5474 |
+
msgid "Category Separator"
|
5475 |
+
msgstr ""
|
5476 |
+
|
5477 |
+
#: templates/admin/csv-export.tpl.php:172
|
5478 |
+
msgctxt "admin csv-export"
|
5479 |
+
msgid "Export Listings"
|
5480 |
+
msgstr ""
|
5481 |
+
|
5482 |
+
#: templates/admin/csv-export.tpl.php:178
|
5483 |
+
msgctxt "admin csv-export"
|
5484 |
+
msgid "Export in Progress..."
|
5485 |
+
msgstr ""
|
5486 |
+
|
5487 |
+
#: templates/admin/csv-export.tpl.php:179
|
5488 |
+
msgctxt "admin csv-export"
|
5489 |
+
msgid ""
|
5490 |
+
"Your export file is being prepared. Please <u>do not leave</u> this page "
|
5491 |
+
"until the export finishes."
|
5492 |
+
msgstr ""
|
5493 |
+
|
5494 |
+
#: templates/admin/csv-export.tpl.php:182
|
5495 |
+
msgctxt "admin csv-export"
|
5496 |
+
msgid "No. of listings:"
|
5497 |
+
msgstr ""
|
5498 |
+
|
5499 |
+
#: templates/admin/csv-export.tpl.php:184
|
5500 |
+
msgctxt "admin csv-export"
|
5501 |
+
msgid "Approximate export file size:"
|
5502 |
+
msgstr ""
|
5503 |
+
|
5504 |
+
#: templates/admin/csv-export.tpl.php:191
|
5505 |
+
msgctxt "admin csv-export"
|
5506 |
+
msgid "Cancel Export"
|
5507 |
+
msgstr ""
|
5508 |
+
|
5509 |
+
#: templates/admin/csv-export.tpl.php:196
|
5510 |
+
msgctxt "admin csv-export"
|
5511 |
+
msgid "Export Complete"
|
5512 |
+
msgstr ""
|
5513 |
+
|
5514 |
+
#: templates/admin/csv-export.tpl.php:197
|
5515 |
+
msgctxt "admin csv-export"
|
5516 |
+
msgid ""
|
5517 |
+
"Your export file has been successfully created and it is now ready for "
|
5518 |
+
"download."
|
5519 |
+
msgstr ""
|
5520 |
+
|
5521 |
+
#: templates/admin/csv-export.tpl.php:202
|
5522 |
+
msgctxt "admin csv-export"
|
5523 |
+
msgid "Download %1$s (%2$s)"
|
5524 |
+
msgstr ""
|
5525 |
+
|
5526 |
+
#: templates/admin/csv-export.tpl.php:210
|
5527 |
+
msgctxt "admin csv-export"
|
5528 |
+
msgid ""
|
5529 |
+
"Click \"Cleanup\" once the file has been downloaded in order to remove all "
|
5530 |
+
"temporary data created by Business Directory during the export process."
|
5531 |
+
msgstr ""
|
5532 |
+
|
5533 |
+
#: templates/admin/csv-export.tpl.php:211
|
5534 |
+
msgctxt "admin csv-export"
|
5535 |
+
msgid "Cleanup"
|
5536 |
+
msgstr ""
|
5537 |
+
|
5538 |
+
#: templates/admin/csv-export.tpl.php:216
|
5539 |
+
msgctxt "admin csv-export"
|
5540 |
+
msgid "Export Canceled"
|
5541 |
+
msgstr ""
|
5542 |
+
|
5543 |
+
#: templates/admin/csv-export.tpl.php:217
|
5544 |
+
msgctxt "admin csv-export"
|
5545 |
+
msgid "The export has been canceled."
|
5546 |
+
msgstr ""
|
5547 |
+
|
5548 |
+
#: templates/admin/csv-export.tpl.php:218
|
5549 |
+
msgctxt "admin csv-export"
|
5550 |
+
msgid "← Return to CSV Export"
|
5551 |
+
msgstr ""
|
5552 |
+
|
5553 |
+
#: includes/admin/csv-import.php:177
|
5554 |
+
msgctxt "admin csv-import"
|
5555 |
+
msgid "Whatever"
|
5556 |
+
msgstr ""
|
5557 |
+
|
5558 |
+
#: includes/admin/csv-import.php:348
|
5559 |
+
msgctxt "admin csv-import"
|
5560 |
+
msgid "Please upload or select a CSV file."
|
5561 |
+
msgstr ""
|
5562 |
+
|
5563 |
+
#: includes/admin/csv-import.php:377
|
5564 |
+
msgctxt "admin csv-import"
|
5565 |
+
msgid ""
|
5566 |
+
"An error was detected while validating the CSV file for import. Please fix "
|
5567 |
+
"this before proceeding."
|
5568 |
+
msgstr ""
|
5569 |
+
|
5570 |
+
#: includes/admin/csv-import.php:386
|
5571 |
+
msgctxt "admin csv-import"
|
5572 |
+
msgid "Import is in \"test mode\". Nothing will be inserted into the database."
|
5573 |
+
msgstr ""
|
5574 |
+
|
5575 |
+
#: includes/admin/helpers/csv/class-csv-import.php:533
|
5576 |
+
msgctxt "admin csv-import"
|
5577 |
+
msgid ""
|
5578 |
+
"Could not create listing category \"<category-name>\". The operation failed "
|
5579 |
+
"with the following error: <error-message>."
|
5580 |
+
msgstr ""
|
5581 |
+
|
5582 |
+
#: includes/admin/helpers/csv/class-csv-import.php:539
|
5583 |
+
msgctxt "admin csv-import"
|
5584 |
+
msgid "Could not create listing category \"%s\""
|
5585 |
+
msgstr ""
|
5586 |
+
|
5587 |
+
#: includes/admin/helpers/csv/class-csv-import.php:730
|
5588 |
+
msgctxt "admin csv-import"
|
5589 |
+
msgid "Username \"%s\" does not exist"
|
5590 |
+
msgstr ""
|
5591 |
+
|
5592 |
+
#: includes/admin/helpers/csv/class-csv-import.php:757
|
5593 |
+
msgctxt "admin csv-import"
|
5594 |
+
msgid "There is no Plan with ID = <fee-id>"
|
5595 |
+
msgstr ""
|
5596 |
+
|
5597 |
+
#: includes/admin/helpers/csv/class-csv-import.php:788
|
5598 |
+
msgctxt "admin csv-import"
|
5599 |
+
msgid "Missing required field: %s"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: includes/admin/helpers/csv/class-csv-import.php:833
|
5603 |
+
msgctxt "admin csv-import"
|
5604 |
+
msgid "Listing category \"%s\" does not exist"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: includes/admin/helpers/csv/class-csv-import.php:907
|
5608 |
+
msgctxt "admin csv-import"
|
5609 |
+
msgid "The string <string> couldn't be converted into a valid date."
|
5610 |
msgstr ""
|
5611 |
|
5612 |
+
#: templates/admin/csv-import-progress.tpl.php:5
|
5613 |
+
msgctxt "admin csv-import"
|
5614 |
+
msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
|
5615 |
msgstr ""
|
5616 |
|
5617 |
+
#: templates/admin/csv-import-progress.tpl.php:9
|
5618 |
+
msgctxt "admin csv-import"
|
5619 |
msgid ""
|
5620 |
+
"A fatal error occurred during the import. If connection wasn't lost during "
|
5621 |
+
"the import, please make sure that you have enough free disk space and memory "
|
5622 |
+
"available to PHP. Check your error logs for details."
|
|
|
5623 |
msgstr ""
|
5624 |
|
5625 |
+
#: templates/admin/csv-import-progress.tpl.php:12
|
5626 |
+
#: templates/admin/csv-import-progress.tpl.php:19
|
5627 |
+
msgctxt "admin csv-import"
|
5628 |
+
msgid "← Return to CSV Import"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: templates/admin/csv-import-progress.tpl.php:17
|
5632 |
+
msgctxt "admin csv-import"
|
5633 |
+
msgid "Import Canceled"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
+
#: templates/admin/csv-import-progress.tpl.php:18
|
5637 |
+
msgctxt "admin csv-import"
|
5638 |
+
msgid "The import has been canceled."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: templates/admin/csv-import-progress.tpl.php:25
|
5642 |
+
msgctxt "admin csv-import"
|
5643 |
+
msgid "Import Progress"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: templates/admin/csv-import-progress.tpl.php:28
|
5647 |
+
msgctxt "admin csv-import"
|
5648 |
+
msgid "Files"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: templates/admin/csv-import-progress.tpl.php:31
|
5652 |
+
msgctxt "admin csv-import"
|
5653 |
+
msgid "Rows in file"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
+
#: templates/admin/csv-import-progress.tpl.php:34
|
5657 |
+
msgctxt "admin csv-import"
|
5658 |
+
msgid "Progress"
|
5659 |
msgstr ""
|
5660 |
|
5661 |
+
#: templates/admin/csv-import-progress.tpl.php:38
|
5662 |
+
msgctxt "admin csv-import"
|
5663 |
+
msgid "Import has not started. Click \"Start Import\" to begin."
|
|
|
|
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: templates/admin/csv-import-progress.tpl.php:39
|
5667 |
+
msgctxt "admin csv-import"
|
5668 |
+
msgid "Importing CSV file..."
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: templates/admin/csv-import-progress.tpl.php:45
|
5672 |
+
msgctxt "admin csv-import"
|
5673 |
+
msgid "Start Import"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: templates/admin/csv-import-progress.tpl.php:46
|
5677 |
+
msgctxt "admin csv-import"
|
5678 |
+
msgid "Cancel Import"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
+
#: templates/admin/csv-import-progress.tpl.php:53
|
5682 |
+
msgctxt "admin csv-import"
|
5683 |
+
msgid "Import finished"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
+
#: templates/admin/csv-import-progress.tpl.php:56
|
5687 |
+
msgctxt "admin csv-import"
|
5688 |
+
msgid "Import was completed successfully."
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: templates/admin/csv-import-progress.tpl.php:60
|
5692 |
+
msgctxt "admin csv-import"
|
5693 |
+
msgid "Import was completed but some rows were rejected."
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: templates/admin/csv-import-progress.tpl.php:63
|
5697 |
+
msgctxt "admin csv-import"
|
5698 |
+
msgid "Import Summary"
|
5699 |
msgstr ""
|
5700 |
|
5701 |
+
#: templates/admin/csv-import-progress.tpl.php:65
|
5702 |
+
msgctxt "admin csv-import"
|
5703 |
+
msgid "Rows in file:"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: templates/admin/csv-import-progress.tpl.php:68
|
5707 |
+
msgctxt "admin csv-import"
|
5708 |
+
msgid "Imported rows:"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
+
#: templates/admin/csv-import-progress.tpl.php:71
|
5712 |
+
msgctxt "admin csv-import"
|
5713 |
+
msgid "Rejected rows:"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
+
#: templates/admin/csv-import-progress.tpl.php:76
|
5717 |
+
msgctxt "admin csv-import"
|
5718 |
+
msgid "Import Warnings"
|
|
|
|
|
|
|
|
|
5719 |
msgstr ""
|
5720 |
|
5721 |
+
#: templates/admin/csv-import-progress.tpl.php:79
|
5722 |
+
msgctxt "admin csv-import"
|
5723 |
+
msgid "Line #"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
+
#: templates/admin/csv-import-progress.tpl.php:80
|
5727 |
+
msgctxt "admin csv-import"
|
5728 |
+
msgid "Line"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: templates/admin/csv-import-progress.tpl.php:81
|
5732 |
+
msgctxt "admin csv-import"
|
5733 |
+
msgid "Warning"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: templates/admin/csv-import.tpl.php:27
|
5737 |
+
msgctxt "admin csv-import"
|
5738 |
+
msgid "Here, you can import data into your directory using the CSV format."
|
|
|
|
|
5739 |
msgstr ""
|
5740 |
|
5741 |
+
#: templates/admin/csv-import.tpl.php:61 templates/admin/csv-import.tpl.php:90
|
5742 |
+
msgctxt "admin csv-import"
|
5743 |
+
msgid "... or <a>select a file uploaded to the imports folder</a>"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
+
#: templates/admin/csv-import.tpl.php:71 templates/admin/csv-import.tpl.php:101
|
5747 |
+
msgctxt "admin csv-import"
|
5748 |
+
msgid "(Upload new file)"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: templates/admin/csv-import.tpl.php:126
|
5752 |
+
msgctxt "admin csv-import"
|
5753 |
+
msgid "Comma (,)"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: templates/admin/csv-import.tpl.php:133
|
5757 |
+
msgctxt "admin csv-import"
|
5758 |
+
msgid "Semicolon (;)"
|
5759 |
msgstr ""
|
5760 |
|
5761 |
+
#: templates/admin/csv-import.tpl.php:192
|
5762 |
+
msgctxt "admin csv-import"
|
5763 |
+
msgid "Preserve existing status"
|
|
|
|
|
5764 |
msgstr ""
|
5765 |
|
5766 |
+
#: templates/admin/csv-import.tpl.php:243
|
5767 |
+
msgctxt "admin csv-import"
|
5768 |
+
msgid ""
|
5769 |
+
"Select a default user to be used if the username column is not present in "
|
5770 |
+
"the CSV file."
|
5771 |
msgstr ""
|
5772 |
|
5773 |
+
#: templates/admin/csv-import.tpl.php:277
|
5774 |
+
msgctxt "admin csv-import"
|
5775 |
+
msgid "Test Import"
|
|
|
|
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: templates/admin/csv-import.tpl.php:278
|
5779 |
+
msgctxt "admin csv-import"
|
5780 |
+
msgid "Import Listings"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: templates/admin/csv-import.tpl.php:328
|
5784 |
+
msgctxt "admin csv-import"
|
5785 |
+
msgid ""
|
5786 |
+
"Fee ID (integer) associated to a listing. Use this column when adding or "
|
5787 |
+
"updating listings from external sources."
|
5788 |
msgstr ""
|
5789 |
|
5790 |
+
#: templates/admin/csv-import.tpl.php:349
|
5791 |
+
msgctxt "admin csv-import"
|
5792 |
+
msgid ""
|
5793 |
+
"Internal Sequence ID used to allow listing updates from external sources."
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: templates/admin/csv-import.tpl.php:356
|
5797 |
+
msgctxt "admin csv-import"
|
5798 |
+
msgid ""
|
5799 |
+
"Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
|
5800 |
+
"adding or updating listings from external sources."
|
5801 |
msgstr ""
|
5802 |
|
5803 |
#: includes/admin/csv-import.php:304
|
5928 |
msgid "All"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: includes/admin/settings/class-settings-bootstrap.php:641
|
5932 |
+
#: includes/admin/settings/class-settings-bootstrap.php:654
|
5933 |
msgctxt "post status"
|
5934 |
msgid "Published"
|
5935 |
msgstr ""
|
5936 |
|
5937 |
+
#: includes/admin/settings/class-settings-bootstrap.php:669
|
5938 |
msgctxt "post status"
|
5939 |
msgid "Draft"
|
5940 |
msgstr ""
|
5941 |
|
5942 |
+
#: includes/admin/settings/class-settings-bootstrap.php:670
|
5943 |
msgctxt "post status"
|
5944 |
msgid "Trash"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
#. translators: %s: url shortcode
|
5948 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1476
|
5949 |
msgctxt "contact email"
|
5950 |
msgid "You have received a reply from your listing at %s."
|
5951 |
msgstr ""
|
5952 |
|
5953 |
#. translators: %s: name shortcode
|
5954 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1479
|
5955 |
msgctxt "contact email"
|
5956 |
msgid "Name: %s"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1487
|
5960 |
msgctxt "contact email"
|
5961 |
msgid "Message:"
|
5962 |
msgstr ""
|
5963 |
|
5964 |
#. translators: %s: date shortcode
|
5965 |
+
#: includes/admin/settings/class-settings-bootstrap.php:1491
|
5966 |
msgctxt "contact email"
|
5967 |
msgid "Time: %s"
|
5968 |
msgstr ""
|
6097 |
msgid "Featured Listing"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:198
|
6101 |
msgctxt "migrate-18"
|
6102 |
msgid "Featured Levels migration is complete."
|
6103 |
msgstr ""
|
6104 |
|
6105 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:214
|
6106 |
msgctxt "migrate-18"
|
6107 |
msgid ""
|
6108 |
"Business Directory <b>version 5.0</b> is changing how Featured Levels plugin "
|
6110 |
"confusing notion of a \"featured level\" that was limited to sticky listings."
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:216
|
6114 |
msgctxt "migrate-18"
|
6115 |
msgid ""
|
6116 |
"We need to migrate your existing \"featured levels\" to plans for use by the "
|
6120 |
"link> and <cancel-link>cancel migration</cancel-link>."
|
6121 |
msgstr ""
|
6122 |
|
6123 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:218
|
6124 |
msgctxt "migrate-18"
|
6125 |
msgid ""
|
6126 |
"Before we do the migration, we need to ask a few simple questions to move "
|
6128 |
"plan\" that is right for you."
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:263
|
6132 |
msgctxt "migrate-18"
|
6133 |
msgid "Move to: "
|
6134 |
msgstr ""
|
6135 |
|
6136 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:273
|
6137 |
msgctxt "migrate-18"
|
6138 |
msgid "New plan summary"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:300
|
6142 |
msgctxt "migrate-18"
|
6143 |
msgid "Perform migration"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:345
|
6147 |
msgctxt "migrate-18"
|
6148 |
msgid "Business Directory Plugin - Featured Levels migration required."
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:350
|
6152 |
msgctxt "migrate-18"
|
6153 |
msgid ""
|
6154 |
"Featured levels were removed in 5.0. You need to perform your <a>Featured "
|
6155 |
"Levels migration here</a>."
|
6156 |
msgstr ""
|
6157 |
|
6158 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:200
|
6159 |
msgctxt "upgrade-18"
|
6160 |
msgid "← Return to Directory dashboard"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:210
|
6164 |
msgctxt "upgrade-18"
|
6165 |
msgid "Configure Plan"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:235
|
6169 |
msgctxt "upgrade-18"
|
6170 |
msgid "Featured Level"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:236
|
6174 |
msgctxt "upgrade-18"
|
6175 |
msgid "What to do with it?"
|
6176 |
msgstr ""
|
6177 |
|
6178 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:245
|
6179 |
msgctxt "upgrade-18"
|
6180 |
msgid "%d listing is on this level."
|
6181 |
msgid_plural "%d listings are on this level."
|
6182 |
msgstr[0] ""
|
6183 |
msgstr[1] ""
|
6184 |
|
6185 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:249
|
6186 |
msgctxt "upgrade-18"
|
6187 |
msgid "Select an option"
|
6188 |
msgstr ""
|
6189 |
|
6190 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:250
|
6191 |
msgctxt "upgrade-18"
|
6192 |
msgid "Remove \"sticky\" status for listings."
|
6193 |
msgstr ""
|
6194 |
|
6195 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:250
|
6196 |
msgctxt "upgrade-18"
|
6197 |
msgid "Remove this (old) level, and leave the listing on the old plan."
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:253
|
6201 |
msgctxt "upgrade-18"
|
6202 |
msgid "May change \"sticky\" status depending on plan."
|
6203 |
msgstr ""
|
6204 |
|
6205 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:253
|
6206 |
msgctxt "upgrade-18"
|
6207 |
msgid "Move listings with this level to existing plan."
|
6208 |
msgstr ""
|
6209 |
|
6210 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:256
|
6211 |
msgctxt "upgrade-18"
|
6212 |
msgid "Keep \"sticky\" status of listings."
|
6213 |
msgstr ""
|
6214 |
|
6215 |
+
#: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:256
|
6216 |
msgctxt "upgrade-18"
|
6217 |
msgid "Replace this level with a new plan."
|
6218 |
msgstr ""
|
6597 |
"site. If you didn't want that, click <a>here</a> to change the setting."
|
6598 |
msgstr ""
|
6599 |
|
6600 |
+
#: includes/controllers/pages/class-submit-listing.php:420
|
6601 |
msgctxt "templates"
|
6602 |
msgid ""
|
6603 |
"<b>View not available</b>. Do you have the \"Disable Frontend Listing "
|
6604 |
"Submission?\" setting checked?"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
+
#: includes/controllers/pages/class-submit-listing.php:422
|
6608 |
msgctxt "templates"
|
6609 |
msgid ""
|
6610 |
"Listing submission has been disabled. Contact the administrator for details."
|
6611 |
msgstr ""
|
6612 |
|
6613 |
+
#: includes/controllers/pages/class-submit-listing.php:820
|
6614 |
msgctxt "templates"
|
6615 |
msgid ""
|
6616 |
"<b>There are no Plans available</b>, without a plan site users can't submit "
|
6617 |
"a listing. %s to create a plan"
|
6618 |
msgstr ""
|
6619 |
|
6620 |
+
#: includes/controllers/pages/class-submit-listing.php:834
|
6621 |
msgctxt "templates"
|
6622 |
msgid ""
|
6623 |
"Listing submission is not available at the moment. Contact the administrator "
|
6624 |
"for details."
|
6625 |
msgstr ""
|
6626 |
|
6627 |
+
#: includes/controllers/pages/class-submit-listing.php:837
|
6628 |
msgctxt "templates"
|
6629 |
msgid ""
|
6630 |
"<b>View not available</b>, there is no \"Category\" association field. %s "
|
6632 |
"an existing field"
|
6633 |
msgstr ""
|
6634 |
|
6635 |
+
#: includes/controllers/pages/class-submit-listing.php:1284
|
6636 |
msgctxt "templates"
|
6637 |
msgid "Please agree to the Terms and Conditions."
|
6638 |
msgstr ""
|
6639 |
|
6640 |
+
#: includes/controllers/pages/class-submit-listing.php:1298
|
6641 |
msgctxt "templates"
|
6642 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6643 |
msgstr ""
|
6913 |
msgid "\"%s\" is required."
|
6914 |
msgstr ""
|
6915 |
|
6916 |
+
#: includes/controllers/pages/class-submit-listing.php:69
|
6917 |
msgctxt "submit listing"
|
6918 |
msgid "Click this field to add categories"
|
6919 |
msgstr ""
|
6920 |
|
6921 |
+
#: includes/controllers/pages/class-submit-listing.php:70
|
6922 |
msgctxt "submit listing"
|
6923 |
msgid "Complete Listing"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
+
#: includes/controllers/pages/class-submit-listing.php:71
|
6927 |
msgctxt "submit listing"
|
6928 |
msgid "Continue to Payment"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
+
#: includes/controllers/pages/class-submit-listing.php:73
|
6932 |
msgctxt "submit listing"
|
6933 |
msgid "Please wait a moment!"
|
6934 |
msgstr ""
|
6935 |
|
6936 |
+
#: includes/controllers/pages/class-submit-listing.php:74
|
6937 |
msgctxt "submit listing"
|
6938 |
msgid "Something went wrong!"
|
6939 |
msgstr ""
|
6940 |
|
6941 |
+
#: includes/controllers/pages/class-submit-listing.php:99
|
6942 |
msgctxt "submit listing"
|
6943 |
msgid "No listing ID was specified."
|
6944 |
msgstr ""
|
6945 |
|
6946 |
+
#: includes/controllers/pages/class-submit-listing.php:101
|
6947 |
msgctxt "submit listing"
|
6948 |
msgid "You can't edit this listing."
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: includes/controllers/pages/class-submit-listing.php:164
|
6952 |
msgctxt "submit listing"
|
6953 |
msgid ""
|
6954 |
"This listing can't be edited at this time because it has no plan associated. "
|
6955 |
"Please <a>edit the listing</a> on the backend and associate it to a plan."
|
6956 |
msgstr ""
|
6957 |
|
6958 |
+
#: includes/controllers/pages/class-submit-listing.php:170
|
6959 |
msgctxt "submit listing"
|
6960 |
msgid ""
|
6961 |
"This listing can't be edited at this time. Please try again later or contact "
|
6962 |
"the admin if the problem persists."
|
6963 |
msgstr ""
|
6964 |
|
6965 |
+
#: includes/controllers/pages/class-submit-listing.php:194
|
6966 |
msgctxt "submit listing"
|
6967 |
msgid "You're logged in as admin, payment will be skipped."
|
6968 |
msgstr ""
|
6969 |
|
6970 |
+
#: includes/controllers/pages/class-submit-listing.php:509
|
6971 |
msgctxt "submit listing"
|
6972 |
msgid "Category selection"
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: includes/controllers/pages/class-submit-listing.php:509
|
6976 |
msgctxt "submit listing"
|
6977 |
msgid "Category & plan selection"
|
6978 |
msgstr ""
|
6979 |
|
6980 |
+
#: includes/controllers/pages/class-submit-listing.php:817
|
6981 |
msgctxt "submit listing"
|
6982 |
msgid "Can not submit a listing at this moment. Please try again later."
|
6983 |
msgstr ""
|
6984 |
|
6985 |
+
#: includes/controllers/pages/class-submit-listing.php:866
|
6986 |
+
#: includes/controllers/pages/class-submit-listing.php:992
|
6987 |
msgctxt "submit listing"
|
6988 |
msgid "Please select a category."
|
6989 |
msgstr ""
|
6990 |
|
6991 |
+
#: includes/controllers/pages/class-submit-listing.php:890
|
6992 |
msgctxt "submit listing"
|
6993 |
msgid "Current active plan is disabled. Please select another plan."
|
6994 |
msgstr ""
|
6995 |
|
6996 |
+
#: includes/controllers/pages/class-submit-listing.php:892
|
6997 |
msgctxt "submit listing"
|
6998 |
msgid "Please choose a valid category for your plan."
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: includes/controllers/pages/class-submit-listing.php:895
|
7002 |
msgctxt "submit listing"
|
7003 |
msgid "Please choose a valid plan for your category selection."
|
7004 |
msgstr ""
|
7005 |
|
7006 |
+
#: includes/controllers/pages/class-submit-listing.php:1204
|
7007 |
msgctxt "submit listing"
|
7008 |
msgid "Please enter your desired username."
|
7009 |
msgstr ""
|
7010 |
|
7011 |
+
#: includes/controllers/pages/class-submit-listing.php:1209
|
7012 |
msgctxt "submit listing"
|
7013 |
msgid "Please enter the e-mail for your new account."
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: includes/controllers/pages/class-submit-listing.php:1214
|
7017 |
msgctxt "submit listing"
|
7018 |
msgid "The username you chose is already in use. Please use a different one."
|
7019 |
msgstr ""
|
7020 |
|
7021 |
+
#: includes/controllers/pages/class-submit-listing.php:1219
|
7022 |
msgctxt "submit listing"
|
7023 |
msgid "The e-mail address you chose for your account is already in use."
|
7024 |
msgstr ""
|
7028 |
msgid "Listing submitted by admin. Payment skipped."
|
7029 |
msgstr ""
|
7030 |
|
7031 |
+
#: includes/controllers/pages/class-submit-listing.php:1159
|
7032 |
msgctxt "listing submit"
|
7033 |
msgid ""
|
7034 |
"Image upload is required, please provide at least one image and submit again."
|
7501 |
msgid "%s. Imported Listing."
|
7502 |
msgstr ""
|
7503 |
|
7504 |
+
#: includes/payment.php:57
|
7505 |
msgctxt "payments"
|
7506 |
msgid "Payment #%s"
|
7507 |
msgstr ""
|
7516 |
msgid "Error while uploading file"
|
7517 |
msgstr ""
|
7518 |
|
7519 |
+
#: includes/utils.php:407 includes/utils.php:413
|
7520 |
msgctxt "utils"
|
7521 |
msgid "File type \"%s\" is not allowed"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: includes/utils.php:664
|
7525 |
msgctxt "utils"
|
7526 |
msgid ""
|
7527 |
"POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
|
7622 |
msgid "Display the following fields in the form."
|
7623 |
msgstr ""
|
7624 |
|
7625 |
+
#: templates/admin/home.tpl.php:12
|
7626 |
+
msgctxt "admin home"
|
7627 |
+
msgid "Welcome to Business Directory Plugin. You are using %s."
|
7628 |
+
msgstr ""
|
7629 |
+
|
7630 |
+
#: templates/admin/home.tpl.php:15
|
7631 |
+
msgctxt "admin home"
|
7632 |
+
msgid ""
|
7633 |
+
"Thanks for choosing us. There's a lot you probably want to get done, so "
|
7634 |
+
"let's jump right in!"
|
7635 |
+
msgstr ""
|
7636 |
+
|
7637 |
+
#: templates/admin/home.tpl.php:28
|
7638 |
+
msgctxt "admin home"
|
7639 |
+
msgid ""
|
7640 |
+
"Our complete documentation is <a>here</a> which we encourage you to use "
|
7641 |
+
"while setting things up."
|
7642 |
+
msgstr ""
|
7643 |
+
|
7644 |
+
#: templates/admin/home.tpl.php:36
|
7645 |
+
msgctxt "admin home"
|
7646 |
+
msgid ""
|
7647 |
+
"We have some quick-start scenarios that you will find useful regarding setup "
|
7648 |
+
"and configuration <a>here</a>."
|
7649 |
+
msgstr ""
|
7650 |
+
|
7651 |
+
#: templates/admin/home.tpl.php:45
|
7652 |
+
msgctxt "admin home"
|
7653 |
+
msgid ""
|
7654 |
+
"If you have questions, please post a comment on <a>support forum</a> and "
|
7655 |
+
"we'll answer it within 24 hours most days."
|
7656 |
msgstr ""
|
7657 |
|
7658 |
#: templates/admin/metaboxes-listing-information-plan.tpl.php:127
|
7738 |
msgid "Uninstall Plugin"
|
7739 |
msgstr ""
|
7740 |
|
7741 |
+
#: templates/admin/uninstall-confirm.tpl.php:18
|
7742 |
msgctxt "uninstall"
|
7743 |
msgid "Uninstalling Business Directory Plugin will do the following:"
|
7744 |
msgstr ""
|
7758 |
msgid "Remove ALL directory settings"
|
7759 |
msgstr ""
|
7760 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7761 |
#: templates/admin/uninstall-confirm.tpl.php:26
|
7762 |
msgctxt "uninstall"
|
7763 |
msgid "Deactivate the plugin from the file system"
|
languages/business-directory-plugin-fr_FR.mo
CHANGED
Binary file
|
languages/{business-directory-plugin-fr_FR.po → business-directory-plugin-fr_FR.p}
RENAMED
File without changes
|