Version Description
Download this release
Release Info
Developer | businessdirectoryplugin |
Plugin | Business Directory Plugin |
Version | 4.1.5 |
Comparing to | |
See all releases |
Code changes from version 4.1.4 to 4.1.5
- README.TXT +20 -4
- admin/csv-export.php +1 -0
- admin/page-debug.php +0 -3
- business-directory-plugin.php +17 -5
- core/api.php +1 -1
- core/class-form-field-type.php +1 -0
- core/class-form-field.php +9 -11
- core/class-gateway.php +7 -2
- core/class-wordpress-template-integration.php +15 -0
- core/compatibility/class-themes-compat.php +13 -1
- core/css/wpbdp.css +94 -100
- core/css/wpbdp.min.css +1 -1
- core/fieldtypes/class-fieldtypes-checkbox.php +7 -7
- core/fieldtypes/class-fieldtypes-date.php +5 -5
- core/fieldtypes/class-fieldtypes-multiselect.php +24 -0
- core/fieldtypes/class-fieldtypes-radiobutton.php +2 -2
- core/fieldtypes/class-fieldtypes-select.php +15 -9
- core/gateways-authorize-net.php +6 -3
- core/helpers/class-listing-display-helper.php +1 -2
- core/helpers/class-listing-search.php +4 -5
- core/installer.php +90 -2
- core/templates-ui.php +11 -3
- core/themes.php +75 -34
- core/utils.php +104 -0
- core/view-submit-listing.php +1 -1
- core/views/listing_contact.php +1 -1
- core/views/show_category.php +15 -10
- languages/WPBDM-ar.mo +0 -0
- languages/WPBDM-ar.po +145 -112
- languages/WPBDM-de_DE.mo +0 -0
- languages/WPBDM-de_DE.po +128 -110
- languages/WPBDM-en_US.mo +0 -0
- languages/WPBDM-en_US.po +110 -108
- languages/WPBDM-es_ES.mo +0 -0
- languages/WPBDM-es_ES.po +145 -117
- languages/WPBDM-fr_FR.mo +0 -0
- languages/WPBDM-fr_FR.po +147 -114
- languages/WPBDM.pot +111 -109
- templates/billing-information-form.tpl.php +28 -4
- templates/main-box.tpl.php +2 -2
- vendors/jquery-breakpoints.js +181 -0
- vendors/jquery-breakpoints.min.js +1 -0
README.TXT
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Business Directory Plugin ===
|
2 |
Contributors: businessdirectoryplugin
|
3 |
Donate link: http://businessdirectoryplugin.com/premium-modules/
|
4 |
-
Tags:
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.6.1
|
7 |
-
Last Updated: 2016-
|
8 |
-
Stable tag: tags/4.1.
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
|
@@ -107,7 +107,7 @@ Business Directory fully supports [WPML](http://wpml.org) for dynamic language s
|
|
107 |
And you can easily [translate it yourself](http://businessdirectoryplugin.com/quick-start-guide/#translate) if you need to.
|
108 |
|
109 |
== Credits ==
|
110 |
-
Copyright 2009-
|
111 |
Original Author: A. Lewis
|
112 |
|
113 |
This program is free software; you can redistribute it and/or modify
|
@@ -141,6 +141,22 @@ If you are having problems please visit [support forum](http://www.businessdirec
|
|
141 |
|
142 |
== Changelog ==
|
143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
= Version 4.1.4 =
|
145 |
* Automatically load translation files from themes.
|
146 |
* Improve performance for BD premium modules update checks on plugin page.
|
1 |
=== Business Directory Plugin ===
|
2 |
Contributors: businessdirectoryplugin
|
3 |
Donate link: http://businessdirectoryplugin.com/premium-modules/
|
4 |
+
Tags: business directory, address book, chamber of commerce business directory, church directory, local business directory, company business directory, contact directory, custom business directory, directory, listings directory, link directory, member directory, staff directory, directory plugin
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.6.1
|
7 |
+
Last Updated: 2016-Dec 1
|
8 |
+
Stable tag: tags/4.1.5
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
|
107 |
And you can easily [translate it yourself](http://businessdirectoryplugin.com/quick-start-guide/#translate) if you need to.
|
108 |
|
109 |
== Credits ==
|
110 |
+
Copyright 2009-17, Dave Rodenbaugh
|
111 |
Original Author: A. Lewis
|
112 |
|
113 |
This program is free software; you can redistribute it and/or modify
|
141 |
|
142 |
== Changelog ==
|
143 |
|
144 |
+
= Version 4.1.5 =
|
145 |
+
* Add support for template block/variable metadata in PHP comments.
|
146 |
+
* Fix support for template variables customization outside of themes.
|
147 |
+
* Fix an error that resulted in the WP comment form appearing twice.
|
148 |
+
* Fix a path resolving issue that resulted in an incorrect template being loaded under certain circumstances.
|
149 |
+
* Support transliteration of arabic characters when normalizing field names for CSS, CSV export/import, etc.
|
150 |
+
* Make some CSS selectors more specific to prevent conflicts.
|
151 |
+
* Allow users to control the size of the list in Multiselect form fields.
|
152 |
+
* Add phone and email fields to billing information form.
|
153 |
+
* Make Authorize.net gateway use e-mail and phone number properties from the billing form.
|
154 |
+
* Allow Editor user to Preview listings.
|
155 |
+
* Improve performance of search queries that involve listing metadata.
|
156 |
+
* Fix an issue with Form Fields options that caused selected values to show up unselected for some fields.
|
157 |
+
* Add contact form message that wasn't being marked as translatable.
|
158 |
+
* Unify gettext contexts for "Submit A Listing" view title.
|
159 |
+
|
160 |
= Version 4.1.4 =
|
161 |
* Automatically load translation files from themes.
|
162 |
* Improve performance for BD premium modules update checks on plugin page.
|
admin/csv-export.php
CHANGED
@@ -176,6 +176,7 @@ class WPBDP_CSVExporter {
|
|
176 |
|
177 |
// Setup columns.
|
178 |
$shortnames = wpbdp_formfields_api()->get_short_names();
|
|
|
179 |
foreach ( $state['columns'] as $fshortname ) {
|
180 |
if ( in_array( $fshortname, array( 'images', 'username', 'featured_level', 'expires_on', 'sequence_id' ) ) ) {
|
181 |
$export->columns[ $fshortname ] = $fshortname;
|
176 |
|
177 |
// Setup columns.
|
178 |
$shortnames = wpbdp_formfields_api()->get_short_names();
|
179 |
+
|
180 |
foreach ( $state['columns'] as $fshortname ) {
|
181 |
if ( in_array( $fshortname, array( 'images', 'username', 'featured_level', 'expires_on', 'sequence_id' ) ) ) {
|
182 |
$export->columns[ $fshortname ] = $fshortname;
|
admin/page-debug.php
CHANGED
@@ -63,9 +63,6 @@ class WPBDP_Admin_Debug_Page {
|
|
63 |
$mysql_version .= ' ( ' . $sql_mode . ' )';
|
64 |
$debug_info['environment']['MySQL version'] = $mysql_version ? $mysql_version : 'N/A';
|
65 |
|
66 |
-
$sqlite_version = class_exists('SQLite3') ? wpbdp_getv( SQLite3::version(), 'versionString', '' ): ( function_exists( 'sqlite_libversion' ) ? sqlite_libversion() : null );
|
67 |
-
$debug_info['environment']['SQLite version'] = $sqlite_version ? $sqlite_version : 'N/A';
|
68 |
-
|
69 |
if ( function_exists( 'curl_init' ) ) {
|
70 |
$data = curl_version();
|
71 |
|
63 |
$mysql_version .= ' ( ' . $sql_mode . ' )';
|
64 |
$debug_info['environment']['MySQL version'] = $mysql_version ? $mysql_version : 'N/A';
|
65 |
|
|
|
|
|
|
|
66 |
if ( function_exists( 'curl_init' ) ) {
|
67 |
$data = curl_version();
|
68 |
|
business-directory-plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: http://www.businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
-
* Version: 4.1.
|
7 |
* Author: D. Rodenbaugh
|
8 |
* Author URI: http://businessdirectoryplugin.com
|
9 |
* Text Domain: WPBDM
|
@@ -31,7 +31,7 @@
|
|
31 |
if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
|
32 |
exit();
|
33 |
|
34 |
-
define( 'WPBDP_VERSION', '4.1.
|
35 |
|
36 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( __FILE__ ) ) );
|
37 |
define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
|
@@ -846,6 +846,14 @@ class WPBDP_Plugin {
|
|
846 |
'jquery-ui-widget',
|
847 |
'jquery-file-upload-iframe-transport' ) );
|
848 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
849 |
// Drag & Drop.
|
850 |
wp_register_style( 'wpbdp-dnd-upload', WPBDP_URL . 'core/css/dnd-upload' . ( ! $this->is_debug_on() ? '.min' : '' ) . '.css' );
|
851 |
wp_register_script( 'wpbdp-dnd-upload', WPBDP_URL . 'core/js/dnd-upload' . ( ! $this->is_debug_on() ? '.min' : '' ) . '.js',
|
@@ -889,12 +897,16 @@ class WPBDP_Plugin {
|
|
889 |
|
890 |
if ( $this->is_debug_on() ) {
|
891 |
wp_register_style( 'wpbdp-base-css', WPBDP_URL . 'core/css/wpbdp.css' );
|
892 |
-
wp_register_script( 'wpbdp-js', WPBDP_URL . 'core/js/wpbdp.js', array( 'jquery' ) );
|
893 |
} else {
|
894 |
wp_register_style( 'wpbdp-base-css', WPBDP_URL . 'core/css/wpbdp.min.css' );
|
895 |
-
wp_register_script( 'wpbdp-js', WPBDP_URL . 'core/js/wpbdp.min.js', array( 'jquery' ) );
|
896 |
}
|
897 |
|
|
|
|
|
|
|
|
|
|
|
|
|
898 |
wp_enqueue_style( 'wpbdp-dnd-upload' );
|
899 |
wp_enqueue_script( 'wpbdp-dnd-upload' );
|
900 |
|
@@ -1114,7 +1126,7 @@ class WPBDP_Plugin {
|
|
1114 |
|
1115 |
switch ( $current_view ) {
|
1116 |
case 'submit_listing':
|
1117 |
-
$view_title = _x( 'Submit A Listing', '
|
1118 |
return $this->_maybe_do_wpseo_title( $view_title, $title, $sep, $seplocation );
|
1119 |
break;
|
1120 |
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: http://www.businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
+
* Version: 4.1.5
|
7 |
* Author: D. Rodenbaugh
|
8 |
* Author URI: http://businessdirectoryplugin.com
|
9 |
* Text Domain: WPBDM
|
31 |
if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
|
32 |
exit();
|
33 |
|
34 |
+
define( 'WPBDP_VERSION', '4.1.5' );
|
35 |
|
36 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( __FILE__ ) ) );
|
37 |
define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
|
846 |
'jquery-ui-widget',
|
847 |
'jquery-file-upload-iframe-transport' ) );
|
848 |
|
849 |
+
wp_register_script(
|
850 |
+
'jquery-breakpoints',
|
851 |
+
WPBDP_URL . 'vendors/jquery-breakpoints' . ( ! $this->is_debug_on() ? '.min' : '' ) . '.js',
|
852 |
+
array( 'jquery' ),
|
853 |
+
null,
|
854 |
+
true
|
855 |
+
);
|
856 |
+
|
857 |
// Drag & Drop.
|
858 |
wp_register_style( 'wpbdp-dnd-upload', WPBDP_URL . 'core/css/dnd-upload' . ( ! $this->is_debug_on() ? '.min' : '' ) . '.css' );
|
859 |
wp_register_script( 'wpbdp-dnd-upload', WPBDP_URL . 'core/js/dnd-upload' . ( ! $this->is_debug_on() ? '.min' : '' ) . '.js',
|
897 |
|
898 |
if ( $this->is_debug_on() ) {
|
899 |
wp_register_style( 'wpbdp-base-css', WPBDP_URL . 'core/css/wpbdp.css' );
|
|
|
900 |
} else {
|
901 |
wp_register_style( 'wpbdp-base-css', WPBDP_URL . 'core/css/wpbdp.min.css' );
|
|
|
902 |
}
|
903 |
|
904 |
+
wp_register_script(
|
905 |
+
'wpbdp-js',
|
906 |
+
WPBDP_URL . 'core/js/wpbdp' . ( ! $this->is_debug_on() ? '.min' : '' ) . '.js',
|
907 |
+
array( 'jquery', 'jquery-breakpoints' )
|
908 |
+
);
|
909 |
+
|
910 |
wp_enqueue_style( 'wpbdp-dnd-upload' );
|
911 |
wp_enqueue_script( 'wpbdp-dnd-upload' );
|
912 |
|
1126 |
|
1127 |
switch ( $current_view ) {
|
1128 |
case 'submit_listing':
|
1129 |
+
$view_title = _x( 'Submit A Listing', 'views', 'WPBDM' );
|
1130 |
return $this->_maybe_do_wpseo_title( $view_title, $title, $sep, $seplocation );
|
1131 |
break;
|
1132 |
|
core/api.php
CHANGED
@@ -288,7 +288,7 @@ function wpbdp_user_can($action, $listing_id=null, $user_id=null) {
|
|
288 |
switch ($action) {
|
289 |
case 'view':
|
290 |
if ( isset( $_GET['preview'] ) ) {
|
291 |
-
$res = user_can( $user_id, '
|
292 |
} else {
|
293 |
$res = true;
|
294 |
}
|
288 |
switch ($action) {
|
289 |
case 'view':
|
290 |
if ( isset( $_GET['preview'] ) ) {
|
291 |
+
$res = user_can( $user_id, 'editor' ) || ( $post->post_author && $post->post_author == $user_id );
|
292 |
} else {
|
293 |
$res = true;
|
294 |
}
|
core/class-form-field-type.php
CHANGED
@@ -364,6 +364,7 @@ class WPBDP_Form_Field_Type {
|
|
364 |
* @since 3.5.3
|
365 |
*/
|
366 |
public static function normalize_name( $name ) {
|
|
|
367 |
$name = strtolower( $name );
|
368 |
$name = remove_accents( $name );
|
369 |
$name = preg_replace( '/\s+/', '_', $name );
|
364 |
* @since 3.5.3
|
365 |
*/
|
366 |
public static function normalize_name( $name ) {
|
367 |
+
$name = wpbdp_buckwalter_arabic_transliteration( $name );
|
368 |
$name = strtolower( $name );
|
369 |
$name = remove_accents( $name );
|
370 |
$name = preg_replace( '/\s+/', '_', $name );
|
core/class-form-field.php
CHANGED
@@ -307,11 +307,11 @@ class WPBDP_Form_Field {
|
|
307 |
* @param string $key configuration key name
|
308 |
* @return mixed|array if $key is ommitted an array of all key/values will be returned
|
309 |
*/
|
310 |
-
public function data( $key=null ) {
|
311 |
if ( !$key )
|
312 |
return $this->field_data;
|
313 |
|
314 |
-
$res = isset( $this->field_data[$key] ) ? $this->field_data[$key] :
|
315 |
return apply_filters( 'wpbdp_form_field_data', $res, $key, $this );
|
316 |
}
|
317 |
|
@@ -725,19 +725,17 @@ class WPBDP_Form_Field {
|
|
725 |
if ( ! $query )
|
726 |
break;
|
727 |
|
728 |
-
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta );
|
729 |
|
730 |
-
|
731 |
-
|
|
|
|
|
732 |
|
733 |
if ( in_array( $this->get_field_type_id(), array( 'textfield', 'textarea', 'url' ), true ) ) {
|
734 |
-
$search_res['where'] = $wpdb->prepare( "
|
735 |
-
'_wpbdp[fields][' . $this->get_id() . ']',
|
736 |
-
$query );
|
737 |
} else {
|
738 |
-
$search_res['where'] = $wpdb->prepare( "
|
739 |
-
'_wpbdp[fields][' . $this->get_id() . ']',
|
740 |
-
$query );
|
741 |
}
|
742 |
|
743 |
break;
|
307 |
* @param string $key configuration key name
|
308 |
* @return mixed|array if $key is ommitted an array of all key/values will be returned
|
309 |
*/
|
310 |
+
public function data( $key=null, $default=null ) {
|
311 |
if ( !$key )
|
312 |
return $this->field_data;
|
313 |
|
314 |
+
$res = isset( $this->field_data[$key] ) ? $this->field_data[ $key ] : $default;
|
315 |
return apply_filters( 'wpbdp_form_field_data', $res, $key, $this );
|
316 |
}
|
317 |
|
725 |
if ( ! $query )
|
726 |
break;
|
727 |
|
728 |
+
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
729 |
|
730 |
+
$search_res['join'] = $wpdb->prepare(
|
731 |
+
" LEFT JOIN {$wpdb->postmeta} AS {$alias} ON ( {$wpdb->posts}.ID = {$alias}.post_id AND {$alias}.meta_key = %s )",
|
732 |
+
'_wpbdp[fields][' . $this->get_id() . ']'
|
733 |
+
);
|
734 |
|
735 |
if ( in_array( $this->get_field_type_id(), array( 'textfield', 'textarea', 'url' ), true ) ) {
|
736 |
+
$search_res['where'] = $wpdb->prepare( "{$alias}.meta_value LIKE '%%%s%%'", $query );
|
|
|
|
|
737 |
} else {
|
738 |
+
$search_res['where'] = $wpdb->prepare( "{$alias}.meta_value = %s", $query );
|
|
|
|
|
739 |
}
|
740 |
|
741 |
break;
|
core/class-gateway.php
CHANGED
@@ -94,6 +94,7 @@ abstract class WPBDP_Payment_Gateway {
|
|
94 |
*/
|
95 |
public function sanitize_billing_information( $data ) {
|
96 |
$fields = array(
|
|
|
97 |
'first_name',
|
98 |
'last_name',
|
99 |
'cc_number',
|
@@ -105,7 +106,8 @@ abstract class WPBDP_Payment_Gateway {
|
|
105 |
'address_city',
|
106 |
'address_line1',
|
107 |
'address_line2',
|
108 |
-
'zipcode'
|
|
|
109 |
);
|
110 |
|
111 |
$sanitized_data = array();
|
@@ -127,13 +129,16 @@ abstract class WPBDP_Payment_Gateway {
|
|
127 |
|
128 |
$data = $this->sanitize_billing_information( stripslashes_deep( $_POST ) );
|
129 |
|
|
|
|
|
|
|
130 |
if ( ! $data['first_name'] )
|
131 |
$errors[] = _x( 'First name is required.', 'billing info', 'WPBDM' );
|
132 |
|
133 |
if ( ! $data['last_name'] )
|
134 |
$errors[] = _x( 'Last name is required.', 'billing info', 'WPBDM' );
|
135 |
|
136 |
-
if ( ! $data['cc_number'] )
|
137 |
$errors[] = _x( 'Credit card number is required.', 'billing info', 'WPBDM' );
|
138 |
|
139 |
if ( ! $data['cc_exp_month'] || ! $data['cc_exp_year'] )
|
94 |
*/
|
95 |
public function sanitize_billing_information( $data ) {
|
96 |
$fields = array(
|
97 |
+
'email',
|
98 |
'first_name',
|
99 |
'last_name',
|
100 |
'cc_number',
|
106 |
'address_city',
|
107 |
'address_line1',
|
108 |
'address_line2',
|
109 |
+
'zipcode',
|
110 |
+
'phone'
|
111 |
);
|
112 |
|
113 |
$sanitized_data = array();
|
129 |
|
130 |
$data = $this->sanitize_billing_information( stripslashes_deep( $_POST ) );
|
131 |
|
132 |
+
if ( ! $data['email'] || ! is_email( $data['email'] ) )
|
133 |
+
$errors[] = _x( 'Please enter a valid e-mail address.', 'billing info', 'WPBDM' );
|
134 |
+
|
135 |
if ( ! $data['first_name'] )
|
136 |
$errors[] = _x( 'First name is required.', 'billing info', 'WPBDM' );
|
137 |
|
138 |
if ( ! $data['last_name'] )
|
139 |
$errors[] = _x( 'Last name is required.', 'billing info', 'WPBDM' );
|
140 |
|
141 |
+
if ( ! $data['cc_number'] || ! is_numeric( $data['cc_number'] ) )
|
142 |
$errors[] = _x( 'Credit card number is required.', 'billing info', 'WPBDM' );
|
143 |
|
144 |
if ( ! $data['cc_exp_month'] || ! $data['cc_exp_year'] )
|
core/class-wordpress-template-integration.php
CHANGED
@@ -17,6 +17,7 @@ class WPBDP__WordPress_Template_Integration {
|
|
17 |
add_action( 'wp_head', array( $this, 'maybe_spoof_post' ), 100 );
|
18 |
add_action( 'wp_head', array( $this, 'wp_head_done' ), 999 );
|
19 |
add_filter( 'body_class', array( &$this, 'body_class' ), 10 );
|
|
|
20 |
}
|
21 |
|
22 |
public function template_include( $template ) {
|
@@ -195,6 +196,20 @@ class WPBDP__WordPress_Template_Integration {
|
|
195 |
return $classes;
|
196 |
}
|
197 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
private function restore_things() {
|
199 |
global $wp_query, $post;
|
200 |
|
17 |
add_action( 'wp_head', array( $this, 'maybe_spoof_post' ), 100 );
|
18 |
add_action( 'wp_head', array( $this, 'wp_head_done' ), 999 );
|
19 |
add_filter( 'body_class', array( &$this, 'body_class' ), 10 );
|
20 |
+
add_filter( 'post_class', array( $this, 'post_class' ), 10, 3 );
|
21 |
}
|
22 |
|
23 |
public function template_include( $template ) {
|
196 |
return $classes;
|
197 |
}
|
198 |
|
199 |
+
public function post_class( $classes, $more_classes, $post_id ) {
|
200 |
+
if ( ! wpbdp_current_view() ) {
|
201 |
+
return $classes;
|
202 |
+
}
|
203 |
+
|
204 |
+
$post = get_post();
|
205 |
+
|
206 |
+
if ( $post && 0 == $post->ID && $post_id == $post->ID ) {
|
207 |
+
$classes[] = 'wpbdp-view-content-wrapper';
|
208 |
+
}
|
209 |
+
|
210 |
+
return $classes;
|
211 |
+
}
|
212 |
+
|
213 |
private function restore_things() {
|
214 |
global $wp_query, $post;
|
215 |
|
core/compatibility/class-themes-compat.php
CHANGED
@@ -52,7 +52,8 @@ class WPBDP__Themes_Compat {
|
|
52 |
public function get_themes_with_fixes() {
|
53 |
$themes_with_fixes = array(
|
54 |
'atahualpa', 'genesis', 'hmtpro5', 'customizr', 'customizr-pro', 'canvas', 'builder', 'Divi', 'longevity', 'x', 'u-design', 'thesis',
|
55 |
-
'takeawaywp'
|
|
|
56 |
);
|
57 |
|
58 |
return apply_filters( 'wpbdp_themes_with_fixes_list', $themes_with_fixes );
|
@@ -288,6 +289,17 @@ class WPBDP__Themes_Compat {
|
|
288 |
add_action( 'wp_head', 'the_post', 999 );
|
289 |
}
|
290 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
//
|
292 |
// }}
|
293 |
//
|
52 |
public function get_themes_with_fixes() {
|
53 |
$themes_with_fixes = array(
|
54 |
'atahualpa', 'genesis', 'hmtpro5', 'customizr', 'customizr-pro', 'canvas', 'builder', 'Divi', 'longevity', 'x', 'u-design', 'thesis',
|
55 |
+
'takeawaywp',
|
56 |
+
'foodiepro-2.1.8',
|
57 |
);
|
58 |
|
59 |
return apply_filters( 'wpbdp_themes_with_fixes_list', $themes_with_fixes );
|
289 |
add_action( 'wp_head', 'the_post', 999 );
|
290 |
}
|
291 |
|
292 |
+
/**
|
293 |
+
* @since next-release
|
294 |
+
*/
|
295 |
+
public function theme_foodiepro_218() {
|
296 |
+
if ( ! in_array( wpbdp_current_view(), array( 'show_category', 'show_tag' ), true ) ) {
|
297 |
+
return;
|
298 |
+
}
|
299 |
+
|
300 |
+
remove_action( 'genesis_before_loop', 'foodie_pro_archive_maybe_add_grid' );
|
301 |
+
}
|
302 |
+
|
303 |
//
|
304 |
// }}
|
305 |
//
|
core/css/wpbdp.css
CHANGED
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*
|
2 |
* Search Form
|
3 |
*/
|
@@ -54,15 +63,6 @@ form#wpbdmsearchform a.advanced-search-link {
|
|
54 |
margin: auto;
|
55 |
}
|
56 |
|
57 |
-
|
58 |
-
.cf:before, .cf:after {
|
59 |
-
content: " "; /* 1 */
|
60 |
-
display: table; /* 2 */
|
61 |
-
}
|
62 |
-
|
63 |
-
.cf:after { clear: both; }
|
64 |
-
.cf { *zoom: 1; }
|
65 |
-
|
66 |
.wpbdp-pagination {
|
67 |
margin: 25px 0 0 0;
|
68 |
}
|
@@ -639,11 +639,17 @@ table#wpbdp-manage-recurring a.cancel-subscription {
|
|
639 |
|
640 |
/* {{ Billing information form. */
|
641 |
#wpbdp-billing-information .billing-info-section h4 {
|
642 |
-
margin
|
643 |
}
|
644 |
|
645 |
#wpbdp-billing-information .billing-info-section table {
|
646 |
-
margin:
|
|
|
|
|
|
|
|
|
|
|
|
|
647 |
}
|
648 |
|
649 |
#wpbdp-billing-information .form-buttons {
|
@@ -840,138 +846,126 @@ body.business-directory #TB_secondLine {
|
|
840 |
/* }} */
|
841 |
|
842 |
/* Main search box. {{ */
|
843 |
-
|
|
|
844 |
background: #f7f7f7;
|
845 |
margin: 10px 0 20px 0;
|
846 |
border-radius: 4px;
|
847 |
box-sizing: border-box;
|
|
|
848 |
width: 100%;
|
849 |
}
|
850 |
|
851 |
-
|
852 |
-
margin:
|
853 |
-
padding: 4px 10px;
|
854 |
-
width: 100%;
|
855 |
-
clear: both;
|
856 |
-
box-sizing: border-box;
|
857 |
-
*zoom: 1;
|
858 |
}
|
859 |
|
860 |
-
|
|
|
|
|
861 |
}
|
862 |
-
|
863 |
-
|
864 |
-
background: #999;
|
865 |
-
height: 2px;
|
866 |
-
margin: 2px 0;
|
867 |
-
padding: 0;
|
868 |
-
/* border-top: 2px solid #999; */
|
869 |
}
|
870 |
|
871 |
-
|
872 |
-
|
873 |
-
content: " ";
|
874 |
-
display: table;
|
875 |
}
|
876 |
|
877 |
-
|
878 |
-
|
|
|
|
|
|
|
|
|
|
|
879 |
}
|
880 |
|
881 |
-
|
882 |
-
|
883 |
-
margin: 0;
|
884 |
-
float: left;
|
885 |
-
box-sizing: border-box;
|
886 |
}
|
887 |
|
888 |
-
|
889 |
-
|
890 |
}
|
891 |
-
|
892 |
-
|
893 |
-
#wpbdp-main-box .search-fields .main-input {
|
894 |
-
/* width: 100%; */
|
895 |
-
/* box-sizing: border-box; */
|
896 |
}
|
897 |
|
898 |
-
|
899 |
-
|
900 |
}
|
901 |
|
902 |
-
|
|
|
|
|
903 |
width: 100%;
|
|
|
904 |
}
|
905 |
|
906 |
-
|
907 |
-
|
|
|
|
|
908 |
}
|
909 |
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
#wpbdp-main-box .box-row .box-col:last-child {
|
915 |
-
padding-right: 0;
|
916 |
}
|
917 |
|
918 |
-
|
|
|
919 |
width: 100%;
|
920 |
}
|
921 |
|
922 |
-
|
|
|
923 |
width: 50%;
|
924 |
}
|
925 |
-
|
926 |
-
|
927 |
-
|
|
|
928 |
}
|
929 |
-
|
930 |
-
|
931 |
-
|
|
|
932 |
}
|
933 |
|
934 |
-
|
935 |
-
|
|
|
|
|
936 |
}
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
}
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
text-align: right;
|
946 |
-
}
|
947 |
-
|
948 |
-
#wpbdp-main-box .wpbdp-main-links {
|
949 |
-
text-align: right;
|
950 |
}
|
951 |
|
952 |
-
|
953 |
-
margin:
|
954 |
}
|
955 |
|
956 |
-
|
957 |
-
|
|
|
958 |
}
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
}
|
963 |
|
964 |
-
|
965 |
-
|
966 |
-
margin-bottom: 5px;
|
967 |
-
float: none;
|
968 |
-
width: 100% !important;
|
969 |
-
display: block;
|
970 |
-
padding-left: 0;
|
971 |
-
padding-right: 0;
|
972 |
-
}
|
973 |
}
|
974 |
-
/*
|
975 |
* }}
|
976 |
*
|
977 |
*/
|
@@ -980,11 +974,11 @@ body.business-directory #TB_secondLine {
|
|
980 |
* {{ Some compat fixes for themes.
|
981 |
*/
|
982 |
|
983 |
-
.single-wpbdp_listing header.entry-header,
|
984 |
-
.wpbdp-view-show_category header.entry-header,
|
985 |
-
.wpbdp-view-show_tag header.entry-header,
|
986 |
-
.wpbdp-view-search header.entry-header,
|
987 |
-
.wpbdp-view-submit_listing header.entry-header {
|
988 |
display: none;
|
989 |
}
|
990 |
|
1 |
+
.wpbdp-cf:before, .wpbdp-cf:after,
|
2 |
+
.cf:before, .cf:after {
|
3 |
+
content: " "; /* 1 */
|
4 |
+
display: table; /* 2 */
|
5 |
+
}
|
6 |
+
|
7 |
+
.wpbdp-cf:after, .cf:after { clear: both; }
|
8 |
+
.wpbdp-cf, .cf { *zoom: 1; }
|
9 |
+
|
10 |
/*
|
11 |
* Search Form
|
12 |
*/
|
63 |
margin: auto;
|
64 |
}
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
.wpbdp-pagination {
|
67 |
margin: 25px 0 0 0;
|
68 |
}
|
639 |
|
640 |
/* {{ Billing information form. */
|
641 |
#wpbdp-billing-information .billing-info-section h4 {
|
642 |
+
margin: 10px 0 5px 0;
|
643 |
}
|
644 |
|
645 |
#wpbdp-billing-information .billing-info-section table {
|
646 |
+
margin: 1.75em 0;
|
647 |
+
}
|
648 |
+
|
649 |
+
#wpbdp-billing-information #wpbdp-billing-field-exp,
|
650 |
+
#wpbdp-billing-information #wpbdp-billing-field-exp-year {
|
651 |
+
width: 40%;
|
652 |
+
display: inline;
|
653 |
}
|
654 |
|
655 |
#wpbdp-billing-information .form-buttons {
|
846 |
/* }} */
|
847 |
|
848 |
/* Main search box. {{ */
|
849 |
+
|
850 |
+
.wpbdp-main-box {
|
851 |
background: #f7f7f7;
|
852 |
margin: 10px 0 20px 0;
|
853 |
border-radius: 4px;
|
854 |
box-sizing: border-box;
|
855 |
+
padding: 10px;
|
856 |
width: 100%;
|
857 |
}
|
858 |
|
859 |
+
.wpbdp-main-box .box-row {
|
860 |
+
margin-bottom: 4px;
|
|
|
|
|
|
|
|
|
|
|
861 |
}
|
862 |
|
863 |
+
.wpbdp-main-box .box-col {
|
864 |
+
margin-bottom: 4px;
|
865 |
+
width: 100%;
|
866 |
}
|
867 |
+
.wpbdp-main-box .box-col input {
|
868 |
+
width: 100%;
|
|
|
|
|
|
|
|
|
|
|
869 |
}
|
870 |
|
871 |
+
.wpbdp-main-box .submit-btn input[type="submit"] {
|
872 |
+
margin-top: 0;
|
|
|
|
|
873 |
}
|
874 |
|
875 |
+
.wpbdp-main-box .advanced-search-link {
|
876 |
+
border: none;
|
877 |
+
box-shadow: none;
|
878 |
+
display: block;
|
879 |
+
font-size: 11px;
|
880 |
+
text-align: right;
|
881 |
+
text-decoration: none;
|
882 |
}
|
883 |
|
884 |
+
.wpbdp-main-box .wpbdp-main-links {
|
885 |
+
text-align: right;
|
|
|
|
|
|
|
886 |
}
|
887 |
|
888 |
+
.wpbdp-main-box .wpbdp-main-links .button {
|
889 |
+
margin: 0 5px;
|
890 |
}
|
891 |
+
.wpbdp-main-box .wpbdp-main-links .button:first-child {
|
892 |
+
margin-left: 0;
|
|
|
|
|
|
|
893 |
}
|
894 |
|
895 |
+
.wpbdp-main-box .wpbdp-main-links .button:last-child {
|
896 |
+
margin-right: 0;
|
897 |
}
|
898 |
|
899 |
+
.wpbdp-main-box-tiny .wpbdp-main-links .button {
|
900 |
+
padding-top: 10px;
|
901 |
+
padding-bottom: 10px;
|
902 |
width: 100%;
|
903 |
+
margin: 0 0 4px;
|
904 |
}
|
905 |
|
906 |
+
.wpbdp-main-box-small .wpbdp-main-links .button,
|
907 |
+
.wpbdp-main-box-medium .wpbdp-main-links .button {
|
908 |
+
padding-top: 8px;
|
909 |
+
padding-bottom: 8px;
|
910 |
}
|
911 |
|
912 |
+
.wpbdp-main-box-medium .box-col,
|
913 |
+
.wpbdp-main-box-large .box-col {
|
914 |
+
float: left;
|
|
|
|
|
|
|
915 |
}
|
916 |
|
917 |
+
.wpbdp-main-box-medium .search-fields > .cols-1 .box-col,
|
918 |
+
.wpbdp-main-box-large .search-fields > .cols-1 .box-col {
|
919 |
width: 100%;
|
920 |
}
|
921 |
|
922 |
+
.wpbdp-main-box-medium .search-fields > .cols-2 .box-col,
|
923 |
+
.wpbdp-main-box-large .search-fields > .cols-2 .box-col {
|
924 |
width: 50%;
|
925 |
}
|
926 |
+
.wpbdp-main-box-medium .search-fields > .cols-2 .box-col:first-child,
|
927 |
+
.wpbdp-main-box-large .search-fields > .cols-2 .box-col:first-child {
|
928 |
+
padding-right: 5px;
|
929 |
+
width: 50%;
|
930 |
}
|
931 |
+
.wpbdp-main-box-medium .search-fields > .cols-2 .box-col:last-child,
|
932 |
+
.wpbdp-main-box-large .search-fields > .cols-2 .box-col:last-child {
|
933 |
+
padding-left: 5px;
|
934 |
+
width: 50%;
|
935 |
}
|
936 |
|
937 |
+
.wpbdp-main-box-medium .search-fields > .cols-3 .box-col,
|
938 |
+
.wpbdp-main-box-large .search-fields > .cols-3 .box-col {
|
939 |
+
padding-left: 5px;
|
940 |
+
width: 50%;
|
941 |
}
|
942 |
+
.wpbdp-main-box-medium .search-fields > .cols-3 .box-col:first-child,
|
943 |
+
.wpbdp-main-box-large .search-fields > .cols-3 .box-col:first-child {
|
944 |
+
padding-right: 5px;
|
945 |
}
|
946 |
+
.wpbdp-main-box-medium .search-fields > .cols-3 .box-col:first-child,
|
947 |
+
.wpbdp-main-box-large .search-fields > .cols-3 .box-col:first-child {
|
948 |
+
padding: 0;
|
949 |
+
width: 100%;
|
|
|
|
|
|
|
|
|
|
|
950 |
}
|
951 |
|
952 |
+
.wpbdp-main-box-large .box-row {
|
953 |
+
margin-bottom: 0px;
|
954 |
}
|
955 |
|
956 |
+
.wpbdp-main-box-large .search-fields {
|
957 |
+
padding-right: 5px;
|
958 |
+
width: 78%;
|
959 |
}
|
960 |
+
.wpbdp-main-box-large .submit-btn {
|
961 |
+
padding-left: 5px;
|
962 |
+
width: 22%;
|
963 |
}
|
964 |
|
965 |
+
.wpbdp-main-box-large .wpbdp-main-links .button {
|
966 |
+
margin: 0 3px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
967 |
}
|
968 |
+
/*
|
969 |
* }}
|
970 |
*
|
971 |
*/
|
974 |
* {{ Some compat fixes for themes.
|
975 |
*/
|
976 |
|
977 |
+
.single-wpbdp_listing .wpbdp-view-content-wrapper header.entry-header,
|
978 |
+
.wpbdp-view-show_category .wpbdp-view-content-wrapper header.entry-header,
|
979 |
+
.wpbdp-view-show_tag .wpbdp-view-content-wrapper header.entry-header,
|
980 |
+
.wpbdp-view-search .wpbdp-view-content-wrapper header.entry-header,
|
981 |
+
.wpbdp-view-submit_listing .wpbdp-view-content-wrapper header.entry-header {
|
982 |
display: none;
|
983 |
}
|
984 |
|
core/css/wpbdp.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
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"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.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}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 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-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.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 #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:20px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important;vertical-align:top !important}@media screen and (max-width:500px){.social-field.facebook .fb-like>span{width:100% !important}}.wpbdp-listing-contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing-contact-form .send-message-button{margin-left:-10px}.wpbdp-listing-contact-form h3{margin-left:-10px}.wpbdp-listing-contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar:before,.wpbdp-bar:after{content:" ";display:table;clear:both}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button,.wpbdp-bar .wpbdp-main-links #wpbdp-bar-show-directory-button{margin-right:5px}.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;text-align:right}.wpbdp-listings-sort-options .current{font-weight:bold}.wpbdp-page-main_page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-submit-page .wpbdp-form-field-type-textarea textarea{min-width:90%;min-height:50px}.wpbdp-submit-page .wpbdp-form-field-association-content textarea{min-height:80px}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.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{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}.wpbdp-checkout input[type="image"]{padding:0;border:0;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:red}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.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-bottom:5px}#wpbdp-billing-information .billing-info-section table{margin:10px 0 0 20px}#wpbdp-billing-information .form-buttons{margin:15px 0}.wpbdp-show-on-mobile{display:none}@media screen and (max-width:500px){.wpbdp-show-on-mobile{display:inline !important}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar .wpbdp-main-links{display:block;float:none;text-align:center}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-submit-listing-button{margin-bottom:5px;display:inline-block}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button{display:inline-block;float:left;margin-right:20px}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.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-listings-sort-options{font-size:90%}.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:85%}.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%}.wpbdp-listings-sort-options.wpbdp-show-on-mobile{margin-bottom:10px}}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{float:none !important}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{text-align:center}.wpbdp-form-row label{display:block}.wpbdp-form-row.wpbdp-form-textfield input[type="text"]{width:400px}#wpbdp-main-box{background:#f7f7f7;margin:10px 0 20px 0;border-radius:4px;box-sizing:border-box;width:100%}#wpbdp-main-box .box-row{margin:0;padding:4px 10px;width:100%;clear:both;box-sizing:border-box;*zoom:1}#wpbdp-main-box .box-row.separator{background:#999;height:2px;margin:2px 0;padding:0}#wpbdp-main-box .box-row:before,#wpbdp-main-box .box-row:after{content:" ";display:table}#wpbdp-main-box .box-row:after{clear:both}#wpbdp-main-box .box-col{padding:0 5px;margin:0;float:left;box-sizing:border-box}#wpbdp-main-box .box-col input{box-sizing:border-box}#wpbdp-main-box .box-col.submit-btn input{width:100%}#wpbdp-main-box .search-fields .main-input input{width:100%}#wpbdp-main-box .box-row .box-row{padding:0}#wpbdp-main-box .box-row .box-col:first-child{padding-left:0}#wpbdp-main-box .box-row .box-col:last-child{padding-right:0}#wpbdp-main-box .box-row.cols-1>.box-col{width:100%}#wpbdp-main-box .box-row.cols-2>.box-col{width:50%}#wpbdp-main-box .box-row.cols-3>.box-col{width:33.33%}#wpbdp-main-box .box-row .box-col.search-fields{width:82%}#wpbdp-main-box .box-row .box-col.submit-btn{width:18%}#wpbdp-main-box .box-row .box-col input[type="text"]{width:100%}#wpbdp-main-box .advanced-search-link{display:block;font-size:11px;text-align:right}#wpbdp-main-box .wpbdp-main-links{text-align:right}#wpbdp-main-box .wpbdp-main-links .button{margin:0 5px}#wpbdp-main-box .wpbdp-main-links .button:first-child{margin-left:0}#wpbdp-main-box .wpbdp-main-links .button:last-child{margin-right:0}@media screen and (max-width:500px){#wpbdp-main-box .box-col.search-fields,#wpbdp-main-box .box-col.submit-btn{margin-bottom:5px;float:none;width:100% !important;display:block;padding-left:0;padding-right:0}}.single-wpbdp_listing header.entry-header,.wpbdp-view-show_category header.entry-header,.wpbdp-view-show_tag header.entry-header,.wpbdp-view-search header.entry-header,.wpbdp-view-submit_listing 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}
|
1 |
+
.wpbdp-cf:before,.wpbdp-cf:after,.cf:before,.cf:after{content:" ";display:table}.wpbdp-cf:after,.cf:after{clear:both}.wpbdp-cf,.cf{*zoom:1}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"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{float:none;margin:auto}.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}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 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-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.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 #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:20px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important;vertical-align:top !important}@media screen and (max-width:500px){.social-field.facebook .fb-like>span{width:100% !important}}.wpbdp-listing-contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing-contact-form .send-message-button{margin-left:-10px}.wpbdp-listing-contact-form h3{margin-left:-10px}.wpbdp-listing-contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar:before,.wpbdp-bar:after{content:" ";display:table;clear:both}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button,.wpbdp-bar .wpbdp-main-links #wpbdp-bar-show-directory-button{margin-right:5px}.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;text-align:right}.wpbdp-listings-sort-options .current{font-weight:bold}.wpbdp-page-main_page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-submit-page .wpbdp-form-field-type-textarea textarea{min-width:90%;min-height:50px}.wpbdp-submit-page .wpbdp-form-field-association-content textarea{min-height:80px}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.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{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}.wpbdp-checkout input[type="image"]{padding:0;border:0;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:red}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.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}.wpbdp-show-on-mobile{display:none}@media screen and (max-width:500px){.wpbdp-show-on-mobile{display:inline !important}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar .wpbdp-main-links{display:block;float:none;text-align:center}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-submit-listing-button{margin-bottom:5px;display:inline-block}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button{display:inline-block;float:left;margin-right:20px}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.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-listings-sort-options{font-size:90%}.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:85%}.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%}.wpbdp-listings-sort-options.wpbdp-show-on-mobile{margin-bottom:10px}}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{float:none !important}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{text-align:center}.wpbdp-form-row label{display:block}.wpbdp-form-row.wpbdp-form-textfield input[type="text"]{width:400px}.wpbdp-main-box{background:#f7f7f7;margin:10px 0 20px 0;border-radius:4px;box-sizing:border-box;padding:10px;width:100%}.wpbdp-main-box .box-row{margin-bottom:4px}.wpbdp-main-box .box-col{margin-bottom:4px;width:100%}.wpbdp-main-box .box-col input{width:100%}.wpbdp-main-box .submit-btn input[type="submit"]{margin-top:0}.wpbdp-main-box .advanced-search-link{border:0;box-shadow:none;display:block;font-size:11px;text-align:right;text-decoration:none}.wpbdp-main-box .wpbdp-main-links{text-align:right}.wpbdp-main-box .wpbdp-main-links .button{margin:0 5px}.wpbdp-main-box .wpbdp-main-links .button:first-child{margin-left:0}.wpbdp-main-box .wpbdp-main-links .button:last-child{margin-right:0}.wpbdp-main-box-tiny .wpbdp-main-links .button{padding-top:10px;padding-bottom:10px;width:100%;margin:0 0 4px}.wpbdp-main-box-small .wpbdp-main-links .button,.wpbdp-main-box-medium .wpbdp-main-links .button{padding-top:8px;padding-bottom:8px}.wpbdp-main-box-medium .box-col,.wpbdp-main-box-large .box-col{float:left}.wpbdp-main-box-medium .search-fields>.cols-1 .box-col,.wpbdp-main-box-large .search-fields>.cols-1 .box-col{width:100%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col,.wpbdp-main-box-large .search-fields>.cols-2 .box-col{width:50%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-2 .box-col:first-child{padding-right:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-2 .box-col:last-child,.wpbdp-main-box-large .search-fields>.cols-2 .box-col:last-child{padding-left:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col,.wpbdp-main-box-large .search-fields>.cols-3 .box-col{padding-left:5px;width:50%}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-3 .box-col:first-child{padding-right:5px}.wpbdp-main-box-medium .search-fields>.cols-3 .box-col:first-child,.wpbdp-main-box-large .search-fields>.cols-3 .box-col:first-child{padding:0;width:100%}.wpbdp-main-box-large .box-row{margin-bottom:0}.wpbdp-main-box-large .search-fields{padding-right:5px;width:78%}.wpbdp-main-box-large .submit-btn{padding-left:5px;width:22%}.wpbdp-main-box-large .wpbdp-main-links .button{margin:0 3px}.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}
|
core/fieldtypes/class-fieldtypes-checkbox.php
CHANGED
@@ -43,7 +43,7 @@ class WPBDP_FieldTypes_Checkbox extends WPBDP_Form_Field_Type {
|
|
43 |
$css_classes[] = 'wpbdp-inner-checkbox-' . $i;
|
44 |
$css_classes[] = 'wpbdp-inner-checkbox-' . WPBDP_Form_Field_Type::normalize_name( $label );
|
45 |
|
46 |
-
$html .= sprintf( '<div class="wpbdmcheckboxclass %s"><input type="checkbox" class="%s" name="%s" value="%s" %s/> %s</div>',
|
47 |
implode( ' ', $css_classes ),
|
48 |
$field->is_required() ? 'required' : '',
|
49 |
'listingfields[' . $field->get_id() . '][]',
|
@@ -75,7 +75,7 @@ class WPBDP_FieldTypes_Checkbox extends WPBDP_Form_Field_Type {
|
|
75 |
$content .= '<textarea name="field[x_options]" cols="50" rows="2">';
|
76 |
|
77 |
if ( $field && $field->data( 'options' ) )
|
78 |
-
$content .= implode(
|
79 |
$content .= '</textarea>';
|
80 |
|
81 |
$settings['options'][] = $content;
|
@@ -177,13 +177,13 @@ class WPBDP_FieldTypes_Checkbox extends WPBDP_Form_Field_Type {
|
|
177 |
$search_res = array();
|
178 |
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
179 |
|
180 |
-
|
181 |
-
|
|
|
|
|
182 |
|
183 |
$pattern = '(' . implode('|', $query) . '){1}([tab]{0,1})';
|
184 |
-
$search_res['where'] = $wpdb->prepare( "{$alias}.
|
185 |
-
"_wpbdp[fields][" . $field->get_id() . "]",
|
186 |
-
$pattern );
|
187 |
|
188 |
return $search_res;
|
189 |
}
|
43 |
$css_classes[] = 'wpbdp-inner-checkbox-' . $i;
|
44 |
$css_classes[] = 'wpbdp-inner-checkbox-' . WPBDP_Form_Field_Type::normalize_name( $label );
|
45 |
|
46 |
+
$html .= sprintf( '<div class="wpbdmcheckboxclass %s"><label><input type="checkbox" class="%s" name="%s" value="%s" %s/> %s</label></div>',
|
47 |
implode( ' ', $css_classes ),
|
48 |
$field->is_required() ? 'required' : '',
|
49 |
'listingfields[' . $field->get_id() . '][]',
|
75 |
$content .= '<textarea name="field[x_options]" cols="50" rows="2">';
|
76 |
|
77 |
if ( $field && $field->data( 'options' ) )
|
78 |
+
$content .= implode( ",\n", $field->data( 'options' ) );
|
79 |
$content .= '</textarea>';
|
80 |
|
81 |
$settings['options'][] = $content;
|
177 |
$search_res = array();
|
178 |
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
179 |
|
180 |
+
$search_res['join'] = $wpdb->prepare(
|
181 |
+
" LEFT JOIN {$wpdb->postmeta} AS {$alias} ON ( {$wpdb->posts}.ID = {$alias}.post_id AND {$alias}.meta_key = %s )",
|
182 |
+
"_wpbdp[fields][" . $field->get_id() . "]"
|
183 |
+
);
|
184 |
|
185 |
$pattern = '(' . implode('|', $query) . '){1}([tab]{0,1})';
|
186 |
+
$search_res['where'] = $wpdb->prepare( "{$alias}.meta_value REGEXP %s", $pattern );
|
|
|
|
|
187 |
|
188 |
return $search_res;
|
189 |
}
|
core/fieldtypes/class-fieldtypes-date.php
CHANGED
@@ -187,12 +187,12 @@ class WPBDP_FieldTypes_Date extends WPBDP_FieldTypes_TextField {
|
|
187 |
$search_res = array();
|
188 |
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
189 |
|
190 |
-
|
191 |
-
|
|
|
|
|
192 |
|
193 |
-
$search_res['where'] = $wpdb->prepare( "
|
194 |
-
'_wpbdp[fields][' . $field->get_id() . ']',
|
195 |
-
$query );
|
196 |
|
197 |
return $search_res;
|
198 |
}
|
187 |
$search_res = array();
|
188 |
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
189 |
|
190 |
+
$search_res['join'] = $wpdb->prepare(
|
191 |
+
" LEFT JOIN {$wpdb->postmeta} AS {$alias} ON ( {$wpdb->posts}.ID = {$alias}.post_id AND {$alias}.meta_key = %s )",
|
192 |
+
'_wpbdp[fields][' . $field->get_id() . ']'
|
193 |
+
);
|
194 |
|
195 |
+
$search_res['where'] = $wpdb->prepare( "{$alias}.meta_value = %s", $query );
|
|
|
|
|
196 |
|
197 |
return $search_res;
|
198 |
}
|
core/fieldtypes/class-fieldtypes-multiselect.php
CHANGED
@@ -19,5 +19,29 @@ class WPBDP_FieldTypes_MultiSelect extends WPBDP_FieldTypes_Select {
|
|
19 |
return array( 'category', 'tags', 'meta' );
|
20 |
}
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
|
19 |
return array( 'category', 'tags', 'meta' );
|
20 |
}
|
21 |
|
22 |
+
protected function get_field_settings( $field=null, $association=null ) {
|
23 |
+
$settings = parent::get_field_settings( $field, $association );
|
24 |
+
|
25 |
+
$label = _x( 'Number of options visible without scrolling', 'form-fields-admin', 'WPBDM' );
|
26 |
+
$description = _x( 'The height of the list will be adjusted to accommodate the specified number of options.', 'form-fields-admin', 'WPBDM' );
|
27 |
+
|
28 |
+
$content = '<span class="description">' . $description . '</span><br />';
|
29 |
+
$content.= '<input name="field[x_size]" type="number" value="%d">';
|
30 |
+
|
31 |
+
$settings['size'] = array( $label, sprintf( $content, $field ? $field->data( 'size', 4 ) : 4 ) );
|
32 |
+
|
33 |
+
return $settings;
|
34 |
+
}
|
35 |
+
|
36 |
+
public function process_field_settings( &$field ) {
|
37 |
+
if ( ! array_key_exists( 'x_size', $_POST['field'] ) ) {
|
38 |
+
return;
|
39 |
+
}
|
40 |
+
|
41 |
+
$size = absint( sanitize_text_field( $_POST['field']['x_size'] ) );
|
42 |
+
$field->set_data( 'size', $size );
|
43 |
+
|
44 |
+
return parent::process_field_settings( $field );
|
45 |
+
}
|
46 |
}
|
47 |
|
core/fieldtypes/class-fieldtypes-radiobutton.php
CHANGED
@@ -43,7 +43,7 @@ class WPBDP_FieldTypes_RadioButton extends WPBDP_Form_Field_Type {
|
|
43 |
$css_classes[] = 'wpbdp-inner-radio-' . $i;
|
44 |
$css_classes[] = 'wpbdp-inner-radio-' . WPBDP_Form_Field_Type::normalize_name( $label );
|
45 |
|
46 |
-
$html .= sprintf( '<span class="%s" style="padding-right: 10px;"><input type="radio" name="%s" class="%s" value="%s" %s />%s</span>',
|
47 |
implode( ' ', $css_classes ),
|
48 |
'listingfields[' . $field->get_id() . ']',
|
49 |
$field->is_required() ? 'inradio required' : 'inradio',
|
@@ -71,7 +71,7 @@ class WPBDP_FieldTypes_RadioButton extends WPBDP_Form_Field_Type {
|
|
71 |
$content .= '<textarea name="field[x_options]" cols="50" rows="2">';
|
72 |
|
73 |
if ( $field && $field->data( 'options' ) )
|
74 |
-
$content .= implode(
|
75 |
$content .= '</textarea>';
|
76 |
|
77 |
return self::render_admin_settings( array( array( $label, $content ) ) );
|
43 |
$css_classes[] = 'wpbdp-inner-radio-' . $i;
|
44 |
$css_classes[] = 'wpbdp-inner-radio-' . WPBDP_Form_Field_Type::normalize_name( $label );
|
45 |
|
46 |
+
$html .= sprintf( '<span class="%s" style="padding-right: 10px;"><label><input type="radio" name="%s" class="%s" value="%s" %s />%s</label></span>',
|
47 |
implode( ' ', $css_classes ),
|
48 |
'listingfields[' . $field->get_id() . ']',
|
49 |
$field->is_required() ? 'inradio required' : 'inradio',
|
71 |
$content .= '<textarea name="field[x_options]" cols="50" rows="2">';
|
72 |
|
73 |
if ( $field && $field->data( 'options' ) )
|
74 |
+
$content .= implode( ",\n", $field->data( 'options' ) );
|
75 |
$content .= '</textarea>';
|
76 |
|
77 |
return self::render_admin_settings( array( array( $label, $content ) ) );
|
core/fieldtypes/class-fieldtypes-select.php
CHANGED
@@ -91,12 +91,14 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
|
|
91 |
}
|
92 |
}
|
93 |
} else {
|
94 |
-
$html .= sprintf( '<select id="%s" name="%s" %s class="%s %s">',
|
95 |
'wpbdp-field-' . $field->get_id(),
|
96 |
'listingfields[' . $field->get_id() . ']' . ( $this->is_multiple() ? '[]' : '' ),
|
97 |
$this->is_multiple() ? 'multiple="multiple"' : '',
|
98 |
'inselect',
|
99 |
-
$field->is_required() ? 'required' : ''
|
|
|
|
|
100 |
|
101 |
if ( $field->data( 'empty_on_search' ) && $context == 'search' ) {
|
102 |
$html .= sprintf( '<option value="-1">%s</option>',
|
@@ -133,6 +135,10 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
|
|
133 |
if ( $association != 'meta' && $association != 'tags' )
|
134 |
return '';
|
135 |
|
|
|
|
|
|
|
|
|
136 |
$settings = array();
|
137 |
|
138 |
$settings['options'][] = _x( 'Field Options (for select lists, radio buttons and checkboxes).', 'form-fields admin', 'WPBDM' ) . '<span class="description">(required)</span>';
|
@@ -141,7 +147,7 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
|
|
141 |
$content .= '<textarea name="field[x_options]" cols="50" rows="2">';
|
142 |
|
143 |
if ( $field && $field->data( 'options' ) )
|
144 |
-
$content .= implode(
|
145 |
$content .= '</textarea>';
|
146 |
|
147 |
$settings['options'][] = $content;
|
@@ -153,7 +159,7 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
|
|
153 |
|
154 |
$settings['empty_on_search'][] = $content;
|
155 |
|
156 |
-
return
|
157 |
}
|
158 |
|
159 |
public function process_field_settings( &$field ) {
|
@@ -257,13 +263,13 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
|
|
257 |
$search_res = array();
|
258 |
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
259 |
|
260 |
-
|
261 |
-
|
|
|
|
|
262 |
|
263 |
$pattern = '(' . implode('|', $query) . '){1}([tab]{0,1})';
|
264 |
-
$search_res['where'] = $wpdb->prepare( "{$alias}.
|
265 |
-
"_wpbdp[fields][" . $field->get_id() . "]",
|
266 |
-
$pattern );
|
267 |
|
268 |
return $search_res;
|
269 |
}
|
91 |
}
|
92 |
}
|
93 |
} else {
|
94 |
+
$html .= sprintf( '<select id="%s" name="%s" %s class="%s %s" %s>',
|
95 |
'wpbdp-field-' . $field->get_id(),
|
96 |
'listingfields[' . $field->get_id() . ']' . ( $this->is_multiple() ? '[]' : '' ),
|
97 |
$this->is_multiple() ? 'multiple="multiple"' : '',
|
98 |
'inselect',
|
99 |
+
$field->is_required() ? 'required' : '',
|
100 |
+
$this->is_multiple() ? sprintf( 'size="%d"', $field->data( 'size', 4 ) ) : ''
|
101 |
+
);
|
102 |
|
103 |
if ( $field->data( 'empty_on_search' ) && $context == 'search' ) {
|
104 |
$html .= sprintf( '<option value="-1">%s</option>',
|
135 |
if ( $association != 'meta' && $association != 'tags' )
|
136 |
return '';
|
137 |
|
138 |
+
return self::render_admin_settings( $this->get_field_settings( $field, $association ) );
|
139 |
+
}
|
140 |
+
|
141 |
+
protected function get_field_settings( $field=null, $association=null ) {
|
142 |
$settings = array();
|
143 |
|
144 |
$settings['options'][] = _x( 'Field Options (for select lists, radio buttons and checkboxes).', 'form-fields admin', 'WPBDM' ) . '<span class="description">(required)</span>';
|
147 |
$content .= '<textarea name="field[x_options]" cols="50" rows="2">';
|
148 |
|
149 |
if ( $field && $field->data( 'options' ) )
|
150 |
+
$content .= implode( ",\n", $field->data( 'options' ) );
|
151 |
$content .= '</textarea>';
|
152 |
|
153 |
$settings['options'][] = $content;
|
159 |
|
160 |
$settings['empty_on_search'][] = $content;
|
161 |
|
162 |
+
return $settings;
|
163 |
}
|
164 |
|
165 |
public function process_field_settings( &$field ) {
|
263 |
$search_res = array();
|
264 |
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
265 |
|
266 |
+
$search_res['join'] = $wpdb->prepare(
|
267 |
+
" LEFT JOIN {$wpdb->postmeta} AS {$alias} ON ( {$wpdb->posts}.ID = {$alias}.post_id AND {$alias}.meta_key = %s )",
|
268 |
+
"_wpbdp[fields][" . $field->get_id() . "]"
|
269 |
+
);
|
270 |
|
271 |
$pattern = '(' . implode('|', $query) . '){1}([tab]{0,1})';
|
272 |
+
$search_res['where'] = $wpdb->prepare( "{$alias}.meta_value REGEXP %s", $pattern );
|
|
|
|
|
273 |
|
274 |
return $search_res;
|
275 |
}
|
core/gateways-authorize-net.php
CHANGED
@@ -163,9 +163,11 @@ class WPBDP_Authorize_Net_Gateway extends WPBDP_Payment_Gateway {
|
|
163 |
$s->billToCountry = $data['address_country'];
|
164 |
$s->billToZip = $data['zipcode'];
|
165 |
|
|
|
|
|
|
|
166 |
$s->orderInvoiceNumber = $payment->get_id();
|
167 |
$s->orderDescription = $payment->get_short_description();
|
168 |
-
// TODO: maybe add zip, phone, email, cust_id.
|
169 |
|
170 |
$response = $arb->createSubscription( $s );
|
171 |
|
@@ -241,15 +243,16 @@ class WPBDP_Authorize_Net_Gateway extends WPBDP_Payment_Gateway {
|
|
241 |
|
242 |
// Billing addres info.
|
243 |
$aim->setFields(array(
|
|
|
244 |
'first_name' => $data['first_name'],
|
245 |
'last_name' => $data['last_name'],
|
246 |
'address' => $data['address_line1'],
|
247 |
'city' => $data['address_city'],
|
248 |
'state' => $data['address_state'],
|
249 |
'country' => $data['address_country'],
|
250 |
-
'zip' => $data['zipcode']
|
|
|
251 |
));
|
252 |
-
// TODO: maybe add zip, phone, email and cust_id
|
253 |
|
254 |
$aim->setCustomField( 'payment_id', $invoice );
|
255 |
$aim->setCustomField( 'listing_id', $listing_id );
|
163 |
$s->billToCountry = $data['address_country'];
|
164 |
$s->billToZip = $data['zipcode'];
|
165 |
|
166 |
+
$s->customerEmail = $data['email'];
|
167 |
+
$s->customerPhoneNumber = $data['phone'];
|
168 |
+
|
169 |
$s->orderInvoiceNumber = $payment->get_id();
|
170 |
$s->orderDescription = $payment->get_short_description();
|
|
|
171 |
|
172 |
$response = $arb->createSubscription( $s );
|
173 |
|
243 |
|
244 |
// Billing addres info.
|
245 |
$aim->setFields(array(
|
246 |
+
'email' => $data['email'],
|
247 |
'first_name' => $data['first_name'],
|
248 |
'last_name' => $data['last_name'],
|
249 |
'address' => $data['address_line1'],
|
250 |
'city' => $data['address_city'],
|
251 |
'state' => $data['address_state'],
|
252 |
'country' => $data['address_country'],
|
253 |
+
'zip' => $data['zipcode'],
|
254 |
+
'phone' => $data['phone']
|
255 |
));
|
|
|
256 |
|
257 |
$aim->setCustomField( 'payment_id', $invoice );
|
258 |
$aim->setCustomField( 'listing_id', $listing_id );
|
core/helpers/class-listing-display-helper.php
CHANGED
@@ -41,8 +41,7 @@ class WPBDP_Listing_Display_Helper {
|
|
41 |
// TODO: is this really used? can it be changed to something else?
|
42 |
// 'listing_fields' => apply_filters('wpbdp_single_listing_fields', $listing_fields, $post->ID), This is
|
43 |
// complete HTML
|
44 |
-
return wpbdp_x_render( 'single',
|
45 |
-
array( 'content' => wpbdp_x_render( 'single', $vars ) ) ) );
|
46 |
}
|
47 |
|
48 |
private static function basic_vars( $listing_id ) {
|
41 |
// TODO: is this really used? can it be changed to something else?
|
42 |
// 'listing_fields' => apply_filters('wpbdp_single_listing_fields', $listing_fields, $post->ID), This is
|
43 |
// complete HTML
|
44 |
+
return wpbdp_x_render( 'single', $vars );
|
|
|
45 |
}
|
46 |
|
47 |
private static function basic_vars( $listing_id ) {
|
core/helpers/class-listing-search.php
CHANGED
@@ -9,7 +9,7 @@ class WPBDP__Listing_Search {
|
|
9 |
public $aliases = array();
|
10 |
private $query_template = '';
|
11 |
private $query = '';
|
12 |
-
private $results =
|
13 |
|
14 |
|
15 |
public function __construct( $tree ) {
|
@@ -37,10 +37,9 @@ class WPBDP__Listing_Search {
|
|
37 |
}
|
38 |
|
39 |
public function get_results() {
|
40 |
-
if ( $this->results )
|
41 |
-
|
42 |
-
|
43 |
-
$this->execute();
|
44 |
|
45 |
return $this->results;
|
46 |
}
|
9 |
public $aliases = array();
|
10 |
private $query_template = '';
|
11 |
private $query = '';
|
12 |
+
private $results = null;
|
13 |
|
14 |
|
15 |
public function __construct( $tree ) {
|
37 |
}
|
38 |
|
39 |
public function get_results() {
|
40 |
+
if ( ! is_array( $this->results ) ) {
|
41 |
+
$this->execute();
|
42 |
+
}
|
|
|
43 |
|
44 |
return $this->results;
|
45 |
}
|
core/installer.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
class WPBDP_Installer {
|
4 |
|
5 |
-
const DB_VERSION = '
|
6 |
|
7 |
private $installed_version = null;
|
8 |
|
@@ -184,7 +184,7 @@ class WPBDP_Installer {
|
|
184 |
if ( get_option( 'wpbdp-manual-upgrade-pending', false ) )
|
185 |
return;
|
186 |
|
187 |
-
$upgrade_routines = array( '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '3.1', '3.2', '3.4', '3.5', '3.6', '3.7', '3.9', '4.0', '5', '6', '7', '8', '11', '12', '13' );
|
188 |
|
189 |
foreach ( $upgrade_routines as $v ) {
|
190 |
if ( version_compare( $this->installed_version, $v ) < 0 ) {
|
@@ -929,6 +929,94 @@ class WPBDP_Installer {
|
|
929 |
$f->save();
|
930 |
}
|
931 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
932 |
}
|
933 |
|
934 |
|
2 |
|
3 |
class WPBDP_Installer {
|
4 |
|
5 |
+
const DB_VERSION = '15';
|
6 |
|
7 |
private $installed_version = null;
|
8 |
|
184 |
if ( get_option( 'wpbdp-manual-upgrade-pending', false ) )
|
185 |
return;
|
186 |
|
187 |
+
$upgrade_routines = array( '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '3.1', '3.2', '3.4', '3.5', '3.6', '3.7', '3.9', '4.0', '5', '6', '7', '8', '11', '12', '13', '15' );
|
188 |
|
189 |
foreach ( $upgrade_routines as $v ) {
|
190 |
if ( version_compare( $this->installed_version, $v ) < 0 ) {
|
929 |
$f->save();
|
930 |
}
|
931 |
|
932 |
+
public function upgrade_to_15() {
|
933 |
+
$form_fields = $this->get_list_form_fields();
|
934 |
+
|
935 |
+
foreach ( $form_fields as $form_field ) {
|
936 |
+
$options = array();
|
937 |
+
|
938 |
+
foreach ( $form_field->data( 'options' ) as $key => $value ) {
|
939 |
+
$options[ trim( $key ) ] = trim( $value );
|
940 |
+
}
|
941 |
+
|
942 |
+
$form_field->set_data( 'options', $options );
|
943 |
+
$form_field->save();
|
944 |
+
}
|
945 |
+
|
946 |
+
if ( $this->count_listing_meta_with_new_line_characters( array_keys( $form_fields ) ) ) {
|
947 |
+
$this->request_manual_upgrade( 'upgrade_to_15_fix_form_fields_data' );
|
948 |
+
}
|
949 |
+
}
|
950 |
+
|
951 |
+
private function get_list_form_fields() {
|
952 |
+
$form_fields = array();
|
953 |
+
$find_params = array(
|
954 |
+
'association' => 'meta',
|
955 |
+
'field_type' => array( 'select', 'checkbox', 'radio', 'multiselect' )
|
956 |
+
);
|
957 |
+
|
958 |
+
foreach ( wpbdp_get_form_fields( $find_params ) as $form_field ) {
|
959 |
+
$form_fields[ "_wpbdp[fields][" . $form_field->get_id() . "]" ] = $form_field;
|
960 |
+
}
|
961 |
+
|
962 |
+
return $form_fields;
|
963 |
+
}
|
964 |
+
|
965 |
+
private function count_listing_meta_with_new_line_characters( $meta_keys ) {
|
966 |
+
global $wpdb;
|
967 |
+
|
968 |
+
if ( ! $meta_keys ) {
|
969 |
+
return 0;
|
970 |
+
}
|
971 |
+
|
972 |
+
$sql = "SELECT COUNT(meta_id) FROM {$wpdb->postmeta} WHERE meta_key IN (%s) AND meta_value LIKE '%%\n%%'";
|
973 |
+
$sql = sprintf( $sql, "'" . implode( "', '", $meta_keys ) . "'" );
|
974 |
+
|
975 |
+
return intval( $wpdb->get_var( $sql ) );
|
976 |
+
}
|
977 |
+
|
978 |
+
public function upgrade_to_15_fix_form_fields_data() {
|
979 |
+
$form_fields = $this->get_list_form_fields();
|
980 |
+
$meta_entries = $this->get_listing_meta_with_new_line_characters( array_keys( $form_fields ) );
|
981 |
+
|
982 |
+
foreach ( $meta_entries as $meta_entry ) {
|
983 |
+
$meta_value = maybe_unserialize( $meta_entry->meta_value );
|
984 |
+
|
985 |
+
if ( is_string( $meta_value ) ) {
|
986 |
+
$meta_value = explode( "\t", $meta_entry->meta_value );
|
987 |
+
}
|
988 |
+
|
989 |
+
$meta_value = array_map( 'trim', (array) $meta_value );
|
990 |
+
|
991 |
+
$form_fields[ $meta_entry->meta_key ]->store_value( $meta_entry->post_id, $meta_value );
|
992 |
+
}
|
993 |
+
|
994 |
+
$records_left = $this->count_listing_meta_with_new_line_characters( array_keys( $form_fields ) );
|
995 |
+
|
996 |
+
$message = _x( 'Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d records left)', 'installer', 'WPBDM' );
|
997 |
+
|
998 |
+
return array(
|
999 |
+
'ok' => true,
|
1000 |
+
'done' => $records_left == 0,
|
1001 |
+
'status' => sprintf( $message, $records_left ),
|
1002 |
+
);
|
1003 |
+
}
|
1004 |
+
|
1005 |
+
private function get_listing_meta_with_new_line_characters( $meta_keys ) {
|
1006 |
+
global $wpdb;
|
1007 |
+
|
1008 |
+
if ( ! $meta_keys ) {
|
1009 |
+
return array();
|
1010 |
+
}
|
1011 |
+
|
1012 |
+
$sql = "SELECT post_id, meta_id, meta_key, meta_value FROM {$wpdb->postmeta} ";
|
1013 |
+
$sql.= "WHERE meta_key IN (%s) AND meta_value LIKE '%%\n%%' ";
|
1014 |
+
$sql.= "LIMIT 50";
|
1015 |
+
|
1016 |
+
$sql = sprintf( $sql, "'" . implode( "', '", $meta_keys ) . "'" );
|
1017 |
+
|
1018 |
+
return $wpdb->get_results( $sql );
|
1019 |
+
}
|
1020 |
}
|
1021 |
|
1022 |
|
core/templates-ui.php
CHANGED
@@ -38,10 +38,18 @@ function _wpbdp_padded_count( &$term, $return = false ) {
|
|
38 |
|
39 |
if ( ! $count && ! $found ) {
|
40 |
$tree_ids = array_merge( array( $term->term_id ), get_term_children( $term->term_id, WPBDP_CATEGORY_TAX ) );
|
41 |
-
$tt_ids = $wpdb->get_col( $wpdb->prepare( "SELECT term_taxonomy_id FROM {$wpdb->term_taxonomy} WHERE term_id IN (" . implode( ',', $tree_ids ) . ") AND taxonomy = %s", WPBDP_CATEGORY_TAX ) );
|
42 |
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
|
47 |
if ( $return )
|
38 |
|
39 |
if ( ! $count && ! $found ) {
|
40 |
$tree_ids = array_merge( array( $term->term_id ), get_term_children( $term->term_id, WPBDP_CATEGORY_TAX ) );
|
|
|
41 |
|
42 |
+
if ( $tree_ids ) {
|
43 |
+
$tt_ids = $wpdb->get_col( $wpdb->prepare( "SELECT term_taxonomy_id FROM {$wpdb->term_taxonomy} WHERE term_id IN (" . implode( ',', $tree_ids ) . ") AND taxonomy = %s", WPBDP_CATEGORY_TAX ) );
|
44 |
+
|
45 |
+
$query = $wpdb->prepare( "SELECT COUNT(DISTINCT r.object_id) FROM {$wpdb->term_relationships} r INNER JOIN {$wpdb->posts} p ON p.ID = r.object_id WHERE p.post_status = %s and p.post_type = %s AND term_taxonomy_id IN (" . implode( ',', $tt_ids ) . ")", 'publish', WPBDP_POST_TYPE );
|
46 |
+
|
47 |
+
$count = intval( $wpdb->get_var( $query ) );
|
48 |
+
} else {
|
49 |
+
$count = 0;
|
50 |
+
}
|
51 |
+
|
52 |
+
$count = apply_filters( '_wpbdp_padded_count', $count, $term );
|
53 |
}
|
54 |
|
55 |
if ( $return )
|
core/themes.php
CHANGED
@@ -133,7 +133,7 @@ class WPBDP_Themes {
|
|
133 |
'value' => $field->html_value( $listing_id ),
|
134 |
'raw' => $field->value( $listing_id ) );
|
135 |
|
136 |
-
return $this->
|
137 |
}
|
138 |
|
139 |
function _normalize_asset_name( $a ) {
|
@@ -464,27 +464,26 @@ class WPBDP_Themes {
|
|
464 |
return true;
|
465 |
}
|
466 |
|
467 |
-
function render( $
|
468 |
-
$
|
469 |
-
|
470 |
-
|
471 |
-
if ( file_exists( $id_or_file ) )
|
472 |
-
$path = $id_or_file;
|
473 |
-
else
|
474 |
-
$path = $this->locate_template( $id_or_file );
|
475 |
|
|
|
476 |
if ( ! $path )
|
477 |
-
throw new Exception( 'Invalid template
|
|
|
|
|
|
|
478 |
|
479 |
if ( ! $in_wrapper ) {
|
480 |
// Setup default and hook-added variables.
|
481 |
-
$this->_configure_template_vars( $
|
482 |
|
483 |
// Process variables using templates or callbacks.
|
484 |
$this->_process_template_vars( $vars );
|
485 |
|
486 |
// Configure blocks depending on theme overrides.
|
487 |
-
$this->_configure_template_blocks( $vars );
|
488 |
}
|
489 |
|
490 |
array_push( $this->cache['template_vars_stack'], $vars );
|
@@ -495,15 +494,24 @@ class WPBDP_Themes {
|
|
495 |
$html = ob_get_contents();
|
496 |
ob_end_clean();
|
497 |
|
498 |
-
|
499 |
-
|
|
|
500 |
|
501 |
$is_part = isset( $vars['_part'] ) && $vars['_part'];
|
502 |
|
503 |
// Add before/after to the HTML directly.
|
504 |
-
|
505 |
-
|
506 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
|
508 |
if ( ! $in_wrapper && $vars['_wrapper_path'] ) {
|
509 |
$in_wrapper = true;
|
@@ -513,7 +521,7 @@ class WPBDP_Themes {
|
|
513 |
'_class' => $vars['_class'],
|
514 |
'_child' => (object) $vars,
|
515 |
'content' => $html );
|
516 |
-
$wrapper_html = $this->
|
517 |
|
518 |
$in_wrapper = false;
|
519 |
$html = $wrapper_html;
|
@@ -521,11 +529,39 @@ class WPBDP_Themes {
|
|
521 |
|
522 |
array_pop( $this->cache['template_vars_stack'] );
|
523 |
|
524 |
-
$html = apply_filters( 'wpbdp_x_render', $html, $
|
525 |
return $html;
|
526 |
}
|
527 |
|
528 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
$output = '';
|
530 |
|
531 |
$last = count( $this->cache['template_vars_stack'] ) - 1;
|
@@ -539,16 +575,16 @@ class WPBDP_Themes {
|
|
539 |
$vars['_wrapper'] = '';
|
540 |
$vars['_wrapper_path'] = '';
|
541 |
|
542 |
-
$output = $this->render( $
|
543 |
return $output;
|
544 |
}
|
545 |
|
546 |
-
function _configure_template_vars ( $
|
547 |
$defaults = array(
|
548 |
'_id' => str_replace( array( '.tpl.php', ' ' ),
|
549 |
array( '', '-' ),
|
550 |
-
$
|
551 |
-
'_template' => $
|
552 |
'_path' => $path,
|
553 |
'_wrapper' => '',
|
554 |
'_wrapper_path' => '',
|
@@ -575,8 +611,8 @@ class WPBDP_Themes {
|
|
575 |
$vars['_parent'] = $last['_template'];
|
576 |
}
|
577 |
|
578 |
-
$vars = apply_filters( 'wpbdp_template_variables', $vars, $
|
579 |
-
$vars = apply_filters( 'wpbdp_template_variables__' . $
|
580 |
|
581 |
// Add info about current theme.
|
582 |
$theme = $this->get_active_theme_data();
|
@@ -608,7 +644,7 @@ class WPBDP_Themes {
|
|
608 |
}
|
609 |
}
|
610 |
|
611 |
-
function _configure_template_blocks( &$vars ) {
|
612 |
$template_id = $vars['_template'];
|
613 |
|
614 |
$blocks = array( 'after' => array(), 'before' => array() );
|
@@ -624,7 +660,12 @@ class WPBDP_Themes {
|
|
624 |
|
625 |
// Current theme info.
|
626 |
$current_theme = $this->get_active_theme_data();
|
627 |
-
|
|
|
|
|
|
|
|
|
|
|
628 |
|
629 |
foreach ( $vars as $var => $content ) {
|
630 |
if ( '#' != $var[0] )
|
@@ -735,22 +776,22 @@ class WPBDP_Themes {
|
|
735 |
|
736 |
}
|
737 |
|
738 |
-
function wpbdp_x_render( $
|
739 |
global $wpbdp;
|
740 |
|
741 |
if ( $wrapper && ! isset( $vars['_wrapper'] ) )
|
742 |
$vars['_wrapper'] = $wrapper;
|
743 |
|
744 |
-
return $wpbdp->themes->render( $
|
745 |
}
|
746 |
|
747 |
-
function wpbdp_x_render_page( $
|
748 |
-
return wpbdp_x_render( $
|
749 |
}
|
750 |
|
751 |
-
function wpbdp_x_part( $
|
752 |
global $wpbdp;
|
753 |
-
echo $wpbdp->themes->render_part( $
|
754 |
}
|
755 |
|
756 |
function wpbdp_add_template_dir( $dir_or_file ) {
|
133 |
'value' => $field->html_value( $listing_id ),
|
134 |
'raw' => $field->value( $listing_id ) );
|
135 |
|
136 |
+
return $this->render_template_file( $path, $path, $vars );
|
137 |
}
|
138 |
|
139 |
function _normalize_asset_name( $a ) {
|
464 |
return true;
|
465 |
}
|
466 |
|
467 |
+
public function render( $template_id, $vars = array() ) {
|
468 |
+
return $this->render_template_file( $template_id, $this->locate_template( $template_id ), $vars );
|
469 |
+
}
|
|
|
|
|
|
|
|
|
|
|
470 |
|
471 |
+
private function render_template_file( $template_id, $path, $vars = array() ) {
|
472 |
if ( ! $path )
|
473 |
+
throw new Exception( 'Invalid template path for template: "' . $template_id . '"' );
|
474 |
+
|
475 |
+
$in_wrapper = isset( $vars['_child'] );
|
476 |
+
$template_meta = $this->get_template_meta( $path );
|
477 |
|
478 |
if ( ! $in_wrapper ) {
|
479 |
// Setup default and hook-added variables.
|
480 |
+
$this->_configure_template_vars( $template_id, $path, $vars );
|
481 |
|
482 |
// Process variables using templates or callbacks.
|
483 |
$this->_process_template_vars( $vars );
|
484 |
|
485 |
// Configure blocks depending on theme overrides.
|
486 |
+
$this->_configure_template_blocks( $vars, $template_meta['variables'] );
|
487 |
}
|
488 |
|
489 |
array_push( $this->cache['template_vars_stack'], $vars );
|
494 |
$html = ob_get_contents();
|
495 |
ob_end_clean();
|
496 |
|
497 |
+
if ( isset( $__template__['blocks'] ) && is_array( $__template__['blocks'] ) ) {
|
498 |
+
$template_meta['blocks'] = array_merge( $__template__['blocks'], $template_meta['blocks'] );
|
499 |
+
}
|
500 |
|
501 |
$is_part = isset( $vars['_part'] ) && $vars['_part'];
|
502 |
|
503 |
// Add before/after to the HTML directly.
|
504 |
+
if ( $is_part || in_array( 'before', $template_meta['blocks'], true ) ) {
|
505 |
+
// leave html unmodified
|
506 |
+
} else if ( ! empty( $vars['blocks']['before'] ) ) {
|
507 |
+
$html = $vars['blocks']['before'] . $html;
|
508 |
+
}
|
509 |
+
|
510 |
+
if ( $is_part || in_array( 'after', $template_meta['blocks'], true ) ) {
|
511 |
+
// leave html unmodified
|
512 |
+
} else if ( ! empty( $vars['blocks']['after'] ) ) {
|
513 |
+
$html = $html . $vars['blocks']['after'];
|
514 |
+
}
|
515 |
|
516 |
if ( ! $in_wrapper && $vars['_wrapper_path'] ) {
|
517 |
$in_wrapper = true;
|
521 |
'_class' => $vars['_class'],
|
522 |
'_child' => (object) $vars,
|
523 |
'content' => $html );
|
524 |
+
$wrapper_html = $this->render_template_file( $vars['_wrapper_path'], $vars['_wrapper_path'], $vars2 );
|
525 |
|
526 |
$in_wrapper = false;
|
527 |
$html = $wrapper_html;
|
529 |
|
530 |
array_pop( $this->cache['template_vars_stack'] );
|
531 |
|
532 |
+
$html = apply_filters( 'wpbdp_x_render', $html, $template_id, $vars );
|
533 |
return $html;
|
534 |
}
|
535 |
|
536 |
+
/**
|
537 |
+
* Searches for block and block variable customization metadata in the first 8kiB
|
538 |
+
* of a template file (core or custom).
|
539 |
+
*
|
540 |
+
* @link http://docs.businessdirectoryplugin.com/themes/customization.html#block-and-block-variable-customization
|
541 |
+
*
|
542 |
+
* @since next-release
|
543 |
+
*
|
544 |
+
* @param string $template_path Path to the template file.
|
545 |
+
*
|
546 |
+
* @return Array of meta information in `variable => array()` format.
|
547 |
+
*/
|
548 |
+
private function get_template_meta( $template_path ) {
|
549 |
+
$default_headers = array( 'blocks' => 'Template Blocks', 'variables' => 'Template Variables' );
|
550 |
+
$template_meta = get_file_data( $template_path, $default_headers, 'business_directory_template' );
|
551 |
+
|
552 |
+
foreach ( array_keys( $default_headers ) as $variable ) {
|
553 |
+
if ( ! $template_meta[ $variable ] ) {
|
554 |
+
$template_meta[ $variable ] = array();
|
555 |
+
continue;
|
556 |
+
}
|
557 |
+
|
558 |
+
$template_meta[ $variable ] = array_map( 'trim', explode( ',', $template_meta[ $variable ] ) );
|
559 |
+
}
|
560 |
+
|
561 |
+
return $template_meta;
|
562 |
+
}
|
563 |
+
|
564 |
+
function render_part( $template_id, $additional_vars = array() ) {
|
565 |
$output = '';
|
566 |
|
567 |
$last = count( $this->cache['template_vars_stack'] ) - 1;
|
575 |
$vars['_wrapper'] = '';
|
576 |
$vars['_wrapper_path'] = '';
|
577 |
|
578 |
+
$output = $this->render( $template_id, array_merge( $additional_vars, $vars ) );
|
579 |
return $output;
|
580 |
}
|
581 |
|
582 |
+
function _configure_template_vars ( $template_id, $path, &$vars ) {
|
583 |
$defaults = array(
|
584 |
'_id' => str_replace( array( '.tpl.php', ' ' ),
|
585 |
array( '', '-' ),
|
586 |
+
$template_id ),
|
587 |
+
'_template' => $template_id,
|
588 |
'_path' => $path,
|
589 |
'_wrapper' => '',
|
590 |
'_wrapper_path' => '',
|
611 |
$vars['_parent'] = $last['_template'];
|
612 |
}
|
613 |
|
614 |
+
$vars = apply_filters( 'wpbdp_template_variables', $vars, $template_id );
|
615 |
+
$vars = apply_filters( 'wpbdp_template_variables__' . $template_id, $vars, $path );
|
616 |
|
617 |
// Add info about current theme.
|
618 |
$theme = $this->get_active_theme_data();
|
644 |
}
|
645 |
}
|
646 |
|
647 |
+
private function _configure_template_blocks( &$vars, $template_variables = array() ) {
|
648 |
$template_id = $vars['_template'];
|
649 |
|
650 |
$blocks = array( 'after' => array(), 'before' => array() );
|
660 |
|
661 |
// Current theme info.
|
662 |
$current_theme = $this->get_active_theme_data();
|
663 |
+
|
664 |
+
if ( isset( $current_theme->template_variables->{$template_id} ) ) {
|
665 |
+
$theme_vars = array_merge( $current_theme->template_variables->{$template_id}, $template_variables );
|
666 |
+
} else {
|
667 |
+
$theme_vars = $template_variables;
|
668 |
+
}
|
669 |
|
670 |
foreach ( $vars as $var => $content ) {
|
671 |
if ( '#' != $var[0] )
|
776 |
|
777 |
}
|
778 |
|
779 |
+
function wpbdp_x_render( $template_id, $vars = array(), $wrapper = '' ) {
|
780 |
global $wpbdp;
|
781 |
|
782 |
if ( $wrapper && ! isset( $vars['_wrapper'] ) )
|
783 |
$vars['_wrapper'] = $wrapper;
|
784 |
|
785 |
+
return $wpbdp->themes->render( $template_id, $vars );
|
786 |
}
|
787 |
|
788 |
+
function wpbdp_x_render_page( $template_id, $vars = array() ) {
|
789 |
+
return wpbdp_x_render( $template_id, $vars, 'page' );
|
790 |
}
|
791 |
|
792 |
+
function wpbdp_x_part( $template_id, $vars = array() ) {
|
793 |
global $wpbdp;
|
794 |
+
echo $wpbdp->themes->render_part( $template_id, $vars );
|
795 |
}
|
796 |
|
797 |
function wpbdp_add_template_dir( $dir_or_file ) {
|
core/utils.php
CHANGED
@@ -709,3 +709,107 @@ function wpbdp_enqueue_jquery_ui_style() {
|
|
709 |
'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $ui_version . '/themes/redmond/jquery-ui.css'
|
710 |
);
|
711 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
709 |
'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $ui_version . '/themes/redmond/jquery-ui.css'
|
710 |
);
|
711 |
}
|
712 |
+
|
713 |
+
function wpbdp_buckwalter_arabic_transliteration( $content ) {
|
714 |
+
$arabic_characters = array(
|
715 |
+
'ء',
|
716 |
+
'آ',
|
717 |
+
'أ',
|
718 |
+
'ؤ',
|
719 |
+
'إ',
|
720 |
+
'ئ',
|
721 |
+
'ا',
|
722 |
+
'ب',
|
723 |
+
'ة',
|
724 |
+
'ت',
|
725 |
+
'ث',
|
726 |
+
'ج',
|
727 |
+
'ح',
|
728 |
+
'خ',
|
729 |
+
'د',
|
730 |
+
'ذ',
|
731 |
+
'ر',
|
732 |
+
'ز',
|
733 |
+
'س',
|
734 |
+
'ش',
|
735 |
+
'ص',
|
736 |
+
'ض',
|
737 |
+
'ط',
|
738 |
+
'ظ',
|
739 |
+
'ع',
|
740 |
+
'غ',
|
741 |
+
'ـ',
|
742 |
+
'ف',
|
743 |
+
'ق',
|
744 |
+
'ك',
|
745 |
+
'ل',
|
746 |
+
'م',
|
747 |
+
'ن',
|
748 |
+
'ه',
|
749 |
+
'و',
|
750 |
+
'ى',
|
751 |
+
'ي',
|
752 |
+
'ً',
|
753 |
+
'ٌ',
|
754 |
+
'ٍ',
|
755 |
+
'َ',
|
756 |
+
'ُ',
|
757 |
+
'ِ',
|
758 |
+
'ّ',
|
759 |
+
'ْ',
|
760 |
+
'ٰ',
|
761 |
+
'ٱ',
|
762 |
+
);
|
763 |
+
|
764 |
+
$english_characters = array(
|
765 |
+
'\'',
|
766 |
+
'|',
|
767 |
+
'O', // replaced '>' with 'O' as suggested in http://www.qamus.org/transliteration.htm
|
768 |
+
'W', // replaced '&' with 'W'
|
769 |
+
'I', // replaced '<' with 'I'
|
770 |
+
'}',
|
771 |
+
'A',
|
772 |
+
'b',
|
773 |
+
'p',
|
774 |
+
't',
|
775 |
+
'v',
|
776 |
+
'j',
|
777 |
+
'H',
|
778 |
+
'x',
|
779 |
+
'd',
|
780 |
+
'*',
|
781 |
+
'r',
|
782 |
+
'z',
|
783 |
+
's',
|
784 |
+
'$',
|
785 |
+
'S',
|
786 |
+
'D',
|
787 |
+
'T',
|
788 |
+
'Z',
|
789 |
+
'E',
|
790 |
+
'g',
|
791 |
+
'_',
|
792 |
+
'f',
|
793 |
+
'q',
|
794 |
+
'k',
|
795 |
+
'l',
|
796 |
+
'm',
|
797 |
+
'n',
|
798 |
+
'h',
|
799 |
+
'w',
|
800 |
+
'Y',
|
801 |
+
'y',
|
802 |
+
'F',
|
803 |
+
'N',
|
804 |
+
'K',
|
805 |
+
'a',
|
806 |
+
'u',
|
807 |
+
'i',
|
808 |
+
'~',
|
809 |
+
'o',
|
810 |
+
'`',
|
811 |
+
'{',
|
812 |
+
);
|
813 |
+
|
814 |
+
return str_replace( $arabic_characters, $english_characters, $content );
|
815 |
+
}
|
core/view-submit-listing.php
CHANGED
@@ -55,7 +55,7 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
|
|
55 |
$html = '';
|
56 |
$html .= sprintf( '<div id="wpbdp-submit-page" class="wpbdp-submit-page businessdirectory-submit businessdirectory wpbdp-page step-%s">',
|
57 |
str_replace( '_', '-', $this->state->step ) );
|
58 |
-
$html .= sprintf( '<h2>%s</h2>', $this->state->editing ? _x( 'Edit Your Listing', '
|
59 |
|
60 |
if ( current_user_can( 'administrator' ) ) {
|
61 |
if ( $errors = wpbdp_payments_api()->check_config() ) {
|
55 |
$html = '';
|
56 |
$html .= sprintf( '<div id="wpbdp-submit-page" class="wpbdp-submit-page businessdirectory-submit businessdirectory wpbdp-page step-%s">',
|
57 |
str_replace( '_', '-', $this->state->step ) );
|
58 |
+
$html .= sprintf( '<h2>%s</h2>', $this->state->editing ? _x( 'Edit Your Listing', 'views', 'WPBDM' ) : _x( 'Submit A Listing', 'views', 'WPBDM' ) );
|
59 |
|
60 |
if ( current_user_can( 'administrator' ) ) {
|
61 |
if ( $errors = wpbdp_payments_api()->check_config() ) {
|
core/views/listing_contact.php
CHANGED
@@ -170,7 +170,7 @@ class WPBDP__Views__Listing_Contact extends WPBDP_NView {
|
|
170 |
$html = '';
|
171 |
|
172 |
if( $email->send() ) {
|
173 |
-
$html .= wpbdp_render_msg( 'Your message has been sent.', 'contact-message', 'WPBDM' );
|
174 |
$this->update_contacts( $listing_id );
|
175 |
|
176 |
// Notify admin.
|
170 |
$html = '';
|
171 |
|
172 |
if( $email->send() ) {
|
173 |
+
$html .= wpbdp_render_msg( _x( 'Your message has been sent.', 'contact-message', 'WPBDM' ) );
|
174 |
$this->update_contacts( $listing_id );
|
175 |
|
176 |
// Notify admin.
|
core/views/show_category.php
CHANGED
@@ -8,16 +8,21 @@ class WPBDP__Views__Show_Category extends WPBDP_NView {
|
|
8 |
wpbdp_push_query( $wp_query );
|
9 |
|
10 |
$term = get_queried_object();
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
21 |
wpbdp_pop_query();
|
22 |
|
23 |
// if ( is_array( $category_id ) ) {
|
8 |
wpbdp_push_query( $wp_query );
|
9 |
|
10 |
$term = get_queried_object();
|
11 |
+
|
12 |
+
if ( is_object( $term ) ) {
|
13 |
+
$term->is_tag = false;
|
14 |
+
|
15 |
+
$html = $this->_render( 'category',
|
16 |
+
array( 'title' => $term->name,
|
17 |
+
'category' => $term,
|
18 |
+
'query' => $wp_query,
|
19 |
+
'in_shortcode' => false,
|
20 |
+
'is_tag' => false ),
|
21 |
+
'page' );
|
22 |
+
} else {
|
23 |
+
$html = '';
|
24 |
+
}
|
25 |
+
|
26 |
wpbdp_pop_query();
|
27 |
|
28 |
// if ( is_array( $category_id ) ) {
|
languages/WPBDM-ar.mo
CHANGED
Binary file
|
languages/WPBDM-ar.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.8\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
-
"POT-Creation-Date: 2016-11-
|
8 |
"PO-Revision-Date: 2016-09-19 12:17-0500\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -615,23 +615,23 @@ msgid "Could not move \"%s\" to a temporary directory."
|
|
615 |
msgstr "لا يمكن نقل \"%s\" إلى مجلد مؤقت."
|
616 |
|
617 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
618 |
-
#: core/licensing.php:
|
619 |
msgctxt "licensing"
|
620 |
msgid "Could not contact licensing server"
|
621 |
msgstr "لا يمكن الاتصال بخادم الترخيص"
|
622 |
|
623 |
-
#: admin/class-themes-admin.php:372 core/licensing.php:
|
624 |
-
#: core/licensing.php:
|
625 |
msgctxt "licensing"
|
626 |
msgid "License key is invalid"
|
627 |
msgstr "مفتاح الترخيص غير صالح"
|
628 |
|
629 |
-
#: admin/class-themes-admin.php:377 core/licensing.php:
|
630 |
msgctxt "licensing"
|
631 |
msgid "Could not activate license: %s."
|
632 |
msgstr "لا يمكن تفعيل الترخيص: %s."
|
633 |
|
634 |
-
#: admin/class-themes-admin.php:390 core/licensing.php:
|
635 |
msgctxt "licensing"
|
636 |
msgid "License activated"
|
637 |
msgstr "تم تفعيل ترخيص"
|
@@ -641,7 +641,7 @@ msgctxt "licensing"
|
|
641 |
msgid "Invalid response from server"
|
642 |
msgstr "جواب غير صالح من الخادم"
|
643 |
|
644 |
-
#: admin/class-themes-admin.php:450 core/licensing.php:
|
645 |
msgctxt "licensing"
|
646 |
msgid "License deactivated"
|
647 |
msgstr "تم إلغاء تفعيل الترخيص"
|
@@ -1198,7 +1198,7 @@ msgctxt "debug-info"
|
|
1198 |
msgid "Environment"
|
1199 |
msgstr "البيئة"
|
1200 |
|
1201 |
-
#: admin/page-debug.php:
|
1202 |
msgctxt "debug info"
|
1203 |
msgid "Test SSL setup..."
|
1204 |
msgstr "اختبار إعداد SSL..."
|
@@ -2244,7 +2244,7 @@ msgctxt "form-fields admin"
|
|
2244 |
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
2245 |
msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
|
2246 |
|
2247 |
-
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.
|
2248 |
#. Plugin Name of the plugin/theme
|
2249 |
#: admin/templates/header.tpl.php:4
|
2250 |
msgid "Business Directory Plugin"
|
@@ -3019,8 +3019,9 @@ msgctxt "rss feed"
|
|
3019 |
msgid "%s Feed"
|
3020 |
msgstr "تغذية %s"
|
3021 |
|
3022 |
-
#: business-directory-plugin.php:1117
|
3023 |
-
|
|
|
3024 |
msgid "Submit A Listing"
|
3025 |
msgstr "إضافة إعلان"
|
3026 |
|
@@ -3139,37 +3140,43 @@ msgctxt "form-fields-api"
|
|
3139 |
msgid "An error occurred while trying to delete this field."
|
3140 |
msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
|
3141 |
|
3142 |
-
#: core/class-gateway.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3143 |
msgctxt "billing info"
|
3144 |
msgid "First name is required."
|
3145 |
msgstr "الإسم الشخصي مطلوب."
|
3146 |
|
3147 |
-
#: core/class-gateway.php:
|
3148 |
msgctxt "billing info"
|
3149 |
msgid "Last name is required."
|
3150 |
msgstr "الإسم العائلي مطلوب."
|
3151 |
|
3152 |
-
#: core/class-gateway.php:
|
3153 |
msgctxt "billing info"
|
3154 |
msgid "Credit card number is required."
|
3155 |
msgstr "مطلوب رقم بطاقة الائتمان."
|
3156 |
|
3157 |
-
#: core/class-gateway.php:
|
3158 |
msgctxt "billing info"
|
3159 |
msgid "Credit card expiration date is invalid."
|
3160 |
msgstr "تاريخ انتهاء صلاحية بطاقة الائتمان غير صحيح."
|
3161 |
|
3162 |
-
#: core/class-gateway.php:
|
3163 |
msgctxt "billing info"
|
3164 |
msgid "Credit card CVC number is required."
|
3165 |
msgstr "مطلوب رقم CVC بطاقة الائتمان."
|
3166 |
|
3167 |
-
#: core/class-gateway.php:
|
3168 |
msgctxt "billing info"
|
3169 |
msgid "Country is required."
|
3170 |
msgstr "البلد المطلوب."
|
3171 |
|
3172 |
-
#: core/class-gateway.php:
|
3173 |
msgctxt "billing info"
|
3174 |
msgid "Address is required."
|
3175 |
msgstr "العنوان مطلوب."
|
@@ -4897,14 +4904,14 @@ msgstr "خانة الاختيار"
|
|
4897 |
|
4898 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4899 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4900 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4901 |
msgctxt "form-fields admin"
|
4902 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4903 |
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
4904 |
|
4905 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4906 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4907 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4908 |
msgctxt "form-fields admin"
|
4909 |
msgid "Field list of options is required."
|
4910 |
msgstr "قائمة خيارات الحقل مطلوبة."
|
@@ -4968,6 +4975,18 @@ msgctxt "form-fields api"
|
|
4968 |
msgid "Multiselect List"
|
4969 |
msgstr "قائمة تحديد متعددة"
|
4970 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4971 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
4972 |
msgctxt "form fields"
|
4973 |
msgid "Phone Number"
|
@@ -4989,12 +5008,12 @@ msgid "-- Choose Terms --"
|
|
4989 |
msgstr "- اختيار البنود -"
|
4990 |
|
4991 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
4992 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4993 |
msgctxt "form-fields-api category-select"
|
4994 |
msgid "-- Choose One --"
|
4995 |
msgstr "-- اختار واحد --"
|
4996 |
|
4997 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4998 |
msgctxt "form-fields admin"
|
4999 |
msgid "Allow empty selection on search?"
|
5000 |
msgstr "السماح بالتحديد الفارغ في البحث؟"
|
@@ -5319,7 +5338,7 @@ msgctxt "authorize-net"
|
|
5319 |
msgid "Setup fee"
|
5320 |
msgstr "رسم التنصيب"
|
5321 |
|
5322 |
-
#: core/gateways-authorize-net.php:
|
5323 |
msgctxt "authorize-net"
|
5324 |
msgid "Could not process payment."
|
5325 |
msgstr "تعذر معالجة الدفع."
|
@@ -5513,37 +5532,37 @@ msgstr ""
|
|
5513 |
msgid "Please <contact-link>contact customer support</a>."
|
5514 |
msgstr ""
|
5515 |
|
5516 |
-
#: core/licensing.php:
|
5517 |
msgctxt "settings"
|
5518 |
msgid "Licenses"
|
5519 |
msgstr "التراخيص"
|
5520 |
|
5521 |
-
#: core/licensing.php:
|
5522 |
msgctxt "settings"
|
5523 |
msgid "Premium Modules"
|
5524 |
msgstr "وحدات ممتازة (Premium)"
|
5525 |
|
5526 |
-
#: core/licensing.php:
|
5527 |
msgctxt "licensing"
|
5528 |
msgid "Invalid module ID"
|
5529 |
msgstr "معرف وحدة غير صالح"
|
5530 |
|
5531 |
-
#: core/licensing.php:
|
5532 |
msgctxt "licensing"
|
5533 |
msgid "No license key provided"
|
5534 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
5535 |
|
5536 |
-
#: core/licensing.php:
|
5537 |
msgctxt "licensing"
|
5538 |
msgid "Deactivation failed"
|
5539 |
msgstr "فشل التعطيل"
|
5540 |
|
5541 |
-
#: core/licensing.php:
|
5542 |
msgctxt "licensing"
|
5543 |
msgid "Business Directory - License Key Required"
|
5544 |
msgstr "دليل الأعمال - مفتاح الترخيص مطلوب"
|
5545 |
|
5546 |
-
#: core/licensing.php:
|
5547 |
msgctxt "licensing"
|
5548 |
msgid ""
|
5549 |
"The following premium modules will not work until a valid license key is "
|
@@ -5554,12 +5573,12 @@ msgstr ""
|
|
5554 |
"المفعول. إذهب إلى <a>إدارة الخيارات - التراخيص</a> لإدخال معلومات الترخيص "
|
5555 |
"الخاص بك."
|
5556 |
|
5557 |
-
#: core/licensing.php:
|
5558 |
msgctxt "licensing"
|
5559 |
msgid "Business Directory - License Key Expired"
|
5560 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
5561 |
|
5562 |
-
#: core/licensing.php:
|
5563 |
msgctxt "licensing"
|
5564 |
msgid ""
|
5565 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
@@ -5569,17 +5588,17 @@ msgstr ""
|
|
5569 |
"انتهت صلاحية مفتاح الترخيص <span class=\"module-name\">%s %s</span>. سوف "
|
5570 |
"يستمر عمل الوحدة ولكن لن تتلقى أي مزيد من التحديثات حتى يتم تجديد الترخيص."
|
5571 |
|
5572 |
-
#: core/licensing.php:
|
5573 |
msgctxt "licensing"
|
5574 |
msgid "Remind me later"
|
5575 |
msgstr "ذكرني لاحقا"
|
5576 |
|
5577 |
-
#: core/licensing.php:
|
5578 |
msgctxt "licensing"
|
5579 |
msgid "Renew License Key"
|
5580 |
msgstr "تجديد مفتاح الترخيص"
|
5581 |
|
5582 |
-
#: core/licensing.php:
|
5583 |
msgctxt "licensing"
|
5584 |
msgid "Could not deactivate license: %s."
|
5585 |
msgstr "لا يمكن إلغاء الترخيص: %s."
|
@@ -5786,64 +5805,64 @@ msgctxt "search"
|
|
5786 |
msgid "Search Results"
|
5787 |
msgstr "نتائج البحث"
|
5788 |
|
5789 |
-
#: core/templates-ui.php:
|
5790 |
msgctxt "templates"
|
5791 |
msgid "No listing categories found."
|
5792 |
msgstr "لم يتم العثور على تصنيفات الإعلانات."
|
5793 |
|
5794 |
-
#: core/templates-ui.php:
|
5795 |
msgid "Directory"
|
5796 |
msgstr "الدليل"
|
5797 |
|
5798 |
-
#: core/templates-ui.php:
|
5799 |
msgid "View All Listings"
|
5800 |
msgstr "مشاهدة جميع الإعلانات"
|
5801 |
|
5802 |
-
#: core/templates-ui.php:
|
5803 |
msgid "Create A Listing"
|
5804 |
msgstr "إنشاء إعلان"
|
5805 |
|
5806 |
-
#: core/templates-ui.php:
|
5807 |
msgctxt "templates"
|
5808 |
msgid "Search Listings"
|
5809 |
msgstr "البحث في الإعلانات"
|
5810 |
|
5811 |
-
#: core/templates-ui.php:
|
5812 |
msgctxt "templates"
|
5813 |
msgid "Advanced Search"
|
5814 |
msgstr "بحث متقدم"
|
5815 |
|
5816 |
-
#: core/templates-ui.php:
|
5817 |
msgctxt "templates sort"
|
5818 |
msgid "Sort By:"
|
5819 |
msgstr "ترتيب حسب:"
|
5820 |
|
5821 |
-
#: core/templates-ui.php:
|
5822 |
msgctxt "sort"
|
5823 |
msgid "Reset"
|
5824 |
msgstr "إعادة تعيين"
|
5825 |
|
5826 |
-
#: core/templates-ui.php:
|
5827 |
msgctxt "sort"
|
5828 |
msgid "(Reset)"
|
5829 |
msgstr "(إعادة تعيين)"
|
5830 |
|
5831 |
-
#: core/themes.php:
|
5832 |
msgctxt "themes"
|
5833 |
msgid "ZIP file is not a valid BD theme file."
|
5834 |
msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
|
5835 |
|
5836 |
-
#: core/themes.php:
|
5837 |
msgctxt "themes"
|
5838 |
msgid "Could not create themes directory."
|
5839 |
msgstr "تعذر إنشاء مجلد القوالب."
|
5840 |
|
5841 |
-
#: core/themes.php:
|
5842 |
msgctxt "themes"
|
5843 |
msgid "Could not remove previous theme directory \"%s\"."
|
5844 |
msgstr "تعذر إزالة مجلد القالب السابق \"%s\"."
|
5845 |
|
5846 |
-
#: core/themes.php:
|
5847 |
msgctxt "themes"
|
5848 |
msgid "Could not move new theme into theme directory."
|
5849 |
msgstr "تعذر نقل القالب الجديد الى مجلد القالب."
|
@@ -5939,15 +5958,11 @@ msgid "You are not authorized to edit this listing."
|
|
5939 |
msgstr "غير مسموح لك بتحرير هذا الإعلان."
|
5940 |
|
5941 |
#: core/view-submit-listing.php:58
|
5942 |
-
|
|
|
5943 |
msgid "Edit Your Listing"
|
5944 |
msgstr "تحرير إعلانك"
|
5945 |
|
5946 |
-
#: core/view-submit-listing.php:58
|
5947 |
-
msgctxt "templates"
|
5948 |
-
msgid "Submit A Listing"
|
5949 |
-
msgstr "إضافة إعلان"
|
5950 |
-
|
5951 |
#: core/view-submit-listing.php:65
|
5952 |
msgctxt "templates"
|
5953 |
msgid ""
|
@@ -6096,6 +6111,12 @@ msgstr "إرسال رسالة إلى مالك الإعلان"
|
|
6096 |
msgid "l F j, Y \\a\\t g:i a"
|
6097 |
msgstr "l F j, Y \\a\\t g:i a"
|
6098 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6099 |
#: core/views/listing_contact.php:178
|
6100 |
msgctxt "contact-message"
|
6101 |
msgid "%s (admin: %s)"
|
@@ -6263,11 +6284,6 @@ msgctxt "views"
|
|
6263 |
msgid "Find A Listing"
|
6264 |
msgstr "العثور على إعلان"
|
6265 |
|
6266 |
-
#: core/views/submit_listing.php:10
|
6267 |
-
msgctxt "views"
|
6268 |
-
msgid "Submit A Listing"
|
6269 |
-
msgstr "إضافة إعلان"
|
6270 |
-
|
6271 |
#: core/views/submit_listing.php:16
|
6272 |
msgctxt "templates"
|
6273 |
msgid ""
|
@@ -6392,142 +6408,154 @@ msgctxt "widgets"
|
|
6392 |
msgid "Search"
|
6393 |
msgstr "بحث"
|
6394 |
|
6395 |
-
#: templates/billing-information-form.tpl.php:
|
6396 |
msgctxt "months"
|
6397 |
msgid "Jan"
|
6398 |
msgstr "يناير"
|
6399 |
|
6400 |
-
#: templates/billing-information-form.tpl.php:
|
6401 |
msgctxt "months"
|
6402 |
msgid "Feb"
|
6403 |
msgstr "فبراير"
|
6404 |
|
6405 |
-
#: templates/billing-information-form.tpl.php:
|
6406 |
msgctxt "months"
|
6407 |
msgid "Mar"
|
6408 |
msgstr "مارس"
|
6409 |
|
6410 |
-
#: templates/billing-information-form.tpl.php:
|
6411 |
msgctxt "months"
|
6412 |
msgid "Apr"
|
6413 |
msgstr "أبريل"
|
6414 |
|
6415 |
-
#: templates/billing-information-form.tpl.php:
|
6416 |
msgctxt "months"
|
6417 |
msgid "May"
|
6418 |
msgstr "مايو"
|
6419 |
|
6420 |
-
#: templates/billing-information-form.tpl.php:
|
6421 |
msgctxt "months"
|
6422 |
msgid "Jun"
|
6423 |
msgstr "يونيو"
|
6424 |
|
6425 |
-
#: templates/billing-information-form.tpl.php:
|
6426 |
msgctxt "months"
|
6427 |
msgid "Jul"
|
6428 |
msgstr "يوليو"
|
6429 |
|
6430 |
-
#: templates/billing-information-form.tpl.php:
|
6431 |
msgctxt "months"
|
6432 |
msgid "Aug"
|
6433 |
msgstr "أغسطس"
|
6434 |
|
6435 |
-
#: templates/billing-information-form.tpl.php:
|
6436 |
msgctxt "months"
|
6437 |
msgid "Sep"
|
6438 |
msgstr "سبتمبر"
|
6439 |
|
6440 |
-
#: templates/billing-information-form.tpl.php:
|
6441 |
msgctxt "months"
|
6442 |
msgid "Oct"
|
6443 |
msgstr "أكتوبر"
|
6444 |
|
6445 |
-
#: templates/billing-information-form.tpl.php:
|
6446 |
msgctxt "months"
|
6447 |
msgid "Nov"
|
6448 |
msgstr "نوفمبر"
|
6449 |
|
6450 |
-
#: templates/billing-information-form.tpl.php:
|
6451 |
msgctxt "months"
|
6452 |
msgid "Dec"
|
6453 |
msgstr "ديسمبر"
|
6454 |
|
6455 |
-
#: templates/billing-information-form.tpl.php:
|
6456 |
msgctxt "checkout form"
|
6457 |
msgid "Credit Card Details"
|
6458 |
msgstr "تفاصيل بطاقة الائتمان"
|
6459 |
|
6460 |
-
#: templates/billing-information-form.tpl.php:
|
6461 |
msgctxt "checkout form"
|
6462 |
msgid "Please enter your credit card details below."
|
6463 |
msgstr "يرجى إدخال تفاصيل بطاقة الائتمان الخاصة بك أدناه."
|
6464 |
|
6465 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6466 |
msgctxt "checkout form"
|
6467 |
msgid "First Name:"
|
6468 |
msgstr "الإسم الشخصي:"
|
6469 |
|
6470 |
-
#: templates/billing-information-form.tpl.php:
|
6471 |
msgctxt "checkout form"
|
6472 |
msgid "Last Name:"
|
6473 |
msgstr "الإسم العائلي:"
|
6474 |
|
6475 |
-
#: templates/billing-information-form.tpl.php:
|
6476 |
msgctxt "checkout form"
|
6477 |
msgid "Card Number:"
|
6478 |
msgstr "رقم بطاقة الائتمان:"
|
6479 |
|
6480 |
-
#: templates/billing-information-form.tpl.php:
|
6481 |
msgctxt "checkout form"
|
6482 |
msgid "Expiration Date (MM/YYYY):"
|
6483 |
msgstr "تاريخ انتهاء الصلاحية (MM/YYYY):"
|
6484 |
|
6485 |
-
#: templates/billing-information-form.tpl.php:
|
6486 |
msgctxt "checkout form"
|
6487 |
msgid "CVC:"
|
6488 |
msgstr "الرمز السري:"
|
6489 |
|
6490 |
-
#: templates/billing-information-form.tpl.php:
|
6491 |
msgctxt "checkout form"
|
6492 |
msgid "Billing Address"
|
6493 |
msgstr "عنوان صاحب الفاتورة"
|
6494 |
|
6495 |
-
#: templates/billing-information-form.tpl.php:
|
6496 |
msgctxt "checkout form"
|
6497 |
msgid "Country:"
|
6498 |
msgstr "الدولة:"
|
6499 |
|
6500 |
-
#: templates/billing-information-form.tpl.php:
|
6501 |
msgctxt "checkout form"
|
6502 |
msgid "State:"
|
6503 |
msgstr "الولاية:"
|
6504 |
|
6505 |
-
#: templates/billing-information-form.tpl.php:
|
6506 |
msgctxt "checkout form"
|
6507 |
msgid "City:"
|
6508 |
msgstr "المدينة:"
|
6509 |
|
6510 |
-
#: templates/billing-information-form.tpl.php:
|
6511 |
msgctxt "checkout form"
|
6512 |
msgid "Address Line 1:"
|
6513 |
msgstr "خانة العنوان 1:"
|
6514 |
|
6515 |
-
#: templates/billing-information-form.tpl.php:
|
6516 |
msgctxt "checkout form"
|
6517 |
msgid "Address Line 2:"
|
6518 |
msgstr "خانة العنوان 2:"
|
6519 |
|
6520 |
-
#: templates/billing-information-form.tpl.php:
|
6521 |
msgctxt "checkout form"
|
6522 |
msgid "ZIP Code:"
|
6523 |
msgstr "الرمز البريدي:"
|
6524 |
|
6525 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6526 |
msgctxt "WPBDM"
|
6527 |
msgid "Cancel"
|
6528 |
msgstr "إلغاء"
|
6529 |
|
6530 |
-
#: templates/billing-information-form.tpl.php:
|
6531 |
msgctxt "WPBDM"
|
6532 |
msgid "Submit Payment"
|
6533 |
msgstr "إضافة الدفع"
|
@@ -7125,31 +7153,6 @@ msgctxt "themes/default"
|
|
7125 |
msgid "Address"
|
7126 |
msgstr "العنوان"
|
7127 |
|
7128 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:178
|
7129 |
-
msgid ""
|
7130 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
7131 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
7132 |
-
msgstr ""
|
7133 |
-
"هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" href="
|
7134 |
-
"\"%2$s\">مشاهدة تفاصيل النسخة %3$s</a>."
|
7135 |
-
|
7136 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:185
|
7137 |
-
msgid ""
|
7138 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
7139 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
7140 |
-
"\">update now</a>."
|
7141 |
-
msgstr ""
|
7142 |
-
"هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" href="
|
7143 |
-
"\"%2$s\">مشاهدة تفاصيل النسخة %3$s</a> أو <a href=\"%4$s\">التحديث الآن</a>."
|
7144 |
-
|
7145 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
7146 |
-
msgid "You do not have permission to install plugin updates"
|
7147 |
-
msgstr "لا تملك الصلاحية لتثبيت تحديثات الإضافة"
|
7148 |
-
|
7149 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
7150 |
-
msgid "Error"
|
7151 |
-
msgstr "خطأ"
|
7152 |
-
|
7153 |
#. Plugin URI of the plugin/theme
|
7154 |
msgid "http://www.businessdirectoryplugin.com"
|
7155 |
msgstr "http://www.businessdirectoryplugin.com"
|
@@ -7170,6 +7173,36 @@ msgstr "D. Rodenbaugh"
|
|
7170 |
msgid "http://businessdirectoryplugin.com"
|
7171 |
msgstr "http://businessdirectoryplugin.com"
|
7172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7173 |
#~ msgctxt "admin csv-import"
|
7174 |
#~ msgid "Last imported line from file:"
|
7175 |
#~ msgstr "السطر الأخير الذي تم استيراده من الملف:"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.8\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
+
"POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
|
8 |
"PO-Revision-Date: 2016-09-19 12:17-0500\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
615 |
msgstr "لا يمكن نقل \"%s\" إلى مجلد مؤقت."
|
616 |
|
617 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
618 |
+
#: core/licensing.php:126 core/licensing.php:158
|
619 |
msgctxt "licensing"
|
620 |
msgid "Could not contact licensing server"
|
621 |
msgstr "لا يمكن الاتصال بخادم الترخيص"
|
622 |
|
623 |
+
#: admin/class-themes-admin.php:372 core/licensing.php:131
|
624 |
+
#: core/licensing.php:165
|
625 |
msgctxt "licensing"
|
626 |
msgid "License key is invalid"
|
627 |
msgstr "مفتاح الترخيص غير صالح"
|
628 |
|
629 |
+
#: admin/class-themes-admin.php:377 core/licensing.php:320
|
630 |
msgctxt "licensing"
|
631 |
msgid "Could not activate license: %s."
|
632 |
msgstr "لا يمكن تفعيل الترخيص: %s."
|
633 |
|
634 |
+
#: admin/class-themes-admin.php:390 core/licensing.php:322
|
635 |
msgctxt "licensing"
|
636 |
msgid "License activated"
|
637 |
msgstr "تم تفعيل ترخيص"
|
641 |
msgid "Invalid response from server"
|
642 |
msgstr "جواب غير صالح من الخادم"
|
643 |
|
644 |
+
#: admin/class-themes-admin.php:450 core/licensing.php:340
|
645 |
msgctxt "licensing"
|
646 |
msgid "License deactivated"
|
647 |
msgstr "تم إلغاء تفعيل الترخيص"
|
1198 |
msgid "Environment"
|
1199 |
msgstr "البيئة"
|
1200 |
|
1201 |
+
#: admin/page-debug.php:72
|
1202 |
msgctxt "debug info"
|
1203 |
msgid "Test SSL setup..."
|
1204 |
msgstr "اختبار إعداد SSL..."
|
2244 |
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
2245 |
msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
|
2246 |
|
2247 |
+
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
|
2248 |
#. Plugin Name of the plugin/theme
|
2249 |
#: admin/templates/header.tpl.php:4
|
2250 |
msgid "Business Directory Plugin"
|
3019 |
msgid "%s Feed"
|
3020 |
msgstr "تغذية %s"
|
3021 |
|
3022 |
+
#: business-directory-plugin.php:1117 core/view-submit-listing.php:58
|
3023 |
+
#: core/views/submit_listing.php:10
|
3024 |
+
msgctxt "views"
|
3025 |
msgid "Submit A Listing"
|
3026 |
msgstr "إضافة إعلان"
|
3027 |
|
3140 |
msgid "An error occurred while trying to delete this field."
|
3141 |
msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
|
3142 |
|
3143 |
+
#: core/class-gateway.php:133
|
3144 |
+
#, fuzzy
|
3145 |
+
msgctxt "billing info"
|
3146 |
+
msgid "Please enter a valid e-mail address."
|
3147 |
+
msgstr "المرجو إدخال بريد إلكتروني صحيح."
|
3148 |
+
|
3149 |
+
#: core/class-gateway.php:136
|
3150 |
msgctxt "billing info"
|
3151 |
msgid "First name is required."
|
3152 |
msgstr "الإسم الشخصي مطلوب."
|
3153 |
|
3154 |
+
#: core/class-gateway.php:139
|
3155 |
msgctxt "billing info"
|
3156 |
msgid "Last name is required."
|
3157 |
msgstr "الإسم العائلي مطلوب."
|
3158 |
|
3159 |
+
#: core/class-gateway.php:142
|
3160 |
msgctxt "billing info"
|
3161 |
msgid "Credit card number is required."
|
3162 |
msgstr "مطلوب رقم بطاقة الائتمان."
|
3163 |
|
3164 |
+
#: core/class-gateway.php:145
|
3165 |
msgctxt "billing info"
|
3166 |
msgid "Credit card expiration date is invalid."
|
3167 |
msgstr "تاريخ انتهاء صلاحية بطاقة الائتمان غير صحيح."
|
3168 |
|
3169 |
+
#: core/class-gateway.php:148
|
3170 |
msgctxt "billing info"
|
3171 |
msgid "Credit card CVC number is required."
|
3172 |
msgstr "مطلوب رقم CVC بطاقة الائتمان."
|
3173 |
|
3174 |
+
#: core/class-gateway.php:151
|
3175 |
msgctxt "billing info"
|
3176 |
msgid "Country is required."
|
3177 |
msgstr "البلد المطلوب."
|
3178 |
|
3179 |
+
#: core/class-gateway.php:154
|
3180 |
msgctxt "billing info"
|
3181 |
msgid "Address is required."
|
3182 |
msgstr "العنوان مطلوب."
|
4904 |
|
4905 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4906 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4907 |
+
#: core/fieldtypes/class-fieldtypes-select.php:144
|
4908 |
msgctxt "form-fields admin"
|
4909 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4910 |
msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
|
4911 |
|
4912 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4913 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4914 |
+
#: core/fieldtypes/class-fieldtypes-select.php:172
|
4915 |
msgctxt "form-fields admin"
|
4916 |
msgid "Field list of options is required."
|
4917 |
msgstr "قائمة خيارات الحقل مطلوبة."
|
4975 |
msgid "Multiselect List"
|
4976 |
msgstr "قائمة تحديد متعددة"
|
4977 |
|
4978 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:25
|
4979 |
+
msgctxt "form-fields-admin"
|
4980 |
+
msgid "Number of options visible without scrolling"
|
4981 |
+
msgstr ""
|
4982 |
+
|
4983 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:26
|
4984 |
+
msgctxt "form-fields-admin"
|
4985 |
+
msgid ""
|
4986 |
+
"The height of the list will be adjusted to accommodate the specified number "
|
4987 |
+
"of options."
|
4988 |
+
msgstr ""
|
4989 |
+
|
4990 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
4991 |
msgctxt "form fields"
|
4992 |
msgid "Phone Number"
|
5008 |
msgstr "- اختيار البنود -"
|
5009 |
|
5010 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
5011 |
+
#: core/fieldtypes/class-fieldtypes-select.php:105
|
5012 |
msgctxt "form-fields-api category-select"
|
5013 |
msgid "-- Choose One --"
|
5014 |
msgstr "-- اختار واحد --"
|
5015 |
|
5016 |
+
#: core/fieldtypes/class-fieldtypes-select.php:155
|
5017 |
msgctxt "form-fields admin"
|
5018 |
msgid "Allow empty selection on search?"
|
5019 |
msgstr "السماح بالتحديد الفارغ في البحث؟"
|
5338 |
msgid "Setup fee"
|
5339 |
msgstr "رسم التنصيب"
|
5340 |
|
5341 |
+
#: core/gateways-authorize-net.php:175
|
5342 |
msgctxt "authorize-net"
|
5343 |
msgid "Could not process payment."
|
5344 |
msgstr "تعذر معالجة الدفع."
|
5532 |
msgid "Please <contact-link>contact customer support</a>."
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: core/licensing.php:42 core/licensing.php:64 core/licensing.php:65
|
5536 |
msgctxt "settings"
|
5537 |
msgid "Licenses"
|
5538 |
msgstr "التراخيص"
|
5539 |
|
5540 |
+
#: core/licensing.php:45
|
5541 |
msgctxt "settings"
|
5542 |
msgid "Premium Modules"
|
5543 |
msgstr "وحدات ممتازة (Premium)"
|
5544 |
|
5545 |
+
#: core/licensing.php:106 core/licensing.php:140
|
5546 |
msgctxt "licensing"
|
5547 |
msgid "Invalid module ID"
|
5548 |
msgstr "معرف وحدة غير صالح"
|
5549 |
|
5550 |
+
#: core/licensing.php:111
|
5551 |
msgctxt "licensing"
|
5552 |
msgid "No license key provided"
|
5553 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
5554 |
|
5555 |
+
#: core/licensing.php:168
|
5556 |
msgctxt "licensing"
|
5557 |
msgid "Deactivation failed"
|
5558 |
msgstr "فشل التعطيل"
|
5559 |
|
5560 |
+
#: core/licensing.php:220
|
5561 |
msgctxt "licensing"
|
5562 |
msgid "Business Directory - License Key Required"
|
5563 |
msgstr "دليل الأعمال - مفتاح الترخيص مطلوب"
|
5564 |
|
5565 |
+
#: core/licensing.php:223
|
5566 |
msgctxt "licensing"
|
5567 |
msgid ""
|
5568 |
"The following premium modules will not work until a valid license key is "
|
5573 |
"المفعول. إذهب إلى <a>إدارة الخيارات - التراخيص</a> لإدخال معلومات الترخيص "
|
5574 |
"الخاص بك."
|
5575 |
|
5576 |
+
#: core/licensing.php:244
|
5577 |
msgctxt "licensing"
|
5578 |
msgid "Business Directory - License Key Expired"
|
5579 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
5580 |
|
5581 |
+
#: core/licensing.php:245
|
5582 |
msgctxt "licensing"
|
5583 |
msgid ""
|
5584 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
5588 |
"انتهت صلاحية مفتاح الترخيص <span class=\"module-name\">%s %s</span>. سوف "
|
5589 |
"يستمر عمل الوحدة ولكن لن تتلقى أي مزيد من التحديثات حتى يتم تجديد الترخيص."
|
5590 |
|
5591 |
+
#: core/licensing.php:249
|
5592 |
msgctxt "licensing"
|
5593 |
msgid "Remind me later"
|
5594 |
msgstr "ذكرني لاحقا"
|
5595 |
|
5596 |
+
#: core/licensing.php:251
|
5597 |
msgctxt "licensing"
|
5598 |
msgid "Renew License Key"
|
5599 |
msgstr "تجديد مفتاح الترخيص"
|
5600 |
|
5601 |
+
#: core/licensing.php:338
|
5602 |
msgctxt "licensing"
|
5603 |
msgid "Could not deactivate license: %s."
|
5604 |
msgstr "لا يمكن إلغاء الترخيص: %s."
|
5805 |
msgid "Search Results"
|
5806 |
msgstr "نتائج البحث"
|
5807 |
|
5808 |
+
#: core/templates-ui.php:169
|
5809 |
msgctxt "templates"
|
5810 |
msgid "No listing categories found."
|
5811 |
msgstr "لم يتم العثور على تصنيفات الإعلانات."
|
5812 |
|
5813 |
+
#: core/templates-ui.php:193
|
5814 |
msgid "Directory"
|
5815 |
msgstr "الدليل"
|
5816 |
|
5817 |
+
#: core/templates-ui.php:199
|
5818 |
msgid "View All Listings"
|
5819 |
msgstr "مشاهدة جميع الإعلانات"
|
5820 |
|
5821 |
+
#: core/templates-ui.php:205
|
5822 |
msgid "Create A Listing"
|
5823 |
msgstr "إنشاء إعلان"
|
5824 |
|
5825 |
+
#: core/templates-ui.php:232
|
5826 |
msgctxt "templates"
|
5827 |
msgid "Search Listings"
|
5828 |
msgstr "البحث في الإعلانات"
|
5829 |
|
5830 |
+
#: core/templates-ui.php:235
|
5831 |
msgctxt "templates"
|
5832 |
msgid "Advanced Search"
|
5833 |
msgstr "بحث متقدم"
|
5834 |
|
5835 |
+
#: core/templates-ui.php:264 core/templates-ui.php:289
|
5836 |
msgctxt "templates sort"
|
5837 |
msgid "Sort By:"
|
5838 |
msgstr "ترتيب حسب:"
|
5839 |
|
5840 |
+
#: core/templates-ui.php:283
|
5841 |
msgctxt "sort"
|
5842 |
msgid "Reset"
|
5843 |
msgstr "إعادة تعيين"
|
5844 |
|
5845 |
+
#: core/templates-ui.php:305
|
5846 |
msgctxt "sort"
|
5847 |
msgid "(Reset)"
|
5848 |
msgstr "(إعادة تعيين)"
|
5849 |
|
5850 |
+
#: core/themes.php:749
|
5851 |
msgctxt "themes"
|
5852 |
msgid "ZIP file is not a valid BD theme file."
|
5853 |
msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
|
5854 |
|
5855 |
+
#: core/themes.php:755
|
5856 |
msgctxt "themes"
|
5857 |
msgid "Could not create themes directory."
|
5858 |
msgstr "تعذر إنشاء مجلد القوالب."
|
5859 |
|
5860 |
+
#: core/themes.php:763
|
5861 |
msgctxt "themes"
|
5862 |
msgid "Could not remove previous theme directory \"%s\"."
|
5863 |
msgstr "تعذر إزالة مجلد القالب السابق \"%s\"."
|
5864 |
|
5865 |
+
#: core/themes.php:769
|
5866 |
msgctxt "themes"
|
5867 |
msgid "Could not move new theme into theme directory."
|
5868 |
msgstr "تعذر نقل القالب الجديد الى مجلد القالب."
|
5958 |
msgstr "غير مسموح لك بتحرير هذا الإعلان."
|
5959 |
|
5960 |
#: core/view-submit-listing.php:58
|
5961 |
+
#, fuzzy
|
5962 |
+
msgctxt "views"
|
5963 |
msgid "Edit Your Listing"
|
5964 |
msgstr "تحرير إعلانك"
|
5965 |
|
|
|
|
|
|
|
|
|
|
|
5966 |
#: core/view-submit-listing.php:65
|
5967 |
msgctxt "templates"
|
5968 |
msgid ""
|
6111 |
msgid "l F j, Y \\a\\t g:i a"
|
6112 |
msgstr "l F j, Y \\a\\t g:i a"
|
6113 |
|
6114 |
+
#: core/views/listing_contact.php:173
|
6115 |
+
#, fuzzy
|
6116 |
+
msgctxt "contact-message"
|
6117 |
+
msgid "Your message has been sent."
|
6118 |
+
msgstr "تم حذف إعلانك."
|
6119 |
+
|
6120 |
#: core/views/listing_contact.php:178
|
6121 |
msgctxt "contact-message"
|
6122 |
msgid "%s (admin: %s)"
|
6284 |
msgid "Find A Listing"
|
6285 |
msgstr "العثور على إعلان"
|
6286 |
|
|
|
|
|
|
|
|
|
|
|
6287 |
#: core/views/submit_listing.php:16
|
6288 |
msgctxt "templates"
|
6289 |
msgid ""
|
6408 |
msgid "Search"
|
6409 |
msgstr "بحث"
|
6410 |
|
6411 |
+
#: templates/billing-information-form.tpl.php:4
|
6412 |
msgctxt "months"
|
6413 |
msgid "Jan"
|
6414 |
msgstr "يناير"
|
6415 |
|
6416 |
+
#: templates/billing-information-form.tpl.php:5
|
6417 |
msgctxt "months"
|
6418 |
msgid "Feb"
|
6419 |
msgstr "فبراير"
|
6420 |
|
6421 |
+
#: templates/billing-information-form.tpl.php:6
|
6422 |
msgctxt "months"
|
6423 |
msgid "Mar"
|
6424 |
msgstr "مارس"
|
6425 |
|
6426 |
+
#: templates/billing-information-form.tpl.php:7
|
6427 |
msgctxt "months"
|
6428 |
msgid "Apr"
|
6429 |
msgstr "أبريل"
|
6430 |
|
6431 |
+
#: templates/billing-information-form.tpl.php:8
|
6432 |
msgctxt "months"
|
6433 |
msgid "May"
|
6434 |
msgstr "مايو"
|
6435 |
|
6436 |
+
#: templates/billing-information-form.tpl.php:9
|
6437 |
msgctxt "months"
|
6438 |
msgid "Jun"
|
6439 |
msgstr "يونيو"
|
6440 |
|
6441 |
+
#: templates/billing-information-form.tpl.php:10
|
6442 |
msgctxt "months"
|
6443 |
msgid "Jul"
|
6444 |
msgstr "يوليو"
|
6445 |
|
6446 |
+
#: templates/billing-information-form.tpl.php:11
|
6447 |
msgctxt "months"
|
6448 |
msgid "Aug"
|
6449 |
msgstr "أغسطس"
|
6450 |
|
6451 |
+
#: templates/billing-information-form.tpl.php:12
|
6452 |
msgctxt "months"
|
6453 |
msgid "Sep"
|
6454 |
msgstr "سبتمبر"
|
6455 |
|
6456 |
+
#: templates/billing-information-form.tpl.php:13
|
6457 |
msgctxt "months"
|
6458 |
msgid "Oct"
|
6459 |
msgstr "أكتوبر"
|
6460 |
|
6461 |
+
#: templates/billing-information-form.tpl.php:14
|
6462 |
msgctxt "months"
|
6463 |
msgid "Nov"
|
6464 |
msgstr "نوفمبر"
|
6465 |
|
6466 |
+
#: templates/billing-information-form.tpl.php:15
|
6467 |
msgctxt "months"
|
6468 |
msgid "Dec"
|
6469 |
msgstr "ديسمبر"
|
6470 |
|
6471 |
+
#: templates/billing-information-form.tpl.php:30
|
6472 |
msgctxt "checkout form"
|
6473 |
msgid "Credit Card Details"
|
6474 |
msgstr "تفاصيل بطاقة الائتمان"
|
6475 |
|
6476 |
+
#: templates/billing-information-form.tpl.php:31
|
6477 |
msgctxt "checkout form"
|
6478 |
msgid "Please enter your credit card details below."
|
6479 |
msgstr "يرجى إدخال تفاصيل بطاقة الائتمان الخاصة بك أدناه."
|
6480 |
|
6481 |
+
#: templates/billing-information-form.tpl.php:36
|
6482 |
+
#, fuzzy
|
6483 |
+
msgctxt "checkout form"
|
6484 |
+
msgid "E-mail:"
|
6485 |
+
msgstr "البريد الإلكتروني: %s"
|
6486 |
+
|
6487 |
+
#: templates/billing-information-form.tpl.php:44
|
6488 |
msgctxt "checkout form"
|
6489 |
msgid "First Name:"
|
6490 |
msgstr "الإسم الشخصي:"
|
6491 |
|
6492 |
+
#: templates/billing-information-form.tpl.php:52
|
6493 |
msgctxt "checkout form"
|
6494 |
msgid "Last Name:"
|
6495 |
msgstr "الإسم العائلي:"
|
6496 |
|
6497 |
+
#: templates/billing-information-form.tpl.php:60
|
6498 |
msgctxt "checkout form"
|
6499 |
msgid "Card Number:"
|
6500 |
msgstr "رقم بطاقة الائتمان:"
|
6501 |
|
6502 |
+
#: templates/billing-information-form.tpl.php:68
|
6503 |
msgctxt "checkout form"
|
6504 |
msgid "Expiration Date (MM/YYYY):"
|
6505 |
msgstr "تاريخ انتهاء الصلاحية (MM/YYYY):"
|
6506 |
|
6507 |
+
#: templates/billing-information-form.tpl.php:88
|
6508 |
msgctxt "checkout form"
|
6509 |
msgid "CVC:"
|
6510 |
msgstr "الرمز السري:"
|
6511 |
|
6512 |
+
#: templates/billing-information-form.tpl.php:98
|
6513 |
msgctxt "checkout form"
|
6514 |
msgid "Billing Address"
|
6515 |
msgstr "عنوان صاحب الفاتورة"
|
6516 |
|
6517 |
+
#: templates/billing-information-form.tpl.php:103
|
6518 |
msgctxt "checkout form"
|
6519 |
msgid "Country:"
|
6520 |
msgstr "الدولة:"
|
6521 |
|
6522 |
+
#: templates/billing-information-form.tpl.php:111
|
6523 |
msgctxt "checkout form"
|
6524 |
msgid "State:"
|
6525 |
msgstr "الولاية:"
|
6526 |
|
6527 |
+
#: templates/billing-information-form.tpl.php:119
|
6528 |
msgctxt "checkout form"
|
6529 |
msgid "City:"
|
6530 |
msgstr "المدينة:"
|
6531 |
|
6532 |
+
#: templates/billing-information-form.tpl.php:127
|
6533 |
msgctxt "checkout form"
|
6534 |
msgid "Address Line 1:"
|
6535 |
msgstr "خانة العنوان 1:"
|
6536 |
|
6537 |
+
#: templates/billing-information-form.tpl.php:135
|
6538 |
msgctxt "checkout form"
|
6539 |
msgid "Address Line 2:"
|
6540 |
msgstr "خانة العنوان 2:"
|
6541 |
|
6542 |
+
#: templates/billing-information-form.tpl.php:143
|
6543 |
msgctxt "checkout form"
|
6544 |
msgid "ZIP Code:"
|
6545 |
msgstr "الرمز البريدي:"
|
6546 |
|
6547 |
+
#: templates/billing-information-form.tpl.php:151
|
6548 |
+
#, fuzzy
|
6549 |
+
msgctxt "checkout form"
|
6550 |
+
msgid "Phone Number:"
|
6551 |
+
msgstr "رقم الهاتف"
|
6552 |
+
|
6553 |
+
#: templates/billing-information-form.tpl.php:161
|
6554 |
msgctxt "WPBDM"
|
6555 |
msgid "Cancel"
|
6556 |
msgstr "إلغاء"
|
6557 |
|
6558 |
+
#: templates/billing-information-form.tpl.php:162
|
6559 |
msgctxt "WPBDM"
|
6560 |
msgid "Submit Payment"
|
6561 |
msgstr "إضافة الدفع"
|
7153 |
msgid "Address"
|
7154 |
msgstr "العنوان"
|
7155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7156 |
#. Plugin URI of the plugin/theme
|
7157 |
msgid "http://www.businessdirectoryplugin.com"
|
7158 |
msgstr "http://www.businessdirectoryplugin.com"
|
7173 |
msgid "http://businessdirectoryplugin.com"
|
7174 |
msgstr "http://businessdirectoryplugin.com"
|
7175 |
|
7176 |
+
#~ msgctxt "title"
|
7177 |
+
#~ msgid "Submit A Listing"
|
7178 |
+
#~ msgstr "إضافة إعلان"
|
7179 |
+
|
7180 |
+
#~ msgctxt "templates"
|
7181 |
+
#~ msgid "Submit A Listing"
|
7182 |
+
#~ msgstr "إضافة إعلان"
|
7183 |
+
|
7184 |
+
#~ msgid ""
|
7185 |
+
#~ "There is a new version of %1$s available. <a target=\"_blank\" class="
|
7186 |
+
#~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
7187 |
+
#~ msgstr ""
|
7188 |
+
#~ "هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" "
|
7189 |
+
#~ "href=\"%2$s\">مشاهدة تفاصيل النسخة %3$s</a>."
|
7190 |
+
|
7191 |
+
#~ msgid ""
|
7192 |
+
#~ "There is a new version of %1$s available. <a target=\"_blank\" class="
|
7193 |
+
#~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
7194 |
+
#~ "\">update now</a>."
|
7195 |
+
#~ msgstr ""
|
7196 |
+
#~ "هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" "
|
7197 |
+
#~ "href=\"%2$s\">مشاهدة تفاصيل النسخة %3$s</a> أو <a href=\"%4$s\">التحديث "
|
7198 |
+
#~ "الآن</a>."
|
7199 |
+
|
7200 |
+
#~ msgid "You do not have permission to install plugin updates"
|
7201 |
+
#~ msgstr "لا تملك الصلاحية لتثبيت تحديثات الإضافة"
|
7202 |
+
|
7203 |
+
#~ msgid "Error"
|
7204 |
+
#~ msgstr "خطأ"
|
7205 |
+
|
7206 |
#~ msgctxt "admin csv-import"
|
7207 |
#~ msgid "Last imported line from file:"
|
7208 |
#~ msgstr "السطر الأخير الذي تم استيراده من الملف:"
|
languages/WPBDM-de_DE.mo
CHANGED
Binary file
|
languages/WPBDM-de_DE.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 3.5.4\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
-
"POT-Creation-Date: 2016-11-
|
8 |
"PO-Revision-Date: 2016-01-21 08:45-0500\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
|
@@ -573,23 +573,23 @@ msgid "Could not move \"%s\" to a temporary directory."
|
|
573 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
574 |
|
575 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
576 |
-
#: core/licensing.php:
|
577 |
msgctxt "licensing"
|
578 |
msgid "Could not contact licensing server"
|
579 |
msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
|
580 |
|
581 |
-
#: admin/class-themes-admin.php:372 core/licensing.php:
|
582 |
-
#: core/licensing.php:
|
583 |
msgctxt "licensing"
|
584 |
msgid "License key is invalid"
|
585 |
msgstr "Lizenzschlüssel ungültig "
|
586 |
|
587 |
-
#: admin/class-themes-admin.php:377 core/licensing.php:
|
588 |
msgctxt "licensing"
|
589 |
msgid "Could not activate license: %s."
|
590 |
msgstr "Konnte Lizenz nicht aktivieren: %s"
|
591 |
|
592 |
-
#: admin/class-themes-admin.php:390 core/licensing.php:
|
593 |
msgctxt "licensing"
|
594 |
msgid "License activated"
|
595 |
msgstr "Lizenz aktiviert"
|
@@ -599,7 +599,7 @@ msgctxt "licensing"
|
|
599 |
msgid "Invalid response from server"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: admin/class-themes-admin.php:450 core/licensing.php:
|
603 |
msgctxt "licensing"
|
604 |
msgid "License deactivated"
|
605 |
msgstr "Lizenz deaktiviert"
|
@@ -1171,7 +1171,7 @@ msgctxt "debug-info"
|
|
1171 |
msgid "Environment"
|
1172 |
msgstr "Umgebung"
|
1173 |
|
1174 |
-
#: admin/page-debug.php:
|
1175 |
msgctxt "debug info"
|
1176 |
msgid "Test SSL setup..."
|
1177 |
msgstr ""
|
@@ -2243,7 +2243,7 @@ msgctxt "form-fields admin"
|
|
2243 |
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.
|
2247 |
#. Plugin Name of the plugin/theme
|
2248 |
#: admin/templates/header.tpl.php:4
|
2249 |
msgid "Business Directory Plugin"
|
@@ -3046,8 +3046,10 @@ msgctxt "rss feed"
|
|
3046 |
msgid "%s Feed"
|
3047 |
msgstr "% Feed"
|
3048 |
|
3049 |
-
#: business-directory-plugin.php:1117
|
3050 |
-
|
|
|
|
|
3051 |
msgid "Submit A Listing"
|
3052 |
msgstr "Eintrag zusenden"
|
3053 |
|
@@ -3173,43 +3175,49 @@ msgctxt "form-fields-api"
|
|
3173 |
msgid "An error occurred while trying to delete this field."
|
3174 |
msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
|
3175 |
|
3176 |
-
#: core/class-gateway.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3177 |
#, fuzzy
|
3178 |
msgctxt "billing info"
|
3179 |
msgid "First name is required."
|
3180 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
3181 |
|
3182 |
-
#: core/class-gateway.php:
|
3183 |
#, fuzzy
|
3184 |
msgctxt "billing info"
|
3185 |
msgid "Last name is required."
|
3186 |
msgstr "%s ist ein Pflichtfeld."
|
3187 |
|
3188 |
-
#: core/class-gateway.php:
|
3189 |
#, fuzzy
|
3190 |
msgctxt "billing info"
|
3191 |
msgid "Credit card number is required."
|
3192 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
3193 |
|
3194 |
-
#: core/class-gateway.php:
|
3195 |
#, fuzzy
|
3196 |
msgctxt "billing info"
|
3197 |
msgid "Credit card expiration date is invalid."
|
3198 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
3199 |
|
3200 |
-
#: core/class-gateway.php:
|
3201 |
#, fuzzy
|
3202 |
msgctxt "billing info"
|
3203 |
msgid "Credit card CVC number is required."
|
3204 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
3205 |
|
3206 |
-
#: core/class-gateway.php:
|
3207 |
#, fuzzy
|
3208 |
msgctxt "billing info"
|
3209 |
msgid "Country is required."
|
3210 |
msgstr "%s ist ein Pflichtfeld."
|
3211 |
|
3212 |
-
#: core/class-gateway.php:
|
3213 |
#, fuzzy
|
3214 |
msgctxt "billing info"
|
3215 |
msgid "Address is required."
|
@@ -4963,7 +4971,7 @@ msgstr "Kontrollkästchen"
|
|
4963 |
|
4964 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4965 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4966 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4967 |
msgctxt "form-fields admin"
|
4968 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4969 |
msgstr ""
|
@@ -4971,7 +4979,7 @@ msgstr ""
|
|
4971 |
|
4972 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4973 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4974 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4975 |
msgctxt "form-fields admin"
|
4976 |
msgid "Field list of options is required."
|
4977 |
msgstr "Feldliste von Optionen wird benötigt."
|
@@ -5039,6 +5047,18 @@ msgctxt "form-fields api"
|
|
5039 |
msgid "Multiselect List"
|
5040 |
msgstr "Mehrfachauswahlliste"
|
5041 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5042 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
5043 |
#, fuzzy
|
5044 |
msgctxt "form fields"
|
@@ -5061,12 +5081,12 @@ msgid "-- Choose Terms --"
|
|
5061 |
msgstr "-- Bedingungen auswählen --"
|
5062 |
|
5063 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
5064 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
5065 |
msgctxt "form-fields-api category-select"
|
5066 |
msgid "-- Choose One --"
|
5067 |
msgstr "-- Auswählen --"
|
5068 |
|
5069 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
5070 |
msgctxt "form-fields admin"
|
5071 |
msgid "Allow empty selection on search?"
|
5072 |
msgstr "Erlaube leere Auswahl bei Suche?"
|
@@ -5393,7 +5413,7 @@ msgctxt "authorize-net"
|
|
5393 |
msgid "Setup fee"
|
5394 |
msgstr "Preise Installieren/Verwalten"
|
5395 |
|
5396 |
-
#: core/gateways-authorize-net.php:
|
5397 |
#, fuzzy
|
5398 |
msgctxt "authorize-net"
|
5399 |
msgid "Could not process payment."
|
@@ -5597,37 +5617,37 @@ msgstr ""
|
|
5597 |
msgid "Please <contact-link>contact customer support</a>."
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: core/licensing.php:
|
5601 |
msgctxt "settings"
|
5602 |
msgid "Licenses"
|
5603 |
msgstr "Lizenz"
|
5604 |
|
5605 |
-
#: core/licensing.php:
|
5606 |
msgctxt "settings"
|
5607 |
msgid "Premium Modules"
|
5608 |
msgstr "Premium Module"
|
5609 |
|
5610 |
-
#: core/licensing.php:
|
5611 |
msgctxt "licensing"
|
5612 |
msgid "Invalid module ID"
|
5613 |
msgstr "Ungültige Modul ID"
|
5614 |
|
5615 |
-
#: core/licensing.php:
|
5616 |
msgctxt "licensing"
|
5617 |
msgid "No license key provided"
|
5618 |
msgstr "Kein Lizenzschlüssel"
|
5619 |
|
5620 |
-
#: core/licensing.php:
|
5621 |
msgctxt "licensing"
|
5622 |
msgid "Deactivation failed"
|
5623 |
msgstr "Deaktivierung fehlgeschlagen"
|
5624 |
|
5625 |
-
#: core/licensing.php:
|
5626 |
msgctxt "licensing"
|
5627 |
msgid "Business Directory - License Key Required"
|
5628 |
msgstr "Branchenverzeichnis - Lizenzschlüssel erforderlich"
|
5629 |
|
5630 |
-
#: core/licensing.php:
|
5631 |
msgctxt "licensing"
|
5632 |
msgid ""
|
5633 |
"The following premium modules will not work until a valid license key is "
|
@@ -5638,12 +5658,12 @@ msgstr ""
|
|
5638 |
"Lizenzschlüssel angegeben wurde. Gehen Sie zu <a>Optionen verwalten - "
|
5639 |
"Lizenzen</a>, um Ihre Lizenzinformation einzugeben."
|
5640 |
|
5641 |
-
#: core/licensing.php:
|
5642 |
msgctxt "licensing"
|
5643 |
msgid "Business Directory - License Key Expired"
|
5644 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
5645 |
|
5646 |
-
#: core/licensing.php:
|
5647 |
msgctxt "licensing"
|
5648 |
msgid ""
|
5649 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
@@ -5654,17 +5674,17 @@ msgstr ""
|
|
5654 |
"abgelaufen. Das Modul wird weiter ausgeführt, jedoch nicht weiter "
|
5655 |
"aktualisiert, bis ein neuer Lizenzschlüssel eingegeben wurde."
|
5656 |
|
5657 |
-
#: core/licensing.php:
|
5658 |
msgctxt "licensing"
|
5659 |
msgid "Remind me later"
|
5660 |
msgstr "Erinnere mich später"
|
5661 |
|
5662 |
-
#: core/licensing.php:
|
5663 |
msgctxt "licensing"
|
5664 |
msgid "Renew License Key"
|
5665 |
msgstr "Erneuere Lizenzschlüssel"
|
5666 |
|
5667 |
-
#: core/licensing.php:
|
5668 |
msgctxt "licensing"
|
5669 |
msgid "Could not deactivate license: %s."
|
5670 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
@@ -5869,70 +5889,70 @@ msgctxt "search"
|
|
5869 |
msgid "Search Results"
|
5870 |
msgstr "Ergebnisse durchsuchen"
|
5871 |
|
5872 |
-
#: core/templates-ui.php:
|
5873 |
msgctxt "templates"
|
5874 |
msgid "No listing categories found."
|
5875 |
msgstr "Keine Eintragskategorie gefunden."
|
5876 |
|
5877 |
-
#: core/templates-ui.php:
|
5878 |
msgid "Directory"
|
5879 |
msgstr "Verzeichnis"
|
5880 |
|
5881 |
-
#: core/templates-ui.php:
|
5882 |
#, fuzzy
|
5883 |
msgid "View All Listings"
|
5884 |
msgstr "Alle Einträge anschauen"
|
5885 |
|
5886 |
-
#: core/templates-ui.php:
|
5887 |
#, fuzzy
|
5888 |
msgid "Create A Listing"
|
5889 |
msgstr "kostenloser Eintrag"
|
5890 |
|
5891 |
-
#: core/templates-ui.php:
|
5892 |
msgctxt "templates"
|
5893 |
msgid "Search Listings"
|
5894 |
msgstr "Eintrag suchen"
|
5895 |
|
5896 |
-
#: core/templates-ui.php:
|
5897 |
msgctxt "templates"
|
5898 |
msgid "Advanced Search"
|
5899 |
msgstr "Erweiterte Suche"
|
5900 |
|
5901 |
-
#: core/templates-ui.php:
|
5902 |
msgctxt "templates sort"
|
5903 |
msgid "Sort By:"
|
5904 |
msgstr "Sortieren nach"
|
5905 |
|
5906 |
-
#: core/templates-ui.php:
|
5907 |
msgctxt "sort"
|
5908 |
msgid "Reset"
|
5909 |
msgstr "Zurücksetzen"
|
5910 |
|
5911 |
-
#: core/templates-ui.php:
|
5912 |
#, fuzzy
|
5913 |
msgctxt "sort"
|
5914 |
msgid "(Reset)"
|
5915 |
msgstr "Zurücksetzen"
|
5916 |
|
5917 |
-
#: core/themes.php:
|
5918 |
#, fuzzy
|
5919 |
msgctxt "themes"
|
5920 |
msgid "ZIP file is not a valid BD theme file."
|
5921 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
5922 |
|
5923 |
-
#: core/themes.php:
|
5924 |
#, fuzzy
|
5925 |
msgctxt "themes"
|
5926 |
msgid "Could not create themes directory."
|
5927 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
5928 |
|
5929 |
-
#: core/themes.php:
|
5930 |
#, fuzzy
|
5931 |
msgctxt "themes"
|
5932 |
msgid "Could not remove previous theme directory \"%s\"."
|
5933 |
msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
|
5934 |
|
5935 |
-
#: core/themes.php:
|
5936 |
#, fuzzy
|
5937 |
msgctxt "themes"
|
5938 |
msgid "Could not move new theme into theme directory."
|
@@ -6032,15 +6052,11 @@ msgid "You are not authorized to edit this listing."
|
|
6032 |
msgstr "Sie sind nicht autorisiert um diesen Eintrag zu bearbeiten."
|
6033 |
|
6034 |
#: core/view-submit-listing.php:58
|
6035 |
-
|
|
|
6036 |
msgid "Edit Your Listing"
|
6037 |
msgstr "Meinen Eintrag bearbeiten"
|
6038 |
|
6039 |
-
#: core/view-submit-listing.php:58
|
6040 |
-
msgctxt "templates"
|
6041 |
-
msgid "Submit A Listing"
|
6042 |
-
msgstr "Einen Eintrag einreichen"
|
6043 |
-
|
6044 |
#: core/view-submit-listing.php:65
|
6045 |
msgctxt "templates"
|
6046 |
msgid ""
|
@@ -6196,6 +6212,12 @@ msgstr "Nachricht an Verfasser des Eintrags"
|
|
6196 |
msgid "l F j, Y \\a\\t g:i a"
|
6197 |
msgstr "l F j, Y \\a\\t g:i a"
|
6198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6199 |
#: core/views/listing_contact.php:178
|
6200 |
msgctxt "contact-message"
|
6201 |
msgid "%s (admin: %s)"
|
@@ -6373,12 +6395,6 @@ msgctxt "views"
|
|
6373 |
msgid "Find A Listing"
|
6374 |
msgstr "Eintrag finden"
|
6375 |
|
6376 |
-
#: core/views/submit_listing.php:10
|
6377 |
-
#, fuzzy
|
6378 |
-
msgctxt "views"
|
6379 |
-
msgid "Submit A Listing"
|
6380 |
-
msgstr "Eintrag zusenden"
|
6381 |
-
|
6382 |
#: core/views/submit_listing.php:16
|
6383 |
msgctxt "templates"
|
6384 |
msgid ""
|
@@ -6505,155 +6521,167 @@ msgctxt "widgets"
|
|
6505 |
msgid "Search"
|
6506 |
msgstr "Suche"
|
6507 |
|
6508 |
-
#: templates/billing-information-form.tpl.php:
|
6509 |
msgctxt "months"
|
6510 |
msgid "Jan"
|
6511 |
msgstr ""
|
6512 |
|
6513 |
-
#: templates/billing-information-form.tpl.php:
|
6514 |
#, fuzzy
|
6515 |
msgctxt "months"
|
6516 |
msgid "Feb"
|
6517 |
msgstr "Preis"
|
6518 |
|
6519 |
-
#: templates/billing-information-form.tpl.php:
|
6520 |
#, fuzzy
|
6521 |
msgctxt "months"
|
6522 |
msgid "Mar"
|
6523 |
msgstr "Markieren als"
|
6524 |
|
6525 |
-
#: templates/billing-information-form.tpl.php:
|
6526 |
msgctxt "months"
|
6527 |
msgid "Apr"
|
6528 |
msgstr ""
|
6529 |
|
6530 |
-
#: templates/billing-information-form.tpl.php:
|
6531 |
#, fuzzy
|
6532 |
msgctxt "months"
|
6533 |
msgid "May"
|
6534 |
msgstr "Markieren als"
|
6535 |
|
6536 |
-
#: templates/billing-information-form.tpl.php:
|
6537 |
msgctxt "months"
|
6538 |
msgid "Jun"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: templates/billing-information-form.tpl.php:
|
6542 |
msgctxt "months"
|
6543 |
msgid "Jul"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
-
#: templates/billing-information-form.tpl.php:
|
6547 |
msgctxt "months"
|
6548 |
msgid "Aug"
|
6549 |
msgstr ""
|
6550 |
|
6551 |
-
#: templates/billing-information-form.tpl.php:
|
6552 |
msgctxt "months"
|
6553 |
msgid "Sep"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#: templates/billing-information-form.tpl.php:
|
6557 |
msgctxt "months"
|
6558 |
msgid "Oct"
|
6559 |
msgstr ""
|
6560 |
|
6561 |
-
#: templates/billing-information-form.tpl.php:
|
6562 |
msgctxt "months"
|
6563 |
msgid "Nov"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
-
#: templates/billing-information-form.tpl.php:
|
6567 |
msgctxt "months"
|
6568 |
msgid "Dec"
|
6569 |
msgstr ""
|
6570 |
|
6571 |
-
#: templates/billing-information-form.tpl.php:
|
6572 |
#, fuzzy
|
6573 |
msgctxt "checkout form"
|
6574 |
msgid "Credit Card Details"
|
6575 |
msgstr "Aktuelle Preisdetails"
|
6576 |
|
6577 |
-
#: templates/billing-information-form.tpl.php:
|
6578 |
#, fuzzy
|
6579 |
msgctxt "checkout form"
|
6580 |
msgid "Please enter your credit card details below."
|
6581 |
msgstr "Bitte geben Sie einen Namen ein."
|
6582 |
|
6583 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6584 |
#, fuzzy
|
6585 |
msgctxt "checkout form"
|
6586 |
msgid "First Name:"
|
6587 |
msgstr "Name:"
|
6588 |
|
6589 |
-
#: templates/billing-information-form.tpl.php:
|
6590 |
#, fuzzy
|
6591 |
msgctxt "checkout form"
|
6592 |
msgid "Last Name:"
|
6593 |
msgstr "Name:"
|
6594 |
|
6595 |
-
#: templates/billing-information-form.tpl.php:
|
6596 |
msgctxt "checkout form"
|
6597 |
msgid "Card Number:"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
-
#: templates/billing-information-form.tpl.php:
|
6601 |
#, fuzzy
|
6602 |
msgctxt "checkout form"
|
6603 |
msgid "Expiration Date (MM/YYYY):"
|
6604 |
msgstr "Ablaufdatum:"
|
6605 |
|
6606 |
-
#: templates/billing-information-form.tpl.php:
|
6607 |
msgctxt "checkout form"
|
6608 |
msgid "CVC:"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: templates/billing-information-form.tpl.php:
|
6612 |
#, fuzzy
|
6613 |
msgctxt "checkout form"
|
6614 |
msgid "Billing Address"
|
6615 |
msgstr "E-mail Adresse:"
|
6616 |
|
6617 |
-
#: templates/billing-information-form.tpl.php:
|
6618 |
msgctxt "checkout form"
|
6619 |
msgid "Country:"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: templates/billing-information-form.tpl.php:
|
6623 |
#, fuzzy
|
6624 |
msgctxt "checkout form"
|
6625 |
msgid "State:"
|
6626 |
msgstr "Status"
|
6627 |
|
6628 |
-
#: templates/billing-information-form.tpl.php:
|
6629 |
msgctxt "checkout form"
|
6630 |
msgid "City:"
|
6631 |
msgstr ""
|
6632 |
|
6633 |
-
#: templates/billing-information-form.tpl.php:
|
6634 |
#, fuzzy
|
6635 |
msgctxt "checkout form"
|
6636 |
msgid "Address Line 1:"
|
6637 |
msgstr "E-mail Adresse:"
|
6638 |
|
6639 |
-
#: templates/billing-information-form.tpl.php:
|
6640 |
#, fuzzy
|
6641 |
msgctxt "checkout form"
|
6642 |
msgid "Address Line 2:"
|
6643 |
msgstr "E-mail Adresse:"
|
6644 |
|
6645 |
-
#: templates/billing-information-form.tpl.php:
|
6646 |
msgctxt "checkout form"
|
6647 |
msgid "ZIP Code:"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6651 |
#, fuzzy
|
6652 |
msgctxt "WPBDM"
|
6653 |
msgid "Cancel"
|
6654 |
msgstr "Abbrechen"
|
6655 |
|
6656 |
-
#: templates/billing-information-form.tpl.php:
|
6657 |
#, fuzzy
|
6658 |
msgctxt "WPBDM"
|
6659 |
msgid "Submit Payment"
|
@@ -7269,28 +7297,6 @@ msgctxt "themes/default"
|
|
7269 |
msgid "Address"
|
7270 |
msgstr "E-mail Adresse:"
|
7271 |
|
7272 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:178
|
7273 |
-
msgid ""
|
7274 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
7275 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
7276 |
-
msgstr ""
|
7277 |
-
|
7278 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:185
|
7279 |
-
msgid ""
|
7280 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
7281 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
7282 |
-
"\">update now</a>."
|
7283 |
-
msgstr ""
|
7284 |
-
|
7285 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
7286 |
-
msgid "You do not have permission to install plugin updates"
|
7287 |
-
msgstr ""
|
7288 |
-
|
7289 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
7290 |
-
#, fuzzy
|
7291 |
-
msgid "Error"
|
7292 |
-
msgstr "Fehler"
|
7293 |
-
|
7294 |
#. Plugin URI of the plugin/theme
|
7295 |
msgid "http://www.businessdirectoryplugin.com"
|
7296 |
msgstr "http://www.businessdirectoryplugin.com"
|
@@ -7309,6 +7315,18 @@ msgstr "D. Rodenbaugh"
|
|
7309 |
msgid "http://businessdirectoryplugin.com"
|
7310 |
msgstr "http://businessdirectoryplugin.com"
|
7311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7312 |
#~ msgctxt "formfields-preview"
|
7313 |
#~ msgid ""
|
7314 |
#~ "This is a preview of the form as it will appear during \"Submit a Listing"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 3.5.4\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
+
"POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
|
8 |
"PO-Revision-Date: 2016-01-21 08:45-0500\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
|
573 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
574 |
|
575 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
576 |
+
#: core/licensing.php:126 core/licensing.php:158
|
577 |
msgctxt "licensing"
|
578 |
msgid "Could not contact licensing server"
|
579 |
msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
|
580 |
|
581 |
+
#: admin/class-themes-admin.php:372 core/licensing.php:131
|
582 |
+
#: core/licensing.php:165
|
583 |
msgctxt "licensing"
|
584 |
msgid "License key is invalid"
|
585 |
msgstr "Lizenzschlüssel ungültig "
|
586 |
|
587 |
+
#: admin/class-themes-admin.php:377 core/licensing.php:320
|
588 |
msgctxt "licensing"
|
589 |
msgid "Could not activate license: %s."
|
590 |
msgstr "Konnte Lizenz nicht aktivieren: %s"
|
591 |
|
592 |
+
#: admin/class-themes-admin.php:390 core/licensing.php:322
|
593 |
msgctxt "licensing"
|
594 |
msgid "License activated"
|
595 |
msgstr "Lizenz aktiviert"
|
599 |
msgid "Invalid response from server"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: admin/class-themes-admin.php:450 core/licensing.php:340
|
603 |
msgctxt "licensing"
|
604 |
msgid "License deactivated"
|
605 |
msgstr "Lizenz deaktiviert"
|
1171 |
msgid "Environment"
|
1172 |
msgstr "Umgebung"
|
1173 |
|
1174 |
+
#: admin/page-debug.php:72
|
1175 |
msgctxt "debug info"
|
1176 |
msgid "Test SSL setup..."
|
1177 |
msgstr ""
|
2243 |
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
|
2247 |
#. Plugin Name of the plugin/theme
|
2248 |
#: admin/templates/header.tpl.php:4
|
2249 |
msgid "Business Directory Plugin"
|
3046 |
msgid "%s Feed"
|
3047 |
msgstr "% Feed"
|
3048 |
|
3049 |
+
#: business-directory-plugin.php:1117 core/view-submit-listing.php:58
|
3050 |
+
#: core/views/submit_listing.php:10
|
3051 |
+
#, fuzzy
|
3052 |
+
msgctxt "views"
|
3053 |
msgid "Submit A Listing"
|
3054 |
msgstr "Eintrag zusenden"
|
3055 |
|
3175 |
msgid "An error occurred while trying to delete this field."
|
3176 |
msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
|
3177 |
|
3178 |
+
#: core/class-gateway.php:133
|
3179 |
+
#, fuzzy
|
3180 |
+
msgctxt "billing info"
|
3181 |
+
msgid "Please enter a valid e-mail address."
|
3182 |
+
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
3183 |
+
|
3184 |
+
#: core/class-gateway.php:136
|
3185 |
#, fuzzy
|
3186 |
msgctxt "billing info"
|
3187 |
msgid "First name is required."
|
3188 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
3189 |
|
3190 |
+
#: core/class-gateway.php:139
|
3191 |
#, fuzzy
|
3192 |
msgctxt "billing info"
|
3193 |
msgid "Last name is required."
|
3194 |
msgstr "%s ist ein Pflichtfeld."
|
3195 |
|
3196 |
+
#: core/class-gateway.php:142
|
3197 |
#, fuzzy
|
3198 |
msgctxt "billing info"
|
3199 |
msgid "Credit card number is required."
|
3200 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
3201 |
|
3202 |
+
#: core/class-gateway.php:145
|
3203 |
#, fuzzy
|
3204 |
msgctxt "billing info"
|
3205 |
msgid "Credit card expiration date is invalid."
|
3206 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
3207 |
|
3208 |
+
#: core/class-gateway.php:148
|
3209 |
#, fuzzy
|
3210 |
msgctxt "billing info"
|
3211 |
msgid "Credit card CVC number is required."
|
3212 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
3213 |
|
3214 |
+
#: core/class-gateway.php:151
|
3215 |
#, fuzzy
|
3216 |
msgctxt "billing info"
|
3217 |
msgid "Country is required."
|
3218 |
msgstr "%s ist ein Pflichtfeld."
|
3219 |
|
3220 |
+
#: core/class-gateway.php:154
|
3221 |
#, fuzzy
|
3222 |
msgctxt "billing info"
|
3223 |
msgid "Address is required."
|
4971 |
|
4972 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4973 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4974 |
+
#: core/fieldtypes/class-fieldtypes-select.php:144
|
4975 |
msgctxt "form-fields admin"
|
4976 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4977 |
msgstr ""
|
4979 |
|
4980 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4981 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4982 |
+
#: core/fieldtypes/class-fieldtypes-select.php:172
|
4983 |
msgctxt "form-fields admin"
|
4984 |
msgid "Field list of options is required."
|
4985 |
msgstr "Feldliste von Optionen wird benötigt."
|
5047 |
msgid "Multiselect List"
|
5048 |
msgstr "Mehrfachauswahlliste"
|
5049 |
|
5050 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:25
|
5051 |
+
msgctxt "form-fields-admin"
|
5052 |
+
msgid "Number of options visible without scrolling"
|
5053 |
+
msgstr ""
|
5054 |
+
|
5055 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:26
|
5056 |
+
msgctxt "form-fields-admin"
|
5057 |
+
msgid ""
|
5058 |
+
"The height of the list will be adjusted to accommodate the specified number "
|
5059 |
+
"of options."
|
5060 |
+
msgstr ""
|
5061 |
+
|
5062 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
5063 |
#, fuzzy
|
5064 |
msgctxt "form fields"
|
5081 |
msgstr "-- Bedingungen auswählen --"
|
5082 |
|
5083 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
5084 |
+
#: core/fieldtypes/class-fieldtypes-select.php:105
|
5085 |
msgctxt "form-fields-api category-select"
|
5086 |
msgid "-- Choose One --"
|
5087 |
msgstr "-- Auswählen --"
|
5088 |
|
5089 |
+
#: core/fieldtypes/class-fieldtypes-select.php:155
|
5090 |
msgctxt "form-fields admin"
|
5091 |
msgid "Allow empty selection on search?"
|
5092 |
msgstr "Erlaube leere Auswahl bei Suche?"
|
5413 |
msgid "Setup fee"
|
5414 |
msgstr "Preise Installieren/Verwalten"
|
5415 |
|
5416 |
+
#: core/gateways-authorize-net.php:175
|
5417 |
#, fuzzy
|
5418 |
msgctxt "authorize-net"
|
5419 |
msgid "Could not process payment."
|
5617 |
msgid "Please <contact-link>contact customer support</a>."
|
5618 |
msgstr ""
|
5619 |
|
5620 |
+
#: core/licensing.php:42 core/licensing.php:64 core/licensing.php:65
|
5621 |
msgctxt "settings"
|
5622 |
msgid "Licenses"
|
5623 |
msgstr "Lizenz"
|
5624 |
|
5625 |
+
#: core/licensing.php:45
|
5626 |
msgctxt "settings"
|
5627 |
msgid "Premium Modules"
|
5628 |
msgstr "Premium Module"
|
5629 |
|
5630 |
+
#: core/licensing.php:106 core/licensing.php:140
|
5631 |
msgctxt "licensing"
|
5632 |
msgid "Invalid module ID"
|
5633 |
msgstr "Ungültige Modul ID"
|
5634 |
|
5635 |
+
#: core/licensing.php:111
|
5636 |
msgctxt "licensing"
|
5637 |
msgid "No license key provided"
|
5638 |
msgstr "Kein Lizenzschlüssel"
|
5639 |
|
5640 |
+
#: core/licensing.php:168
|
5641 |
msgctxt "licensing"
|
5642 |
msgid "Deactivation failed"
|
5643 |
msgstr "Deaktivierung fehlgeschlagen"
|
5644 |
|
5645 |
+
#: core/licensing.php:220
|
5646 |
msgctxt "licensing"
|
5647 |
msgid "Business Directory - License Key Required"
|
5648 |
msgstr "Branchenverzeichnis - Lizenzschlüssel erforderlich"
|
5649 |
|
5650 |
+
#: core/licensing.php:223
|
5651 |
msgctxt "licensing"
|
5652 |
msgid ""
|
5653 |
"The following premium modules will not work until a valid license key is "
|
5658 |
"Lizenzschlüssel angegeben wurde. Gehen Sie zu <a>Optionen verwalten - "
|
5659 |
"Lizenzen</a>, um Ihre Lizenzinformation einzugeben."
|
5660 |
|
5661 |
+
#: core/licensing.php:244
|
5662 |
msgctxt "licensing"
|
5663 |
msgid "Business Directory - License Key Expired"
|
5664 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
5665 |
|
5666 |
+
#: core/licensing.php:245
|
5667 |
msgctxt "licensing"
|
5668 |
msgid ""
|
5669 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
5674 |
"abgelaufen. Das Modul wird weiter ausgeführt, jedoch nicht weiter "
|
5675 |
"aktualisiert, bis ein neuer Lizenzschlüssel eingegeben wurde."
|
5676 |
|
5677 |
+
#: core/licensing.php:249
|
5678 |
msgctxt "licensing"
|
5679 |
msgid "Remind me later"
|
5680 |
msgstr "Erinnere mich später"
|
5681 |
|
5682 |
+
#: core/licensing.php:251
|
5683 |
msgctxt "licensing"
|
5684 |
msgid "Renew License Key"
|
5685 |
msgstr "Erneuere Lizenzschlüssel"
|
5686 |
|
5687 |
+
#: core/licensing.php:338
|
5688 |
msgctxt "licensing"
|
5689 |
msgid "Could not deactivate license: %s."
|
5690 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
5889 |
msgid "Search Results"
|
5890 |
msgstr "Ergebnisse durchsuchen"
|
5891 |
|
5892 |
+
#: core/templates-ui.php:169
|
5893 |
msgctxt "templates"
|
5894 |
msgid "No listing categories found."
|
5895 |
msgstr "Keine Eintragskategorie gefunden."
|
5896 |
|
5897 |
+
#: core/templates-ui.php:193
|
5898 |
msgid "Directory"
|
5899 |
msgstr "Verzeichnis"
|
5900 |
|
5901 |
+
#: core/templates-ui.php:199
|
5902 |
#, fuzzy
|
5903 |
msgid "View All Listings"
|
5904 |
msgstr "Alle Einträge anschauen"
|
5905 |
|
5906 |
+
#: core/templates-ui.php:205
|
5907 |
#, fuzzy
|
5908 |
msgid "Create A Listing"
|
5909 |
msgstr "kostenloser Eintrag"
|
5910 |
|
5911 |
+
#: core/templates-ui.php:232
|
5912 |
msgctxt "templates"
|
5913 |
msgid "Search Listings"
|
5914 |
msgstr "Eintrag suchen"
|
5915 |
|
5916 |
+
#: core/templates-ui.php:235
|
5917 |
msgctxt "templates"
|
5918 |
msgid "Advanced Search"
|
5919 |
msgstr "Erweiterte Suche"
|
5920 |
|
5921 |
+
#: core/templates-ui.php:264 core/templates-ui.php:289
|
5922 |
msgctxt "templates sort"
|
5923 |
msgid "Sort By:"
|
5924 |
msgstr "Sortieren nach"
|
5925 |
|
5926 |
+
#: core/templates-ui.php:283
|
5927 |
msgctxt "sort"
|
5928 |
msgid "Reset"
|
5929 |
msgstr "Zurücksetzen"
|
5930 |
|
5931 |
+
#: core/templates-ui.php:305
|
5932 |
#, fuzzy
|
5933 |
msgctxt "sort"
|
5934 |
msgid "(Reset)"
|
5935 |
msgstr "Zurücksetzen"
|
5936 |
|
5937 |
+
#: core/themes.php:749
|
5938 |
#, fuzzy
|
5939 |
msgctxt "themes"
|
5940 |
msgid "ZIP file is not a valid BD theme file."
|
5941 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
5942 |
|
5943 |
+
#: core/themes.php:755
|
5944 |
#, fuzzy
|
5945 |
msgctxt "themes"
|
5946 |
msgid "Could not create themes directory."
|
5947 |
msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
|
5948 |
|
5949 |
+
#: core/themes.php:763
|
5950 |
#, fuzzy
|
5951 |
msgctxt "themes"
|
5952 |
msgid "Could not remove previous theme directory \"%s\"."
|
5953 |
msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
|
5954 |
|
5955 |
+
#: core/themes.php:769
|
5956 |
#, fuzzy
|
5957 |
msgctxt "themes"
|
5958 |
msgid "Could not move new theme into theme directory."
|
6052 |
msgstr "Sie sind nicht autorisiert um diesen Eintrag zu bearbeiten."
|
6053 |
|
6054 |
#: core/view-submit-listing.php:58
|
6055 |
+
#, fuzzy
|
6056 |
+
msgctxt "views"
|
6057 |
msgid "Edit Your Listing"
|
6058 |
msgstr "Meinen Eintrag bearbeiten"
|
6059 |
|
|
|
|
|
|
|
|
|
|
|
6060 |
#: core/view-submit-listing.php:65
|
6061 |
msgctxt "templates"
|
6062 |
msgid ""
|
6212 |
msgid "l F j, Y \\a\\t g:i a"
|
6213 |
msgstr "l F j, Y \\a\\t g:i a"
|
6214 |
|
6215 |
+
#: core/views/listing_contact.php:173
|
6216 |
+
#, fuzzy
|
6217 |
+
msgctxt "contact-message"
|
6218 |
+
msgid "Your message has been sent."
|
6219 |
+
msgstr "Dein Eintrag wurde gelöscht."
|
6220 |
+
|
6221 |
#: core/views/listing_contact.php:178
|
6222 |
msgctxt "contact-message"
|
6223 |
msgid "%s (admin: %s)"
|
6395 |
msgid "Find A Listing"
|
6396 |
msgstr "Eintrag finden"
|
6397 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6398 |
#: core/views/submit_listing.php:16
|
6399 |
msgctxt "templates"
|
6400 |
msgid ""
|
6521 |
msgid "Search"
|
6522 |
msgstr "Suche"
|
6523 |
|
6524 |
+
#: templates/billing-information-form.tpl.php:4
|
6525 |
msgctxt "months"
|
6526 |
msgid "Jan"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
+
#: templates/billing-information-form.tpl.php:5
|
6530 |
#, fuzzy
|
6531 |
msgctxt "months"
|
6532 |
msgid "Feb"
|
6533 |
msgstr "Preis"
|
6534 |
|
6535 |
+
#: templates/billing-information-form.tpl.php:6
|
6536 |
#, fuzzy
|
6537 |
msgctxt "months"
|
6538 |
msgid "Mar"
|
6539 |
msgstr "Markieren als"
|
6540 |
|
6541 |
+
#: templates/billing-information-form.tpl.php:7
|
6542 |
msgctxt "months"
|
6543 |
msgid "Apr"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
+
#: templates/billing-information-form.tpl.php:8
|
6547 |
#, fuzzy
|
6548 |
msgctxt "months"
|
6549 |
msgid "May"
|
6550 |
msgstr "Markieren als"
|
6551 |
|
6552 |
+
#: templates/billing-information-form.tpl.php:9
|
6553 |
msgctxt "months"
|
6554 |
msgid "Jun"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
+
#: templates/billing-information-form.tpl.php:10
|
6558 |
msgctxt "months"
|
6559 |
msgid "Jul"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
+
#: templates/billing-information-form.tpl.php:11
|
6563 |
msgctxt "months"
|
6564 |
msgid "Aug"
|
6565 |
msgstr ""
|
6566 |
|
6567 |
+
#: templates/billing-information-form.tpl.php:12
|
6568 |
msgctxt "months"
|
6569 |
msgid "Sep"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: templates/billing-information-form.tpl.php:13
|
6573 |
msgctxt "months"
|
6574 |
msgid "Oct"
|
6575 |
msgstr ""
|
6576 |
|
6577 |
+
#: templates/billing-information-form.tpl.php:14
|
6578 |
msgctxt "months"
|
6579 |
msgid "Nov"
|
6580 |
msgstr ""
|
6581 |
|
6582 |
+
#: templates/billing-information-form.tpl.php:15
|
6583 |
msgctxt "months"
|
6584 |
msgid "Dec"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
+
#: templates/billing-information-form.tpl.php:30
|
6588 |
#, fuzzy
|
6589 |
msgctxt "checkout form"
|
6590 |
msgid "Credit Card Details"
|
6591 |
msgstr "Aktuelle Preisdetails"
|
6592 |
|
6593 |
+
#: templates/billing-information-form.tpl.php:31
|
6594 |
#, fuzzy
|
6595 |
msgctxt "checkout form"
|
6596 |
msgid "Please enter your credit card details below."
|
6597 |
msgstr "Bitte geben Sie einen Namen ein."
|
6598 |
|
6599 |
+
#: templates/billing-information-form.tpl.php:36
|
6600 |
+
#, fuzzy
|
6601 |
+
msgctxt "checkout form"
|
6602 |
+
msgid "E-mail:"
|
6603 |
+
msgstr "E-mail: %s"
|
6604 |
+
|
6605 |
+
#: templates/billing-information-form.tpl.php:44
|
6606 |
#, fuzzy
|
6607 |
msgctxt "checkout form"
|
6608 |
msgid "First Name:"
|
6609 |
msgstr "Name:"
|
6610 |
|
6611 |
+
#: templates/billing-information-form.tpl.php:52
|
6612 |
#, fuzzy
|
6613 |
msgctxt "checkout form"
|
6614 |
msgid "Last Name:"
|
6615 |
msgstr "Name:"
|
6616 |
|
6617 |
+
#: templates/billing-information-form.tpl.php:60
|
6618 |
msgctxt "checkout form"
|
6619 |
msgid "Card Number:"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
+
#: templates/billing-information-form.tpl.php:68
|
6623 |
#, fuzzy
|
6624 |
msgctxt "checkout form"
|
6625 |
msgid "Expiration Date (MM/YYYY):"
|
6626 |
msgstr "Ablaufdatum:"
|
6627 |
|
6628 |
+
#: templates/billing-information-form.tpl.php:88
|
6629 |
msgctxt "checkout form"
|
6630 |
msgid "CVC:"
|
6631 |
msgstr ""
|
6632 |
|
6633 |
+
#: templates/billing-information-form.tpl.php:98
|
6634 |
#, fuzzy
|
6635 |
msgctxt "checkout form"
|
6636 |
msgid "Billing Address"
|
6637 |
msgstr "E-mail Adresse:"
|
6638 |
|
6639 |
+
#: templates/billing-information-form.tpl.php:103
|
6640 |
msgctxt "checkout form"
|
6641 |
msgid "Country:"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: templates/billing-information-form.tpl.php:111
|
6645 |
#, fuzzy
|
6646 |
msgctxt "checkout form"
|
6647 |
msgid "State:"
|
6648 |
msgstr "Status"
|
6649 |
|
6650 |
+
#: templates/billing-information-form.tpl.php:119
|
6651 |
msgctxt "checkout form"
|
6652 |
msgid "City:"
|
6653 |
msgstr ""
|
6654 |
|
6655 |
+
#: templates/billing-information-form.tpl.php:127
|
6656 |
#, fuzzy
|
6657 |
msgctxt "checkout form"
|
6658 |
msgid "Address Line 1:"
|
6659 |
msgstr "E-mail Adresse:"
|
6660 |
|
6661 |
+
#: templates/billing-information-form.tpl.php:135
|
6662 |
#, fuzzy
|
6663 |
msgctxt "checkout form"
|
6664 |
msgid "Address Line 2:"
|
6665 |
msgstr "E-mail Adresse:"
|
6666 |
|
6667 |
+
#: templates/billing-information-form.tpl.php:143
|
6668 |
msgctxt "checkout form"
|
6669 |
msgid "ZIP Code:"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: templates/billing-information-form.tpl.php:151
|
6673 |
+
#, fuzzy
|
6674 |
+
msgctxt "checkout form"
|
6675 |
+
msgid "Phone Number:"
|
6676 |
+
msgstr "Telefonnummer geschäftlich"
|
6677 |
+
|
6678 |
+
#: templates/billing-information-form.tpl.php:161
|
6679 |
#, fuzzy
|
6680 |
msgctxt "WPBDM"
|
6681 |
msgid "Cancel"
|
6682 |
msgstr "Abbrechen"
|
6683 |
|
6684 |
+
#: templates/billing-information-form.tpl.php:162
|
6685 |
#, fuzzy
|
6686 |
msgctxt "WPBDM"
|
6687 |
msgid "Submit Payment"
|
7297 |
msgid "Address"
|
7298 |
msgstr "E-mail Adresse:"
|
7299 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7300 |
#. Plugin URI of the plugin/theme
|
7301 |
msgid "http://www.businessdirectoryplugin.com"
|
7302 |
msgstr "http://www.businessdirectoryplugin.com"
|
7315 |
msgid "http://businessdirectoryplugin.com"
|
7316 |
msgstr "http://businessdirectoryplugin.com"
|
7317 |
|
7318 |
+
#~ msgctxt "title"
|
7319 |
+
#~ msgid "Submit A Listing"
|
7320 |
+
#~ msgstr "Eintrag zusenden"
|
7321 |
+
|
7322 |
+
#~ msgctxt "templates"
|
7323 |
+
#~ msgid "Submit A Listing"
|
7324 |
+
#~ msgstr "Einen Eintrag einreichen"
|
7325 |
+
|
7326 |
+
#, fuzzy
|
7327 |
+
#~ msgid "Error"
|
7328 |
+
#~ msgstr "Fehler"
|
7329 |
+
|
7330 |
#~ msgctxt "formfields-preview"
|
7331 |
#~ msgid ""
|
7332 |
#~ "This is a preview of the form as it will appear during \"Submit a Listing"
|
languages/WPBDM-en_US.mo
CHANGED
Binary file
|
languages/WPBDM-en_US.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 3.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
-
"POT-Creation-Date: 2016-11-
|
8 |
"PO-Revision-Date: 2015-04-07 11:11-0500\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -536,23 +536,23 @@ msgid "Could not move \"%s\" to a temporary directory."
|
|
536 |
msgstr ""
|
537 |
|
538 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
539 |
-
#: core/licensing.php:
|
540 |
msgctxt "licensing"
|
541 |
msgid "Could not contact licensing server"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/class-themes-admin.php:372 core/licensing.php:
|
545 |
-
#: core/licensing.php:
|
546 |
msgctxt "licensing"
|
547 |
msgid "License key is invalid"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin/class-themes-admin.php:377 core/licensing.php:
|
551 |
msgctxt "licensing"
|
552 |
msgid "Could not activate license: %s."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/class-themes-admin.php:390 core/licensing.php:
|
556 |
msgctxt "licensing"
|
557 |
msgid "License activated"
|
558 |
msgstr ""
|
@@ -562,7 +562,7 @@ msgctxt "licensing"
|
|
562 |
msgid "Invalid response from server"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: admin/class-themes-admin.php:450 core/licensing.php:
|
566 |
msgctxt "licensing"
|
567 |
msgid "License deactivated"
|
568 |
msgstr ""
|
@@ -1098,7 +1098,7 @@ msgctxt "debug-info"
|
|
1098 |
msgid "Environment"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: admin/page-debug.php:
|
1102 |
msgctxt "debug info"
|
1103 |
msgid "Test SSL setup..."
|
1104 |
msgstr ""
|
@@ -2092,7 +2092,7 @@ msgctxt "form-fields admin"
|
|
2092 |
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.
|
2096 |
#. Plugin Name of the plugin/theme
|
2097 |
#: admin/templates/header.tpl.php:4
|
2098 |
msgid "Business Directory Plugin"
|
@@ -2838,8 +2838,9 @@ msgctxt "rss feed"
|
|
2838 |
msgid "%s Feed"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#: business-directory-plugin.php:1117
|
2842 |
-
|
|
|
2843 |
msgid "Submit A Listing"
|
2844 |
msgstr ""
|
2845 |
|
@@ -2958,37 +2959,42 @@ msgctxt "form-fields-api"
|
|
2958 |
msgid "An error occurred while trying to delete this field."
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: core/class-gateway.php:
|
|
|
|
|
|
|
|
|
|
|
2962 |
msgctxt "billing info"
|
2963 |
msgid "First name is required."
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: core/class-gateway.php:
|
2967 |
msgctxt "billing info"
|
2968 |
msgid "Last name is required."
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: core/class-gateway.php:
|
2972 |
msgctxt "billing info"
|
2973 |
msgid "Credit card number is required."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
-
#: core/class-gateway.php:
|
2977 |
msgctxt "billing info"
|
2978 |
msgid "Credit card expiration date is invalid."
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: core/class-gateway.php:
|
2982 |
msgctxt "billing info"
|
2983 |
msgid "Credit card CVC number is required."
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: core/class-gateway.php:
|
2987 |
msgctxt "billing info"
|
2988 |
msgid "Country is required."
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: core/class-gateway.php:
|
2992 |
msgctxt "billing info"
|
2993 |
msgid "Address is required."
|
2994 |
msgstr ""
|
@@ -4622,14 +4628,14 @@ msgstr ""
|
|
4622 |
|
4623 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4624 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4625 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4626 |
msgctxt "form-fields admin"
|
4627 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4631 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4632 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4633 |
msgctxt "form-fields admin"
|
4634 |
msgid "Field list of options is required."
|
4635 |
msgstr ""
|
@@ -4693,6 +4699,18 @@ msgctxt "form-fields api"
|
|
4693 |
msgid "Multiselect List"
|
4694 |
msgstr ""
|
4695 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4696 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
4697 |
msgctxt "form fields"
|
4698 |
msgid "Phone Number"
|
@@ -4714,12 +4732,12 @@ msgid "-- Choose Terms --"
|
|
4714 |
msgstr ""
|
4715 |
|
4716 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
4717 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4718 |
msgctxt "form-fields-api category-select"
|
4719 |
msgid "-- Choose One --"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4723 |
msgctxt "form-fields admin"
|
4724 |
msgid "Allow empty selection on search?"
|
4725 |
msgstr ""
|
@@ -5033,7 +5051,7 @@ msgctxt "authorize-net"
|
|
5033 |
msgid "Setup fee"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
-
#: core/gateways-authorize-net.php:
|
5037 |
msgctxt "authorize-net"
|
5038 |
msgid "Could not process payment."
|
5039 |
msgstr ""
|
@@ -5220,37 +5238,37 @@ msgstr ""
|
|
5220 |
msgid "Please <contact-link>contact customer support</a>."
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#: core/licensing.php:
|
5224 |
msgctxt "settings"
|
5225 |
msgid "Licenses"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
-
#: core/licensing.php:
|
5229 |
msgctxt "settings"
|
5230 |
msgid "Premium Modules"
|
5231 |
msgstr ""
|
5232 |
|
5233 |
-
#: core/licensing.php:
|
5234 |
msgctxt "licensing"
|
5235 |
msgid "Invalid module ID"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: core/licensing.php:
|
5239 |
msgctxt "licensing"
|
5240 |
msgid "No license key provided"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#: core/licensing.php:
|
5244 |
msgctxt "licensing"
|
5245 |
msgid "Deactivation failed"
|
5246 |
msgstr ""
|
5247 |
|
5248 |
-
#: core/licensing.php:
|
5249 |
msgctxt "licensing"
|
5250 |
msgid "Business Directory - License Key Required"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#: core/licensing.php:
|
5254 |
msgctxt "licensing"
|
5255 |
msgid ""
|
5256 |
"The following premium modules will not work until a valid license key is "
|
@@ -5258,12 +5276,12 @@ msgid ""
|
|
5258 |
"information."
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#: core/licensing.php:
|
5262 |
msgctxt "licensing"
|
5263 |
msgid "Business Directory - License Key Expired"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: core/licensing.php:
|
5267 |
msgctxt "licensing"
|
5268 |
msgid ""
|
5269 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
@@ -5271,17 +5289,17 @@ msgid ""
|
|
5271 |
"until the license is renewed."
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: core/licensing.php:
|
5275 |
msgctxt "licensing"
|
5276 |
msgid "Remind me later"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: core/licensing.php:
|
5280 |
msgctxt "licensing"
|
5281 |
msgid "Renew License Key"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: core/licensing.php:
|
5285 |
msgctxt "licensing"
|
5286 |
msgid "Could not deactivate license: %s."
|
5287 |
msgstr ""
|
@@ -5461,64 +5479,64 @@ msgctxt "search"
|
|
5461 |
msgid "Search Results"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: core/templates-ui.php:
|
5465 |
msgctxt "templates"
|
5466 |
msgid "No listing categories found."
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: core/templates-ui.php:
|
5470 |
msgid "Directory"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: core/templates-ui.php:
|
5474 |
msgid "View All Listings"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: core/templates-ui.php:
|
5478 |
msgid "Create A Listing"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: core/templates-ui.php:
|
5482 |
msgctxt "templates"
|
5483 |
msgid "Search Listings"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: core/templates-ui.php:
|
5487 |
msgctxt "templates"
|
5488 |
msgid "Advanced Search"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: core/templates-ui.php:
|
5492 |
msgctxt "templates sort"
|
5493 |
msgid "Sort By:"
|
5494 |
msgstr ""
|
5495 |
|
5496 |
-
#: core/templates-ui.php:
|
5497 |
msgctxt "sort"
|
5498 |
msgid "Reset"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
-
#: core/templates-ui.php:
|
5502 |
msgctxt "sort"
|
5503 |
msgid "(Reset)"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: core/themes.php:
|
5507 |
msgctxt "themes"
|
5508 |
msgid "ZIP file is not a valid BD theme file."
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: core/themes.php:
|
5512 |
msgctxt "themes"
|
5513 |
msgid "Could not create themes directory."
|
5514 |
msgstr ""
|
5515 |
|
5516 |
-
#: core/themes.php:
|
5517 |
msgctxt "themes"
|
5518 |
msgid "Could not remove previous theme directory \"%s\"."
|
5519 |
msgstr ""
|
5520 |
|
5521 |
-
#: core/themes.php:
|
5522 |
msgctxt "themes"
|
5523 |
msgid "Could not move new theme into theme directory."
|
5524 |
msgstr ""
|
@@ -5603,15 +5621,10 @@ msgid "You are not authorized to edit this listing."
|
|
5603 |
msgstr ""
|
5604 |
|
5605 |
#: core/view-submit-listing.php:58
|
5606 |
-
msgctxt "
|
5607 |
msgid "Edit Your Listing"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: core/view-submit-listing.php:58
|
5611 |
-
msgctxt "templates"
|
5612 |
-
msgid "Submit A Listing"
|
5613 |
-
msgstr ""
|
5614 |
-
|
5615 |
#: core/view-submit-listing.php:65
|
5616 |
msgctxt "templates"
|
5617 |
msgid ""
|
@@ -5756,6 +5769,11 @@ msgstr ""
|
|
5756 |
msgid "l F j, Y \\a\\t g:i a"
|
5757 |
msgstr ""
|
5758 |
|
|
|
|
|
|
|
|
|
|
|
5759 |
#: core/views/listing_contact.php:178
|
5760 |
msgctxt "contact-message"
|
5761 |
msgid "%s (admin: %s)"
|
@@ -5908,11 +5926,6 @@ msgctxt "views"
|
|
5908 |
msgid "Find A Listing"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
-
#: core/views/submit_listing.php:10
|
5912 |
-
msgctxt "views"
|
5913 |
-
msgid "Submit A Listing"
|
5914 |
-
msgstr ""
|
5915 |
-
|
5916 |
#: core/views/submit_listing.php:16
|
5917 |
msgctxt "templates"
|
5918 |
msgid ""
|
@@ -6035,142 +6048,152 @@ msgctxt "widgets"
|
|
6035 |
msgid "Search"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
-
#: templates/billing-information-form.tpl.php:
|
6039 |
msgctxt "months"
|
6040 |
msgid "Jan"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: templates/billing-information-form.tpl.php:
|
6044 |
msgctxt "months"
|
6045 |
msgid "Feb"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
-
#: templates/billing-information-form.tpl.php:
|
6049 |
msgctxt "months"
|
6050 |
msgid "Mar"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
-
#: templates/billing-information-form.tpl.php:
|
6054 |
msgctxt "months"
|
6055 |
msgid "Apr"
|
6056 |
msgstr ""
|
6057 |
|
6058 |
-
#: templates/billing-information-form.tpl.php:
|
6059 |
msgctxt "months"
|
6060 |
msgid "May"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: templates/billing-information-form.tpl.php:
|
6064 |
msgctxt "months"
|
6065 |
msgid "Jun"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: templates/billing-information-form.tpl.php:
|
6069 |
msgctxt "months"
|
6070 |
msgid "Jul"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
-
#: templates/billing-information-form.tpl.php:
|
6074 |
msgctxt "months"
|
6075 |
msgid "Aug"
|
6076 |
msgstr ""
|
6077 |
|
6078 |
-
#: templates/billing-information-form.tpl.php:
|
6079 |
msgctxt "months"
|
6080 |
msgid "Sep"
|
6081 |
msgstr ""
|
6082 |
|
6083 |
-
#: templates/billing-information-form.tpl.php:
|
6084 |
msgctxt "months"
|
6085 |
msgid "Oct"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
-
#: templates/billing-information-form.tpl.php:
|
6089 |
msgctxt "months"
|
6090 |
msgid "Nov"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: templates/billing-information-form.tpl.php:
|
6094 |
msgctxt "months"
|
6095 |
msgid "Dec"
|
6096 |
msgstr ""
|
6097 |
|
6098 |
-
#: templates/billing-information-form.tpl.php:
|
6099 |
msgctxt "checkout form"
|
6100 |
msgid "Credit Card Details"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#: templates/billing-information-form.tpl.php:
|
6104 |
msgctxt "checkout form"
|
6105 |
msgid "Please enter your credit card details below."
|
6106 |
msgstr ""
|
6107 |
|
6108 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
6109 |
msgctxt "checkout form"
|
6110 |
msgid "First Name:"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: templates/billing-information-form.tpl.php:
|
6114 |
msgctxt "checkout form"
|
6115 |
msgid "Last Name:"
|
6116 |
msgstr ""
|
6117 |
|
6118 |
-
#: templates/billing-information-form.tpl.php:
|
6119 |
msgctxt "checkout form"
|
6120 |
msgid "Card Number:"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
-
#: templates/billing-information-form.tpl.php:
|
6124 |
msgctxt "checkout form"
|
6125 |
msgid "Expiration Date (MM/YYYY):"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: templates/billing-information-form.tpl.php:
|
6129 |
msgctxt "checkout form"
|
6130 |
msgid "CVC:"
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: templates/billing-information-form.tpl.php:
|
6134 |
msgctxt "checkout form"
|
6135 |
msgid "Billing Address"
|
6136 |
msgstr ""
|
6137 |
|
6138 |
-
#: templates/billing-information-form.tpl.php:
|
6139 |
msgctxt "checkout form"
|
6140 |
msgid "Country:"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
-
#: templates/billing-information-form.tpl.php:
|
6144 |
msgctxt "checkout form"
|
6145 |
msgid "State:"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: templates/billing-information-form.tpl.php:
|
6149 |
msgctxt "checkout form"
|
6150 |
msgid "City:"
|
6151 |
msgstr ""
|
6152 |
|
6153 |
-
#: templates/billing-information-form.tpl.php:
|
6154 |
msgctxt "checkout form"
|
6155 |
msgid "Address Line 1:"
|
6156 |
msgstr ""
|
6157 |
|
6158 |
-
#: templates/billing-information-form.tpl.php:
|
6159 |
msgctxt "checkout form"
|
6160 |
msgid "Address Line 2:"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
-
#: templates/billing-information-form.tpl.php:
|
6164 |
msgctxt "checkout form"
|
6165 |
msgid "ZIP Code:"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
6169 |
msgctxt "WPBDM"
|
6170 |
msgid "Cancel"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
-
#: templates/billing-information-form.tpl.php:
|
6174 |
msgctxt "WPBDM"
|
6175 |
msgid "Submit Payment"
|
6176 |
msgstr ""
|
@@ -6747,27 +6770,6 @@ msgctxt "themes/default"
|
|
6747 |
msgid "Address"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:178
|
6751 |
-
msgid ""
|
6752 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
6753 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
6754 |
-
msgstr ""
|
6755 |
-
|
6756 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:185
|
6757 |
-
msgid ""
|
6758 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
6759 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
6760 |
-
"\">update now</a>."
|
6761 |
-
msgstr ""
|
6762 |
-
|
6763 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
6764 |
-
msgid "You do not have permission to install plugin updates"
|
6765 |
-
msgstr ""
|
6766 |
-
|
6767 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
6768 |
-
msgid "Error"
|
6769 |
-
msgstr ""
|
6770 |
-
|
6771 |
#. Plugin URI of the plugin/theme
|
6772 |
msgid "http://www.businessdirectoryplugin.com"
|
6773 |
msgstr ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 3.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
+
"POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
|
8 |
"PO-Revision-Date: 2015-04-07 11:11-0500\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
536 |
msgstr ""
|
537 |
|
538 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
539 |
+
#: core/licensing.php:126 core/licensing.php:158
|
540 |
msgctxt "licensing"
|
541 |
msgid "Could not contact licensing server"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/class-themes-admin.php:372 core/licensing.php:131
|
545 |
+
#: core/licensing.php:165
|
546 |
msgctxt "licensing"
|
547 |
msgid "License key is invalid"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/class-themes-admin.php:377 core/licensing.php:320
|
551 |
msgctxt "licensing"
|
552 |
msgid "Could not activate license: %s."
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/class-themes-admin.php:390 core/licensing.php:322
|
556 |
msgctxt "licensing"
|
557 |
msgid "License activated"
|
558 |
msgstr ""
|
562 |
msgid "Invalid response from server"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: admin/class-themes-admin.php:450 core/licensing.php:340
|
566 |
msgctxt "licensing"
|
567 |
msgid "License deactivated"
|
568 |
msgstr ""
|
1098 |
msgid "Environment"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: admin/page-debug.php:72
|
1102 |
msgctxt "debug info"
|
1103 |
msgid "Test SSL setup..."
|
1104 |
msgstr ""
|
2092 |
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
|
2096 |
#. Plugin Name of the plugin/theme
|
2097 |
#: admin/templates/header.tpl.php:4
|
2098 |
msgid "Business Directory Plugin"
|
2838 |
msgid "%s Feed"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
+
#: business-directory-plugin.php:1117 core/view-submit-listing.php:58
|
2842 |
+
#: core/views/submit_listing.php:10
|
2843 |
+
msgctxt "views"
|
2844 |
msgid "Submit A Listing"
|
2845 |
msgstr ""
|
2846 |
|
2959 |
msgid "An error occurred while trying to delete this field."
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: core/class-gateway.php:133
|
2963 |
+
msgctxt "billing info"
|
2964 |
+
msgid "Please enter a valid e-mail address."
|
2965 |
+
msgstr ""
|
2966 |
+
|
2967 |
+
#: core/class-gateway.php:136
|
2968 |
msgctxt "billing info"
|
2969 |
msgid "First name is required."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: core/class-gateway.php:139
|
2973 |
msgctxt "billing info"
|
2974 |
msgid "Last name is required."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: core/class-gateway.php:142
|
2978 |
msgctxt "billing info"
|
2979 |
msgid "Credit card number is required."
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: core/class-gateway.php:145
|
2983 |
msgctxt "billing info"
|
2984 |
msgid "Credit card expiration date is invalid."
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: core/class-gateway.php:148
|
2988 |
msgctxt "billing info"
|
2989 |
msgid "Credit card CVC number is required."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: core/class-gateway.php:151
|
2993 |
msgctxt "billing info"
|
2994 |
msgid "Country is required."
|
2995 |
msgstr ""
|
2996 |
|
2997 |
+
#: core/class-gateway.php:154
|
2998 |
msgctxt "billing info"
|
2999 |
msgid "Address is required."
|
3000 |
msgstr ""
|
4628 |
|
4629 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4630 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4631 |
+
#: core/fieldtypes/class-fieldtypes-select.php:144
|
4632 |
msgctxt "form-fields admin"
|
4633 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4634 |
msgstr ""
|
4635 |
|
4636 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4637 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4638 |
+
#: core/fieldtypes/class-fieldtypes-select.php:172
|
4639 |
msgctxt "form-fields admin"
|
4640 |
msgid "Field list of options is required."
|
4641 |
msgstr ""
|
4699 |
msgid "Multiselect List"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:25
|
4703 |
+
msgctxt "form-fields-admin"
|
4704 |
+
msgid "Number of options visible without scrolling"
|
4705 |
+
msgstr ""
|
4706 |
+
|
4707 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:26
|
4708 |
+
msgctxt "form-fields-admin"
|
4709 |
+
msgid ""
|
4710 |
+
"The height of the list will be adjusted to accommodate the specified number "
|
4711 |
+
"of options."
|
4712 |
+
msgstr ""
|
4713 |
+
|
4714 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
4715 |
msgctxt "form fields"
|
4716 |
msgid "Phone Number"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
4735 |
+
#: core/fieldtypes/class-fieldtypes-select.php:105
|
4736 |
msgctxt "form-fields-api category-select"
|
4737 |
msgid "-- Choose One --"
|
4738 |
msgstr ""
|
4739 |
|
4740 |
+
#: core/fieldtypes/class-fieldtypes-select.php:155
|
4741 |
msgctxt "form-fields admin"
|
4742 |
msgid "Allow empty selection on search?"
|
4743 |
msgstr ""
|
5051 |
msgid "Setup fee"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: core/gateways-authorize-net.php:175
|
5055 |
msgctxt "authorize-net"
|
5056 |
msgid "Could not process payment."
|
5057 |
msgstr ""
|
5238 |
msgid "Please <contact-link>contact customer support</a>."
|
5239 |
msgstr ""
|
5240 |
|
5241 |
+
#: core/licensing.php:42 core/licensing.php:64 core/licensing.php:65
|
5242 |
msgctxt "settings"
|
5243 |
msgid "Licenses"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: core/licensing.php:45
|
5247 |
msgctxt "settings"
|
5248 |
msgid "Premium Modules"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: core/licensing.php:106 core/licensing.php:140
|
5252 |
msgctxt "licensing"
|
5253 |
msgid "Invalid module ID"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
+
#: core/licensing.php:111
|
5257 |
msgctxt "licensing"
|
5258 |
msgid "No license key provided"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
+
#: core/licensing.php:168
|
5262 |
msgctxt "licensing"
|
5263 |
msgid "Deactivation failed"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: core/licensing.php:220
|
5267 |
msgctxt "licensing"
|
5268 |
msgid "Business Directory - License Key Required"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
+
#: core/licensing.php:223
|
5272 |
msgctxt "licensing"
|
5273 |
msgid ""
|
5274 |
"The following premium modules will not work until a valid license key is "
|
5276 |
"information."
|
5277 |
msgstr ""
|
5278 |
|
5279 |
+
#: core/licensing.php:244
|
5280 |
msgctxt "licensing"
|
5281 |
msgid "Business Directory - License Key Expired"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: core/licensing.php:245
|
5285 |
msgctxt "licensing"
|
5286 |
msgid ""
|
5287 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
5289 |
"until the license is renewed."
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: core/licensing.php:249
|
5293 |
msgctxt "licensing"
|
5294 |
msgid "Remind me later"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: core/licensing.php:251
|
5298 |
msgctxt "licensing"
|
5299 |
msgid "Renew License Key"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: core/licensing.php:338
|
5303 |
msgctxt "licensing"
|
5304 |
msgid "Could not deactivate license: %s."
|
5305 |
msgstr ""
|
5479 |
msgid "Search Results"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: core/templates-ui.php:169
|
5483 |
msgctxt "templates"
|
5484 |
msgid "No listing categories found."
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: core/templates-ui.php:193
|
5488 |
msgid "Directory"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: core/templates-ui.php:199
|
5492 |
msgid "View All Listings"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: core/templates-ui.php:205
|
5496 |
msgid "Create A Listing"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: core/templates-ui.php:232
|
5500 |
msgctxt "templates"
|
5501 |
msgid "Search Listings"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
+
#: core/templates-ui.php:235
|
5505 |
msgctxt "templates"
|
5506 |
msgid "Advanced Search"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: core/templates-ui.php:264 core/templates-ui.php:289
|
5510 |
msgctxt "templates sort"
|
5511 |
msgid "Sort By:"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: core/templates-ui.php:283
|
5515 |
msgctxt "sort"
|
5516 |
msgid "Reset"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: core/templates-ui.php:305
|
5520 |
msgctxt "sort"
|
5521 |
msgid "(Reset)"
|
5522 |
msgstr ""
|
5523 |
|
5524 |
+
#: core/themes.php:749
|
5525 |
msgctxt "themes"
|
5526 |
msgid "ZIP file is not a valid BD theme file."
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: core/themes.php:755
|
5530 |
msgctxt "themes"
|
5531 |
msgid "Could not create themes directory."
|
5532 |
msgstr ""
|
5533 |
|
5534 |
+
#: core/themes.php:763
|
5535 |
msgctxt "themes"
|
5536 |
msgid "Could not remove previous theme directory \"%s\"."
|
5537 |
msgstr ""
|
5538 |
|
5539 |
+
#: core/themes.php:769
|
5540 |
msgctxt "themes"
|
5541 |
msgid "Could not move new theme into theme directory."
|
5542 |
msgstr ""
|
5621 |
msgstr ""
|
5622 |
|
5623 |
#: core/view-submit-listing.php:58
|
5624 |
+
msgctxt "views"
|
5625 |
msgid "Edit Your Listing"
|
5626 |
msgstr ""
|
5627 |
|
|
|
|
|
|
|
|
|
|
|
5628 |
#: core/view-submit-listing.php:65
|
5629 |
msgctxt "templates"
|
5630 |
msgid ""
|
5769 |
msgid "l F j, Y \\a\\t g:i a"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
+
#: core/views/listing_contact.php:173
|
5773 |
+
msgctxt "contact-message"
|
5774 |
+
msgid "Your message has been sent."
|
5775 |
+
msgstr ""
|
5776 |
+
|
5777 |
#: core/views/listing_contact.php:178
|
5778 |
msgctxt "contact-message"
|
5779 |
msgid "%s (admin: %s)"
|
5926 |
msgid "Find A Listing"
|
5927 |
msgstr ""
|
5928 |
|
|
|
|
|
|
|
|
|
|
|
5929 |
#: core/views/submit_listing.php:16
|
5930 |
msgctxt "templates"
|
5931 |
msgid ""
|
6048 |
msgid "Search"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
+
#: templates/billing-information-form.tpl.php:4
|
6052 |
msgctxt "months"
|
6053 |
msgid "Jan"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
+
#: templates/billing-information-form.tpl.php:5
|
6057 |
msgctxt "months"
|
6058 |
msgid "Feb"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
+
#: templates/billing-information-form.tpl.php:6
|
6062 |
msgctxt "months"
|
6063 |
msgid "Mar"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
+
#: templates/billing-information-form.tpl.php:7
|
6067 |
msgctxt "months"
|
6068 |
msgid "Apr"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
+
#: templates/billing-information-form.tpl.php:8
|
6072 |
msgctxt "months"
|
6073 |
msgid "May"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
+
#: templates/billing-information-form.tpl.php:9
|
6077 |
msgctxt "months"
|
6078 |
msgid "Jun"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: templates/billing-information-form.tpl.php:10
|
6082 |
msgctxt "months"
|
6083 |
msgid "Jul"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
+
#: templates/billing-information-form.tpl.php:11
|
6087 |
msgctxt "months"
|
6088 |
msgid "Aug"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
+
#: templates/billing-information-form.tpl.php:12
|
6092 |
msgctxt "months"
|
6093 |
msgid "Sep"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
+
#: templates/billing-information-form.tpl.php:13
|
6097 |
msgctxt "months"
|
6098 |
msgid "Oct"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: templates/billing-information-form.tpl.php:14
|
6102 |
msgctxt "months"
|
6103 |
msgid "Nov"
|
6104 |
msgstr ""
|
6105 |
|
6106 |
+
#: templates/billing-information-form.tpl.php:15
|
6107 |
msgctxt "months"
|
6108 |
msgid "Dec"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
+
#: templates/billing-information-form.tpl.php:30
|
6112 |
msgctxt "checkout form"
|
6113 |
msgid "Credit Card Details"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: templates/billing-information-form.tpl.php:31
|
6117 |
msgctxt "checkout form"
|
6118 |
msgid "Please enter your credit card details below."
|
6119 |
msgstr ""
|
6120 |
|
6121 |
+
#: templates/billing-information-form.tpl.php:36
|
6122 |
+
msgctxt "checkout form"
|
6123 |
+
msgid "E-mail:"
|
6124 |
+
msgstr ""
|
6125 |
+
|
6126 |
+
#: templates/billing-information-form.tpl.php:44
|
6127 |
msgctxt "checkout form"
|
6128 |
msgid "First Name:"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: templates/billing-information-form.tpl.php:52
|
6132 |
msgctxt "checkout form"
|
6133 |
msgid "Last Name:"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
+
#: templates/billing-information-form.tpl.php:60
|
6137 |
msgctxt "checkout form"
|
6138 |
msgid "Card Number:"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
+
#: templates/billing-information-form.tpl.php:68
|
6142 |
msgctxt "checkout form"
|
6143 |
msgid "Expiration Date (MM/YYYY):"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: templates/billing-information-form.tpl.php:88
|
6147 |
msgctxt "checkout form"
|
6148 |
msgid "CVC:"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: templates/billing-information-form.tpl.php:98
|
6152 |
msgctxt "checkout form"
|
6153 |
msgid "Billing Address"
|
6154 |
msgstr ""
|
6155 |
|
6156 |
+
#: templates/billing-information-form.tpl.php:103
|
6157 |
msgctxt "checkout form"
|
6158 |
msgid "Country:"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
+
#: templates/billing-information-form.tpl.php:111
|
6162 |
msgctxt "checkout form"
|
6163 |
msgid "State:"
|
6164 |
msgstr ""
|
6165 |
|
6166 |
+
#: templates/billing-information-form.tpl.php:119
|
6167 |
msgctxt "checkout form"
|
6168 |
msgid "City:"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
+
#: templates/billing-information-form.tpl.php:127
|
6172 |
msgctxt "checkout form"
|
6173 |
msgid "Address Line 1:"
|
6174 |
msgstr ""
|
6175 |
|
6176 |
+
#: templates/billing-information-form.tpl.php:135
|
6177 |
msgctxt "checkout form"
|
6178 |
msgid "Address Line 2:"
|
6179 |
msgstr ""
|
6180 |
|
6181 |
+
#: templates/billing-information-form.tpl.php:143
|
6182 |
msgctxt "checkout form"
|
6183 |
msgid "ZIP Code:"
|
6184 |
msgstr ""
|
6185 |
|
6186 |
+
#: templates/billing-information-form.tpl.php:151
|
6187 |
+
msgctxt "checkout form"
|
6188 |
+
msgid "Phone Number:"
|
6189 |
+
msgstr ""
|
6190 |
+
|
6191 |
+
#: templates/billing-information-form.tpl.php:161
|
6192 |
msgctxt "WPBDM"
|
6193 |
msgid "Cancel"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
+
#: templates/billing-information-form.tpl.php:162
|
6197 |
msgctxt "WPBDM"
|
6198 |
msgid "Submit Payment"
|
6199 |
msgstr ""
|
6770 |
msgid "Address"
|
6771 |
msgstr ""
|
6772 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6773 |
#. Plugin URI of the plugin/theme
|
6774 |
msgid "http://www.businessdirectoryplugin.com"
|
6775 |
msgstr ""
|
languages/WPBDM-es_ES.mo
CHANGED
Binary file
|
languages/WPBDM-es_ES.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
-
"POT-Creation-Date: 2016-11-
|
8 |
"PO-Revision-Date: 2016-11-01 18:28-0500\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -590,23 +590,23 @@ msgid "Could not move \"%s\" to a temporary directory."
|
|
590 |
msgstr "No se pudo mover \"%s\" a un directorio temporal."
|
591 |
|
592 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
593 |
-
#: core/licensing.php:
|
594 |
msgctxt "licensing"
|
595 |
msgid "Could not contact licensing server"
|
596 |
msgstr "No se pudo contactar el servidor de licencias"
|
597 |
|
598 |
-
#: admin/class-themes-admin.php:372 core/licensing.php:
|
599 |
-
#: core/licensing.php:
|
600 |
msgctxt "licensing"
|
601 |
msgid "License key is invalid"
|
602 |
msgstr "La licencia es inválida"
|
603 |
|
604 |
-
#: admin/class-themes-admin.php:377 core/licensing.php:
|
605 |
msgctxt "licensing"
|
606 |
msgid "Could not activate license: %s."
|
607 |
msgstr "No se pudo activar la licencia: %s."
|
608 |
|
609 |
-
#: admin/class-themes-admin.php:390 core/licensing.php:
|
610 |
msgctxt "licensing"
|
611 |
msgid "License activated"
|
612 |
msgstr "Licencia activada"
|
@@ -616,7 +616,7 @@ msgctxt "licensing"
|
|
616 |
msgid "Invalid response from server"
|
617 |
msgstr "Respuesta inválida de parte de servidor"
|
618 |
|
619 |
-
#: admin/class-themes-admin.php:450 core/licensing.php:
|
620 |
msgctxt "licensing"
|
621 |
msgid "License deactivated"
|
622 |
msgstr "Licencia desactivada"
|
@@ -1173,7 +1173,7 @@ msgctxt "debug-info"
|
|
1173 |
msgid "Environment"
|
1174 |
msgstr "Environment"
|
1175 |
|
1176 |
-
#: admin/page-debug.php:
|
1177 |
msgctxt "debug info"
|
1178 |
msgid "Test SSL setup..."
|
1179 |
msgstr "Probar configuración SSL..."
|
@@ -2243,6 +2243,7 @@ msgstr ""
|
|
2243 |
"Por favor vea la <a>documentación de Campos de Formulario</a> para más "
|
2244 |
"detalles."
|
2245 |
|
|
|
2246 |
#. Plugin Name of the plugin/theme
|
2247 |
#: admin/templates/header.tpl.php:4
|
2248 |
msgid "Business Directory Plugin"
|
@@ -3021,10 +3022,11 @@ msgctxt "rss feed"
|
|
3021 |
msgid "%s Feed"
|
3022 |
msgstr "Feed %s"
|
3023 |
|
3024 |
-
#: business-directory-plugin.php:1117
|
3025 |
-
|
|
|
3026 |
msgid "Submit A Listing"
|
3027 |
-
msgstr "Enviar
|
3028 |
|
3029 |
#: business-directory-plugin.php:1122
|
3030 |
msgctxt "title"
|
@@ -3149,37 +3151,43 @@ msgctxt "form-fields-api"
|
|
3149 |
msgid "An error occurred while trying to delete this field."
|
3150 |
msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
|
3151 |
|
3152 |
-
#: core/class-gateway.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3153 |
msgctxt "billing info"
|
3154 |
msgid "First name is required."
|
3155 |
msgstr "El nombre es requerido."
|
3156 |
|
3157 |
-
#: core/class-gateway.php:
|
3158 |
msgctxt "billing info"
|
3159 |
msgid "Last name is required."
|
3160 |
msgstr "El apellido es requerido."
|
3161 |
|
3162 |
-
#: core/class-gateway.php:
|
3163 |
msgctxt "billing info"
|
3164 |
msgid "Credit card number is required."
|
3165 |
msgstr "El número de la tarjeta de crédito es requerido."
|
3166 |
|
3167 |
-
#: core/class-gateway.php:
|
3168 |
msgctxt "billing info"
|
3169 |
msgid "Credit card expiration date is invalid."
|
3170 |
msgstr "La fecha de expiración de la tarjeta es inválida."
|
3171 |
|
3172 |
-
#: core/class-gateway.php:
|
3173 |
msgctxt "billing info"
|
3174 |
msgid "Credit card CVC number is required."
|
3175 |
msgstr "El código CVC de la tarjeta de crédito es requerido."
|
3176 |
|
3177 |
-
#: core/class-gateway.php:
|
3178 |
msgctxt "billing info"
|
3179 |
msgid "Country is required."
|
3180 |
msgstr "El país es requerido."
|
3181 |
|
3182 |
-
#: core/class-gateway.php:
|
3183 |
msgctxt "billing info"
|
3184 |
msgid "Address is required."
|
3185 |
msgstr "La dirección es requerida."
|
@@ -4939,7 +4947,7 @@ msgstr "Casilla de verificación"
|
|
4939 |
|
4940 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4941 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4942 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4943 |
msgctxt "form-fields admin"
|
4944 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4945 |
msgstr ""
|
@@ -4948,7 +4956,7 @@ msgstr ""
|
|
4948 |
|
4949 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4950 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4951 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4952 |
msgctxt "form-fields admin"
|
4953 |
msgid "Field list of options is required."
|
4954 |
msgstr "La lista de opciones del campo es requerida."
|
@@ -5012,6 +5020,18 @@ msgctxt "form-fields api"
|
|
5012 |
msgid "Multiselect List"
|
5013 |
msgstr "Lista de selección múltiple"
|
5014 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5015 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
5016 |
msgctxt "form fields"
|
5017 |
msgid "Phone Number"
|
@@ -5033,12 +5053,12 @@ msgid "-- Choose Terms --"
|
|
5033 |
msgstr "-- Elija los términos --"
|
5034 |
|
5035 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
5036 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
5037 |
msgctxt "form-fields-api category-select"
|
5038 |
msgid "-- Choose One --"
|
5039 |
msgstr "-- Elija Uno --"
|
5040 |
|
5041 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
5042 |
msgctxt "form-fields admin"
|
5043 |
msgid "Allow empty selection on search?"
|
5044 |
msgstr "Permitir selección vacía en las búsquedas?"
|
@@ -5367,7 +5387,7 @@ msgctxt "authorize-net"
|
|
5367 |
msgid "Setup fee"
|
5368 |
msgstr "Comisión de configuración"
|
5369 |
|
5370 |
-
#: core/gateways-authorize-net.php:
|
5371 |
msgctxt "authorize-net"
|
5372 |
msgid "Could not process payment."
|
5373 |
msgstr "No se pudo procesar el pago."
|
@@ -5568,37 +5588,37 @@ msgstr ""
|
|
5568 |
msgid "Please <contact-link>contact customer support</a>."
|
5569 |
msgstr "Por favor <contact-link>contacte al soporte al cliente</a>."
|
5570 |
|
5571 |
-
#: core/licensing.php:
|
5572 |
msgctxt "settings"
|
5573 |
msgid "Licenses"
|
5574 |
msgstr "Licencias"
|
5575 |
|
5576 |
-
#: core/licensing.php:
|
5577 |
msgctxt "settings"
|
5578 |
msgid "Premium Modules"
|
5579 |
msgstr "Módulos Premium"
|
5580 |
|
5581 |
-
#: core/licensing.php:
|
5582 |
msgctxt "licensing"
|
5583 |
msgid "Invalid module ID"
|
5584 |
msgstr "Módulo de ID inválido"
|
5585 |
|
5586 |
-
#: core/licensing.php:
|
5587 |
msgctxt "licensing"
|
5588 |
msgid "No license key provided"
|
5589 |
msgstr "No se ingresó una licencia"
|
5590 |
|
5591 |
-
#: core/licensing.php:
|
5592 |
msgctxt "licensing"
|
5593 |
msgid "Deactivation failed"
|
5594 |
msgstr "La desactivación de licencia falló"
|
5595 |
|
5596 |
-
#: core/licensing.php:
|
5597 |
msgctxt "licensing"
|
5598 |
msgid "Business Directory - License Key Required"
|
5599 |
msgstr "Directorio de Negocios - Licencia Requerida"
|
5600 |
|
5601 |
-
#: core/licensing.php:
|
5602 |
msgctxt "licensing"
|
5603 |
msgid ""
|
5604 |
"The following premium modules will not work until a valid license key is "
|
@@ -5609,12 +5629,12 @@ msgstr ""
|
|
5609 |
"válida para cada uno. Vaya a <a>Configuraciones - Licencias</a> para "
|
5610 |
"ingresar su información de licencias."
|
5611 |
|
5612 |
-
#: core/licensing.php:
|
5613 |
msgctxt "licensing"
|
5614 |
msgid "Business Directory - License Key Expired"
|
5615 |
msgstr "Directorio de Negocios - Licencias Expiradas"
|
5616 |
|
5617 |
-
#: core/licensing.php:
|
5618 |
msgctxt "licensing"
|
5619 |
msgid ""
|
5620 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
@@ -5625,17 +5645,17 @@ msgstr ""
|
|
5625 |
"expirado. El módulo continuará funcionando pero no recibirá ninguna "
|
5626 |
"actualización hasta que la licencia sea renovada."
|
5627 |
|
5628 |
-
#: core/licensing.php:
|
5629 |
msgctxt "licensing"
|
5630 |
msgid "Remind me later"
|
5631 |
msgstr "Recordar luego"
|
5632 |
|
5633 |
-
#: core/licensing.php:
|
5634 |
msgctxt "licensing"
|
5635 |
msgid "Renew License Key"
|
5636 |
msgstr "Renovar Clave de Licencia"
|
5637 |
|
5638 |
-
#: core/licensing.php:
|
5639 |
msgctxt "licensing"
|
5640 |
msgid "Could not deactivate license: %s."
|
5641 |
msgstr "No se pudo desactivar la licencia: %s."
|
@@ -5850,64 +5870,64 @@ msgctxt "search"
|
|
5850 |
msgid "Search Results"
|
5851 |
msgstr "Resultados de Búsqueda"
|
5852 |
|
5853 |
-
#: core/templates-ui.php:
|
5854 |
msgctxt "templates"
|
5855 |
msgid "No listing categories found."
|
5856 |
msgstr "No se encontraron categorías."
|
5857 |
|
5858 |
-
#: core/templates-ui.php:
|
5859 |
msgid "Directory"
|
5860 |
msgstr "Directorio"
|
5861 |
|
5862 |
-
#: core/templates-ui.php:
|
5863 |
msgid "View All Listings"
|
5864 |
msgstr "Ver Todos los Listados"
|
5865 |
|
5866 |
-
#: core/templates-ui.php:
|
5867 |
msgid "Create A Listing"
|
5868 |
msgstr "Crear un Listado"
|
5869 |
|
5870 |
-
#: core/templates-ui.php:
|
5871 |
msgctxt "templates"
|
5872 |
msgid "Search Listings"
|
5873 |
msgstr "Buscar Listados"
|
5874 |
|
5875 |
-
#: core/templates-ui.php:
|
5876 |
msgctxt "templates"
|
5877 |
msgid "Advanced Search"
|
5878 |
msgstr "Búsqueda Avanzada"
|
5879 |
|
5880 |
-
#: core/templates-ui.php:
|
5881 |
msgctxt "templates sort"
|
5882 |
msgid "Sort By:"
|
5883 |
msgstr "Ordenar Por:"
|
5884 |
|
5885 |
-
#: core/templates-ui.php:
|
5886 |
msgctxt "sort"
|
5887 |
msgid "Reset"
|
5888 |
msgstr "Restablecer"
|
5889 |
|
5890 |
-
#: core/templates-ui.php:
|
5891 |
msgctxt "sort"
|
5892 |
msgid "(Reset)"
|
5893 |
msgstr "(Reestablecer)"
|
5894 |
|
5895 |
-
#: core/themes.php:
|
5896 |
msgctxt "themes"
|
5897 |
msgid "ZIP file is not a valid BD theme file."
|
5898 |
msgstr "El archivo ZIP no es un tema de BD válido."
|
5899 |
|
5900 |
-
#: core/themes.php:
|
5901 |
msgctxt "themes"
|
5902 |
msgid "Could not create themes directory."
|
5903 |
msgstr "No se pudo crear el directorio de los temas."
|
5904 |
|
5905 |
-
#: core/themes.php:
|
5906 |
msgctxt "themes"
|
5907 |
msgid "Could not remove previous theme directory \"%s\"."
|
5908 |
msgstr "No se pudo remover el directorio anterior \"%s\"."
|
5909 |
|
5910 |
-
#: core/themes.php:
|
5911 |
msgctxt "themes"
|
5912 |
msgid "Could not move new theme into theme directory."
|
5913 |
msgstr "No se pudo mover el nuevo tema al directorio de temas."
|
@@ -6004,15 +6024,11 @@ msgid "You are not authorized to edit this listing."
|
|
6004 |
msgstr "No está autorizado para editar este listado."
|
6005 |
|
6006 |
#: core/view-submit-listing.php:58
|
6007 |
-
|
|
|
6008 |
msgid "Edit Your Listing"
|
6009 |
msgstr "Editar Su Listado"
|
6010 |
|
6011 |
-
#: core/view-submit-listing.php:58
|
6012 |
-
msgctxt "templates"
|
6013 |
-
msgid "Submit A Listing"
|
6014 |
-
msgstr "Enviar Un Listado"
|
6015 |
-
|
6016 |
#: core/view-submit-listing.php:65
|
6017 |
msgctxt "templates"
|
6018 |
msgid ""
|
@@ -6164,6 +6180,11 @@ msgstr "Enviar Mensaje al dueño del Listado"
|
|
6164 |
msgid "l F j, Y \\a\\t g:i a"
|
6165 |
msgstr "l F j, Y \\a\\t g:i a"
|
6166 |
|
|
|
|
|
|
|
|
|
|
|
6167 |
#: core/views/listing_contact.php:178
|
6168 |
msgctxt "contact-message"
|
6169 |
msgid "%s (admin: %s)"
|
@@ -6336,11 +6357,6 @@ msgctxt "views"
|
|
6336 |
msgid "Find A Listing"
|
6337 |
msgstr "Encontrar un Listado"
|
6338 |
|
6339 |
-
#: core/views/submit_listing.php:10
|
6340 |
-
msgctxt "views"
|
6341 |
-
msgid "Submit A Listing"
|
6342 |
-
msgstr "Enviar un Listado"
|
6343 |
-
|
6344 |
#: core/views/submit_listing.php:16
|
6345 |
msgctxt "templates"
|
6346 |
msgid ""
|
@@ -6468,142 +6484,154 @@ msgctxt "widgets"
|
|
6468 |
msgid "Search"
|
6469 |
msgstr "Buscar"
|
6470 |
|
6471 |
-
#: templates/billing-information-form.tpl.php:
|
6472 |
msgctxt "months"
|
6473 |
msgid "Jan"
|
6474 |
msgstr "Ene"
|
6475 |
|
6476 |
-
#: templates/billing-information-form.tpl.php:
|
6477 |
msgctxt "months"
|
6478 |
msgid "Feb"
|
6479 |
msgstr "Feb"
|
6480 |
|
6481 |
-
#: templates/billing-information-form.tpl.php:
|
6482 |
msgctxt "months"
|
6483 |
msgid "Mar"
|
6484 |
msgstr "Mar"
|
6485 |
|
6486 |
-
#: templates/billing-information-form.tpl.php:
|
6487 |
msgctxt "months"
|
6488 |
msgid "Apr"
|
6489 |
msgstr "Abr"
|
6490 |
|
6491 |
-
#: templates/billing-information-form.tpl.php:
|
6492 |
msgctxt "months"
|
6493 |
msgid "May"
|
6494 |
msgstr "May"
|
6495 |
|
6496 |
-
#: templates/billing-information-form.tpl.php:
|
6497 |
msgctxt "months"
|
6498 |
msgid "Jun"
|
6499 |
msgstr "Jun"
|
6500 |
|
6501 |
-
#: templates/billing-information-form.tpl.php:
|
6502 |
msgctxt "months"
|
6503 |
msgid "Jul"
|
6504 |
msgstr "Jul"
|
6505 |
|
6506 |
-
#: templates/billing-information-form.tpl.php:
|
6507 |
msgctxt "months"
|
6508 |
msgid "Aug"
|
6509 |
msgstr "Ago"
|
6510 |
|
6511 |
-
#: templates/billing-information-form.tpl.php:
|
6512 |
msgctxt "months"
|
6513 |
msgid "Sep"
|
6514 |
msgstr "Sep"
|
6515 |
|
6516 |
-
#: templates/billing-information-form.tpl.php:
|
6517 |
msgctxt "months"
|
6518 |
msgid "Oct"
|
6519 |
msgstr "Oct"
|
6520 |
|
6521 |
-
#: templates/billing-information-form.tpl.php:
|
6522 |
msgctxt "months"
|
6523 |
msgid "Nov"
|
6524 |
msgstr "Nov"
|
6525 |
|
6526 |
-
#: templates/billing-information-form.tpl.php:
|
6527 |
msgctxt "months"
|
6528 |
msgid "Dec"
|
6529 |
msgstr "Dic"
|
6530 |
|
6531 |
-
#: templates/billing-information-form.tpl.php:
|
6532 |
msgctxt "checkout form"
|
6533 |
msgid "Credit Card Details"
|
6534 |
msgstr "Detalles de tarjeta de crédito"
|
6535 |
|
6536 |
-
#: templates/billing-information-form.tpl.php:
|
6537 |
msgctxt "checkout form"
|
6538 |
msgid "Please enter your credit card details below."
|
6539 |
msgstr "Por favor ingrese los datos de su tarjeta de crédito abajo."
|
6540 |
|
6541 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6542 |
msgctxt "checkout form"
|
6543 |
msgid "First Name:"
|
6544 |
msgstr "Nombres:"
|
6545 |
|
6546 |
-
#: templates/billing-information-form.tpl.php:
|
6547 |
msgctxt "checkout form"
|
6548 |
msgid "Last Name:"
|
6549 |
msgstr "Apellidos:"
|
6550 |
|
6551 |
-
#: templates/billing-information-form.tpl.php:
|
6552 |
msgctxt "checkout form"
|
6553 |
msgid "Card Number:"
|
6554 |
msgstr "Número de tarjeta:"
|
6555 |
|
6556 |
-
#: templates/billing-information-form.tpl.php:
|
6557 |
msgctxt "checkout form"
|
6558 |
msgid "Expiration Date (MM/YYYY):"
|
6559 |
msgstr "Fecha de expiración (MM/AAAA):"
|
6560 |
|
6561 |
-
#: templates/billing-information-form.tpl.php:
|
6562 |
msgctxt "checkout form"
|
6563 |
msgid "CVC:"
|
6564 |
msgstr "CVC:"
|
6565 |
|
6566 |
-
#: templates/billing-information-form.tpl.php:
|
6567 |
msgctxt "checkout form"
|
6568 |
msgid "Billing Address"
|
6569 |
msgstr "Dirección de pagos"
|
6570 |
|
6571 |
-
#: templates/billing-information-form.tpl.php:
|
6572 |
msgctxt "checkout form"
|
6573 |
msgid "Country:"
|
6574 |
msgstr "País:"
|
6575 |
|
6576 |
-
#: templates/billing-information-form.tpl.php:
|
6577 |
msgctxt "checkout form"
|
6578 |
msgid "State:"
|
6579 |
msgstr "Estado:"
|
6580 |
|
6581 |
-
#: templates/billing-information-form.tpl.php:
|
6582 |
msgctxt "checkout form"
|
6583 |
msgid "City:"
|
6584 |
msgstr "Ciudad:"
|
6585 |
|
6586 |
-
#: templates/billing-information-form.tpl.php:
|
6587 |
msgctxt "checkout form"
|
6588 |
msgid "Address Line 1:"
|
6589 |
msgstr "Dirección (línea 1):"
|
6590 |
|
6591 |
-
#: templates/billing-information-form.tpl.php:
|
6592 |
msgctxt "checkout form"
|
6593 |
msgid "Address Line 2:"
|
6594 |
msgstr "Dirección (línea 2):"
|
6595 |
|
6596 |
-
#: templates/billing-information-form.tpl.php:
|
6597 |
msgctxt "checkout form"
|
6598 |
msgid "ZIP Code:"
|
6599 |
msgstr "Código Postal:"
|
6600 |
|
6601 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6602 |
msgctxt "WPBDM"
|
6603 |
msgid "Cancel"
|
6604 |
msgstr "Cancelar"
|
6605 |
|
6606 |
-
#: templates/billing-information-form.tpl.php:
|
6607 |
msgctxt "WPBDM"
|
6608 |
msgid "Submit Payment"
|
6609 |
msgstr "Enviar Pago"
|
@@ -7208,32 +7236,6 @@ msgctxt "themes/default"
|
|
7208 |
msgid "Address"
|
7209 |
msgstr "Dirección"
|
7210 |
|
7211 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:178
|
7212 |
-
msgid ""
|
7213 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
7214 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
7215 |
-
msgstr ""
|
7216 |
-
"Hay una nueva versión de %1$s disponible. <a target=\"_blank\" class="
|
7217 |
-
"\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a>."
|
7218 |
-
|
7219 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:185
|
7220 |
-
msgid ""
|
7221 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
7222 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
7223 |
-
"\">update now</a>."
|
7224 |
-
msgstr ""
|
7225 |
-
"Hay una versión de %1$s disponible. <a target=\"_blank\" class=\"thickbox\" "
|
7226 |
-
"href=\"%2$s\">Ver los detalles de la versión %3$s</a> o <a href=\"%4$s"
|
7227 |
-
"\">actualizar ahora</a>."
|
7228 |
-
|
7229 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
7230 |
-
msgid "You do not have permission to install plugin updates"
|
7231 |
-
msgstr "Usted no tiene permisos para instalar plugins"
|
7232 |
-
|
7233 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
7234 |
-
msgid "Error"
|
7235 |
-
msgstr "Error"
|
7236 |
-
|
7237 |
#. Plugin URI of the plugin/theme
|
7238 |
msgid "http://www.businessdirectoryplugin.com"
|
7239 |
msgstr "http://www.businessdirectoryplugin.com"
|
@@ -7254,6 +7256,36 @@ msgstr "D. Rodenbaugh"
|
|
7254 |
msgid "http://businessdirectoryplugin.com"
|
7255 |
msgstr "http://businessdirectoryplugin.com"
|
7256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7257 |
#~ msgctxt "admin csv-import"
|
7258 |
#~ msgid "Last imported line from file:"
|
7259 |
#~ msgstr "Última línea importada del archivo:"
|
@@ -7643,10 +7675,6 @@ msgstr "http://businessdirectoryplugin.com"
|
|
7643 |
#~ msgid "Contact via \"%s\""
|
7644 |
#~ msgstr "Contacto vía \"%s\""
|
7645 |
|
7646 |
-
#~ msgctxt "contact-message"
|
7647 |
-
#~ msgid "Your message has been sent."
|
7648 |
-
#~ msgstr "Su mensaje ha sido enviado."
|
7649 |
-
|
7650 |
#, fuzzy
|
7651 |
#~ msgctxt "manage subscriptions"
|
7652 |
#~ msgid "Number of images:"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
+
"POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
|
8 |
"PO-Revision-Date: 2016-11-01 18:28-0500\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
590 |
msgstr "No se pudo mover \"%s\" a un directorio temporal."
|
591 |
|
592 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
593 |
+
#: core/licensing.php:126 core/licensing.php:158
|
594 |
msgctxt "licensing"
|
595 |
msgid "Could not contact licensing server"
|
596 |
msgstr "No se pudo contactar el servidor de licencias"
|
597 |
|
598 |
+
#: admin/class-themes-admin.php:372 core/licensing.php:131
|
599 |
+
#: core/licensing.php:165
|
600 |
msgctxt "licensing"
|
601 |
msgid "License key is invalid"
|
602 |
msgstr "La licencia es inválida"
|
603 |
|
604 |
+
#: admin/class-themes-admin.php:377 core/licensing.php:320
|
605 |
msgctxt "licensing"
|
606 |
msgid "Could not activate license: %s."
|
607 |
msgstr "No se pudo activar la licencia: %s."
|
608 |
|
609 |
+
#: admin/class-themes-admin.php:390 core/licensing.php:322
|
610 |
msgctxt "licensing"
|
611 |
msgid "License activated"
|
612 |
msgstr "Licencia activada"
|
616 |
msgid "Invalid response from server"
|
617 |
msgstr "Respuesta inválida de parte de servidor"
|
618 |
|
619 |
+
#: admin/class-themes-admin.php:450 core/licensing.php:340
|
620 |
msgctxt "licensing"
|
621 |
msgid "License deactivated"
|
622 |
msgstr "Licencia desactivada"
|
1173 |
msgid "Environment"
|
1174 |
msgstr "Environment"
|
1175 |
|
1176 |
+
#: admin/page-debug.php:72
|
1177 |
msgctxt "debug info"
|
1178 |
msgid "Test SSL setup..."
|
1179 |
msgstr "Probar configuración SSL..."
|
2243 |
"Por favor vea la <a>documentación de Campos de Formulario</a> para más "
|
2244 |
"detalles."
|
2245 |
|
2246 |
+
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
|
2247 |
#. Plugin Name of the plugin/theme
|
2248 |
#: admin/templates/header.tpl.php:4
|
2249 |
msgid "Business Directory Plugin"
|
3022 |
msgid "%s Feed"
|
3023 |
msgstr "Feed %s"
|
3024 |
|
3025 |
+
#: business-directory-plugin.php:1117 core/view-submit-listing.php:58
|
3026 |
+
#: core/views/submit_listing.php:10
|
3027 |
+
msgctxt "views"
|
3028 |
msgid "Submit A Listing"
|
3029 |
+
msgstr "Enviar un Listado"
|
3030 |
|
3031 |
#: business-directory-plugin.php:1122
|
3032 |
msgctxt "title"
|
3151 |
msgid "An error occurred while trying to delete this field."
|
3152 |
msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
|
3153 |
|
3154 |
+
#: core/class-gateway.php:133
|
3155 |
+
#, fuzzy
|
3156 |
+
msgctxt "billing info"
|
3157 |
+
msgid "Please enter a valid e-mail address."
|
3158 |
+
msgstr "Por favor ingrese un correo electrónico válido."
|
3159 |
+
|
3160 |
+
#: core/class-gateway.php:136
|
3161 |
msgctxt "billing info"
|
3162 |
msgid "First name is required."
|
3163 |
msgstr "El nombre es requerido."
|
3164 |
|
3165 |
+
#: core/class-gateway.php:139
|
3166 |
msgctxt "billing info"
|
3167 |
msgid "Last name is required."
|
3168 |
msgstr "El apellido es requerido."
|
3169 |
|
3170 |
+
#: core/class-gateway.php:142
|
3171 |
msgctxt "billing info"
|
3172 |
msgid "Credit card number is required."
|
3173 |
msgstr "El número de la tarjeta de crédito es requerido."
|
3174 |
|
3175 |
+
#: core/class-gateway.php:145
|
3176 |
msgctxt "billing info"
|
3177 |
msgid "Credit card expiration date is invalid."
|
3178 |
msgstr "La fecha de expiración de la tarjeta es inválida."
|
3179 |
|
3180 |
+
#: core/class-gateway.php:148
|
3181 |
msgctxt "billing info"
|
3182 |
msgid "Credit card CVC number is required."
|
3183 |
msgstr "El código CVC de la tarjeta de crédito es requerido."
|
3184 |
|
3185 |
+
#: core/class-gateway.php:151
|
3186 |
msgctxt "billing info"
|
3187 |
msgid "Country is required."
|
3188 |
msgstr "El país es requerido."
|
3189 |
|
3190 |
+
#: core/class-gateway.php:154
|
3191 |
msgctxt "billing info"
|
3192 |
msgid "Address is required."
|
3193 |
msgstr "La dirección es requerida."
|
4947 |
|
4948 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4949 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4950 |
+
#: core/fieldtypes/class-fieldtypes-select.php:144
|
4951 |
msgctxt "form-fields admin"
|
4952 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4953 |
msgstr ""
|
4956 |
|
4957 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4958 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4959 |
+
#: core/fieldtypes/class-fieldtypes-select.php:172
|
4960 |
msgctxt "form-fields admin"
|
4961 |
msgid "Field list of options is required."
|
4962 |
msgstr "La lista de opciones del campo es requerida."
|
5020 |
msgid "Multiselect List"
|
5021 |
msgstr "Lista de selección múltiple"
|
5022 |
|
5023 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:25
|
5024 |
+
msgctxt "form-fields-admin"
|
5025 |
+
msgid "Number of options visible without scrolling"
|
5026 |
+
msgstr ""
|
5027 |
+
|
5028 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:26
|
5029 |
+
msgctxt "form-fields-admin"
|
5030 |
+
msgid ""
|
5031 |
+
"The height of the list will be adjusted to accommodate the specified number "
|
5032 |
+
"of options."
|
5033 |
+
msgstr ""
|
5034 |
+
|
5035 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
5036 |
msgctxt "form fields"
|
5037 |
msgid "Phone Number"
|
5053 |
msgstr "-- Elija los términos --"
|
5054 |
|
5055 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
5056 |
+
#: core/fieldtypes/class-fieldtypes-select.php:105
|
5057 |
msgctxt "form-fields-api category-select"
|
5058 |
msgid "-- Choose One --"
|
5059 |
msgstr "-- Elija Uno --"
|
5060 |
|
5061 |
+
#: core/fieldtypes/class-fieldtypes-select.php:155
|
5062 |
msgctxt "form-fields admin"
|
5063 |
msgid "Allow empty selection on search?"
|
5064 |
msgstr "Permitir selección vacía en las búsquedas?"
|
5387 |
msgid "Setup fee"
|
5388 |
msgstr "Comisión de configuración"
|
5389 |
|
5390 |
+
#: core/gateways-authorize-net.php:175
|
5391 |
msgctxt "authorize-net"
|
5392 |
msgid "Could not process payment."
|
5393 |
msgstr "No se pudo procesar el pago."
|
5588 |
msgid "Please <contact-link>contact customer support</a>."
|
5589 |
msgstr "Por favor <contact-link>contacte al soporte al cliente</a>."
|
5590 |
|
5591 |
+
#: core/licensing.php:42 core/licensing.php:64 core/licensing.php:65
|
5592 |
msgctxt "settings"
|
5593 |
msgid "Licenses"
|
5594 |
msgstr "Licencias"
|
5595 |
|
5596 |
+
#: core/licensing.php:45
|
5597 |
msgctxt "settings"
|
5598 |
msgid "Premium Modules"
|
5599 |
msgstr "Módulos Premium"
|
5600 |
|
5601 |
+
#: core/licensing.php:106 core/licensing.php:140
|
5602 |
msgctxt "licensing"
|
5603 |
msgid "Invalid module ID"
|
5604 |
msgstr "Módulo de ID inválido"
|
5605 |
|
5606 |
+
#: core/licensing.php:111
|
5607 |
msgctxt "licensing"
|
5608 |
msgid "No license key provided"
|
5609 |
msgstr "No se ingresó una licencia"
|
5610 |
|
5611 |
+
#: core/licensing.php:168
|
5612 |
msgctxt "licensing"
|
5613 |
msgid "Deactivation failed"
|
5614 |
msgstr "La desactivación de licencia falló"
|
5615 |
|
5616 |
+
#: core/licensing.php:220
|
5617 |
msgctxt "licensing"
|
5618 |
msgid "Business Directory - License Key Required"
|
5619 |
msgstr "Directorio de Negocios - Licencia Requerida"
|
5620 |
|
5621 |
+
#: core/licensing.php:223
|
5622 |
msgctxt "licensing"
|
5623 |
msgid ""
|
5624 |
"The following premium modules will not work until a valid license key is "
|
5629 |
"válida para cada uno. Vaya a <a>Configuraciones - Licencias</a> para "
|
5630 |
"ingresar su información de licencias."
|
5631 |
|
5632 |
+
#: core/licensing.php:244
|
5633 |
msgctxt "licensing"
|
5634 |
msgid "Business Directory - License Key Expired"
|
5635 |
msgstr "Directorio de Negocios - Licencias Expiradas"
|
5636 |
|
5637 |
+
#: core/licensing.php:245
|
5638 |
msgctxt "licensing"
|
5639 |
msgid ""
|
5640 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
5645 |
"expirado. El módulo continuará funcionando pero no recibirá ninguna "
|
5646 |
"actualización hasta que la licencia sea renovada."
|
5647 |
|
5648 |
+
#: core/licensing.php:249
|
5649 |
msgctxt "licensing"
|
5650 |
msgid "Remind me later"
|
5651 |
msgstr "Recordar luego"
|
5652 |
|
5653 |
+
#: core/licensing.php:251
|
5654 |
msgctxt "licensing"
|
5655 |
msgid "Renew License Key"
|
5656 |
msgstr "Renovar Clave de Licencia"
|
5657 |
|
5658 |
+
#: core/licensing.php:338
|
5659 |
msgctxt "licensing"
|
5660 |
msgid "Could not deactivate license: %s."
|
5661 |
msgstr "No se pudo desactivar la licencia: %s."
|
5870 |
msgid "Search Results"
|
5871 |
msgstr "Resultados de Búsqueda"
|
5872 |
|
5873 |
+
#: core/templates-ui.php:169
|
5874 |
msgctxt "templates"
|
5875 |
msgid "No listing categories found."
|
5876 |
msgstr "No se encontraron categorías."
|
5877 |
|
5878 |
+
#: core/templates-ui.php:193
|
5879 |
msgid "Directory"
|
5880 |
msgstr "Directorio"
|
5881 |
|
5882 |
+
#: core/templates-ui.php:199
|
5883 |
msgid "View All Listings"
|
5884 |
msgstr "Ver Todos los Listados"
|
5885 |
|
5886 |
+
#: core/templates-ui.php:205
|
5887 |
msgid "Create A Listing"
|
5888 |
msgstr "Crear un Listado"
|
5889 |
|
5890 |
+
#: core/templates-ui.php:232
|
5891 |
msgctxt "templates"
|
5892 |
msgid "Search Listings"
|
5893 |
msgstr "Buscar Listados"
|
5894 |
|
5895 |
+
#: core/templates-ui.php:235
|
5896 |
msgctxt "templates"
|
5897 |
msgid "Advanced Search"
|
5898 |
msgstr "Búsqueda Avanzada"
|
5899 |
|
5900 |
+
#: core/templates-ui.php:264 core/templates-ui.php:289
|
5901 |
msgctxt "templates sort"
|
5902 |
msgid "Sort By:"
|
5903 |
msgstr "Ordenar Por:"
|
5904 |
|
5905 |
+
#: core/templates-ui.php:283
|
5906 |
msgctxt "sort"
|
5907 |
msgid "Reset"
|
5908 |
msgstr "Restablecer"
|
5909 |
|
5910 |
+
#: core/templates-ui.php:305
|
5911 |
msgctxt "sort"
|
5912 |
msgid "(Reset)"
|
5913 |
msgstr "(Reestablecer)"
|
5914 |
|
5915 |
+
#: core/themes.php:749
|
5916 |
msgctxt "themes"
|
5917 |
msgid "ZIP file is not a valid BD theme file."
|
5918 |
msgstr "El archivo ZIP no es un tema de BD válido."
|
5919 |
|
5920 |
+
#: core/themes.php:755
|
5921 |
msgctxt "themes"
|
5922 |
msgid "Could not create themes directory."
|
5923 |
msgstr "No se pudo crear el directorio de los temas."
|
5924 |
|
5925 |
+
#: core/themes.php:763
|
5926 |
msgctxt "themes"
|
5927 |
msgid "Could not remove previous theme directory \"%s\"."
|
5928 |
msgstr "No se pudo remover el directorio anterior \"%s\"."
|
5929 |
|
5930 |
+
#: core/themes.php:769
|
5931 |
msgctxt "themes"
|
5932 |
msgid "Could not move new theme into theme directory."
|
5933 |
msgstr "No se pudo mover el nuevo tema al directorio de temas."
|
6024 |
msgstr "No está autorizado para editar este listado."
|
6025 |
|
6026 |
#: core/view-submit-listing.php:58
|
6027 |
+
#, fuzzy
|
6028 |
+
msgctxt "views"
|
6029 |
msgid "Edit Your Listing"
|
6030 |
msgstr "Editar Su Listado"
|
6031 |
|
|
|
|
|
|
|
|
|
|
|
6032 |
#: core/view-submit-listing.php:65
|
6033 |
msgctxt "templates"
|
6034 |
msgid ""
|
6180 |
msgid "l F j, Y \\a\\t g:i a"
|
6181 |
msgstr "l F j, Y \\a\\t g:i a"
|
6182 |
|
6183 |
+
#: core/views/listing_contact.php:173
|
6184 |
+
msgctxt "contact-message"
|
6185 |
+
msgid "Your message has been sent."
|
6186 |
+
msgstr "Su mensaje ha sido enviado."
|
6187 |
+
|
6188 |
#: core/views/listing_contact.php:178
|
6189 |
msgctxt "contact-message"
|
6190 |
msgid "%s (admin: %s)"
|
6357 |
msgid "Find A Listing"
|
6358 |
msgstr "Encontrar un Listado"
|
6359 |
|
|
|
|
|
|
|
|
|
|
|
6360 |
#: core/views/submit_listing.php:16
|
6361 |
msgctxt "templates"
|
6362 |
msgid ""
|
6484 |
msgid "Search"
|
6485 |
msgstr "Buscar"
|
6486 |
|
6487 |
+
#: templates/billing-information-form.tpl.php:4
|
6488 |
msgctxt "months"
|
6489 |
msgid "Jan"
|
6490 |
msgstr "Ene"
|
6491 |
|
6492 |
+
#: templates/billing-information-form.tpl.php:5
|
6493 |
msgctxt "months"
|
6494 |
msgid "Feb"
|
6495 |
msgstr "Feb"
|
6496 |
|
6497 |
+
#: templates/billing-information-form.tpl.php:6
|
6498 |
msgctxt "months"
|
6499 |
msgid "Mar"
|
6500 |
msgstr "Mar"
|
6501 |
|
6502 |
+
#: templates/billing-information-form.tpl.php:7
|
6503 |
msgctxt "months"
|
6504 |
msgid "Apr"
|
6505 |
msgstr "Abr"
|
6506 |
|
6507 |
+
#: templates/billing-information-form.tpl.php:8
|
6508 |
msgctxt "months"
|
6509 |
msgid "May"
|
6510 |
msgstr "May"
|
6511 |
|
6512 |
+
#: templates/billing-information-form.tpl.php:9
|
6513 |
msgctxt "months"
|
6514 |
msgid "Jun"
|
6515 |
msgstr "Jun"
|
6516 |
|
6517 |
+
#: templates/billing-information-form.tpl.php:10
|
6518 |
msgctxt "months"
|
6519 |
msgid "Jul"
|
6520 |
msgstr "Jul"
|
6521 |
|
6522 |
+
#: templates/billing-information-form.tpl.php:11
|
6523 |
msgctxt "months"
|
6524 |
msgid "Aug"
|
6525 |
msgstr "Ago"
|
6526 |
|
6527 |
+
#: templates/billing-information-form.tpl.php:12
|
6528 |
msgctxt "months"
|
6529 |
msgid "Sep"
|
6530 |
msgstr "Sep"
|
6531 |
|
6532 |
+
#: templates/billing-information-form.tpl.php:13
|
6533 |
msgctxt "months"
|
6534 |
msgid "Oct"
|
6535 |
msgstr "Oct"
|
6536 |
|
6537 |
+
#: templates/billing-information-form.tpl.php:14
|
6538 |
msgctxt "months"
|
6539 |
msgid "Nov"
|
6540 |
msgstr "Nov"
|
6541 |
|
6542 |
+
#: templates/billing-information-form.tpl.php:15
|
6543 |
msgctxt "months"
|
6544 |
msgid "Dec"
|
6545 |
msgstr "Dic"
|
6546 |
|
6547 |
+
#: templates/billing-information-form.tpl.php:30
|
6548 |
msgctxt "checkout form"
|
6549 |
msgid "Credit Card Details"
|
6550 |
msgstr "Detalles de tarjeta de crédito"
|
6551 |
|
6552 |
+
#: templates/billing-information-form.tpl.php:31
|
6553 |
msgctxt "checkout form"
|
6554 |
msgid "Please enter your credit card details below."
|
6555 |
msgstr "Por favor ingrese los datos de su tarjeta de crédito abajo."
|
6556 |
|
6557 |
+
#: templates/billing-information-form.tpl.php:36
|
6558 |
+
#, fuzzy
|
6559 |
+
msgctxt "checkout form"
|
6560 |
+
msgid "E-mail:"
|
6561 |
+
msgstr "Correo Electrónico: %s"
|
6562 |
+
|
6563 |
+
#: templates/billing-information-form.tpl.php:44
|
6564 |
msgctxt "checkout form"
|
6565 |
msgid "First Name:"
|
6566 |
msgstr "Nombres:"
|
6567 |
|
6568 |
+
#: templates/billing-information-form.tpl.php:52
|
6569 |
msgctxt "checkout form"
|
6570 |
msgid "Last Name:"
|
6571 |
msgstr "Apellidos:"
|
6572 |
|
6573 |
+
#: templates/billing-information-form.tpl.php:60
|
6574 |
msgctxt "checkout form"
|
6575 |
msgid "Card Number:"
|
6576 |
msgstr "Número de tarjeta:"
|
6577 |
|
6578 |
+
#: templates/billing-information-form.tpl.php:68
|
6579 |
msgctxt "checkout form"
|
6580 |
msgid "Expiration Date (MM/YYYY):"
|
6581 |
msgstr "Fecha de expiración (MM/AAAA):"
|
6582 |
|
6583 |
+
#: templates/billing-information-form.tpl.php:88
|
6584 |
msgctxt "checkout form"
|
6585 |
msgid "CVC:"
|
6586 |
msgstr "CVC:"
|
6587 |
|
6588 |
+
#: templates/billing-information-form.tpl.php:98
|
6589 |
msgctxt "checkout form"
|
6590 |
msgid "Billing Address"
|
6591 |
msgstr "Dirección de pagos"
|
6592 |
|
6593 |
+
#: templates/billing-information-form.tpl.php:103
|
6594 |
msgctxt "checkout form"
|
6595 |
msgid "Country:"
|
6596 |
msgstr "País:"
|
6597 |
|
6598 |
+
#: templates/billing-information-form.tpl.php:111
|
6599 |
msgctxt "checkout form"
|
6600 |
msgid "State:"
|
6601 |
msgstr "Estado:"
|
6602 |
|
6603 |
+
#: templates/billing-information-form.tpl.php:119
|
6604 |
msgctxt "checkout form"
|
6605 |
msgid "City:"
|
6606 |
msgstr "Ciudad:"
|
6607 |
|
6608 |
+
#: templates/billing-information-form.tpl.php:127
|
6609 |
msgctxt "checkout form"
|
6610 |
msgid "Address Line 1:"
|
6611 |
msgstr "Dirección (línea 1):"
|
6612 |
|
6613 |
+
#: templates/billing-information-form.tpl.php:135
|
6614 |
msgctxt "checkout form"
|
6615 |
msgid "Address Line 2:"
|
6616 |
msgstr "Dirección (línea 2):"
|
6617 |
|
6618 |
+
#: templates/billing-information-form.tpl.php:143
|
6619 |
msgctxt "checkout form"
|
6620 |
msgid "ZIP Code:"
|
6621 |
msgstr "Código Postal:"
|
6622 |
|
6623 |
+
#: templates/billing-information-form.tpl.php:151
|
6624 |
+
#, fuzzy
|
6625 |
+
msgctxt "checkout form"
|
6626 |
+
msgid "Phone Number:"
|
6627 |
+
msgstr "Número telefónico"
|
6628 |
+
|
6629 |
+
#: templates/billing-information-form.tpl.php:161
|
6630 |
msgctxt "WPBDM"
|
6631 |
msgid "Cancel"
|
6632 |
msgstr "Cancelar"
|
6633 |
|
6634 |
+
#: templates/billing-information-form.tpl.php:162
|
6635 |
msgctxt "WPBDM"
|
6636 |
msgid "Submit Payment"
|
6637 |
msgstr "Enviar Pago"
|
7236 |
msgid "Address"
|
7237 |
msgstr "Dirección"
|
7238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7239 |
#. Plugin URI of the plugin/theme
|
7240 |
msgid "http://www.businessdirectoryplugin.com"
|
7241 |
msgstr "http://www.businessdirectoryplugin.com"
|
7256 |
msgid "http://businessdirectoryplugin.com"
|
7257 |
msgstr "http://businessdirectoryplugin.com"
|
7258 |
|
7259 |
+
#~ msgctxt "title"
|
7260 |
+
#~ msgid "Submit A Listing"
|
7261 |
+
#~ msgstr "Enviar Un Listado"
|
7262 |
+
|
7263 |
+
#~ msgctxt "templates"
|
7264 |
+
#~ msgid "Submit A Listing"
|
7265 |
+
#~ msgstr "Enviar Un Listado"
|
7266 |
+
|
7267 |
+
#~ msgid ""
|
7268 |
+
#~ "There is a new version of %1$s available. <a target=\"_blank\" class="
|
7269 |
+
#~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
7270 |
+
#~ msgstr ""
|
7271 |
+
#~ "Hay una nueva versión de %1$s disponible. <a target=\"_blank\" class="
|
7272 |
+
#~ "\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a>."
|
7273 |
+
|
7274 |
+
#~ msgid ""
|
7275 |
+
#~ "There is a new version of %1$s available. <a target=\"_blank\" class="
|
7276 |
+
#~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
7277 |
+
#~ "\">update now</a>."
|
7278 |
+
#~ msgstr ""
|
7279 |
+
#~ "Hay una versión de %1$s disponible. <a target=\"_blank\" class=\"thickbox"
|
7280 |
+
#~ "\" href=\"%2$s\">Ver los detalles de la versión %3$s</a> o <a href=\"%4$s"
|
7281 |
+
#~ "\">actualizar ahora</a>."
|
7282 |
+
|
7283 |
+
#~ msgid "You do not have permission to install plugin updates"
|
7284 |
+
#~ msgstr "Usted no tiene permisos para instalar plugins"
|
7285 |
+
|
7286 |
+
#~ msgid "Error"
|
7287 |
+
#~ msgstr "Error"
|
7288 |
+
|
7289 |
#~ msgctxt "admin csv-import"
|
7290 |
#~ msgid "Last imported line from file:"
|
7291 |
#~ msgstr "Última línea importada del archivo:"
|
7675 |
#~ msgid "Contact via \"%s\""
|
7676 |
#~ msgstr "Contacto vía \"%s\""
|
7677 |
|
|
|
|
|
|
|
|
|
7678 |
#, fuzzy
|
7679 |
#~ msgctxt "manage subscriptions"
|
7680 |
#~ msgid "Number of images:"
|
languages/WPBDM-fr_FR.mo
CHANGED
Binary file
|
languages/WPBDM-fr_FR.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 3.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
-
"POT-Creation-Date: 2016-11-
|
8 |
"PO-Revision-Date: 2016-08-29 18:17-0300\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -565,23 +565,23 @@ msgid "Could not move \"%s\" to a temporary directory."
|
|
565 |
msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire"
|
566 |
|
567 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
568 |
-
#: core/licensing.php:
|
569 |
msgctxt "licensing"
|
570 |
msgid "Could not contact licensing server"
|
571 |
msgstr "Impossible de contacter le serveur de licences"
|
572 |
|
573 |
-
#: admin/class-themes-admin.php:372 core/licensing.php:
|
574 |
-
#: core/licensing.php:
|
575 |
msgctxt "licensing"
|
576 |
msgid "License key is invalid"
|
577 |
msgstr "La clé de licence est invalide"
|
578 |
|
579 |
-
#: admin/class-themes-admin.php:377 core/licensing.php:
|
580 |
msgctxt "licensing"
|
581 |
msgid "Could not activate license: %s."
|
582 |
msgstr "Impossible d'activer la licence: %s."
|
583 |
|
584 |
-
#: admin/class-themes-admin.php:390 core/licensing.php:
|
585 |
msgctxt "licensing"
|
586 |
msgid "License activated"
|
587 |
msgstr "Licence activée"
|
@@ -591,7 +591,7 @@ msgctxt "licensing"
|
|
591 |
msgid "Invalid response from server"
|
592 |
msgstr "Invalid response from server"
|
593 |
|
594 |
-
#: admin/class-themes-admin.php:450 core/licensing.php:
|
595 |
msgctxt "licensing"
|
596 |
msgid "License deactivated"
|
597 |
msgstr "Licence désactivée"
|
@@ -1152,7 +1152,7 @@ msgctxt "debug-info"
|
|
1152 |
msgid "Environment"
|
1153 |
msgstr "Environnement"
|
1154 |
|
1155 |
-
#: admin/page-debug.php:
|
1156 |
msgctxt "debug info"
|
1157 |
msgid "Test SSL setup..."
|
1158 |
msgstr ""
|
@@ -2228,7 +2228,7 @@ msgstr ""
|
|
2228 |
"Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
|
2229 |
"détails."
|
2230 |
|
2231 |
-
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.
|
2232 |
#. Plugin Name of the plugin/theme
|
2233 |
#: admin/templates/header.tpl.php:4
|
2234 |
msgid "Business Directory Plugin"
|
@@ -3031,8 +3031,10 @@ msgctxt "rss feed"
|
|
3031 |
msgid "%s Feed"
|
3032 |
msgstr "%s diffusion"
|
3033 |
|
3034 |
-
#: business-directory-plugin.php:1117
|
3035 |
-
|
|
|
|
|
3036 |
msgid "Submit A Listing"
|
3037 |
msgstr "Soumettre une annonce"
|
3038 |
|
@@ -3160,37 +3162,43 @@ msgctxt "form-fields-api"
|
|
3160 |
msgid "An error occurred while trying to delete this field."
|
3161 |
msgstr "Une erreur est survenue en essayant de supprimer ce champ."
|
3162 |
|
3163 |
-
#: core/class-gateway.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3164 |
msgctxt "billing info"
|
3165 |
msgid "First name is required."
|
3166 |
msgstr "Le prénom est requis."
|
3167 |
|
3168 |
-
#: core/class-gateway.php:
|
3169 |
msgctxt "billing info"
|
3170 |
msgid "Last name is required."
|
3171 |
msgstr "Le nom est requis."
|
3172 |
|
3173 |
-
#: core/class-gateway.php:
|
3174 |
msgctxt "billing info"
|
3175 |
msgid "Credit card number is required."
|
3176 |
msgstr "Le numéro de carte de crédit est requis."
|
3177 |
|
3178 |
-
#: core/class-gateway.php:
|
3179 |
msgctxt "billing info"
|
3180 |
msgid "Credit card expiration date is invalid."
|
3181 |
msgstr "La date d'expiration de la carte de crédit est requise."
|
3182 |
|
3183 |
-
#: core/class-gateway.php:
|
3184 |
msgctxt "billing info"
|
3185 |
msgid "Credit card CVC number is required."
|
3186 |
msgstr "Le numéro CVC de la carte de crédit est requis"
|
3187 |
|
3188 |
-
#: core/class-gateway.php:
|
3189 |
msgctxt "billing info"
|
3190 |
msgid "Country is required."
|
3191 |
msgstr "Le pays est requis"
|
3192 |
|
3193 |
-
#: core/class-gateway.php:
|
3194 |
msgctxt "billing info"
|
3195 |
msgid "Address is required."
|
3196 |
msgstr "L'adresse est requise."
|
@@ -4967,7 +4975,7 @@ msgstr "Case à cocher"
|
|
4967 |
|
4968 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4969 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4970 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4971 |
msgctxt "form-fields admin"
|
4972 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4973 |
msgstr ""
|
@@ -4976,7 +4984,7 @@ msgstr ""
|
|
4976 |
|
4977 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4978 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4979 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4980 |
msgctxt "form-fields admin"
|
4981 |
msgid "Field list of options is required."
|
4982 |
msgstr "La liste des options est obligatoire"
|
@@ -5040,6 +5048,18 @@ msgctxt "form-fields api"
|
|
5040 |
msgid "Multiselect List"
|
5041 |
msgstr "Multisélection d'annonce"
|
5042 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5043 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
5044 |
#, fuzzy
|
5045 |
msgctxt "form fields"
|
@@ -5062,12 +5082,12 @@ msgid "-- Choose Terms --"
|
|
5062 |
msgstr "-- Choisissez les conditions --"
|
5063 |
|
5064 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
5065 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
5066 |
msgctxt "form-fields-api category-select"
|
5067 |
msgid "-- Choose One --"
|
5068 |
msgstr "-- Choisissez --"
|
5069 |
|
5070 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
5071 |
msgctxt "form-fields admin"
|
5072 |
msgid "Allow empty selection on search?"
|
5073 |
msgstr "Permettre la sélection vide sur la recherche?"
|
@@ -5392,7 +5412,7 @@ msgctxt "authorize-net"
|
|
5392 |
msgid "Setup fee"
|
5393 |
msgstr "Installation/Paramétrage des frais"
|
5394 |
|
5395 |
-
#: core/gateways-authorize-net.php:
|
5396 |
msgctxt "authorize-net"
|
5397 |
msgid "Could not process payment."
|
5398 |
msgstr "Impossible de procéder au paiement."
|
@@ -5596,37 +5616,37 @@ msgstr ""
|
|
5596 |
msgid "Please <contact-link>contact customer support</a>."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: core/licensing.php:
|
5600 |
msgctxt "settings"
|
5601 |
msgid "Licenses"
|
5602 |
msgstr "Licences"
|
5603 |
|
5604 |
-
#: core/licensing.php:
|
5605 |
msgctxt "settings"
|
5606 |
msgid "Premium Modules"
|
5607 |
msgstr "Modules Premium"
|
5608 |
|
5609 |
-
#: core/licensing.php:
|
5610 |
msgctxt "licensing"
|
5611 |
msgid "Invalid module ID"
|
5612 |
msgstr "Identifiant de module invalide"
|
5613 |
|
5614 |
-
#: core/licensing.php:
|
5615 |
msgctxt "licensing"
|
5616 |
msgid "No license key provided"
|
5617 |
msgstr "Aucune clé de licence fournie"
|
5618 |
|
5619 |
-
#: core/licensing.php:
|
5620 |
msgctxt "licensing"
|
5621 |
msgid "Deactivation failed"
|
5622 |
msgstr "La désactivation a échoué"
|
5623 |
|
5624 |
-
#: core/licensing.php:
|
5625 |
msgctxt "licensing"
|
5626 |
msgid "Business Directory - License Key Required"
|
5627 |
msgstr "Business Directory - Une clé de licence est requise"
|
5628 |
|
5629 |
-
#: core/licensing.php:
|
5630 |
msgctxt "licensing"
|
5631 |
msgid ""
|
5632 |
"The following premium modules will not work until a valid license key is "
|
@@ -5637,12 +5657,12 @@ msgstr ""
|
|
5637 |
"licence valide ne sera pas fournie. Aller à <a> Gérer les options - Licences "
|
5638 |
"</a> et entrez vos informations de licence."
|
5639 |
|
5640 |
-
#: core/licensing.php:
|
5641 |
msgctxt "licensing"
|
5642 |
msgid "Business Directory - License Key Expired"
|
5643 |
msgstr "Business Directory - Clé de licence expirée"
|
5644 |
|
5645 |
-
#: core/licensing.php:
|
5646 |
msgctxt "licensing"
|
5647 |
msgid ""
|
5648 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
@@ -5653,17 +5673,17 @@ msgstr ""
|
|
5653 |
"Le module va continuer à travailler mais vous ne recevrez plus de mises à "
|
5654 |
"jour jusqu'à ce que la licence soit renouvelée."
|
5655 |
|
5656 |
-
#: core/licensing.php:
|
5657 |
msgctxt "licensing"
|
5658 |
msgid "Remind me later"
|
5659 |
msgstr "Rappelez-le moi plus tard"
|
5660 |
|
5661 |
-
#: core/licensing.php:
|
5662 |
msgctxt "licensing"
|
5663 |
msgid "Renew License Key"
|
5664 |
msgstr "Renouveller la clé de licence"
|
5665 |
|
5666 |
-
#: core/licensing.php:
|
5667 |
msgctxt "licensing"
|
5668 |
msgid "Could not deactivate license: %s."
|
5669 |
msgstr "Impossible de désactiver la licence: %s."
|
@@ -5880,66 +5900,66 @@ msgctxt "search"
|
|
5880 |
msgid "Search Results"
|
5881 |
msgstr "Résultats de la recherche"
|
5882 |
|
5883 |
-
#: core/templates-ui.php:
|
5884 |
msgctxt "templates"
|
5885 |
msgid "No listing categories found."
|
5886 |
msgstr "Aucune catégorie d'annonce trouvée"
|
5887 |
|
5888 |
-
#: core/templates-ui.php:
|
5889 |
msgid "Directory"
|
5890 |
msgstr "Annuaire"
|
5891 |
|
5892 |
-
#: core/templates-ui.php:
|
5893 |
#, fuzzy
|
5894 |
msgid "View All Listings"
|
5895 |
msgstr "Voir toutes les annonces"
|
5896 |
|
5897 |
-
#: core/templates-ui.php:
|
5898 |
#, fuzzy
|
5899 |
msgid "Create A Listing"
|
5900 |
msgstr "Annonce gratuite"
|
5901 |
|
5902 |
-
#: core/templates-ui.php:
|
5903 |
msgctxt "templates"
|
5904 |
msgid "Search Listings"
|
5905 |
msgstr "Recherche d'annonces"
|
5906 |
|
5907 |
-
#: core/templates-ui.php:
|
5908 |
msgctxt "templates"
|
5909 |
msgid "Advanced Search"
|
5910 |
msgstr "Recherche avancée"
|
5911 |
|
5912 |
-
#: core/templates-ui.php:
|
5913 |
msgctxt "templates sort"
|
5914 |
msgid "Sort By:"
|
5915 |
msgstr "Trier par:"
|
5916 |
|
5917 |
-
#: core/templates-ui.php:
|
5918 |
msgctxt "sort"
|
5919 |
msgid "Reset"
|
5920 |
msgstr "Réinitialiser"
|
5921 |
|
5922 |
-
#: core/templates-ui.php:
|
5923 |
msgctxt "sort"
|
5924 |
msgid "(Reset)"
|
5925 |
msgstr "(Réinitialiser)"
|
5926 |
|
5927 |
-
#: core/themes.php:
|
5928 |
msgctxt "themes"
|
5929 |
msgid "ZIP file is not a valid BD theme file."
|
5930 |
msgstr "Le fichier ZIP n'est pas un fichier de thème valide"
|
5931 |
|
5932 |
-
#: core/themes.php:
|
5933 |
msgctxt "themes"
|
5934 |
msgid "Could not create themes directory."
|
5935 |
msgstr "Impossible de créer le répertoire de thèmes"
|
5936 |
|
5937 |
-
#: core/themes.php:
|
5938 |
msgctxt "themes"
|
5939 |
msgid "Could not remove previous theme directory \"%s\"."
|
5940 |
msgstr "Impossible de supprimer le dossier de thème précédent \"%s\"."
|
5941 |
|
5942 |
-
#: core/themes.php:
|
5943 |
msgctxt "themes"
|
5944 |
msgid "Could not move new theme into theme directory."
|
5945 |
msgstr "Impossible de déplacer le nouveau thème dans le dossier à thèmes"
|
@@ -6045,15 +6065,11 @@ msgid "You are not authorized to edit this listing."
|
|
6045 |
msgstr "Vous n'êtes pas autorisé à éditer cette annonce."
|
6046 |
|
6047 |
#: core/view-submit-listing.php:58
|
6048 |
-
|
|
|
6049 |
msgid "Edit Your Listing"
|
6050 |
msgstr "Éditer votre annonce"
|
6051 |
|
6052 |
-
#: core/view-submit-listing.php:58
|
6053 |
-
msgctxt "templates"
|
6054 |
-
msgid "Submit A Listing"
|
6055 |
-
msgstr "Soumettre une annonce"
|
6056 |
-
|
6057 |
#: core/view-submit-listing.php:65
|
6058 |
msgctxt "templates"
|
6059 |
msgid ""
|
@@ -6210,6 +6226,12 @@ msgstr "Envoyer un message au propriétaire de l'annonce"
|
|
6210 |
msgid "l F j, Y \\a\\t g:i a"
|
6211 |
msgstr "l F j, Y \\a\\t g:i a"
|
6212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6213 |
#: core/views/listing_contact.php:178
|
6214 |
#, fuzzy
|
6215 |
msgctxt "contact-message"
|
@@ -6391,12 +6413,6 @@ msgctxt "views"
|
|
6391 |
msgid "Find A Listing"
|
6392 |
msgstr "Trouver une annonce"
|
6393 |
|
6394 |
-
#: core/views/submit_listing.php:10
|
6395 |
-
#, fuzzy
|
6396 |
-
msgctxt "views"
|
6397 |
-
msgid "Submit A Listing"
|
6398 |
-
msgstr "Soumettre une annonce"
|
6399 |
-
|
6400 |
#: core/views/submit_listing.php:16
|
6401 |
msgctxt "templates"
|
6402 |
msgid ""
|
@@ -6525,142 +6541,154 @@ msgctxt "widgets"
|
|
6525 |
msgid "Search"
|
6526 |
msgstr "Rechercher"
|
6527 |
|
6528 |
-
#: templates/billing-information-form.tpl.php:
|
6529 |
msgctxt "months"
|
6530 |
msgid "Jan"
|
6531 |
msgstr "Janvier"
|
6532 |
|
6533 |
-
#: templates/billing-information-form.tpl.php:
|
6534 |
msgctxt "months"
|
6535 |
msgid "Feb"
|
6536 |
msgstr "Février"
|
6537 |
|
6538 |
-
#: templates/billing-information-form.tpl.php:
|
6539 |
msgctxt "months"
|
6540 |
msgid "Mar"
|
6541 |
msgstr "Mars"
|
6542 |
|
6543 |
-
#: templates/billing-information-form.tpl.php:
|
6544 |
msgctxt "months"
|
6545 |
msgid "Apr"
|
6546 |
msgstr "Avril"
|
6547 |
|
6548 |
-
#: templates/billing-information-form.tpl.php:
|
6549 |
msgctxt "months"
|
6550 |
msgid "May"
|
6551 |
msgstr "Mai"
|
6552 |
|
6553 |
-
#: templates/billing-information-form.tpl.php:
|
6554 |
msgctxt "months"
|
6555 |
msgid "Jun"
|
6556 |
msgstr "Juin"
|
6557 |
|
6558 |
-
#: templates/billing-information-form.tpl.php:
|
6559 |
msgctxt "months"
|
6560 |
msgid "Jul"
|
6561 |
msgstr "Juillet"
|
6562 |
|
6563 |
-
#: templates/billing-information-form.tpl.php:
|
6564 |
msgctxt "months"
|
6565 |
msgid "Aug"
|
6566 |
msgstr "Août"
|
6567 |
|
6568 |
-
#: templates/billing-information-form.tpl.php:
|
6569 |
msgctxt "months"
|
6570 |
msgid "Sep"
|
6571 |
msgstr "Septembre"
|
6572 |
|
6573 |
-
#: templates/billing-information-form.tpl.php:
|
6574 |
msgctxt "months"
|
6575 |
msgid "Oct"
|
6576 |
msgstr "Octobre"
|
6577 |
|
6578 |
-
#: templates/billing-information-form.tpl.php:
|
6579 |
msgctxt "months"
|
6580 |
msgid "Nov"
|
6581 |
msgstr "Novembre"
|
6582 |
|
6583 |
-
#: templates/billing-information-form.tpl.php:
|
6584 |
msgctxt "months"
|
6585 |
msgid "Dec"
|
6586 |
msgstr "Décembre"
|
6587 |
|
6588 |
-
#: templates/billing-information-form.tpl.php:
|
6589 |
msgctxt "checkout form"
|
6590 |
msgid "Credit Card Details"
|
6591 |
msgstr "Détails de la carte de crédit"
|
6592 |
|
6593 |
-
#: templates/billing-information-form.tpl.php:
|
6594 |
msgctxt "checkout form"
|
6595 |
msgid "Please enter your credit card details below."
|
6596 |
msgstr "Veuillez entrer vos détails de carte de crédit ci-dessous."
|
6597 |
|
6598 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6599 |
msgctxt "checkout form"
|
6600 |
msgid "First Name:"
|
6601 |
msgstr "Prénom:"
|
6602 |
|
6603 |
-
#: templates/billing-information-form.tpl.php:
|
6604 |
msgctxt "checkout form"
|
6605 |
msgid "Last Name:"
|
6606 |
msgstr "Nom:"
|
6607 |
|
6608 |
-
#: templates/billing-information-form.tpl.php:
|
6609 |
msgctxt "checkout form"
|
6610 |
msgid "Card Number:"
|
6611 |
msgstr "Numéro de carte"
|
6612 |
|
6613 |
-
#: templates/billing-information-form.tpl.php:
|
6614 |
msgctxt "checkout form"
|
6615 |
msgid "Expiration Date (MM/YYYY):"
|
6616 |
msgstr "Date d'expiration (MM/YYYY):"
|
6617 |
|
6618 |
-
#: templates/billing-information-form.tpl.php:
|
6619 |
msgctxt "checkout form"
|
6620 |
msgid "CVC:"
|
6621 |
msgstr "Code secret:"
|
6622 |
|
6623 |
-
#: templates/billing-information-form.tpl.php:
|
6624 |
msgctxt "checkout form"
|
6625 |
msgid "Billing Address"
|
6626 |
msgstr "Adresse de facturation"
|
6627 |
|
6628 |
-
#: templates/billing-information-form.tpl.php:
|
6629 |
msgctxt "checkout form"
|
6630 |
msgid "Country:"
|
6631 |
msgstr "Pays:"
|
6632 |
|
6633 |
-
#: templates/billing-information-form.tpl.php:
|
6634 |
msgctxt "checkout form"
|
6635 |
msgid "State:"
|
6636 |
msgstr "Région: "
|
6637 |
|
6638 |
-
#: templates/billing-information-form.tpl.php:
|
6639 |
msgctxt "checkout form"
|
6640 |
msgid "City:"
|
6641 |
msgstr "Ville: "
|
6642 |
|
6643 |
-
#: templates/billing-information-form.tpl.php:
|
6644 |
msgctxt "checkout form"
|
6645 |
msgid "Address Line 1:"
|
6646 |
msgstr "Adresse ligne 1:"
|
6647 |
|
6648 |
-
#: templates/billing-information-form.tpl.php:
|
6649 |
msgctxt "checkout form"
|
6650 |
msgid "Address Line 2:"
|
6651 |
msgstr "adresse ligne 2:"
|
6652 |
|
6653 |
-
#: templates/billing-information-form.tpl.php:
|
6654 |
msgctxt "checkout form"
|
6655 |
msgid "ZIP Code:"
|
6656 |
msgstr "Code postal:"
|
6657 |
|
6658 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6659 |
msgctxt "WPBDM"
|
6660 |
msgid "Cancel"
|
6661 |
msgstr "Annuler"
|
6662 |
|
6663 |
-
#: templates/billing-information-form.tpl.php:
|
6664 |
msgctxt "WPBDM"
|
6665 |
msgid "Submit Payment"
|
6666 |
msgstr "Soumettre paiement"
|
@@ -7279,32 +7307,6 @@ msgctxt "themes/default"
|
|
7279 |
msgid "Address"
|
7280 |
msgstr "Adresse"
|
7281 |
|
7282 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:178
|
7283 |
-
msgid ""
|
7284 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
7285 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
7286 |
-
msgstr ""
|
7287 |
-
"Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class="
|
7288 |
-
"\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a>."
|
7289 |
-
|
7290 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:185
|
7291 |
-
msgid ""
|
7292 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
7293 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
7294 |
-
"\">update now</a>."
|
7295 |
-
msgstr ""
|
7296 |
-
"Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class="
|
7297 |
-
"\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a> ou <a "
|
7298 |
-
"href=\"%4$s\">mettre à jour maintenant/a>."
|
7299 |
-
|
7300 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
7301 |
-
msgid "You do not have permission to install plugin updates"
|
7302 |
-
msgstr "Vous n'avez pas la permission d'installer des mises à jour du plugin"
|
7303 |
-
|
7304 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
7305 |
-
msgid "Error"
|
7306 |
-
msgstr "Erreur"
|
7307 |
-
|
7308 |
#. Plugin URI of the plugin/theme
|
7309 |
msgid "http://www.businessdirectoryplugin.com"
|
7310 |
msgstr "http://www.businessdirectoryplugin.com"
|
@@ -7325,6 +7327,37 @@ msgstr "D. Rodenbaugh"
|
|
7325 |
msgid "http://businessdirectoryplugin.com"
|
7326 |
msgstr "http://businessdirectoryplugin.com"
|
7327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7328 |
#~ msgctxt "admin csv-import"
|
7329 |
#~ msgid "Last imported line from file:"
|
7330 |
#~ msgstr "Dernière ligne importée depuis le fichier:"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 3.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
+
"POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
|
8 |
"PO-Revision-Date: 2016-08-29 18:17-0300\n"
|
9 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
10 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
565 |
msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire"
|
566 |
|
567 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
568 |
+
#: core/licensing.php:126 core/licensing.php:158
|
569 |
msgctxt "licensing"
|
570 |
msgid "Could not contact licensing server"
|
571 |
msgstr "Impossible de contacter le serveur de licences"
|
572 |
|
573 |
+
#: admin/class-themes-admin.php:372 core/licensing.php:131
|
574 |
+
#: core/licensing.php:165
|
575 |
msgctxt "licensing"
|
576 |
msgid "License key is invalid"
|
577 |
msgstr "La clé de licence est invalide"
|
578 |
|
579 |
+
#: admin/class-themes-admin.php:377 core/licensing.php:320
|
580 |
msgctxt "licensing"
|
581 |
msgid "Could not activate license: %s."
|
582 |
msgstr "Impossible d'activer la licence: %s."
|
583 |
|
584 |
+
#: admin/class-themes-admin.php:390 core/licensing.php:322
|
585 |
msgctxt "licensing"
|
586 |
msgid "License activated"
|
587 |
msgstr "Licence activée"
|
591 |
msgid "Invalid response from server"
|
592 |
msgstr "Invalid response from server"
|
593 |
|
594 |
+
#: admin/class-themes-admin.php:450 core/licensing.php:340
|
595 |
msgctxt "licensing"
|
596 |
msgid "License deactivated"
|
597 |
msgstr "Licence désactivée"
|
1152 |
msgid "Environment"
|
1153 |
msgstr "Environnement"
|
1154 |
|
1155 |
+
#: admin/page-debug.php:72
|
1156 |
msgctxt "debug info"
|
1157 |
msgid "Test SSL setup..."
|
1158 |
msgstr ""
|
2228 |
"Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
|
2229 |
"détails."
|
2230 |
|
2231 |
+
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
|
2232 |
#. Plugin Name of the plugin/theme
|
2233 |
#: admin/templates/header.tpl.php:4
|
2234 |
msgid "Business Directory Plugin"
|
3031 |
msgid "%s Feed"
|
3032 |
msgstr "%s diffusion"
|
3033 |
|
3034 |
+
#: business-directory-plugin.php:1117 core/view-submit-listing.php:58
|
3035 |
+
#: core/views/submit_listing.php:10
|
3036 |
+
#, fuzzy
|
3037 |
+
msgctxt "views"
|
3038 |
msgid "Submit A Listing"
|
3039 |
msgstr "Soumettre une annonce"
|
3040 |
|
3162 |
msgid "An error occurred while trying to delete this field."
|
3163 |
msgstr "Une erreur est survenue en essayant de supprimer ce champ."
|
3164 |
|
3165 |
+
#: core/class-gateway.php:133
|
3166 |
+
#, fuzzy
|
3167 |
+
msgctxt "billing info"
|
3168 |
+
msgid "Please enter a valid e-mail address."
|
3169 |
+
msgstr "Veuillez entrer un e-mail valide."
|
3170 |
+
|
3171 |
+
#: core/class-gateway.php:136
|
3172 |
msgctxt "billing info"
|
3173 |
msgid "First name is required."
|
3174 |
msgstr "Le prénom est requis."
|
3175 |
|
3176 |
+
#: core/class-gateway.php:139
|
3177 |
msgctxt "billing info"
|
3178 |
msgid "Last name is required."
|
3179 |
msgstr "Le nom est requis."
|
3180 |
|
3181 |
+
#: core/class-gateway.php:142
|
3182 |
msgctxt "billing info"
|
3183 |
msgid "Credit card number is required."
|
3184 |
msgstr "Le numéro de carte de crédit est requis."
|
3185 |
|
3186 |
+
#: core/class-gateway.php:145
|
3187 |
msgctxt "billing info"
|
3188 |
msgid "Credit card expiration date is invalid."
|
3189 |
msgstr "La date d'expiration de la carte de crédit est requise."
|
3190 |
|
3191 |
+
#: core/class-gateway.php:148
|
3192 |
msgctxt "billing info"
|
3193 |
msgid "Credit card CVC number is required."
|
3194 |
msgstr "Le numéro CVC de la carte de crédit est requis"
|
3195 |
|
3196 |
+
#: core/class-gateway.php:151
|
3197 |
msgctxt "billing info"
|
3198 |
msgid "Country is required."
|
3199 |
msgstr "Le pays est requis"
|
3200 |
|
3201 |
+
#: core/class-gateway.php:154
|
3202 |
msgctxt "billing info"
|
3203 |
msgid "Address is required."
|
3204 |
msgstr "L'adresse est requise."
|
4975 |
|
4976 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4977 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4978 |
+
#: core/fieldtypes/class-fieldtypes-select.php:144
|
4979 |
msgctxt "form-fields admin"
|
4980 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4981 |
msgstr ""
|
4984 |
|
4985 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4986 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4987 |
+
#: core/fieldtypes/class-fieldtypes-select.php:172
|
4988 |
msgctxt "form-fields admin"
|
4989 |
msgid "Field list of options is required."
|
4990 |
msgstr "La liste des options est obligatoire"
|
5048 |
msgid "Multiselect List"
|
5049 |
msgstr "Multisélection d'annonce"
|
5050 |
|
5051 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:25
|
5052 |
+
msgctxt "form-fields-admin"
|
5053 |
+
msgid "Number of options visible without scrolling"
|
5054 |
+
msgstr ""
|
5055 |
+
|
5056 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:26
|
5057 |
+
msgctxt "form-fields-admin"
|
5058 |
+
msgid ""
|
5059 |
+
"The height of the list will be adjusted to accommodate the specified number "
|
5060 |
+
"of options."
|
5061 |
+
msgstr ""
|
5062 |
+
|
5063 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
5064 |
#, fuzzy
|
5065 |
msgctxt "form fields"
|
5082 |
msgstr "-- Choisissez les conditions --"
|
5083 |
|
5084 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
5085 |
+
#: core/fieldtypes/class-fieldtypes-select.php:105
|
5086 |
msgctxt "form-fields-api category-select"
|
5087 |
msgid "-- Choose One --"
|
5088 |
msgstr "-- Choisissez --"
|
5089 |
|
5090 |
+
#: core/fieldtypes/class-fieldtypes-select.php:155
|
5091 |
msgctxt "form-fields admin"
|
5092 |
msgid "Allow empty selection on search?"
|
5093 |
msgstr "Permettre la sélection vide sur la recherche?"
|
5412 |
msgid "Setup fee"
|
5413 |
msgstr "Installation/Paramétrage des frais"
|
5414 |
|
5415 |
+
#: core/gateways-authorize-net.php:175
|
5416 |
msgctxt "authorize-net"
|
5417 |
msgid "Could not process payment."
|
5418 |
msgstr "Impossible de procéder au paiement."
|
5616 |
msgid "Please <contact-link>contact customer support</a>."
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: core/licensing.php:42 core/licensing.php:64 core/licensing.php:65
|
5620 |
msgctxt "settings"
|
5621 |
msgid "Licenses"
|
5622 |
msgstr "Licences"
|
5623 |
|
5624 |
+
#: core/licensing.php:45
|
5625 |
msgctxt "settings"
|
5626 |
msgid "Premium Modules"
|
5627 |
msgstr "Modules Premium"
|
5628 |
|
5629 |
+
#: core/licensing.php:106 core/licensing.php:140
|
5630 |
msgctxt "licensing"
|
5631 |
msgid "Invalid module ID"
|
5632 |
msgstr "Identifiant de module invalide"
|
5633 |
|
5634 |
+
#: core/licensing.php:111
|
5635 |
msgctxt "licensing"
|
5636 |
msgid "No license key provided"
|
5637 |
msgstr "Aucune clé de licence fournie"
|
5638 |
|
5639 |
+
#: core/licensing.php:168
|
5640 |
msgctxt "licensing"
|
5641 |
msgid "Deactivation failed"
|
5642 |
msgstr "La désactivation a échoué"
|
5643 |
|
5644 |
+
#: core/licensing.php:220
|
5645 |
msgctxt "licensing"
|
5646 |
msgid "Business Directory - License Key Required"
|
5647 |
msgstr "Business Directory - Une clé de licence est requise"
|
5648 |
|
5649 |
+
#: core/licensing.php:223
|
5650 |
msgctxt "licensing"
|
5651 |
msgid ""
|
5652 |
"The following premium modules will not work until a valid license key is "
|
5657 |
"licence valide ne sera pas fournie. Aller à <a> Gérer les options - Licences "
|
5658 |
"</a> et entrez vos informations de licence."
|
5659 |
|
5660 |
+
#: core/licensing.php:244
|
5661 |
msgctxt "licensing"
|
5662 |
msgid "Business Directory - License Key Expired"
|
5663 |
msgstr "Business Directory - Clé de licence expirée"
|
5664 |
|
5665 |
+
#: core/licensing.php:245
|
5666 |
msgctxt "licensing"
|
5667 |
msgid ""
|
5668 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
5673 |
"Le module va continuer à travailler mais vous ne recevrez plus de mises à "
|
5674 |
"jour jusqu'à ce que la licence soit renouvelée."
|
5675 |
|
5676 |
+
#: core/licensing.php:249
|
5677 |
msgctxt "licensing"
|
5678 |
msgid "Remind me later"
|
5679 |
msgstr "Rappelez-le moi plus tard"
|
5680 |
|
5681 |
+
#: core/licensing.php:251
|
5682 |
msgctxt "licensing"
|
5683 |
msgid "Renew License Key"
|
5684 |
msgstr "Renouveller la clé de licence"
|
5685 |
|
5686 |
+
#: core/licensing.php:338
|
5687 |
msgctxt "licensing"
|
5688 |
msgid "Could not deactivate license: %s."
|
5689 |
msgstr "Impossible de désactiver la licence: %s."
|
5900 |
msgid "Search Results"
|
5901 |
msgstr "Résultats de la recherche"
|
5902 |
|
5903 |
+
#: core/templates-ui.php:169
|
5904 |
msgctxt "templates"
|
5905 |
msgid "No listing categories found."
|
5906 |
msgstr "Aucune catégorie d'annonce trouvée"
|
5907 |
|
5908 |
+
#: core/templates-ui.php:193
|
5909 |
msgid "Directory"
|
5910 |
msgstr "Annuaire"
|
5911 |
|
5912 |
+
#: core/templates-ui.php:199
|
5913 |
#, fuzzy
|
5914 |
msgid "View All Listings"
|
5915 |
msgstr "Voir toutes les annonces"
|
5916 |
|
5917 |
+
#: core/templates-ui.php:205
|
5918 |
#, fuzzy
|
5919 |
msgid "Create A Listing"
|
5920 |
msgstr "Annonce gratuite"
|
5921 |
|
5922 |
+
#: core/templates-ui.php:232
|
5923 |
msgctxt "templates"
|
5924 |
msgid "Search Listings"
|
5925 |
msgstr "Recherche d'annonces"
|
5926 |
|
5927 |
+
#: core/templates-ui.php:235
|
5928 |
msgctxt "templates"
|
5929 |
msgid "Advanced Search"
|
5930 |
msgstr "Recherche avancée"
|
5931 |
|
5932 |
+
#: core/templates-ui.php:264 core/templates-ui.php:289
|
5933 |
msgctxt "templates sort"
|
5934 |
msgid "Sort By:"
|
5935 |
msgstr "Trier par:"
|
5936 |
|
5937 |
+
#: core/templates-ui.php:283
|
5938 |
msgctxt "sort"
|
5939 |
msgid "Reset"
|
5940 |
msgstr "Réinitialiser"
|
5941 |
|
5942 |
+
#: core/templates-ui.php:305
|
5943 |
msgctxt "sort"
|
5944 |
msgid "(Reset)"
|
5945 |
msgstr "(Réinitialiser)"
|
5946 |
|
5947 |
+
#: core/themes.php:749
|
5948 |
msgctxt "themes"
|
5949 |
msgid "ZIP file is not a valid BD theme file."
|
5950 |
msgstr "Le fichier ZIP n'est pas un fichier de thème valide"
|
5951 |
|
5952 |
+
#: core/themes.php:755
|
5953 |
msgctxt "themes"
|
5954 |
msgid "Could not create themes directory."
|
5955 |
msgstr "Impossible de créer le répertoire de thèmes"
|
5956 |
|
5957 |
+
#: core/themes.php:763
|
5958 |
msgctxt "themes"
|
5959 |
msgid "Could not remove previous theme directory \"%s\"."
|
5960 |
msgstr "Impossible de supprimer le dossier de thème précédent \"%s\"."
|
5961 |
|
5962 |
+
#: core/themes.php:769
|
5963 |
msgctxt "themes"
|
5964 |
msgid "Could not move new theme into theme directory."
|
5965 |
msgstr "Impossible de déplacer le nouveau thème dans le dossier à thèmes"
|
6065 |
msgstr "Vous n'êtes pas autorisé à éditer cette annonce."
|
6066 |
|
6067 |
#: core/view-submit-listing.php:58
|
6068 |
+
#, fuzzy
|
6069 |
+
msgctxt "views"
|
6070 |
msgid "Edit Your Listing"
|
6071 |
msgstr "Éditer votre annonce"
|
6072 |
|
|
|
|
|
|
|
|
|
|
|
6073 |
#: core/view-submit-listing.php:65
|
6074 |
msgctxt "templates"
|
6075 |
msgid ""
|
6226 |
msgid "l F j, Y \\a\\t g:i a"
|
6227 |
msgstr "l F j, Y \\a\\t g:i a"
|
6228 |
|
6229 |
+
#: core/views/listing_contact.php:173
|
6230 |
+
#, fuzzy
|
6231 |
+
msgctxt "contact-message"
|
6232 |
+
msgid "Your message has been sent."
|
6233 |
+
msgstr "Votre annonce a été effacée."
|
6234 |
+
|
6235 |
#: core/views/listing_contact.php:178
|
6236 |
#, fuzzy
|
6237 |
msgctxt "contact-message"
|
6413 |
msgid "Find A Listing"
|
6414 |
msgstr "Trouver une annonce"
|
6415 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6416 |
#: core/views/submit_listing.php:16
|
6417 |
msgctxt "templates"
|
6418 |
msgid ""
|
6541 |
msgid "Search"
|
6542 |
msgstr "Rechercher"
|
6543 |
|
6544 |
+
#: templates/billing-information-form.tpl.php:4
|
6545 |
msgctxt "months"
|
6546 |
msgid "Jan"
|
6547 |
msgstr "Janvier"
|
6548 |
|
6549 |
+
#: templates/billing-information-form.tpl.php:5
|
6550 |
msgctxt "months"
|
6551 |
msgid "Feb"
|
6552 |
msgstr "Février"
|
6553 |
|
6554 |
+
#: templates/billing-information-form.tpl.php:6
|
6555 |
msgctxt "months"
|
6556 |
msgid "Mar"
|
6557 |
msgstr "Mars"
|
6558 |
|
6559 |
+
#: templates/billing-information-form.tpl.php:7
|
6560 |
msgctxt "months"
|
6561 |
msgid "Apr"
|
6562 |
msgstr "Avril"
|
6563 |
|
6564 |
+
#: templates/billing-information-form.tpl.php:8
|
6565 |
msgctxt "months"
|
6566 |
msgid "May"
|
6567 |
msgstr "Mai"
|
6568 |
|
6569 |
+
#: templates/billing-information-form.tpl.php:9
|
6570 |
msgctxt "months"
|
6571 |
msgid "Jun"
|
6572 |
msgstr "Juin"
|
6573 |
|
6574 |
+
#: templates/billing-information-form.tpl.php:10
|
6575 |
msgctxt "months"
|
6576 |
msgid "Jul"
|
6577 |
msgstr "Juillet"
|
6578 |
|
6579 |
+
#: templates/billing-information-form.tpl.php:11
|
6580 |
msgctxt "months"
|
6581 |
msgid "Aug"
|
6582 |
msgstr "Août"
|
6583 |
|
6584 |
+
#: templates/billing-information-form.tpl.php:12
|
6585 |
msgctxt "months"
|
6586 |
msgid "Sep"
|
6587 |
msgstr "Septembre"
|
6588 |
|
6589 |
+
#: templates/billing-information-form.tpl.php:13
|
6590 |
msgctxt "months"
|
6591 |
msgid "Oct"
|
6592 |
msgstr "Octobre"
|
6593 |
|
6594 |
+
#: templates/billing-information-form.tpl.php:14
|
6595 |
msgctxt "months"
|
6596 |
msgid "Nov"
|
6597 |
msgstr "Novembre"
|
6598 |
|
6599 |
+
#: templates/billing-information-form.tpl.php:15
|
6600 |
msgctxt "months"
|
6601 |
msgid "Dec"
|
6602 |
msgstr "Décembre"
|
6603 |
|
6604 |
+
#: templates/billing-information-form.tpl.php:30
|
6605 |
msgctxt "checkout form"
|
6606 |
msgid "Credit Card Details"
|
6607 |
msgstr "Détails de la carte de crédit"
|
6608 |
|
6609 |
+
#: templates/billing-information-form.tpl.php:31
|
6610 |
msgctxt "checkout form"
|
6611 |
msgid "Please enter your credit card details below."
|
6612 |
msgstr "Veuillez entrer vos détails de carte de crédit ci-dessous."
|
6613 |
|
6614 |
+
#: templates/billing-information-form.tpl.php:36
|
6615 |
+
#, fuzzy
|
6616 |
+
msgctxt "checkout form"
|
6617 |
+
msgid "E-mail:"
|
6618 |
+
msgstr "E-Mail: %s"
|
6619 |
+
|
6620 |
+
#: templates/billing-information-form.tpl.php:44
|
6621 |
msgctxt "checkout form"
|
6622 |
msgid "First Name:"
|
6623 |
msgstr "Prénom:"
|
6624 |
|
6625 |
+
#: templates/billing-information-form.tpl.php:52
|
6626 |
msgctxt "checkout form"
|
6627 |
msgid "Last Name:"
|
6628 |
msgstr "Nom:"
|
6629 |
|
6630 |
+
#: templates/billing-information-form.tpl.php:60
|
6631 |
msgctxt "checkout form"
|
6632 |
msgid "Card Number:"
|
6633 |
msgstr "Numéro de carte"
|
6634 |
|
6635 |
+
#: templates/billing-information-form.tpl.php:68
|
6636 |
msgctxt "checkout form"
|
6637 |
msgid "Expiration Date (MM/YYYY):"
|
6638 |
msgstr "Date d'expiration (MM/YYYY):"
|
6639 |
|
6640 |
+
#: templates/billing-information-form.tpl.php:88
|
6641 |
msgctxt "checkout form"
|
6642 |
msgid "CVC:"
|
6643 |
msgstr "Code secret:"
|
6644 |
|
6645 |
+
#: templates/billing-information-form.tpl.php:98
|
6646 |
msgctxt "checkout form"
|
6647 |
msgid "Billing Address"
|
6648 |
msgstr "Adresse de facturation"
|
6649 |
|
6650 |
+
#: templates/billing-information-form.tpl.php:103
|
6651 |
msgctxt "checkout form"
|
6652 |
msgid "Country:"
|
6653 |
msgstr "Pays:"
|
6654 |
|
6655 |
+
#: templates/billing-information-form.tpl.php:111
|
6656 |
msgctxt "checkout form"
|
6657 |
msgid "State:"
|
6658 |
msgstr "Région: "
|
6659 |
|
6660 |
+
#: templates/billing-information-form.tpl.php:119
|
6661 |
msgctxt "checkout form"
|
6662 |
msgid "City:"
|
6663 |
msgstr "Ville: "
|
6664 |
|
6665 |
+
#: templates/billing-information-form.tpl.php:127
|
6666 |
msgctxt "checkout form"
|
6667 |
msgid "Address Line 1:"
|
6668 |
msgstr "Adresse ligne 1:"
|
6669 |
|
6670 |
+
#: templates/billing-information-form.tpl.php:135
|
6671 |
msgctxt "checkout form"
|
6672 |
msgid "Address Line 2:"
|
6673 |
msgstr "adresse ligne 2:"
|
6674 |
|
6675 |
+
#: templates/billing-information-form.tpl.php:143
|
6676 |
msgctxt "checkout form"
|
6677 |
msgid "ZIP Code:"
|
6678 |
msgstr "Code postal:"
|
6679 |
|
6680 |
+
#: templates/billing-information-form.tpl.php:151
|
6681 |
+
#, fuzzy
|
6682 |
+
msgctxt "checkout form"
|
6683 |
+
msgid "Phone Number:"
|
6684 |
+
msgstr "Numéro de téléphone"
|
6685 |
+
|
6686 |
+
#: templates/billing-information-form.tpl.php:161
|
6687 |
msgctxt "WPBDM"
|
6688 |
msgid "Cancel"
|
6689 |
msgstr "Annuler"
|
6690 |
|
6691 |
+
#: templates/billing-information-form.tpl.php:162
|
6692 |
msgctxt "WPBDM"
|
6693 |
msgid "Submit Payment"
|
6694 |
msgstr "Soumettre paiement"
|
7307 |
msgid "Address"
|
7308 |
msgstr "Adresse"
|
7309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7310 |
#. Plugin URI of the plugin/theme
|
7311 |
msgid "http://www.businessdirectoryplugin.com"
|
7312 |
msgstr "http://www.businessdirectoryplugin.com"
|
7327 |
msgid "http://businessdirectoryplugin.com"
|
7328 |
msgstr "http://businessdirectoryplugin.com"
|
7329 |
|
7330 |
+
#~ msgctxt "title"
|
7331 |
+
#~ msgid "Submit A Listing"
|
7332 |
+
#~ msgstr "Soumettre une annonce"
|
7333 |
+
|
7334 |
+
#~ msgctxt "templates"
|
7335 |
+
#~ msgid "Submit A Listing"
|
7336 |
+
#~ msgstr "Soumettre une annonce"
|
7337 |
+
|
7338 |
+
#~ msgid ""
|
7339 |
+
#~ "There is a new version of %1$s available. <a target=\"_blank\" class="
|
7340 |
+
#~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
7341 |
+
#~ msgstr ""
|
7342 |
+
#~ "Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class="
|
7343 |
+
#~ "\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a>."
|
7344 |
+
|
7345 |
+
#~ msgid ""
|
7346 |
+
#~ "There is a new version of %1$s available. <a target=\"_blank\" class="
|
7347 |
+
#~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
7348 |
+
#~ "\">update now</a>."
|
7349 |
+
#~ msgstr ""
|
7350 |
+
#~ "Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class="
|
7351 |
+
#~ "\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a> ou <a "
|
7352 |
+
#~ "href=\"%4$s\">mettre à jour maintenant/a>."
|
7353 |
+
|
7354 |
+
#~ msgid "You do not have permission to install plugin updates"
|
7355 |
+
#~ msgstr ""
|
7356 |
+
#~ "Vous n'avez pas la permission d'installer des mises à jour du plugin"
|
7357 |
+
|
7358 |
+
#~ msgid "Error"
|
7359 |
+
#~ msgstr "Erreur"
|
7360 |
+
|
7361 |
#~ msgctxt "admin csv-import"
|
7362 |
#~ msgid "Last imported line from file:"
|
7363 |
#~ msgstr "Dernière ligne importée depuis le fichier:"
|
languages/WPBDM.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Business Directory Plugin package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Business Directory Plugin 4.1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
-
"POT-Creation-Date: 2016-11-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -532,23 +532,23 @@ msgid "Could not move \"%s\" to a temporary directory."
|
|
532 |
msgstr ""
|
533 |
|
534 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
535 |
-
#: core/licensing.php:
|
536 |
msgctxt "licensing"
|
537 |
msgid "Could not contact licensing server"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/class-themes-admin.php:372 core/licensing.php:
|
541 |
-
#: core/licensing.php:
|
542 |
msgctxt "licensing"
|
543 |
msgid "License key is invalid"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/class-themes-admin.php:377 core/licensing.php:
|
547 |
msgctxt "licensing"
|
548 |
msgid "Could not activate license: %s."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/class-themes-admin.php:390 core/licensing.php:
|
552 |
msgctxt "licensing"
|
553 |
msgid "License activated"
|
554 |
msgstr ""
|
@@ -558,7 +558,7 @@ msgctxt "licensing"
|
|
558 |
msgid "Invalid response from server"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: admin/class-themes-admin.php:450 core/licensing.php:
|
562 |
msgctxt "licensing"
|
563 |
msgid "License deactivated"
|
564 |
msgstr ""
|
@@ -1094,7 +1094,7 @@ msgctxt "debug-info"
|
|
1094 |
msgid "Environment"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: admin/page-debug.php:
|
1098 |
msgctxt "debug info"
|
1099 |
msgid "Test SSL setup..."
|
1100 |
msgstr ""
|
@@ -2088,7 +2088,7 @@ msgctxt "form-fields admin"
|
|
2088 |
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.
|
2092 |
#. Plugin Name of the plugin/theme
|
2093 |
#: admin/templates/header.tpl.php:4
|
2094 |
msgid "Business Directory Plugin"
|
@@ -2834,8 +2834,9 @@ msgctxt "rss feed"
|
|
2834 |
msgid "%s Feed"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: business-directory-plugin.php:1117
|
2838 |
-
|
|
|
2839 |
msgid "Submit A Listing"
|
2840 |
msgstr ""
|
2841 |
|
@@ -2954,37 +2955,42 @@ msgctxt "form-fields-api"
|
|
2954 |
msgid "An error occurred while trying to delete this field."
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#: core/class-gateway.php:
|
|
|
|
|
|
|
|
|
|
|
2958 |
msgctxt "billing info"
|
2959 |
msgid "First name is required."
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: core/class-gateway.php:
|
2963 |
msgctxt "billing info"
|
2964 |
msgid "Last name is required."
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: core/class-gateway.php:
|
2968 |
msgctxt "billing info"
|
2969 |
msgid "Credit card number is required."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: core/class-gateway.php:
|
2973 |
msgctxt "billing info"
|
2974 |
msgid "Credit card expiration date is invalid."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: core/class-gateway.php:
|
2978 |
msgctxt "billing info"
|
2979 |
msgid "Credit card CVC number is required."
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: core/class-gateway.php:
|
2983 |
msgctxt "billing info"
|
2984 |
msgid "Country is required."
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: core/class-gateway.php:
|
2988 |
msgctxt "billing info"
|
2989 |
msgid "Address is required."
|
2990 |
msgstr ""
|
@@ -4618,14 +4624,14 @@ msgstr ""
|
|
4618 |
|
4619 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4620 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4621 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4622 |
msgctxt "form-fields admin"
|
4623 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4627 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4628 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4629 |
msgctxt "form-fields admin"
|
4630 |
msgid "Field list of options is required."
|
4631 |
msgstr ""
|
@@ -4689,6 +4695,18 @@ msgctxt "form-fields api"
|
|
4689 |
msgid "Multiselect List"
|
4690 |
msgstr ""
|
4691 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4692 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
4693 |
msgctxt "form fields"
|
4694 |
msgid "Phone Number"
|
@@ -4710,12 +4728,12 @@ msgid "-- Choose Terms --"
|
|
4710 |
msgstr ""
|
4711 |
|
4712 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
4713 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4714 |
msgctxt "form-fields-api category-select"
|
4715 |
msgid "-- Choose One --"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: core/fieldtypes/class-fieldtypes-select.php:
|
4719 |
msgctxt "form-fields admin"
|
4720 |
msgid "Allow empty selection on search?"
|
4721 |
msgstr ""
|
@@ -5029,7 +5047,7 @@ msgctxt "authorize-net"
|
|
5029 |
msgid "Setup fee"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
-
#: core/gateways-authorize-net.php:
|
5033 |
msgctxt "authorize-net"
|
5034 |
msgid "Could not process payment."
|
5035 |
msgstr ""
|
@@ -5216,37 +5234,37 @@ msgstr ""
|
|
5216 |
msgid "Please <contact-link>contact customer support</a>."
|
5217 |
msgstr ""
|
5218 |
|
5219 |
-
#: core/licensing.php:
|
5220 |
msgctxt "settings"
|
5221 |
msgid "Licenses"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
-
#: core/licensing.php:
|
5225 |
msgctxt "settings"
|
5226 |
msgid "Premium Modules"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: core/licensing.php:
|
5230 |
msgctxt "licensing"
|
5231 |
msgid "Invalid module ID"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: core/licensing.php:
|
5235 |
msgctxt "licensing"
|
5236 |
msgid "No license key provided"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: core/licensing.php:
|
5240 |
msgctxt "licensing"
|
5241 |
msgid "Deactivation failed"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
-
#: core/licensing.php:
|
5245 |
msgctxt "licensing"
|
5246 |
msgid "Business Directory - License Key Required"
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#: core/licensing.php:
|
5250 |
msgctxt "licensing"
|
5251 |
msgid ""
|
5252 |
"The following premium modules will not work until a valid license key is "
|
@@ -5254,12 +5272,12 @@ msgid ""
|
|
5254 |
"information."
|
5255 |
msgstr ""
|
5256 |
|
5257 |
-
#: core/licensing.php:
|
5258 |
msgctxt "licensing"
|
5259 |
msgid "Business Directory - License Key Expired"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: core/licensing.php:
|
5263 |
msgctxt "licensing"
|
5264 |
msgid ""
|
5265 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
@@ -5267,17 +5285,17 @@ msgid ""
|
|
5267 |
"until the license is renewed."
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: core/licensing.php:
|
5271 |
msgctxt "licensing"
|
5272 |
msgid "Remind me later"
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: core/licensing.php:
|
5276 |
msgctxt "licensing"
|
5277 |
msgid "Renew License Key"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: core/licensing.php:
|
5281 |
msgctxt "licensing"
|
5282 |
msgid "Could not deactivate license: %s."
|
5283 |
msgstr ""
|
@@ -5457,64 +5475,64 @@ msgctxt "search"
|
|
5457 |
msgid "Search Results"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
-
#: core/templates-ui.php:
|
5461 |
msgctxt "templates"
|
5462 |
msgid "No listing categories found."
|
5463 |
msgstr ""
|
5464 |
|
5465 |
-
#: core/templates-ui.php:
|
5466 |
msgid "Directory"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: core/templates-ui.php:
|
5470 |
msgid "View All Listings"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: core/templates-ui.php:
|
5474 |
msgid "Create A Listing"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: core/templates-ui.php:
|
5478 |
msgctxt "templates"
|
5479 |
msgid "Search Listings"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: core/templates-ui.php:
|
5483 |
msgctxt "templates"
|
5484 |
msgid "Advanced Search"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: core/templates-ui.php:
|
5488 |
msgctxt "templates sort"
|
5489 |
msgid "Sort By:"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: core/templates-ui.php:
|
5493 |
msgctxt "sort"
|
5494 |
msgid "Reset"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
-
#: core/templates-ui.php:
|
5498 |
msgctxt "sort"
|
5499 |
msgid "(Reset)"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: core/themes.php:
|
5503 |
msgctxt "themes"
|
5504 |
msgid "ZIP file is not a valid BD theme file."
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: core/themes.php:
|
5508 |
msgctxt "themes"
|
5509 |
msgid "Could not create themes directory."
|
5510 |
msgstr ""
|
5511 |
|
5512 |
-
#: core/themes.php:
|
5513 |
msgctxt "themes"
|
5514 |
msgid "Could not remove previous theme directory \"%s\"."
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#: core/themes.php:
|
5518 |
msgctxt "themes"
|
5519 |
msgid "Could not move new theme into theme directory."
|
5520 |
msgstr ""
|
@@ -5599,15 +5617,10 @@ msgid "You are not authorized to edit this listing."
|
|
5599 |
msgstr ""
|
5600 |
|
5601 |
#: core/view-submit-listing.php:58
|
5602 |
-
msgctxt "
|
5603 |
msgid "Edit Your Listing"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: core/view-submit-listing.php:58
|
5607 |
-
msgctxt "templates"
|
5608 |
-
msgid "Submit A Listing"
|
5609 |
-
msgstr ""
|
5610 |
-
|
5611 |
#: core/view-submit-listing.php:65
|
5612 |
msgctxt "templates"
|
5613 |
msgid ""
|
@@ -5752,6 +5765,11 @@ msgstr ""
|
|
5752 |
msgid "l F j, Y \\a\\t g:i a"
|
5753 |
msgstr ""
|
5754 |
|
|
|
|
|
|
|
|
|
|
|
5755 |
#: core/views/listing_contact.php:178
|
5756 |
msgctxt "contact-message"
|
5757 |
msgid "%s (admin: %s)"
|
@@ -5904,11 +5922,6 @@ msgctxt "views"
|
|
5904 |
msgid "Find A Listing"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
-
#: core/views/submit_listing.php:10
|
5908 |
-
msgctxt "views"
|
5909 |
-
msgid "Submit A Listing"
|
5910 |
-
msgstr ""
|
5911 |
-
|
5912 |
#: core/views/submit_listing.php:16
|
5913 |
msgctxt "templates"
|
5914 |
msgid ""
|
@@ -6031,142 +6044,152 @@ msgctxt "widgets"
|
|
6031 |
msgid "Search"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
-
#: templates/billing-information-form.tpl.php:
|
6035 |
msgctxt "months"
|
6036 |
msgid "Jan"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: templates/billing-information-form.tpl.php:
|
6040 |
msgctxt "months"
|
6041 |
msgid "Feb"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: templates/billing-information-form.tpl.php:
|
6045 |
msgctxt "months"
|
6046 |
msgid "Mar"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
-
#: templates/billing-information-form.tpl.php:
|
6050 |
msgctxt "months"
|
6051 |
msgid "Apr"
|
6052 |
msgstr ""
|
6053 |
|
6054 |
-
#: templates/billing-information-form.tpl.php:
|
6055 |
msgctxt "months"
|
6056 |
msgid "May"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#: templates/billing-information-form.tpl.php:
|
6060 |
msgctxt "months"
|
6061 |
msgid "Jun"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: templates/billing-information-form.tpl.php:
|
6065 |
msgctxt "months"
|
6066 |
msgid "Jul"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
-
#: templates/billing-information-form.tpl.php:
|
6070 |
msgctxt "months"
|
6071 |
msgid "Aug"
|
6072 |
msgstr ""
|
6073 |
|
6074 |
-
#: templates/billing-information-form.tpl.php:
|
6075 |
msgctxt "months"
|
6076 |
msgid "Sep"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
-
#: templates/billing-information-form.tpl.php:
|
6080 |
msgctxt "months"
|
6081 |
msgid "Oct"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: templates/billing-information-form.tpl.php:
|
6085 |
msgctxt "months"
|
6086 |
msgid "Nov"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: templates/billing-information-form.tpl.php:
|
6090 |
msgctxt "months"
|
6091 |
msgid "Dec"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#: templates/billing-information-form.tpl.php:
|
6095 |
msgctxt "checkout form"
|
6096 |
msgid "Credit Card Details"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
-
#: templates/billing-information-form.tpl.php:
|
6100 |
msgctxt "checkout form"
|
6101 |
msgid "Please enter your credit card details below."
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
6105 |
msgctxt "checkout form"
|
6106 |
msgid "First Name:"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: templates/billing-information-form.tpl.php:
|
6110 |
msgctxt "checkout form"
|
6111 |
msgid "Last Name:"
|
6112 |
msgstr ""
|
6113 |
|
6114 |
-
#: templates/billing-information-form.tpl.php:
|
6115 |
msgctxt "checkout form"
|
6116 |
msgid "Card Number:"
|
6117 |
msgstr ""
|
6118 |
|
6119 |
-
#: templates/billing-information-form.tpl.php:
|
6120 |
msgctxt "checkout form"
|
6121 |
msgid "Expiration Date (MM/YYYY):"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: templates/billing-information-form.tpl.php:
|
6125 |
msgctxt "checkout form"
|
6126 |
msgid "CVC:"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: templates/billing-information-form.tpl.php:
|
6130 |
msgctxt "checkout form"
|
6131 |
msgid "Billing Address"
|
6132 |
msgstr ""
|
6133 |
|
6134 |
-
#: templates/billing-information-form.tpl.php:
|
6135 |
msgctxt "checkout form"
|
6136 |
msgid "Country:"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
-
#: templates/billing-information-form.tpl.php:
|
6140 |
msgctxt "checkout form"
|
6141 |
msgid "State:"
|
6142 |
msgstr ""
|
6143 |
|
6144 |
-
#: templates/billing-information-form.tpl.php:
|
6145 |
msgctxt "checkout form"
|
6146 |
msgid "City:"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: templates/billing-information-form.tpl.php:
|
6150 |
msgctxt "checkout form"
|
6151 |
msgid "Address Line 1:"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
-
#: templates/billing-information-form.tpl.php:
|
6155 |
msgctxt "checkout form"
|
6156 |
msgid "Address Line 2:"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
-
#: templates/billing-information-form.tpl.php:
|
6160 |
msgctxt "checkout form"
|
6161 |
msgid "ZIP Code:"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
-
#: templates/billing-information-form.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
6165 |
msgctxt "WPBDM"
|
6166 |
msgid "Cancel"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
-
#: templates/billing-information-form.tpl.php:
|
6170 |
msgctxt "WPBDM"
|
6171 |
msgid "Submit Payment"
|
6172 |
msgstr ""
|
@@ -6743,27 +6766,6 @@ msgctxt "themes/default"
|
|
6743 |
msgid "Address"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:178
|
6747 |
-
msgid ""
|
6748 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
6749 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
6750 |
-
msgstr ""
|
6751 |
-
|
6752 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:185
|
6753 |
-
msgid ""
|
6754 |
-
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
6755 |
-
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
6756 |
-
"\">update now</a>."
|
6757 |
-
msgstr ""
|
6758 |
-
|
6759 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
6760 |
-
msgid "You do not have permission to install plugin updates"
|
6761 |
-
msgstr ""
|
6762 |
-
|
6763 |
-
#: vendors/edd/EDD_SL_Plugin_Updater.php:325
|
6764 |
-
msgid "Error"
|
6765 |
-
msgstr ""
|
6766 |
-
|
6767 |
#. Plugin URI of the plugin/theme
|
6768 |
msgid "http://www.businessdirectoryplugin.com"
|
6769 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Business Directory Plugin package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Business Directory Plugin 4.1.5dev6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
|
7 |
+
"POT-Creation-Date: 2016-11-25 09:40:43+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
532 |
msgstr ""
|
533 |
|
534 |
#: admin/class-themes-admin.php:366 admin/class-themes-admin.php:427
|
535 |
+
#: core/licensing.php:126 core/licensing.php:158
|
536 |
msgctxt "licensing"
|
537 |
msgid "Could not contact licensing server"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/class-themes-admin.php:372 core/licensing.php:131
|
541 |
+
#: core/licensing.php:165
|
542 |
msgctxt "licensing"
|
543 |
msgid "License key is invalid"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/class-themes-admin.php:377 core/licensing.php:320
|
547 |
msgctxt "licensing"
|
548 |
msgid "Could not activate license: %s."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/class-themes-admin.php:390 core/licensing.php:322
|
552 |
msgctxt "licensing"
|
553 |
msgid "License activated"
|
554 |
msgstr ""
|
558 |
msgid "Invalid response from server"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin/class-themes-admin.php:450 core/licensing.php:340
|
562 |
msgctxt "licensing"
|
563 |
msgid "License deactivated"
|
564 |
msgstr ""
|
1094 |
msgid "Environment"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: admin/page-debug.php:72
|
1098 |
msgctxt "debug info"
|
1099 |
msgid "Test SSL setup..."
|
1100 |
msgstr ""
|
2088 |
msgid "Please see the <a>Form Fields documentation</a> for more details."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.5dev6) #-#-#-#-#
|
2092 |
#. Plugin Name of the plugin/theme
|
2093 |
#: admin/templates/header.tpl.php:4
|
2094 |
msgid "Business Directory Plugin"
|
2834 |
msgid "%s Feed"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
#: business-directory-plugin.php:1117 core/view-submit-listing.php:58
|
2838 |
+
#: core/views/submit_listing.php:10
|
2839 |
+
msgctxt "views"
|
2840 |
msgid "Submit A Listing"
|
2841 |
msgstr ""
|
2842 |
|
2955 |
msgid "An error occurred while trying to delete this field."
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: core/class-gateway.php:133
|
2959 |
+
msgctxt "billing info"
|
2960 |
+
msgid "Please enter a valid e-mail address."
|
2961 |
+
msgstr ""
|
2962 |
+
|
2963 |
+
#: core/class-gateway.php:136
|
2964 |
msgctxt "billing info"
|
2965 |
msgid "First name is required."
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: core/class-gateway.php:139
|
2969 |
msgctxt "billing info"
|
2970 |
msgid "Last name is required."
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: core/class-gateway.php:142
|
2974 |
msgctxt "billing info"
|
2975 |
msgid "Credit card number is required."
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: core/class-gateway.php:145
|
2979 |
msgctxt "billing info"
|
2980 |
msgid "Credit card expiration date is invalid."
|
2981 |
msgstr ""
|
2982 |
|
2983 |
+
#: core/class-gateway.php:148
|
2984 |
msgctxt "billing info"
|
2985 |
msgid "Credit card CVC number is required."
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: core/class-gateway.php:151
|
2989 |
msgctxt "billing info"
|
2990 |
msgid "Country is required."
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: core/class-gateway.php:154
|
2994 |
msgctxt "billing info"
|
2995 |
msgid "Address is required."
|
2996 |
msgstr ""
|
4624 |
|
4625 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:72
|
4626 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:68
|
4627 |
+
#: core/fieldtypes/class-fieldtypes-select.php:144
|
4628 |
msgctxt "form-fields admin"
|
4629 |
msgid "Field Options (for select lists, radio buttons and checkboxes)."
|
4630 |
msgstr ""
|
4631 |
|
4632 |
#: core/fieldtypes/class-fieldtypes-checkbox.php:93
|
4633 |
#: core/fieldtypes/class-fieldtypes-radiobutton.php:87
|
4634 |
+
#: core/fieldtypes/class-fieldtypes-select.php:172
|
4635 |
msgctxt "form-fields admin"
|
4636 |
msgid "Field list of options is required."
|
4637 |
msgstr ""
|
4695 |
msgid "Multiselect List"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:25
|
4699 |
+
msgctxt "form-fields-admin"
|
4700 |
+
msgid "Number of options visible without scrolling"
|
4701 |
+
msgstr ""
|
4702 |
+
|
4703 |
+
#: core/fieldtypes/class-fieldtypes-multiselect.php:26
|
4704 |
+
msgctxt "form-fields-admin"
|
4705 |
+
msgid ""
|
4706 |
+
"The height of the list will be adjusted to accommodate the specified number "
|
4707 |
+
"of options."
|
4708 |
+
msgstr ""
|
4709 |
+
|
4710 |
#: core/fieldtypes/class-fieldtypes-phone-number.php:13
|
4711 |
msgctxt "form fields"
|
4712 |
msgid "Phone Number"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
#: core/fieldtypes/class-fieldtypes-select.php:68
|
4731 |
+
#: core/fieldtypes/class-fieldtypes-select.php:105
|
4732 |
msgctxt "form-fields-api category-select"
|
4733 |
msgid "-- Choose One --"
|
4734 |
msgstr ""
|
4735 |
|
4736 |
+
#: core/fieldtypes/class-fieldtypes-select.php:155
|
4737 |
msgctxt "form-fields admin"
|
4738 |
msgid "Allow empty selection on search?"
|
4739 |
msgstr ""
|
5047 |
msgid "Setup fee"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
+
#: core/gateways-authorize-net.php:175
|
5051 |
msgctxt "authorize-net"
|
5052 |
msgid "Could not process payment."
|
5053 |
msgstr ""
|
5234 |
msgid "Please <contact-link>contact customer support</a>."
|
5235 |
msgstr ""
|
5236 |
|
5237 |
+
#: core/licensing.php:42 core/licensing.php:64 core/licensing.php:65
|
5238 |
msgctxt "settings"
|
5239 |
msgid "Licenses"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: core/licensing.php:45
|
5243 |
msgctxt "settings"
|
5244 |
msgid "Premium Modules"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: core/licensing.php:106 core/licensing.php:140
|
5248 |
msgctxt "licensing"
|
5249 |
msgid "Invalid module ID"
|
5250 |
msgstr ""
|
5251 |
|
5252 |
+
#: core/licensing.php:111
|
5253 |
msgctxt "licensing"
|
5254 |
msgid "No license key provided"
|
5255 |
msgstr ""
|
5256 |
|
5257 |
+
#: core/licensing.php:168
|
5258 |
msgctxt "licensing"
|
5259 |
msgid "Deactivation failed"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: core/licensing.php:220
|
5263 |
msgctxt "licensing"
|
5264 |
msgid "Business Directory - License Key Required"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
+
#: core/licensing.php:223
|
5268 |
msgctxt "licensing"
|
5269 |
msgid ""
|
5270 |
"The following premium modules will not work until a valid license key is "
|
5272 |
"information."
|
5273 |
msgstr ""
|
5274 |
|
5275 |
+
#: core/licensing.php:244
|
5276 |
msgctxt "licensing"
|
5277 |
msgid "Business Directory - License Key Expired"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: core/licensing.php:245
|
5281 |
msgctxt "licensing"
|
5282 |
msgid ""
|
5283 |
"The license key for <span class=\"module-name\">%s %s</span> has expired. "
|
5285 |
"until the license is renewed."
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: core/licensing.php:249
|
5289 |
msgctxt "licensing"
|
5290 |
msgid "Remind me later"
|
5291 |
msgstr ""
|
5292 |
|
5293 |
+
#: core/licensing.php:251
|
5294 |
msgctxt "licensing"
|
5295 |
msgid "Renew License Key"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: core/licensing.php:338
|
5299 |
msgctxt "licensing"
|
5300 |
msgid "Could not deactivate license: %s."
|
5301 |
msgstr ""
|
5475 |
msgid "Search Results"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: core/templates-ui.php:169
|
5479 |
msgctxt "templates"
|
5480 |
msgid "No listing categories found."
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: core/templates-ui.php:193
|
5484 |
msgid "Directory"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: core/templates-ui.php:199
|
5488 |
msgid "View All Listings"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: core/templates-ui.php:205
|
5492 |
msgid "Create A Listing"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: core/templates-ui.php:232
|
5496 |
msgctxt "templates"
|
5497 |
msgid "Search Listings"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
+
#: core/templates-ui.php:235
|
5501 |
msgctxt "templates"
|
5502 |
msgid "Advanced Search"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
+
#: core/templates-ui.php:264 core/templates-ui.php:289
|
5506 |
msgctxt "templates sort"
|
5507 |
msgid "Sort By:"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: core/templates-ui.php:283
|
5511 |
msgctxt "sort"
|
5512 |
msgid "Reset"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: core/templates-ui.php:305
|
5516 |
msgctxt "sort"
|
5517 |
msgid "(Reset)"
|
5518 |
msgstr ""
|
5519 |
|
5520 |
+
#: core/themes.php:749
|
5521 |
msgctxt "themes"
|
5522 |
msgid "ZIP file is not a valid BD theme file."
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: core/themes.php:755
|
5526 |
msgctxt "themes"
|
5527 |
msgid "Could not create themes directory."
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: core/themes.php:763
|
5531 |
msgctxt "themes"
|
5532 |
msgid "Could not remove previous theme directory \"%s\"."
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: core/themes.php:769
|
5536 |
msgctxt "themes"
|
5537 |
msgid "Could not move new theme into theme directory."
|
5538 |
msgstr ""
|
5617 |
msgstr ""
|
5618 |
|
5619 |
#: core/view-submit-listing.php:58
|
5620 |
+
msgctxt "views"
|
5621 |
msgid "Edit Your Listing"
|
5622 |
msgstr ""
|
5623 |
|
|
|
|
|
|
|
|
|
|
|
5624 |
#: core/view-submit-listing.php:65
|
5625 |
msgctxt "templates"
|
5626 |
msgid ""
|
5765 |
msgid "l F j, Y \\a\\t g:i a"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
+
#: core/views/listing_contact.php:173
|
5769 |
+
msgctxt "contact-message"
|
5770 |
+
msgid "Your message has been sent."
|
5771 |
+
msgstr ""
|
5772 |
+
|
5773 |
#: core/views/listing_contact.php:178
|
5774 |
msgctxt "contact-message"
|
5775 |
msgid "%s (admin: %s)"
|
5922 |
msgid "Find A Listing"
|
5923 |
msgstr ""
|
5924 |
|
|
|
|
|
|
|
|
|
|
|
5925 |
#: core/views/submit_listing.php:16
|
5926 |
msgctxt "templates"
|
5927 |
msgid ""
|
6044 |
msgid "Search"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
+
#: templates/billing-information-form.tpl.php:4
|
6048 |
msgctxt "months"
|
6049 |
msgid "Jan"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
+
#: templates/billing-information-form.tpl.php:5
|
6053 |
msgctxt "months"
|
6054 |
msgid "Feb"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: templates/billing-information-form.tpl.php:6
|
6058 |
msgctxt "months"
|
6059 |
msgid "Mar"
|
6060 |
msgstr ""
|
6061 |
|
6062 |
+
#: templates/billing-information-form.tpl.php:7
|
6063 |
msgctxt "months"
|
6064 |
msgid "Apr"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: templates/billing-information-form.tpl.php:8
|
6068 |
msgctxt "months"
|
6069 |
msgid "May"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: templates/billing-information-form.tpl.php:9
|
6073 |
msgctxt "months"
|
6074 |
msgid "Jun"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: templates/billing-information-form.tpl.php:10
|
6078 |
msgctxt "months"
|
6079 |
msgid "Jul"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: templates/billing-information-form.tpl.php:11
|
6083 |
msgctxt "months"
|
6084 |
msgid "Aug"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
+
#: templates/billing-information-form.tpl.php:12
|
6088 |
msgctxt "months"
|
6089 |
msgid "Sep"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: templates/billing-information-form.tpl.php:13
|
6093 |
msgctxt "months"
|
6094 |
msgid "Oct"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: templates/billing-information-form.tpl.php:14
|
6098 |
msgctxt "months"
|
6099 |
msgid "Nov"
|
6100 |
msgstr ""
|
6101 |
|
6102 |
+
#: templates/billing-information-form.tpl.php:15
|
6103 |
msgctxt "months"
|
6104 |
msgid "Dec"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
+
#: templates/billing-information-form.tpl.php:30
|
6108 |
msgctxt "checkout form"
|
6109 |
msgid "Credit Card Details"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
+
#: templates/billing-information-form.tpl.php:31
|
6113 |
msgctxt "checkout form"
|
6114 |
msgid "Please enter your credit card details below."
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: templates/billing-information-form.tpl.php:36
|
6118 |
+
msgctxt "checkout form"
|
6119 |
+
msgid "E-mail:"
|
6120 |
+
msgstr ""
|
6121 |
+
|
6122 |
+
#: templates/billing-information-form.tpl.php:44
|
6123 |
msgctxt "checkout form"
|
6124 |
msgid "First Name:"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
#: templates/billing-information-form.tpl.php:52
|
6128 |
msgctxt "checkout form"
|
6129 |
msgid "Last Name:"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
#: templates/billing-information-form.tpl.php:60
|
6133 |
msgctxt "checkout form"
|
6134 |
msgid "Card Number:"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
+
#: templates/billing-information-form.tpl.php:68
|
6138 |
msgctxt "checkout form"
|
6139 |
msgid "Expiration Date (MM/YYYY):"
|
6140 |
msgstr ""
|
6141 |
|
6142 |
+
#: templates/billing-information-form.tpl.php:88
|
6143 |
msgctxt "checkout form"
|
6144 |
msgid "CVC:"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
+
#: templates/billing-information-form.tpl.php:98
|
6148 |
msgctxt "checkout form"
|
6149 |
msgid "Billing Address"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
+
#: templates/billing-information-form.tpl.php:103
|
6153 |
msgctxt "checkout form"
|
6154 |
msgid "Country:"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
+
#: templates/billing-information-form.tpl.php:111
|
6158 |
msgctxt "checkout form"
|
6159 |
msgid "State:"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: templates/billing-information-form.tpl.php:119
|
6163 |
msgctxt "checkout form"
|
6164 |
msgid "City:"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
+
#: templates/billing-information-form.tpl.php:127
|
6168 |
msgctxt "checkout form"
|
6169 |
msgid "Address Line 1:"
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: templates/billing-information-form.tpl.php:135
|
6173 |
msgctxt "checkout form"
|
6174 |
msgid "Address Line 2:"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
+
#: templates/billing-information-form.tpl.php:143
|
6178 |
msgctxt "checkout form"
|
6179 |
msgid "ZIP Code:"
|
6180 |
msgstr ""
|
6181 |
|
6182 |
+
#: templates/billing-information-form.tpl.php:151
|
6183 |
+
msgctxt "checkout form"
|
6184 |
+
msgid "Phone Number:"
|
6185 |
+
msgstr ""
|
6186 |
+
|
6187 |
+
#: templates/billing-information-form.tpl.php:161
|
6188 |
msgctxt "WPBDM"
|
6189 |
msgid "Cancel"
|
6190 |
msgstr ""
|
6191 |
|
6192 |
+
#: templates/billing-information-form.tpl.php:162
|
6193 |
msgctxt "WPBDM"
|
6194 |
msgid "Submit Payment"
|
6195 |
msgstr ""
|
6766 |
msgid "Address"
|
6767 |
msgstr ""
|
6768 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6769 |
#. Plugin URI of the plugin/theme
|
6770 |
msgid "http://www.businessdirectoryplugin.com"
|
6771 |
msgstr ""
|
templates/billing-information-form.tpl.php
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
<?php
|
|
|
2 |
$months = array(
|
3 |
'01' => _x( 'Jan', 'months', 'WPBDM' ),
|
4 |
'02' => _x( 'Feb', 'months', 'WPBDM' ),
|
@@ -30,12 +31,20 @@ $months = array(
|
|
30 |
<p><?php _ex( 'Please enter your credit card details below.', 'checkout form', 'WPBDM' ); ?></p>
|
31 |
|
32 |
<table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
<tr class="wpbdp-billing-field customer-first-name">
|
34 |
<td scope="row">
|
35 |
<label for="wpbdp-billing-field-first-name"><?php _ex( 'First Name:', 'checkout form', 'WPBDM' ); ?></label>
|
36 |
</td>
|
37 |
<td>
|
38 |
-
<input type="text" id="wpbdp-billing-field-first-name" name="first_name" size="25" value="<?php echo esc_attr( wpbdp_getv( $posted, 'first_name' ) ); ?>" />
|
39 |
</td>
|
40 |
</tr>
|
41 |
<tr class="wpbdp-billing-field customer-last-name">
|
@@ -43,7 +52,7 @@ $months = array(
|
|
43 |
<label for="wpbdp-billing-field-last-name"><?php _ex( 'Last Name:', 'checkout form', 'WPBDM' ); ?></label>
|
44 |
</td>
|
45 |
<td>
|
46 |
-
<input type="text" id="wpbdp-billing-field-last-name" name="last_name" size="25" value="<?php echo esc_attr( wpbdp_getv( $posted, 'last_name' ) ); ?>" />
|
47 |
</td>
|
48 |
</tr>
|
49 |
<tr class="wpbdp-billing-field cc-number">
|
@@ -63,8 +72,15 @@ $months = array(
|
|
63 |
<?php foreach ( $months as $month => $name ): ?>
|
64 |
<option value="<?php echo $month; ?>"><?php echo $month; ?> - <?php echo $name; ?></option>
|
65 |
<?php endforeach; ?>
|
66 |
-
</select>
|
67 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
</td>
|
69 |
</tr>
|
70 |
<tr class="wpbdp-billing-field cc-cvc">
|
@@ -130,6 +146,14 @@ $months = array(
|
|
130 |
<input type="text" id="wpbdp-billing-field-zip-code" name="zipcode" size="25" value="<?php echo esc_attr( wpbdp_getv( $posted, 'zipcode' ) ); ?>" />
|
131 |
</td>
|
132 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
</table>
|
134 |
</div>
|
135 |
|
1 |
<?php
|
2 |
+
$user_defaults = wp_get_current_user();
|
3 |
$months = array(
|
4 |
'01' => _x( 'Jan', 'months', 'WPBDM' ),
|
5 |
'02' => _x( 'Feb', 'months', 'WPBDM' ),
|
31 |
<p><?php _ex( 'Please enter your credit card details below.', 'checkout form', 'WPBDM' ); ?></p>
|
32 |
|
33 |
<table>
|
34 |
+
<tr class="wpbdp-billing-field customer-email">
|
35 |
+
<td scope="row">
|
36 |
+
<label for="wpbdp-billing-field-email"><?php _ex( 'E-mail:', 'checkout form', 'WPBDM' ); ?></label>
|
37 |
+
</td>
|
38 |
+
<td>
|
39 |
+
<input type="text" id="wpbdp-billing-field-email" name="email" size="25" value="<?php echo esc_attr( wpbdp_getv( $posted, 'email', $user_defaults->user_email ) ); ?>" />
|
40 |
+
</td>
|
41 |
+
</tr>
|
42 |
<tr class="wpbdp-billing-field customer-first-name">
|
43 |
<td scope="row">
|
44 |
<label for="wpbdp-billing-field-first-name"><?php _ex( 'First Name:', 'checkout form', 'WPBDM' ); ?></label>
|
45 |
</td>
|
46 |
<td>
|
47 |
+
<input type="text" id="wpbdp-billing-field-first-name" name="first_name" size="25" value="<?php echo esc_attr( wpbdp_getv( $posted, 'first_name', $user_defaults->user_firstname ) ); ?>" />
|
48 |
</td>
|
49 |
</tr>
|
50 |
<tr class="wpbdp-billing-field customer-last-name">
|
52 |
<label for="wpbdp-billing-field-last-name"><?php _ex( 'Last Name:', 'checkout form', 'WPBDM' ); ?></label>
|
53 |
</td>
|
54 |
<td>
|
55 |
+
<input type="text" id="wpbdp-billing-field-last-name" name="last_name" size="25" value="<?php echo esc_attr( wpbdp_getv( $posted, 'last_name', $user_defaults->user_lastname ) ); ?>" />
|
56 |
</td>
|
57 |
</tr>
|
58 |
<tr class="wpbdp-billing-field cc-number">
|
72 |
<?php foreach ( $months as $month => $name ): ?>
|
73 |
<option value="<?php echo $month; ?>"><?php echo $month; ?> - <?php echo $name; ?></option>
|
74 |
<?php endforeach; ?>
|
75 |
+
</select>
|
76 |
+
<select id="wpbdp-billing-field-exp-year" name="cc_exp_year">
|
77 |
+
<?php
|
78 |
+
$current_year = intval( date( 'Y' ) );
|
79 |
+
for ( $y = 0; $y < 51; $y++ ):
|
80 |
+
?>
|
81 |
+
<option value="<?php echo $current_year + $y; ?>"><?php echo $current_year + $y; ?></option>
|
82 |
+
<?php endfor; ?>
|
83 |
+
</select>
|
84 |
</td>
|
85 |
</tr>
|
86 |
<tr class="wpbdp-billing-field cc-cvc">
|
146 |
<input type="text" id="wpbdp-billing-field-zip-code" name="zipcode" size="25" value="<?php echo esc_attr( wpbdp_getv( $posted, 'zipcode' ) ); ?>" />
|
147 |
</td>
|
148 |
</tr>
|
149 |
+
<tr class="wpbdp-billing-field customer-phone-number">
|
150 |
+
<td scope="row">
|
151 |
+
<label for="wpbdp-billing-field-phone-number"><?php _ex( 'Phone Number:', 'checkout form', 'WPBDM' ); ?></label>
|
152 |
+
</td>
|
153 |
+
<td>
|
154 |
+
<input type="text" id="wpbdp-billing-field-phone-number" name="phone" size="25" value="<?php echo esc_attr( wpbdp_getv( $posted, 'phone' ) ); ?>" />
|
155 |
+
</td>
|
156 |
+
</tr>
|
157 |
</table>
|
158 |
</div>
|
159 |
|
templates/main-box.tpl.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
-
<div id="wpbdp-main-box">
|
2 |
|
3 |
<?php if ( wpbdp_get_option( 'show-search-listings' ) ): ?>
|
4 |
-
<div class="main-fields box-row cols-2">
|
5 |
<form action="<?php echo $search_url; ?>" method="get">
|
6 |
<input type="hidden" name="wpbdp_view" value="search" />
|
7 |
<?php if ( ! wpbdp_rewrite_on() ): ?>
|
1 |
+
<div id="wpbdp-main-box" class="wpbdp-main-box" data-breakpoints='{"tiny": [0,360], "small": [360,530], "medium": [530,710], "large": [710,999999]}' data-breakpoints-class-prefix="wpbdp-main-box">
|
2 |
|
3 |
<?php if ( wpbdp_get_option( 'show-search-listings' ) ): ?>
|
4 |
+
<div class="main-fields box-row cols-2 cf">
|
5 |
<form action="<?php echo $search_url; ?>" method="get">
|
6 |
<input type="hidden" name="wpbdp_view" value="search" />
|
7 |
<?php if ( ! wpbdp_rewrite_on() ): ?>
|
vendors/jquery-breakpoints.js
ADDED
@@ -0,0 +1,181 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* Breakpoints.js 0.0.10
|
3 |
+
* https://github.com/wvega/breakpoints.js
|
4 |
+
*
|
5 |
+
* Copyright 2014, Joshua Stoutenburg <jehoshua02@gmail.com>
|
6 |
+
*
|
7 |
+
* Licensed under the MIT license:
|
8 |
+
* http://www.opensource.org/licenses/MIT
|
9 |
+
*/
|
10 |
+
|
11 |
+
var Reusables = Reusables || {};
|
12 |
+
Reusables.Breakpoints = (function ($) {
|
13 |
+
|
14 |
+
var generateKey = (function () {
|
15 |
+
var nextKey = 1;
|
16 |
+
return function () {
|
17 |
+
var key = 'breakpoint-' + nextKey;
|
18 |
+
nextKey++;
|
19 |
+
return key;
|
20 |
+
};
|
21 |
+
})();
|
22 |
+
|
23 |
+
var Queue = function () {
|
24 |
+
var callbacks = [];
|
25 |
+
|
26 |
+
this.push = function (callback) {
|
27 |
+
callbacks.push(callback);
|
28 |
+
};
|
29 |
+
|
30 |
+
this.process = function () {
|
31 |
+
while (callbacks.length !== 0) {
|
32 |
+
(callbacks.pop())();
|
33 |
+
}
|
34 |
+
};
|
35 |
+
};
|
36 |
+
|
37 |
+
var enterQueue = new Queue();
|
38 |
+
|
39 |
+
var Breakpoint = function ($elements, range, options) {
|
40 |
+
this.$elements = $elements;
|
41 |
+
this.range = range;
|
42 |
+
this.options = options;
|
43 |
+
this.key = generateKey();
|
44 |
+
|
45 |
+
// set elements
|
46 |
+
this.elements = (function () {
|
47 |
+
var isFunction = typeof $elements === 'function';
|
48 |
+
var isString = typeof $elements === 'string';
|
49 |
+
var isJQuery = $elements instanceof jQuery;
|
50 |
+
var hasSelector = isJQuery && !!$elements.selector;
|
51 |
+
var elements;
|
52 |
+
|
53 |
+
if (isFunction) {
|
54 |
+
elements = $elements;
|
55 |
+
} else if (isString) {
|
56 |
+
elements = function () { return $($elements); };
|
57 |
+
} else if (isJQuery && hasSelector) {
|
58 |
+
elements = function () { return $($elements.selector); };
|
59 |
+
} else if (isJQuery) {
|
60 |
+
elements = function () { return $elements; };
|
61 |
+
} else {
|
62 |
+
// ...
|
63 |
+
}
|
64 |
+
|
65 |
+
return elements;
|
66 |
+
})();
|
67 |
+
|
68 |
+
// set range
|
69 |
+
this.min = range[0] || 0;
|
70 |
+
this.max = range[1] || Infinity;
|
71 |
+
|
72 |
+
// set name
|
73 |
+
this.name = (function (name, min, max) {
|
74 |
+
if (name) {
|
75 |
+
return name;
|
76 |
+
}
|
77 |
+
|
78 |
+
// default to breakpoint-{min}-{max}
|
79 |
+
max = max === Infinity ? 'up' : max;
|
80 |
+
return ['breakpoint', min, max].join('-');
|
81 |
+
})(options.name, this.min, this.max);
|
82 |
+
|
83 |
+
// set enter
|
84 |
+
if (typeof options.enter === 'function') {
|
85 |
+
this.enter = options.enter;
|
86 |
+
} else {
|
87 |
+
this.enter = function () {};
|
88 |
+
}
|
89 |
+
|
90 |
+
// set exit
|
91 |
+
if (typeof options.exit === 'function') {
|
92 |
+
this.exit = options.exit;
|
93 |
+
} else {
|
94 |
+
this.exit = function () {};
|
95 |
+
}
|
96 |
+
|
97 |
+
return this;
|
98 |
+
};
|
99 |
+
|
100 |
+
Breakpoint.prototype.evaluate = function () {
|
101 |
+
var breakpoint = this;
|
102 |
+
breakpoint.elements().each(function (index, element) {
|
103 |
+
var $element = $(element);
|
104 |
+
var width = $element.outerWidth();
|
105 |
+
var matchNow = breakpoint.min <= width && width < breakpoint.max;
|
106 |
+
var matchBefore = $element.data(breakpoint.key) || false;
|
107 |
+
var change = matchNow !== matchBefore;
|
108 |
+
if (!change) { return; }
|
109 |
+
$element.data(breakpoint.key, matchNow);
|
110 |
+
var entering = change && matchNow;
|
111 |
+
var exiting = change && !matchNow;
|
112 |
+
if (entering) {
|
113 |
+
enterQueue.push(function () {
|
114 |
+
$element.addClass(breakpoint.name);
|
115 |
+
breakpoint.enter($element);
|
116 |
+
});
|
117 |
+
} else if (exiting) {
|
118 |
+
$element.removeClass(breakpoint.name);
|
119 |
+
breakpoint.exit($element);
|
120 |
+
}
|
121 |
+
});
|
122 |
+
};
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
/* PUBLIC */
|
127 |
+
|
128 |
+
var Breakpoints = {};
|
129 |
+
|
130 |
+
var Builder = function ($elements) {
|
131 |
+
this.$elements = $elements;
|
132 |
+
};
|
133 |
+
|
134 |
+
Breakpoints.on = function ($elements) {
|
135 |
+
return new Builder($elements);
|
136 |
+
};
|
137 |
+
|
138 |
+
/* functions that rely on private breakpoints array - want to keep that isolated */
|
139 |
+
(function () {
|
140 |
+
var breakpoints = [];
|
141 |
+
Builder.prototype.define = function (range, options) {
|
142 |
+
breakpoints.push(new Breakpoint(this.$elements, range, options));
|
143 |
+
return this;
|
144 |
+
};
|
145 |
+
|
146 |
+
Breakpoints.evaluate = function () {
|
147 |
+
var length = breakpoints.length;
|
148 |
+
for (var i = 0; i < length; i++) {
|
149 |
+
breakpoints[i].evaluate();
|
150 |
+
}
|
151 |
+
enterQueue.process();
|
152 |
+
};
|
153 |
+
|
154 |
+
})();
|
155 |
+
|
156 |
+
/* bind events */
|
157 |
+
$(document).on('ready.reusables.breakpoints', Breakpoints.evaluate);
|
158 |
+
$(window).on('resize.reusables.breakpoints', Breakpoints.evaluate);
|
159 |
+
|
160 |
+
return Breakpoints;
|
161 |
+
|
162 |
+
})(jQuery);
|
163 |
+
|
164 |
+
if ( typeof jQuery !== 'undefined' ) {
|
165 |
+
jQuery(function ($) {
|
166 |
+
$('[data-breakpoints]').each(function(){
|
167 |
+
var $element = $(this), breakpoints, classPrefix;
|
168 |
+
var builder = Reusables.Breakpoints.on($element);
|
169 |
+
var prefix = $element.attr('data-breakpoints-class-prefix') || 'breakpoint';
|
170 |
+
var breakpoints = $.parseJSON($element.attr('data-breakpoints'));
|
171 |
+
|
172 |
+
if (!$.isPlainObject(breakpoints)) {
|
173 |
+
return;
|
174 |
+
}
|
175 |
+
|
176 |
+
$.each(breakpoints, function(name, range) {
|
177 |
+
builder.define(range, { name: prefix + "-" + name });
|
178 |
+
});
|
179 |
+
});
|
180 |
+
});
|
181 |
+
}
|
vendors/jquery-breakpoints.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
var Reusables=Reusables||{};Reusables.Breakpoints=(function($){var generateKey=(function(){var nextKey=1;return function(){var key="breakpoint-"+nextKey;nextKey++;return key}})();var Queue=function(){var callbacks=[];this.push=function(callback){callbacks.push(callback)};this.process=function(){while(callbacks.length!==0){(callbacks.pop())()}}};var enterQueue=new Queue();var Breakpoint=function($elements,range,options){this.$elements=$elements;this.range=range;this.options=options;this.key=generateKey();this.elements=(function(){var isFunction=typeof $elements==="function";var isString=typeof $elements==="string";var isJQuery=$elements instanceof jQuery;var hasSelector=isJQuery&&!!$elements.selector;var elements;if(isFunction){elements=$elements}else{if(isString){elements=function(){return $($elements)}}else{if(isJQuery&&hasSelector){elements=function(){return $($elements.selector)}}else{if(isJQuery){elements=function(){return $elements}}else{}}}}return elements})();this.min=range[0]||0;this.max=range[1]||Infinity;this.name=(function(name,min,max){if(name){return name}max=max===Infinity?"up":max;return["breakpoint",min,max].join("-")})(options.name,this.min,this.max);if(typeof options.enter==="function"){this.enter=options.enter}else{this.enter=function(){}}if(typeof options.exit==="function"){this.exit=options.exit}else{this.exit=function(){}}return this};Breakpoint.prototype.evaluate=function(){var breakpoint=this;breakpoint.elements().each(function(index,element){var $element=$(element);var width=$element.outerWidth();var matchNow=breakpoint.min<=width&&width<breakpoint.max;var matchBefore=$element.data(breakpoint.key)||false;var change=matchNow!==matchBefore;if(!change){return}$element.data(breakpoint.key,matchNow);var entering=change&&matchNow;var exiting=change&&!matchNow;if(entering){enterQueue.push(function(){$element.addClass(breakpoint.name);breakpoint.enter($element)})}else{if(exiting){$element.removeClass(breakpoint.name);breakpoint.exit($element)}}})};var Breakpoints={};var Builder=function($elements){this.$elements=$elements};Breakpoints.on=function($elements){return new Builder($elements)};(function(){var breakpoints=[];Builder.prototype.define=function(range,options){breakpoints.push(new Breakpoint(this.$elements,range,options));return this};Breakpoints.evaluate=function(){var length=breakpoints.length;for(var i=0;i<length;i++){breakpoints[i].evaluate()}enterQueue.process()}})();$(document).on("ready.reusables.breakpoints",Breakpoints.evaluate);$(window).on("resize.reusables.breakpoints",Breakpoints.evaluate);return Breakpoints})(jQuery);if(typeof jQuery!=="undefined"){jQuery(function($){$("[data-breakpoints]").each(function(){var $element=$(this),breakpoints,classPrefix;var builder=Reusables.Breakpoints.on($element);var prefix=$element.attr("data-breakpoints-class-prefix")||"breakpoint";var breakpoints=$.parseJSON($element.attr("data-breakpoints"));if(!$.isPlainObject(breakpoints)){return}$.each(breakpoints,function(name,range){builder.define(range,{name:prefix+"-"+name})})})})};
|