Version Description
Download this release
Release Info
Developer | tijmensmit |
Plugin | WP Store Locator |
Version | 2.2.5 |
Comparing to | |
See all releases |
Code changes from version 2.2.4 to 2.2.5
- admin/class-admin.php +23 -2
- admin/class-settings.php +5 -1
- admin/templates/map-settings.php +2 -2
- frontend/class-frontend.php +2 -1
- inc/class-i18n.php +10 -10
- inc/class-post-types.php +11 -14
- languages/wpsl-nl_NL.mo +0 -0
- languages/wpsl-nl_NL.po +506 -437
- languages/wpsl.pot +357 -364
- readme.txt +15 -4
- uninstall.php +5 -0
- wp-store-locator.php +2 -2
admin/class-admin.php
CHANGED
@@ -311,10 +311,10 @@ if ( !class_exists( 'WPSL_Admin' ) ) {
|
|
311 |
public function js_settings() {
|
312 |
|
313 |
global $wpsl_settings;
|
314 |
-
|
315 |
$js_settings = array(
|
316 |
'hourFormat' => $wpsl_settings['editor_hour_format'],
|
317 |
-
'defaultLatLng' =>
|
318 |
'defaultZoom' => 6,
|
319 |
'mapType' => $wpsl_settings['editor_map_type']
|
320 |
);
|
@@ -322,6 +322,27 @@ if ( !class_exists( 'WPSL_Admin' ) ) {
|
|
322 |
return apply_filters( 'wpsl_admin_js_settings', $js_settings );
|
323 |
}
|
324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
/**
|
326 |
* Add the required admin script.
|
327 |
*
|
311 |
public function js_settings() {
|
312 |
|
313 |
global $wpsl_settings;
|
314 |
+
|
315 |
$js_settings = array(
|
316 |
'hourFormat' => $wpsl_settings['editor_hour_format'],
|
317 |
+
'defaultLatLng' => $this->get_default_lat_lng(),
|
318 |
'defaultZoom' => 6,
|
319 |
'mapType' => $wpsl_settings['editor_map_type']
|
320 |
);
|
322 |
return apply_filters( 'wpsl_admin_js_settings', $js_settings );
|
323 |
}
|
324 |
|
325 |
+
/**
|
326 |
+
* Get the coordinates that are used to
|
327 |
+
* show the map on the settings page.
|
328 |
+
*
|
329 |
+
* @since 2.2.5
|
330 |
+
* @return string $startLatLng The start coordinates
|
331 |
+
*/
|
332 |
+
public function get_default_lat_lng() {
|
333 |
+
|
334 |
+
global $wpsl_settings;
|
335 |
+
|
336 |
+
$startLatLng = $wpsl_settings['start_latlng'];
|
337 |
+
|
338 |
+
// If no start coordinates exists, then set the default to Holland.
|
339 |
+
if ( !$startLatLng ) {
|
340 |
+
$startLatLng = '52.378153,4.899363';
|
341 |
+
}
|
342 |
+
|
343 |
+
return $startLatLng;
|
344 |
+
}
|
345 |
+
|
346 |
/**
|
347 |
* Add the required admin script.
|
348 |
*
|
admin/class-settings.php
CHANGED
@@ -143,7 +143,11 @@ if ( !class_exists( 'WPSL_Settings' ) ) {
|
|
143 |
$output['auto_zoom_level'] = wpsl_get_default_setting( 'auto_zoom_level' );
|
144 |
}
|
145 |
|
146 |
-
|
|
|
|
|
|
|
|
|
147 |
|
148 |
// If no location name is then we also empty the latlng values from the hidden input field.
|
149 |
if ( empty( $output['start_name'] ) ) {
|
143 |
$output['auto_zoom_level'] = wpsl_get_default_setting( 'auto_zoom_level' );
|
144 |
}
|
145 |
|
146 |
+
if ( isset( $_POST['wpsl_map']['start_name'] ) ) {
|
147 |
+
$output['start_name'] = sanitize_text_field( $_POST['wpsl_map']['start_name'] );
|
148 |
+
} else {
|
149 |
+
$output['start_name'] = '';
|
150 |
+
}
|
151 |
|
152 |
// If no location name is then we also empty the latlng values from the hidden input field.
|
153 |
if ( empty( $output['start_name'] ) ) {
|
admin/templates/map-settings.php
CHANGED
@@ -180,7 +180,7 @@ global $wpdb, $wpsl, $wpsl_admin, $wp_version, $wpsl_settings;
|
|
180 |
<h3 class="hndle"><span><?php _e( 'Map', 'wpsl' ); ?></span></h3>
|
181 |
<div class="inside">
|
182 |
<p>
|
183 |
-
<label for="wpsl-auto-locate"><?php _e( 'Attempt to auto-locate the user', 'wpsl' );
|
184 |
<input type="checkbox" value="" <?php checked( $wpsl_settings['auto_locate'], true ); ?> name="wpsl_map[auto_locate]" id="wpsl-auto-locate">
|
185 |
</p>
|
186 |
<p>
|
@@ -584,7 +584,7 @@ global $wpdb, $wpsl, $wpsl_admin, $wp_version, $wpsl_settings;
|
|
584 |
<input type="checkbox" value="" <?php checked( $wpsl_settings['debug'], true ); ?> name="wpsl_tools[debug]" id="wpsl-debug">
|
585 |
</p>
|
586 |
<p>
|
587 |
-
<label for="wpsl-deregister-gmaps"><?php _e( '
|
588 |
<input type="checkbox" value="" <?php checked( $wpsl_settings['deregister_gmaps'], true ); ?> name="wpsl_tools[deregister_gmaps]" id="wpsl-deregister-gmaps">
|
589 |
</p>
|
590 |
<p>
|
180 |
<h3 class="hndle"><span><?php _e( 'Map', 'wpsl' ); ?></span></h3>
|
181 |
<div class="inside">
|
182 |
<p>
|
183 |
+
<label for="wpsl-auto-locate"><?php _e( 'Attempt to auto-locate the user', 'wpsl' ); ?>:<span class="wpsl-info"><span class="wpsl-info-text wpsl-hide"><?php echo sprintf( __( 'Safari and Chrome %srequire%s a HTTPS connection before the Geolocation feature works.', 'wpsl' ), '<a href="https://wpstorelocator.co/document/html-5-geolocation-not-working-chrome-safari/">', '</a>' ); ?></span></span></label>
|
184 |
<input type="checkbox" value="" <?php checked( $wpsl_settings['auto_locate'], true ); ?> name="wpsl_map[auto_locate]" id="wpsl-auto-locate">
|
185 |
</p>
|
186 |
<p>
|
584 |
<input type="checkbox" value="" <?php checked( $wpsl_settings['debug'], true ); ?> name="wpsl_tools[debug]" id="wpsl-debug">
|
585 |
</p>
|
586 |
<p>
|
587 |
+
<label for="wpsl-deregister-gmaps"><?php _e( 'Enable compatibility mode?', 'wpsl' ); ?><span class="wpsl-info"><span class="wpsl-info-text wpsl-hide"><?php echo sprintf( __( 'If the %sbrowser console%s shows the error below, then enabling this option should fix it. %s %sYou have included the Google Maps API multiple times on this page. This may cause unexpected errors.%s %s This error can in some situations break the store locator map.', 'wpsl' ), '<a href="https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis">', '</a>', '<br><br>', '<em>', '</em>', '<br><br>' ); ?></span></span></label>
|
588 |
<input type="checkbox" value="" <?php checked( $wpsl_settings['deregister_gmaps'], true ); ?> name="wpsl_tools[deregister_gmaps]" id="wpsl-deregister-gmaps">
|
589 |
</p>
|
590 |
<p>
|
frontend/class-frontend.php
CHANGED
@@ -264,6 +264,8 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
|
|
264 |
|
265 |
if ( $stores ) {
|
266 |
$store_data = apply_filters( 'wpsl_store_data', $this->get_store_meta_data( $stores ) );
|
|
|
|
|
267 |
}
|
268 |
|
269 |
return $store_data;
|
@@ -1736,7 +1738,6 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
|
|
1736 |
|
1737 |
return $settings;
|
1738 |
}
|
1739 |
-
|
1740 |
}
|
1741 |
|
1742 |
new WPSL_Frontend();
|
264 |
|
265 |
if ( $stores ) {
|
266 |
$store_data = apply_filters( 'wpsl_store_data', $this->get_store_meta_data( $stores ) );
|
267 |
+
} else {
|
268 |
+
$store_data = apply_filters( 'wpsl_no_results_sql', '' );
|
269 |
}
|
270 |
|
271 |
return $store_data;
|
1738 |
|
1739 |
return $settings;
|
1740 |
}
|
|
|
1741 |
}
|
1742 |
|
1743 |
new WPSL_Frontend();
|
inc/class-i18n.php
CHANGED
@@ -82,7 +82,13 @@ if ( !class_exists( 'WPSL_i18n' ) ) {
|
|
82 |
public function maybe_get_wpml_id( $store_id ) {
|
83 |
|
84 |
$return_original_id = apply_filters( 'wpsl_return_original_wpml_id', true );
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
// If '$return_original_id' is set to false, NULL is returned if no translation exists.
|
88 |
if ( is_null( $translated_id ) ) {
|
@@ -107,18 +113,12 @@ if ( !class_exists( 'WPSL_i18n' ) ) {
|
|
107 |
|
108 |
global $wpsl_settings;
|
109 |
|
110 |
-
$translation = '';
|
111 |
-
|
112 |
-
/* Check if we need to use WPML for the translation */
|
113 |
if ( $this->wpml_exists() ) {
|
114 |
-
$translation =
|
115 |
-
}
|
116 |
-
|
117 |
-
/* If we don't have a translation here, we use the value set on the settings page */
|
118 |
-
if ( empty( $translation ) ) {
|
119 |
$translation = stripslashes( $wpsl_settings[$name] );
|
120 |
}
|
121 |
-
|
122 |
return $translation;
|
123 |
}
|
124 |
|
82 |
public function maybe_get_wpml_id( $store_id ) {
|
83 |
|
84 |
$return_original_id = apply_filters( 'wpsl_return_original_wpml_id', true );
|
85 |
+
|
86 |
+
// icl_object_id is deprecated as of 3.2
|
87 |
+
if ( version_compare( ICL_SITEPRESS_VERSION, 3.2, '>=' ) ) {
|
88 |
+
$translated_id = apply_filters( 'wpml_object_id', $store_id, 'wpsl_stores', $return_original_id, ICL_LANGUAGE_CODE );
|
89 |
+
} else {
|
90 |
+
$translated_id = icl_object_id( $store_id, 'wpsl_stores', $return_original_id, ICL_LANGUAGE_CODE );
|
91 |
+
}
|
92 |
|
93 |
// If '$return_original_id' is set to false, NULL is returned if no translation exists.
|
94 |
if ( is_null( $translated_id ) ) {
|
113 |
|
114 |
global $wpsl_settings;
|
115 |
|
|
|
|
|
|
|
116 |
if ( $this->wpml_exists() ) {
|
117 |
+
$translation = $text;
|
118 |
+
} else {
|
|
|
|
|
|
|
119 |
$translation = stripslashes( $wpsl_settings[$name] );
|
120 |
}
|
121 |
+
|
122 |
return $translation;
|
123 |
}
|
124 |
|
inc/class-post-types.php
CHANGED
@@ -46,23 +46,20 @@ if ( !class_exists( 'WPSL_Post_Types' ) ) {
|
|
46 |
$exclude_from_search = true;
|
47 |
$rewrite = false;
|
48 |
}
|
49 |
-
|
50 |
-
$singular = __( 'Store', 'wpsl' );
|
51 |
-
$plural = __( 'Stores', 'wpsl' );
|
52 |
-
|
53 |
// The labels for the wpsl_stores post type.
|
54 |
$labels = apply_filters( 'wpsl_post_type_labels', array(
|
55 |
'name' => __( 'Store Locator', 'wpsl' ),
|
56 |
-
'all_items' =>
|
57 |
-
'singular_name' =>
|
58 |
-
'add_new' =>
|
59 |
-
'add_new_item' =>
|
60 |
-
'edit_item' =>
|
61 |
-
'new_item' =>
|
62 |
-
'view_item' =>
|
63 |
-
'search_items' =>
|
64 |
-
'not_found' =>
|
65 |
-
'not_found_in_trash' =>
|
66 |
)
|
67 |
);
|
68 |
|
46 |
$exclude_from_search = true;
|
47 |
$rewrite = false;
|
48 |
}
|
49 |
+
|
|
|
|
|
|
|
50 |
// The labels for the wpsl_stores post type.
|
51 |
$labels = apply_filters( 'wpsl_post_type_labels', array(
|
52 |
'name' => __( 'Store Locator', 'wpsl' ),
|
53 |
+
'all_items' => __( 'All Stores', 'wpsl' ),
|
54 |
+
'singular_name' => __( 'Store', 'wpsl' ),
|
55 |
+
'add_new' => __( 'New Store', 'wpsl' ),
|
56 |
+
'add_new_item' => __( 'Add New Store', 'wpsl' ),
|
57 |
+
'edit_item' => __( 'Edit Store', 'wpsl' ),
|
58 |
+
'new_item' => __( 'New Store', 'wpsl' ),
|
59 |
+
'view_item' => __( 'View Stores', 'wpsl' ),
|
60 |
+
'search_items' => __( 'Search Stores', 'wpsl' ),
|
61 |
+
'not_found' => __( 'No Stores found', 'wpsl' ),
|
62 |
+
'not_found_in_trash' => __( 'No Stores found in trash', 'wpsl' ),
|
63 |
)
|
64 |
);
|
65 |
|
languages/wpsl-nl_NL.mo
CHANGED
Binary file
|
languages/wpsl-nl_NL.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: WP Store Locator 2.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: nl_NL\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
"X-Textdomain-Support: yes\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#: admin/class-admin.php:
|
23 |
#, php-format
|
24 |
msgid ""
|
25 |
"Before adding the [wpsl] shortcode to a page, please don't forget to define "
|
@@ -28,13 +28,24 @@ msgstr ""
|
|
28 |
"Vergeet niet voordat je de [wpsl] shortcode op een pagina plaatst, om een "
|
29 |
"start locatie op te geven op de %sinstellingen%s pagina. %sSluit%s"
|
30 |
|
31 |
-
#: admin/class-admin.php:
|
32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Settings"
|
34 |
msgstr "Instellingen"
|
35 |
|
36 |
-
#: admin/class-admin.php:
|
37 |
-
#: admin/class-admin.php:
|
38 |
msgid "Add-Ons"
|
39 |
msgstr "Uitbreidingen"
|
40 |
|
@@ -46,7 +57,7 @@ msgstr "Er kan geen adres gevonden worden voor deze locatie."
|
|
46 |
msgid "Geocode was not successful for the following reason"
|
47 |
msgstr "Geocode was niet succesvol om de volgende reden"
|
48 |
|
49 |
-
#: admin/class-admin.php:295 admin/upgrade.php:
|
50 |
msgid "Security check failed, reload the page and try again."
|
51 |
msgstr ""
|
52 |
"Beveiligings controle mislukt, herlaad de pagina en probeer het nog een keer."
|
@@ -62,7 +73,7 @@ msgstr ""
|
|
62 |
"getoond kan worden."
|
63 |
|
64 |
#: admin/class-admin.php:298 admin/class-metaboxes.php:525
|
65 |
-
#: frontend/class-frontend.php:
|
66 |
msgid "Closed"
|
67 |
msgstr "Gesloten"
|
68 |
|
@@ -70,19 +81,19 @@ msgstr "Gesloten"
|
|
70 |
msgid "The code for the map style is invalid."
|
71 |
msgstr "De code voor de map stijl is ongeldig."
|
72 |
|
73 |
-
#: admin/class-admin.php:
|
74 |
msgid "Welcome to WP Store Locator"
|
75 |
msgstr "Welkom bij WP Store Locator"
|
76 |
|
77 |
-
#: admin/class-admin.php:
|
78 |
msgid "Sign up for the latest plugin updates and announcements."
|
79 |
msgstr "Meld je aan voor de nieuwsbrief en ontvang het laatste nieuws."
|
80 |
|
81 |
-
#: admin/class-admin.php:
|
82 |
msgid "Documentation"
|
83 |
msgstr "Documentatie"
|
84 |
|
85 |
-
#: admin/class-admin.php:
|
86 |
#, php-format
|
87 |
msgid "If you like this plugin please leave us a %s5 star%s rating."
|
88 |
msgstr "Als je tevreden bent met deze plugin geef het dan %s5 sterren%s."
|
@@ -129,6 +140,13 @@ msgstr ""
|
|
129 |
"Er kon geen verbinding gemaakt worden met de Google Geocode API: %s %s "
|
130 |
"Probeer het later nogmaals."
|
131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
#: admin/class-license-manager.php:183
|
133 |
#, php-format
|
134 |
msgid ""
|
@@ -179,7 +197,7 @@ msgstr "Winkel kaart"
|
|
179 |
msgid "Location"
|
180 |
msgstr "Locatie"
|
181 |
|
182 |
-
#: admin/class-metaboxes.php:50 inc/class-post-types.php:
|
183 |
msgid "Address"
|
184 |
msgstr "Adres"
|
185 |
|
@@ -187,11 +205,11 @@ msgstr "Adres"
|
|
187 |
msgid "Address 2"
|
188 |
msgstr "Adres 2"
|
189 |
|
190 |
-
#: admin/class-metaboxes.php:57 inc/class-post-types.php:
|
191 |
msgid "City"
|
192 |
msgstr "Stad"
|
193 |
|
194 |
-
#: admin/class-metaboxes.php:61 inc/class-post-types.php:
|
195 |
msgid "State"
|
196 |
msgstr "Provincie"
|
197 |
|
@@ -217,8 +235,8 @@ msgid "Opening Hours"
|
|
217 |
msgstr "Openingstijden"
|
218 |
|
219 |
#: admin/class-metaboxes.php:82 admin/templates/map-settings.php:534
|
220 |
-
#: admin/templates/map-settings.php:535 frontend/underscore-functions.php:
|
221 |
-
#: inc/wpsl-functions.php:
|
222 |
msgid "Hours"
|
223 |
msgstr "Uren"
|
224 |
|
@@ -231,23 +249,23 @@ msgid "Tel"
|
|
231 |
msgstr "Tel."
|
232 |
|
233 |
#: admin/class-metaboxes.php:91 admin/templates/map-settings.php:522
|
234 |
-
#: admin/templates/map-settings.php:523 frontend/class-frontend.php:
|
235 |
-
#: frontend/underscore-functions.php:32 frontend/underscore-functions.php:
|
236 |
-
#: frontend/underscore-functions.php:
|
237 |
msgid "Fax"
|
238 |
msgstr "Fax"
|
239 |
|
240 |
#: admin/class-metaboxes.php:94 admin/templates/map-settings.php:526
|
241 |
#: admin/templates/map-settings.php:527 admin/upgrade.php:198
|
242 |
-
#: frontend/class-frontend.php:
|
243 |
-
#: frontend/underscore-functions.php:
|
244 |
-
#: inc/wpsl-functions.php:
|
245 |
msgid "Email"
|
246 |
msgstr "E-mail"
|
247 |
|
248 |
#: admin/class-metaboxes.php:97 admin/templates/map-settings.php:530
|
249 |
#: admin/templates/map-settings.php:531 admin/upgrade.php:202
|
250 |
-
#: frontend/class-frontend.php:
|
251 |
msgid "Url"
|
252 |
msgstr "Url"
|
253 |
|
@@ -339,20 +357,20 @@ msgstr "Winkel voorbeeld"
|
|
339 |
msgid "WP Store Locator Transients Cleared"
|
340 |
msgstr "WP Store Locator transients verwijderd"
|
341 |
|
342 |
-
#: admin/class-settings.php:
|
343 |
msgid ""
|
344 |
"The max results field cannot be empty, the default value has been restored."
|
345 |
msgstr ""
|
346 |
"Het max. zoek resulaten veld kan niet leeg zijn, de standaard waarde is "
|
347 |
"hersteld."
|
348 |
|
349 |
-
#: admin/class-settings.php:
|
350 |
msgid ""
|
351 |
"The search radius field cannot be empty, the default value has been restored."
|
352 |
msgstr ""
|
353 |
"Het zoek radius veld kan niet leeg zijn, de standaard waarde is hersteld."
|
354 |
|
355 |
-
#: admin/class-settings.php:
|
356 |
#, php-format
|
357 |
msgid ""
|
358 |
"Please provide the name of a city or country that can be used as a starting "
|
@@ -364,1116 +382,1116 @@ msgstr ""
|
|
364 |
"automatische achterhalen van de gebruikers locatie mislukt, of het "
|
365 |
"automatische achterhalen is uitgeschakeld."
|
366 |
|
367 |
-
#: admin/class-settings.php:
|
368 |
msgid "Select your language"
|
369 |
msgstr "Kies uw taal"
|
370 |
|
371 |
-
#: admin/class-settings.php:
|
372 |
msgid "English"
|
373 |
msgstr "Engels"
|
374 |
|
375 |
-
#: admin/class-settings.php:
|
376 |
msgid "Arabic"
|
377 |
msgstr "Arabisch"
|
378 |
|
379 |
-
#: admin/class-settings.php:
|
380 |
msgid "Basque"
|
381 |
msgstr "Bask"
|
382 |
|
383 |
-
#: admin/class-settings.php:
|
384 |
msgid "Bulgarian"
|
385 |
msgstr "Bulgaars"
|
386 |
|
387 |
-
#: admin/class-settings.php:
|
388 |
msgid "Bengali"
|
389 |
msgstr "Bengali"
|
390 |
|
391 |
-
#: admin/class-settings.php:
|
392 |
msgid "Catalan"
|
393 |
msgstr "Catalaans"
|
394 |
|
395 |
-
#: admin/class-settings.php:
|
396 |
msgid "Czech"
|
397 |
msgstr "Tjechisch"
|
398 |
|
399 |
-
#: admin/class-settings.php:
|
400 |
msgid "Danish"
|
401 |
msgstr "Deens"
|
402 |
|
403 |
-
#: admin/class-settings.php:
|
404 |
msgid "German"
|
405 |
msgstr "Duits"
|
406 |
|
407 |
-
#: admin/class-settings.php:
|
408 |
msgid "Greek"
|
409 |
msgstr "Grieks"
|
410 |
|
411 |
-
#: admin/class-settings.php:
|
412 |
msgid "English (Australian)"
|
413 |
msgstr "Engels (Australisch)"
|
414 |
|
415 |
-
#: admin/class-settings.php:
|
416 |
msgid "English (Great Britain)"
|
417 |
msgstr "Engels (Verenigd Koninkrijk)"
|
418 |
|
419 |
-
#: admin/class-settings.php:
|
420 |
msgid "Spanish"
|
421 |
msgstr "Spaans"
|
422 |
|
423 |
-
#: admin/class-settings.php:
|
424 |
msgid "Farsi"
|
425 |
msgstr "Farsi"
|
426 |
|
427 |
-
#: admin/class-settings.php:
|
428 |
msgid "Finnish"
|
429 |
msgstr "Fins"
|
430 |
|
431 |
-
#: admin/class-settings.php:
|
432 |
msgid "Filipino"
|
433 |
msgstr "Filipijns"
|
434 |
|
435 |
-
#: admin/class-settings.php:
|
436 |
msgid "French"
|
437 |
msgstr "Frans"
|
438 |
|
439 |
-
#: admin/class-settings.php:
|
440 |
msgid "Galician"
|
441 |
msgstr "Gallisch"
|
442 |
|
443 |
-
#: admin/class-settings.php:
|
444 |
msgid "Gujarati"
|
445 |
msgstr "Gujurati"
|
446 |
|
447 |
-
#: admin/class-settings.php:
|
448 |
msgid "Hindi"
|
449 |
msgstr "Hindi"
|
450 |
|
451 |
-
#: admin/class-settings.php:
|
452 |
msgid "Croatian"
|
453 |
msgstr "Kroatisch"
|
454 |
|
455 |
-
#: admin/class-settings.php:
|
456 |
msgid "Hungarian"
|
457 |
msgstr "Hongaars"
|
458 |
|
459 |
-
#: admin/class-settings.php:
|
460 |
msgid "Indonesian"
|
461 |
msgstr "Indonesisch"
|
462 |
|
463 |
-
#: admin/class-settings.php:
|
464 |
msgid "Italian"
|
465 |
msgstr "Italiaans"
|
466 |
|
467 |
-
#: admin/class-settings.php:
|
468 |
msgid "Hebrew"
|
469 |
msgstr "Hebreeuws"
|
470 |
|
471 |
-
#: admin/class-settings.php:
|
472 |
msgid "Japanese"
|
473 |
msgstr "Japans"
|
474 |
|
475 |
-
#: admin/class-settings.php:
|
476 |
msgid "Kannada"
|
477 |
msgstr "Kannada"
|
478 |
|
479 |
-
#: admin/class-settings.php:
|
480 |
msgid "Korean"
|
481 |
msgstr "Koreaans"
|
482 |
|
483 |
-
#: admin/class-settings.php:
|
484 |
msgid "Lithuanian"
|
485 |
msgstr "Litouws"
|
486 |
|
487 |
-
#: admin/class-settings.php:
|
488 |
msgid "Latvian"
|
489 |
msgstr "Lets"
|
490 |
|
491 |
-
#: admin/class-settings.php:
|
492 |
msgid "Malayalam"
|
493 |
msgstr "Malayalam"
|
494 |
|
495 |
-
#: admin/class-settings.php:
|
496 |
msgid "Marathi"
|
497 |
msgstr "Marathi"
|
498 |
|
499 |
-
#: admin/class-settings.php:
|
500 |
msgid "Dutch"
|
501 |
msgstr "Nederlands"
|
502 |
|
503 |
-
#: admin/class-settings.php:
|
504 |
msgid "Norwegian"
|
505 |
msgstr "Noors"
|
506 |
|
507 |
-
#: admin/class-settings.php:
|
508 |
msgid "Norwegian Nynorsk"
|
509 |
msgstr "Noors Nynorsk"
|
510 |
|
511 |
-
#: admin/class-settings.php:
|
512 |
msgid "Polish"
|
513 |
msgstr "Pools"
|
514 |
|
515 |
-
#: admin/class-settings.php:
|
516 |
msgid "Portuguese"
|
517 |
msgstr "Portugees"
|
518 |
|
519 |
-
#: admin/class-settings.php:
|
520 |
msgid "Portuguese (Brazil)"
|
521 |
msgstr "Portugees (Brazilië)"
|
522 |
|
523 |
-
#: admin/class-settings.php:
|
524 |
msgid "Portuguese (Portugal)"
|
525 |
msgstr "Portugees (Portugal)"
|
526 |
|
527 |
-
#: admin/class-settings.php:
|
528 |
msgid "Romanian"
|
529 |
msgstr "Roemeens"
|
530 |
|
531 |
-
#: admin/class-settings.php:
|
532 |
msgid "Russian"
|
533 |
msgstr "Russisch"
|
534 |
|
535 |
-
#: admin/class-settings.php:
|
536 |
msgid "Slovak"
|
537 |
msgstr "Slowaaks"
|
538 |
|
539 |
-
#: admin/class-settings.php:
|
540 |
msgid "Slovenian"
|
541 |
msgstr "Sloveens"
|
542 |
|
543 |
-
#: admin/class-settings.php:
|
544 |
msgid "Serbian"
|
545 |
msgstr "Servisch"
|
546 |
|
547 |
-
#: admin/class-settings.php:
|
548 |
msgid "Swedish"
|
549 |
msgstr "Zweeds"
|
550 |
|
551 |
-
#: admin/class-settings.php:
|
552 |
msgid "Tagalog"
|
553 |
msgstr "Tagalog"
|
554 |
|
555 |
-
#: admin/class-settings.php:
|
556 |
msgid "Tamil"
|
557 |
msgstr "Tamil"
|
558 |
|
559 |
-
#: admin/class-settings.php:
|
560 |
msgid "Telugu"
|
561 |
msgstr "Telugu"
|
562 |
|
563 |
-
#: admin/class-settings.php:
|
564 |
msgid "Thai"
|
565 |
msgstr "Thai"
|
566 |
|
567 |
-
#: admin/class-settings.php:
|
568 |
msgid "Turkish"
|
569 |
msgstr "Turks"
|
570 |
|
571 |
-
#: admin/class-settings.php:
|
572 |
msgid "Ukrainian"
|
573 |
msgstr "Oekraïens"
|
574 |
|
575 |
-
#: admin/class-settings.php:
|
576 |
msgid "Vietnamese"
|
577 |
msgstr "Vietnamees"
|
578 |
|
579 |
-
#: admin/class-settings.php:
|
580 |
msgid "Chinese (Simplified)"
|
581 |
msgstr "Chinees (Vereenvoudigd)"
|
582 |
|
583 |
-
#: admin/class-settings.php:
|
584 |
msgid "Chinese (Traditional)"
|
585 |
msgstr "Chinees (Traditioneel)"
|
586 |
|
587 |
-
#: admin/class-settings.php:
|
588 |
msgid "Select your region"
|
589 |
msgstr "Kies uw regio"
|
590 |
|
591 |
-
#: admin/class-settings.php:
|
592 |
msgid "Afghanistan"
|
593 |
msgstr "Afghanistan"
|
594 |
|
595 |
-
#: admin/class-settings.php:
|
596 |
msgid "Albania"
|
597 |
msgstr "Albanië"
|
598 |
|
599 |
-
#: admin/class-settings.php:
|
600 |
msgid "Algeria"
|
601 |
msgstr "Algerije"
|
602 |
|
603 |
-
#: admin/class-settings.php:
|
604 |
msgid "American Samoa"
|
605 |
msgstr "Amerikaans Samoa"
|
606 |
|
607 |
-
#: admin/class-settings.php:
|
608 |
msgid "Andorra"
|
609 |
msgstr "Andorra"
|
610 |
|
611 |
-
#: admin/class-settings.php:
|
612 |
msgid "Anguilla"
|
613 |
msgstr "Anguilla"
|
614 |
|
615 |
-
#: admin/class-settings.php:
|
616 |
msgid "Angola"
|
617 |
msgstr "Angola"
|
618 |
|
619 |
-
#: admin/class-settings.php:
|
620 |
msgid "Antigua and Barbuda"
|
621 |
msgstr "Antigua en Barbuda"
|
622 |
|
623 |
-
#: admin/class-settings.php:
|
624 |
msgid "Argentina"
|
625 |
msgstr "Argentinië"
|
626 |
|
627 |
-
#: admin/class-settings.php:
|
628 |
msgid "Armenia"
|
629 |
msgstr "Armenia"
|
630 |
|
631 |
-
#: admin/class-settings.php:
|
632 |
msgid "Aruba"
|
633 |
msgstr "Aruba"
|
634 |
|
635 |
-
#: admin/class-settings.php:
|
636 |
msgid "Australia"
|
637 |
msgstr "Australië"
|
638 |
|
639 |
-
#: admin/class-settings.php:
|
640 |
msgid "Austria"
|
641 |
msgstr "Oostenrijk"
|
642 |
|
643 |
-
#: admin/class-settings.php:
|
644 |
msgid "Azerbaijan"
|
645 |
msgstr "Azerbeidzjan"
|
646 |
|
647 |
-
#: admin/class-settings.php:
|
648 |
msgid "Bahamas"
|
649 |
msgstr "Bahamas"
|
650 |
|
651 |
-
#: admin/class-settings.php:
|
652 |
msgid "Bahrain"
|
653 |
msgstr "Bahrein"
|
654 |
|
655 |
-
#: admin/class-settings.php:
|
656 |
msgid "Bangladesh"
|
657 |
msgstr "Bangladesh"
|
658 |
|
659 |
-
#: admin/class-settings.php:
|
660 |
msgid "Barbados"
|
661 |
msgstr "Barbados"
|
662 |
|
663 |
-
#: admin/class-settings.php:
|
664 |
msgid "Belarus"
|
665 |
msgstr "Wit-Rusland"
|
666 |
|
667 |
-
#: admin/class-settings.php:
|
668 |
msgid "Belgium"
|
669 |
msgstr "België"
|
670 |
|
671 |
-
#: admin/class-settings.php:
|
672 |
msgid "Belize"
|
673 |
msgstr "Belize"
|
674 |
|
675 |
-
#: admin/class-settings.php:
|
676 |
msgid "Benin"
|
677 |
msgstr "Benin"
|
678 |
|
679 |
-
#: admin/class-settings.php:
|
680 |
msgid "Bermuda"
|
681 |
msgstr "Bermuda"
|
682 |
|
683 |
-
#: admin/class-settings.php:
|
684 |
msgid "Bhutan"
|
685 |
msgstr "Bhutan"
|
686 |
|
687 |
-
#: admin/class-settings.php:
|
688 |
msgid "Bolivia"
|
689 |
msgstr "Bolivia"
|
690 |
|
691 |
-
#: admin/class-settings.php:
|
692 |
msgid "Bosnia and Herzegovina"
|
693 |
msgstr "Bosnia en Herzegovina"
|
694 |
|
695 |
-
#: admin/class-settings.php:
|
696 |
msgid "Botswana"
|
697 |
msgstr "Botswana"
|
698 |
|
699 |
-
#: admin/class-settings.php:
|
700 |
msgid "Brazil"
|
701 |
msgstr "Brazilië"
|
702 |
|
703 |
-
#: admin/class-settings.php:
|
704 |
msgid "British Indian Ocean Territory"
|
705 |
msgstr "Brits Indische Oceaanterritorium"
|
706 |
|
707 |
-
#: admin/class-settings.php:
|
708 |
msgid "Brunei"
|
709 |
msgstr "Brunei"
|
710 |
|
711 |
-
#: admin/class-settings.php:
|
712 |
msgid "Bulgaria"
|
713 |
msgstr "Bulgarije"
|
714 |
|
715 |
-
#: admin/class-settings.php:
|
716 |
msgid "Burkina Faso"
|
717 |
msgstr "Burkina Faso"
|
718 |
|
719 |
-
#: admin/class-settings.php:
|
720 |
msgid "Burundi"
|
721 |
msgstr "Burundi"
|
722 |
|
723 |
-
#: admin/class-settings.php:
|
724 |
msgid "Cambodia"
|
725 |
msgstr "Cambodja"
|
726 |
|
727 |
-
#: admin/class-settings.php:
|
728 |
msgid "Cameroon"
|
729 |
msgstr "Kameroen"
|
730 |
|
731 |
-
#: admin/class-settings.php:
|
732 |
msgid "Canada"
|
733 |
msgstr "Canada"
|
734 |
|
735 |
-
#: admin/class-settings.php:
|
736 |
msgid "Cape Verde"
|
737 |
msgstr "Kaapverdië"
|
738 |
|
739 |
-
#: admin/class-settings.php:
|
740 |
msgid "Cayman Islands"
|
741 |
msgstr "Kaaimaneilanden"
|
742 |
|
743 |
-
#: admin/class-settings.php:
|
744 |
msgid "Central African Republic"
|
745 |
msgstr "Centraal-Afrikaanse Republiek"
|
746 |
|
747 |
-
#: admin/class-settings.php:
|
748 |
msgid "Chad"
|
749 |
msgstr "Chad"
|
750 |
|
751 |
-
#: admin/class-settings.php:
|
752 |
msgid "Chile"
|
753 |
msgstr "Chili"
|
754 |
|
755 |
-
#: admin/class-settings.php:
|
756 |
msgid "China"
|
757 |
msgstr "China"
|
758 |
|
759 |
-
#: admin/class-settings.php:
|
760 |
msgid "Christmas Island"
|
761 |
msgstr "Christmaseiland"
|
762 |
|
763 |
-
#: admin/class-settings.php:
|
764 |
msgid "Cocos Islands"
|
765 |
msgstr "Cocoseilanden"
|
766 |
|
767 |
-
#: admin/class-settings.php:
|
768 |
msgid "Colombia"
|
769 |
msgstr "Colombia"
|
770 |
|
771 |
-
#: admin/class-settings.php:
|
772 |
msgid "Comoros"
|
773 |
msgstr "Comoren"
|
774 |
|
775 |
-
#: admin/class-settings.php:
|
776 |
msgid "Congo"
|
777 |
msgstr "Congo"
|
778 |
|
779 |
-
#: admin/class-settings.php:
|
780 |
msgid "Costa Rica"
|
781 |
msgstr "Costa Rica"
|
782 |
|
783 |
-
#: admin/class-settings.php:
|
784 |
msgid "Côte d'Ivoire"
|
785 |
msgstr "Ivoorkust"
|
786 |
|
787 |
-
#: admin/class-settings.php:
|
788 |
msgid "Croatia"
|
789 |
msgstr "Kroatië"
|
790 |
|
791 |
-
#: admin/class-settings.php:
|
792 |
msgid "Cuba"
|
793 |
msgstr "Cuba"
|
794 |
|
795 |
-
#: admin/class-settings.php:
|
796 |
msgid "Czech Republic"
|
797 |
msgstr "Tsjechië"
|
798 |
|
799 |
-
#: admin/class-settings.php:
|
800 |
msgid "Denmark"
|
801 |
msgstr "Denemarken"
|
802 |
|
803 |
-
#: admin/class-settings.php:
|
804 |
msgid "Djibouti"
|
805 |
msgstr "Djibouti"
|
806 |
|
807 |
-
#: admin/class-settings.php:
|
808 |
msgid "Democratic Republic of the Congo"
|
809 |
msgstr "Democratische Republiek Congo"
|
810 |
|
811 |
-
#: admin/class-settings.php:
|
812 |
msgid "Dominica"
|
813 |
msgstr "Dominica"
|
814 |
|
815 |
-
#: admin/class-settings.php:
|
816 |
msgid "Dominican Republic"
|
817 |
msgstr "Dominicaanse Republiek"
|
818 |
|
819 |
-
#: admin/class-settings.php:
|
820 |
msgid "Ecuador"
|
821 |
msgstr "Ecuador"
|
822 |
|
823 |
-
#: admin/class-settings.php:
|
824 |
msgid "Egypt"
|
825 |
msgstr "Egypte"
|
826 |
|
827 |
-
#: admin/class-settings.php:
|
828 |
msgid "El Salvador"
|
829 |
msgstr "El Salvador"
|
830 |
|
831 |
-
#: admin/class-settings.php:
|
832 |
msgid "Equatorial Guinea"
|
833 |
msgstr "Equatoriaal-Guinea"
|
834 |
|
835 |
-
#: admin/class-settings.php:
|
836 |
msgid "Eritrea"
|
837 |
msgstr "Eritrea"
|
838 |
|
839 |
-
#: admin/class-settings.php:
|
840 |
msgid "Estonia"
|
841 |
msgstr "Estland"
|
842 |
|
843 |
-
#: admin/class-settings.php:
|
844 |
msgid "Ethiopia"
|
845 |
msgstr "Ethiopië"
|
846 |
|
847 |
-
#: admin/class-settings.php:
|
848 |
msgid "Fiji"
|
849 |
msgstr "Fiji"
|
850 |
|
851 |
-
#: admin/class-settings.php:
|
852 |
msgid "Finland"
|
853 |
msgstr "Finland"
|
854 |
|
855 |
-
#: admin/class-settings.php:
|
856 |
msgid "France"
|
857 |
msgstr "Frankrijk"
|
858 |
|
859 |
-
#: admin/class-settings.php:
|
860 |
msgid "French Guiana"
|
861 |
msgstr "Frans Guyana"
|
862 |
|
863 |
-
#: admin/class-settings.php:
|
864 |
msgid "Gabon"
|
865 |
msgstr "Gabon"
|
866 |
|
867 |
-
#: admin/class-settings.php:
|
868 |
msgid "Gambia"
|
869 |
msgstr "Gambia"
|
870 |
|
871 |
-
#: admin/class-settings.php:
|
872 |
msgid "Germany"
|
873 |
msgstr "Duitsland"
|
874 |
|
875 |
-
#: admin/class-settings.php:
|
876 |
msgid "Ghana"
|
877 |
msgstr "Ghana"
|
878 |
|
879 |
-
#: admin/class-settings.php:
|
880 |
msgid "Greenland"
|
881 |
msgstr "Groenland"
|
882 |
|
883 |
-
#: admin/class-settings.php:
|
884 |
msgid "Greece"
|
885 |
msgstr "Griekenland"
|
886 |
|
887 |
-
#: admin/class-settings.php:
|
888 |
msgid "Grenada"
|
889 |
msgstr "Grenada"
|
890 |
|
891 |
-
#: admin/class-settings.php:
|
892 |
msgid "Guam"
|
893 |
msgstr "Guam"
|
894 |
|
895 |
-
#: admin/class-settings.php:
|
896 |
msgid "Guadeloupe"
|
897 |
msgstr "Guadeloupe"
|
898 |
|
899 |
-
#: admin/class-settings.php:
|
900 |
msgid "Guatemala"
|
901 |
msgstr "Guatemala"
|
902 |
|
903 |
-
#: admin/class-settings.php:
|
904 |
msgid "Guinea"
|
905 |
msgstr "Guinee"
|
906 |
|
907 |
-
#: admin/class-settings.php:
|
908 |
msgid "Guinea-Bissau"
|
909 |
msgstr "Guinee-Bissau"
|
910 |
|
911 |
-
#: admin/class-settings.php:
|
912 |
msgid "Haiti"
|
913 |
msgstr "Haïti"
|
914 |
|
915 |
-
#: admin/class-settings.php:
|
916 |
msgid "Honduras"
|
917 |
msgstr "Honduras"
|
918 |
|
919 |
-
#: admin/class-settings.php:
|
920 |
msgid "Hong Kong"
|
921 |
msgstr "Hong Kong"
|
922 |
|
923 |
-
#: admin/class-settings.php:
|
924 |
msgid "Hungary"
|
925 |
msgstr "Hongarije"
|
926 |
|
927 |
-
#: admin/class-settings.php:
|
928 |
msgid "Iceland"
|
929 |
msgstr "IJsland"
|
930 |
|
931 |
-
#: admin/class-settings.php:
|
932 |
msgid "India"
|
933 |
msgstr "India"
|
934 |
|
935 |
-
#: admin/class-settings.php:
|
936 |
msgid "Indonesia"
|
937 |
msgstr "Indonesië"
|
938 |
|
939 |
-
#: admin/class-settings.php:
|
940 |
msgid "Iran"
|
941 |
msgstr "Iran"
|
942 |
|
943 |
-
#: admin/class-settings.php:
|
944 |
msgid "Iraq"
|
945 |
msgstr "Irak"
|
946 |
|
947 |
-
#: admin/class-settings.php:
|
948 |
msgid "Ireland"
|
949 |
msgstr "Ierland"
|
950 |
|
951 |
-
#: admin/class-settings.php:
|
952 |
msgid "Israel"
|
953 |
msgstr "Israël"
|
954 |
|
955 |
-
#: admin/class-settings.php:
|
956 |
msgid "Italy"
|
957 |
msgstr "Italië"
|
958 |
|
959 |
-
#: admin/class-settings.php:
|
960 |
msgid "Jamaica"
|
961 |
msgstr "Jamaica"
|
962 |
|
963 |
-
#: admin/class-settings.php:
|
964 |
msgid "Japan"
|
965 |
msgstr "Japan"
|
966 |
|
967 |
-
#: admin/class-settings.php:
|
968 |
msgid "Jordan"
|
969 |
msgstr "Jordanië"
|
970 |
|
971 |
-
#: admin/class-settings.php:
|
972 |
msgid "Kazakhstan"
|
973 |
msgstr "Kazachstan"
|
974 |
|
975 |
-
#: admin/class-settings.php:
|
976 |
msgid "Kenya"
|
977 |
msgstr "Kenia"
|
978 |
|
979 |
-
#: admin/class-settings.php:
|
980 |
msgid "Kuwait"
|
981 |
msgstr "Koeweit"
|
982 |
|
983 |
-
#: admin/class-settings.php:
|
984 |
msgid "Kyrgyzstan"
|
985 |
msgstr "Kirgizië"
|
986 |
|
987 |
-
#: admin/class-settings.php:
|
988 |
msgid "Laos"
|
989 |
msgstr "Laos"
|
990 |
|
991 |
-
#: admin/class-settings.php:
|
992 |
msgid "Latvia"
|
993 |
msgstr "Letland"
|
994 |
|
995 |
-
#: admin/class-settings.php:
|
996 |
msgid "Lebanon"
|
997 |
msgstr "Libanon"
|
998 |
|
999 |
-
#: admin/class-settings.php:
|
1000 |
msgid "Lesotho"
|
1001 |
msgstr "Lesotho"
|
1002 |
|
1003 |
-
#: admin/class-settings.php:
|
1004 |
msgid "Liberia"
|
1005 |
msgstr "Liberia"
|
1006 |
|
1007 |
-
#: admin/class-settings.php:
|
1008 |
msgid "Libya"
|
1009 |
msgstr "Libië"
|
1010 |
|
1011 |
-
#: admin/class-settings.php:
|
1012 |
msgid "Liechtenstein"
|
1013 |
msgstr "Liechtenstein"
|
1014 |
|
1015 |
-
#: admin/class-settings.php:
|
1016 |
msgid "Lithuania"
|
1017 |
msgstr "Litouwen"
|
1018 |
|
1019 |
-
#: admin/class-settings.php:
|
1020 |
msgid "Luxembourg"
|
1021 |
msgstr "Luxemburg"
|
1022 |
|
1023 |
-
#: admin/class-settings.php:
|
1024 |
msgid "Macau"
|
1025 |
msgstr "Macau"
|
1026 |
|
1027 |
-
#: admin/class-settings.php:
|
1028 |
msgid "Macedonia"
|
1029 |
msgstr "Macedonië"
|
1030 |
|
1031 |
-
#: admin/class-settings.php:
|
1032 |
msgid "Madagascar"
|
1033 |
msgstr "Madagascar"
|
1034 |
|
1035 |
-
#: admin/class-settings.php:
|
1036 |
msgid "Malawi"
|
1037 |
msgstr "Malawi"
|
1038 |
|
1039 |
-
#: admin/class-settings.php:
|
1040 |
msgid "Malaysia "
|
1041 |
msgstr "Maleisie"
|
1042 |
|
1043 |
-
#: admin/class-settings.php:
|
1044 |
msgid "Mali"
|
1045 |
msgstr "Mali"
|
1046 |
|
1047 |
-
#: admin/class-settings.php:
|
1048 |
msgid "Marshall Islands"
|
1049 |
msgstr "Marshalleilanden"
|
1050 |
|
1051 |
-
#: admin/class-settings.php:
|
1052 |
msgid "Martinique"
|
1053 |
msgstr "Martinique"
|
1054 |
|
1055 |
-
#: admin/class-settings.php:
|
1056 |
msgid "Mauritania"
|
1057 |
msgstr "Mauritanië"
|
1058 |
|
1059 |
-
#: admin/class-settings.php:
|
1060 |
msgid "Mauritius"
|
1061 |
msgstr "Mauritius"
|
1062 |
|
1063 |
-
#: admin/class-settings.php:
|
1064 |
msgid "Mexico"
|
1065 |
msgstr "Mexico"
|
1066 |
|
1067 |
-
#: admin/class-settings.php:
|
1068 |
msgid "Micronesia"
|
1069 |
msgstr "Micronesia"
|
1070 |
|
1071 |
-
#: admin/class-settings.php:
|
1072 |
msgid "Moldova"
|
1073 |
msgstr "Moldavië"
|
1074 |
|
1075 |
-
#: admin/class-settings.php:
|
1076 |
msgid "Monaco"
|
1077 |
msgstr "Monaco"
|
1078 |
|
1079 |
-
#: admin/class-settings.php:
|
1080 |
msgid "Mongolia"
|
1081 |
msgstr "Mongolië"
|
1082 |
|
1083 |
-
#: admin/class-settings.php:
|
1084 |
msgid "Montenegro"
|
1085 |
msgstr "Montenegro"
|
1086 |
|
1087 |
-
#: admin/class-settings.php:
|
1088 |
msgid "Montserrat"
|
1089 |
msgstr "Montserrat "
|
1090 |
|
1091 |
-
#: admin/class-settings.php:
|
1092 |
msgid "Morocco"
|
1093 |
msgstr "Marokko"
|
1094 |
|
1095 |
-
#: admin/class-settings.php:
|
1096 |
msgid "Mozambique"
|
1097 |
msgstr "Mozambique"
|
1098 |
|
1099 |
-
#: admin/class-settings.php:
|
1100 |
msgid "Myanmar"
|
1101 |
msgstr "Myanmar"
|
1102 |
|
1103 |
-
#: admin/class-settings.php:
|
1104 |
msgid "Namibia"
|
1105 |
msgstr "Namibië"
|
1106 |
|
1107 |
-
#: admin/class-settings.php:
|
1108 |
msgid "Nauru"
|
1109 |
msgstr "Nauru"
|
1110 |
|
1111 |
-
#: admin/class-settings.php:
|
1112 |
msgid "Nepal"
|
1113 |
msgstr "Nepal"
|
1114 |
|
1115 |
-
#: admin/class-settings.php:
|
1116 |
msgid "Netherlands"
|
1117 |
msgstr "Nederland"
|
1118 |
|
1119 |
-
#: admin/class-settings.php:
|
1120 |
msgid "Netherlands Antilles"
|
1121 |
msgstr "Nederlandse Antillen"
|
1122 |
|
1123 |
-
#: admin/class-settings.php:
|
1124 |
msgid "New Zealand"
|
1125 |
msgstr "Nieuw Zeeland"
|
1126 |
|
1127 |
-
#: admin/class-settings.php:
|
1128 |
msgid "Nicaragua"
|
1129 |
msgstr "Nicaragua"
|
1130 |
|
1131 |
-
#: admin/class-settings.php:
|
1132 |
msgid "Niger"
|
1133 |
msgstr "Niger"
|
1134 |
|
1135 |
-
#: admin/class-settings.php:
|
1136 |
msgid "Nigeria"
|
1137 |
msgstr "Nigeria"
|
1138 |
|
1139 |
-
#: admin/class-settings.php:
|
1140 |
msgid "Niue"
|
1141 |
msgstr "Niue"
|
1142 |
|
1143 |
-
#: admin/class-settings.php:
|
1144 |
msgid "Northern Mariana Islands"
|
1145 |
msgstr "Noordelijke Marianen"
|
1146 |
|
1147 |
-
#: admin/class-settings.php:
|
1148 |
msgid "Norway"
|
1149 |
msgstr "Noorwegen"
|
1150 |
|
1151 |
-
#: admin/class-settings.php:
|
1152 |
msgid "Oman"
|
1153 |
msgstr "Oman"
|
1154 |
|
1155 |
-
#: admin/class-settings.php:
|
1156 |
msgid "Pakistan"
|
1157 |
msgstr "Pakistan"
|
1158 |
|
1159 |
-
#: admin/class-settings.php:
|
1160 |
msgid "Panama"
|
1161 |
msgstr "Panama"
|
1162 |
|
1163 |
-
#: admin/class-settings.php:
|
1164 |
msgid "Papua New Guinea"
|
1165 |
msgstr "Papoea-Nieuw-Guinea"
|
1166 |
|
1167 |
-
#: admin/class-settings.php:
|
1168 |
msgid "Paraguay"
|
1169 |
msgstr "Paraguay"
|
1170 |
|
1171 |
-
#: admin/class-settings.php:
|
1172 |
msgid "Peru"
|
1173 |
msgstr "Peru"
|
1174 |
|
1175 |
-
#: admin/class-settings.php:
|
1176 |
msgid "Philippines"
|
1177 |
msgstr "Filipijnen"
|
1178 |
|
1179 |
-
#: admin/class-settings.php:
|
1180 |
msgid "Pitcairn Islands"
|
1181 |
msgstr "Pitcairneilanden"
|
1182 |
|
1183 |
-
#: admin/class-settings.php:
|
1184 |
msgid "Poland"
|
1185 |
msgstr "Polen"
|
1186 |
|
1187 |
-
#: admin/class-settings.php:
|
1188 |
msgid "Portugal"
|
1189 |
msgstr "Portugal"
|
1190 |
|
1191 |
-
#: admin/class-settings.php:
|
1192 |
msgid "Qatar"
|
1193 |
msgstr "Qatar"
|
1194 |
|
1195 |
-
#: admin/class-settings.php:
|
1196 |
msgid "Reunion"
|
1197 |
msgstr "Réunion"
|
1198 |
|
1199 |
-
#: admin/class-settings.php:
|
1200 |
msgid "Romania"
|
1201 |
msgstr "Roemenië"
|
1202 |
|
1203 |
-
#: admin/class-settings.php:
|
1204 |
msgid "Russia"
|
1205 |
msgstr "Rusland"
|
1206 |
|
1207 |
-
#: admin/class-settings.php:
|
1208 |
msgid "Rwanda"
|
1209 |
msgstr "Rwanda"
|
1210 |
|
1211 |
-
#: admin/class-settings.php:
|
1212 |
msgid "Saint Helena"
|
1213 |
msgstr "Sint-Helena"
|
1214 |
|
1215 |
-
#: admin/class-settings.php:
|
1216 |
msgid "Saint Kitts and Nevis"
|
1217 |
msgstr "Saint Kitts en Nevis"
|
1218 |
|
1219 |
-
#: admin/class-settings.php:
|
1220 |
msgid "Saint Vincent and the Grenadines"
|
1221 |
msgstr "Saint Vincent en de Grenadines"
|
1222 |
|
1223 |
-
#: admin/class-settings.php:
|
1224 |
msgid "Saint Lucia"
|
1225 |
msgstr "Saint Lucia"
|
1226 |
|
1227 |
-
#: admin/class-settings.php:
|
1228 |
msgid "Samoa"
|
1229 |
msgstr "Samoa"
|
1230 |
|
1231 |
-
#: admin/class-settings.php:
|
1232 |
msgid "San Marino"
|
1233 |
msgstr "San Marino"
|
1234 |
|
1235 |
-
#: admin/class-settings.php:
|
1236 |
msgid "São Tomé and Príncipe"
|
1237 |
msgstr "Sao Tomé en Principe"
|
1238 |
|
1239 |
-
#: admin/class-settings.php:
|
1240 |
msgid "Saudi Arabia"
|
1241 |
msgstr "Saoedi-Arabië"
|
1242 |
|
1243 |
-
#: admin/class-settings.php:
|
1244 |
msgid "Senegal"
|
1245 |
msgstr "Senegal"
|
1246 |
|
1247 |
-
#: admin/class-settings.php:
|
1248 |
msgid "Serbia"
|
1249 |
msgstr "Servië"
|
1250 |
|
1251 |
-
#: admin/class-settings.php:
|
1252 |
msgid "Seychelles"
|
1253 |
msgstr "Seychellen"
|
1254 |
|
1255 |
-
#: admin/class-settings.php:
|
1256 |
msgid "Sierra Leone"
|
1257 |
msgstr "Sierra Leone"
|
1258 |
|
1259 |
-
#: admin/class-settings.php:
|
1260 |
msgid "Singapore"
|
1261 |
msgstr "Singapore"
|
1262 |
|
1263 |
-
#: admin/class-settings.php:
|
1264 |
msgid "Slovakia"
|
1265 |
msgstr "Slowakije"
|
1266 |
|
1267 |
-
#: admin/class-settings.php:
|
1268 |
msgid "Solomon Islands"
|
1269 |
msgstr "Salomonseilanden"
|
1270 |
|
1271 |
-
#: admin/class-settings.php:
|
1272 |
msgid "Somalia"
|
1273 |
msgstr "Somalie"
|
1274 |
|
1275 |
-
#: admin/class-settings.php:
|
1276 |
msgid "South Africa"
|
1277 |
msgstr "Zuid Afrika"
|
1278 |
|
1279 |
-
#: admin/class-settings.php:
|
1280 |
msgid "South Korea"
|
1281 |
msgstr "Zuid Korea"
|
1282 |
|
1283 |
-
#: admin/class-settings.php:
|
1284 |
msgid "Spain"
|
1285 |
msgstr "Spanje"
|
1286 |
|
1287 |
-
#: admin/class-settings.php:
|
1288 |
msgid "Sri Lanka"
|
1289 |
msgstr "Sri Lanka"
|
1290 |
|
1291 |
-
#: admin/class-settings.php:
|
1292 |
msgid "Sudan"
|
1293 |
msgstr "Sudan"
|
1294 |
|
1295 |
-
#: admin/class-settings.php:
|
1296 |
msgid "Swaziland"
|
1297 |
msgstr "Swaziland "
|
1298 |
|
1299 |
-
#: admin/class-settings.php:
|
1300 |
msgid "Sweden"
|
1301 |
msgstr "Zweden"
|
1302 |
|
1303 |
-
#: admin/class-settings.php:
|
1304 |
msgid "Switzerland"
|
1305 |
msgstr "Zwitserland"
|
1306 |
|
1307 |
-
#: admin/class-settings.php:
|
1308 |
msgid "Syria"
|
1309 |
msgstr "Syrië"
|
1310 |
|
1311 |
-
#: admin/class-settings.php:
|
1312 |
msgid "Taiwan"
|
1313 |
msgstr "Taiwan"
|
1314 |
|
1315 |
-
#: admin/class-settings.php:
|
1316 |
msgid "Tajikistan"
|
1317 |
msgstr "Tajikistan"
|
1318 |
|
1319 |
-
#: admin/class-settings.php:
|
1320 |
msgid "Tanzania"
|
1321 |
msgstr "Tanzania"
|
1322 |
|
1323 |
-
#: admin/class-settings.php:
|
1324 |
msgid "Thailand"
|
1325 |
msgstr "Thailand"
|
1326 |
|
1327 |
-
#: admin/class-settings.php:
|
1328 |
msgid "Timor-Leste"
|
1329 |
msgstr "Oost-Timor"
|
1330 |
|
1331 |
-
#: admin/class-settings.php:
|
1332 |
msgid "Tokelau"
|
1333 |
msgstr "Tokelau"
|
1334 |
|
1335 |
-
#: admin/class-settings.php:
|
1336 |
msgid "Togo"
|
1337 |
msgstr "Togo"
|
1338 |
|
1339 |
-
#: admin/class-settings.php:
|
1340 |
msgid "Tonga"
|
1341 |
msgstr "Tonga"
|
1342 |
|
1343 |
-
#: admin/class-settings.php:
|
1344 |
msgid "Trinidad and Tobago"
|
1345 |
msgstr "Trinidad en Tobago"
|
1346 |
|
1347 |
-
#: admin/class-settings.php:
|
1348 |
msgid "Tunisia"
|
1349 |
msgstr "Tunesië"
|
1350 |
|
1351 |
-
#: admin/class-settings.php:
|
1352 |
msgid "Turkey"
|
1353 |
msgstr "Turkije"
|
1354 |
|
1355 |
-
#: admin/class-settings.php:
|
1356 |
msgid "Turkmenistan"
|
1357 |
msgstr "Turkmenistan"
|
1358 |
|
1359 |
-
#: admin/class-settings.php:
|
1360 |
msgid "Tuvalu"
|
1361 |
msgstr "Tuvalu"
|
1362 |
|
1363 |
-
#: admin/class-settings.php:
|
1364 |
msgid "Uganda"
|
1365 |
msgstr "Uganda"
|
1366 |
|
1367 |
-
#: admin/class-settings.php:
|
1368 |
msgid "Ukraine"
|
1369 |
msgstr "Oekraïne"
|
1370 |
|
1371 |
-
#: admin/class-settings.php:
|
1372 |
msgid "United Arab Emirates"
|
1373 |
msgstr "Verenigde Arabische Emiraten"
|
1374 |
|
1375 |
-
#: admin/class-settings.php:
|
1376 |
msgid "United Kingdom"
|
1377 |
msgstr "Verenigd Koninkrijk"
|
1378 |
|
1379 |
-
#: admin/class-settings.php:
|
1380 |
msgid "United States"
|
1381 |
msgstr "Verenigde Staten"
|
1382 |
|
1383 |
-
#: admin/class-settings.php:
|
1384 |
msgid "Uruguay"
|
1385 |
msgstr "Uruguay"
|
1386 |
|
1387 |
-
#: admin/class-settings.php:
|
1388 |
msgid "Uzbekistan"
|
1389 |
msgstr "Uzbekistan"
|
1390 |
|
1391 |
-
#: admin/class-settings.php:
|
1392 |
msgid "Wallis Futuna"
|
1393 |
msgstr "Wallis en Futuna"
|
1394 |
|
1395 |
-
#: admin/class-settings.php:
|
1396 |
msgid "Venezuela"
|
1397 |
msgstr "Venezuela"
|
1398 |
|
1399 |
-
#: admin/class-settings.php:
|
1400 |
msgid "Vietnam"
|
1401 |
msgstr "Vietnam"
|
1402 |
|
1403 |
-
#: admin/class-settings.php:
|
1404 |
msgid "Yemen"
|
1405 |
msgstr "Yemen"
|
1406 |
|
1407 |
-
#: admin/class-settings.php:
|
1408 |
msgid "Zambia"
|
1409 |
msgstr "Zambia"
|
1410 |
|
1411 |
-
#: admin/class-settings.php:
|
1412 |
msgid "Zimbabwe"
|
1413 |
msgstr "Zimbabwe"
|
1414 |
|
1415 |
-
#: admin/class-settings.php:
|
1416 |
msgid "World view"
|
1417 |
msgstr "Wereldkaart"
|
1418 |
|
1419 |
-
#: admin/class-settings.php:
|
1420 |
-
#: inc/wpsl-functions.php:
|
1421 |
msgid "Default"
|
1422 |
msgstr "Standaard"
|
1423 |
|
1424 |
-
#: admin/class-settings.php:
|
1425 |
msgid "Roadmap"
|
1426 |
msgstr "Wegenkaart"
|
1427 |
|
1428 |
-
#: admin/class-settings.php:
|
1429 |
msgid "Start location marker"
|
1430 |
msgstr "Start locatie marker"
|
1431 |
|
1432 |
-
#: admin/class-settings.php:
|
1433 |
msgid "Store location marker"
|
1434 |
msgstr "Winkel locatie marker"
|
1435 |
|
1436 |
-
#: admin/class-settings.php:
|
1437 |
msgid "Textarea"
|
1438 |
msgstr "Tekstvlak"
|
1439 |
|
1440 |
-
#: admin/class-settings.php:
|
1441 |
msgid "Dropdowns (recommended)"
|
1442 |
msgstr "Dropdown (aangeraden)"
|
1443 |
|
1444 |
-
#: admin/class-settings.php:
|
1445 |
msgid "Bounces up and down"
|
1446 |
msgstr "Beweegt op en neer"
|
1447 |
|
1448 |
-
#: admin/class-settings.php:
|
1449 |
msgid "Will open the info window"
|
1450 |
msgstr "Opent de info window"
|
1451 |
|
1452 |
-
#: admin/class-settings.php:
|
1453 |
msgid "Does not respond"
|
1454 |
msgstr "Reageert niet"
|
1455 |
|
1456 |
-
#: admin/class-settings.php:
|
1457 |
msgid "In the store listings"
|
1458 |
msgstr "In de locatie lijst"
|
1459 |
|
1460 |
-
#: admin/class-settings.php:
|
1461 |
msgid "In the info window on the map"
|
1462 |
msgstr "In de info window op de kaart"
|
1463 |
|
1464 |
-
#: admin/class-settings.php:
|
1465 |
msgid "Dropdown"
|
1466 |
msgstr "Dropdown"
|
1467 |
|
1468 |
-
#: admin/class-settings.php:
|
1469 |
msgid "Checkboxes"
|
1470 |
msgstr "Checkboxes"
|
1471 |
|
1472 |
-
#: admin/class-settings.php:
|
1473 |
msgid "12 Hours"
|
1474 |
msgstr "12 uur"
|
1475 |
|
1476 |
-
#: admin/class-settings.php:
|
1477 |
msgid "24 Hours"
|
1478 |
msgstr "24 uur"
|
1479 |
|
@@ -1517,7 +1535,7 @@ msgstr "Deactiveer licensie"
|
|
1517 |
#: admin/templates/map-settings.php:170 admin/templates/map-settings.php:249
|
1518 |
#: admin/templates/map-settings.php:352 admin/templates/map-settings.php:380
|
1519 |
#: admin/templates/map-settings.php:430 admin/templates/map-settings.php:458
|
1520 |
-
#: admin/templates/map-settings.php:570 admin/templates/map-settings.php:
|
1521 |
msgid "Save Changes"
|
1522 |
msgstr "Wijzigingen opslaan"
|
1523 |
|
@@ -1533,16 +1551,9 @@ msgstr "Server sleutel"
|
|
1533 |
#, php-format
|
1534 |
msgid ""
|
1535 |
"A %sserver key%s allows you to monitor the usage of the Google Maps "
|
1536 |
-
"%sGeocoding API%s
|
1537 |
-
"
|
1538 |
msgstr ""
|
1539 |
-
"Een %sserver sleutel%s maakt het mogelijk om het gebruik van de Google Maps "
|
1540 |
-
"%sGeocoding API%s in de gaten te houden, en is verplicht als je de %slimiet"
|
1541 |
-
"%s wil verhogen."
|
1542 |
-
|
1543 |
-
#: admin/templates/map-settings.php:95 admin/templates/map-settings.php:99
|
1544 |
-
msgid "Optional"
|
1545 |
-
msgstr "Optioneel"
|
1546 |
|
1547 |
#: admin/templates/map-settings.php:98
|
1548 |
msgid "Browser key"
|
@@ -1552,10 +1563,9 @@ msgstr "Browser sleutel"
|
|
1552 |
#, php-format
|
1553 |
msgid ""
|
1554 |
"A %sbrowser key%s allows you to monitor the usage of the Google Maps "
|
1555 |
-
"%sJavaScript API%s."
|
|
|
1556 |
msgstr ""
|
1557 |
-
"Een %sbrowser key%s maakt het mogelijk om het gebruik van de Google "
|
1558 |
-
"%sJavaScript API%s in de gaten te houden."
|
1559 |
|
1560 |
#: admin/templates/map-settings.php:102
|
1561 |
msgid "Map language"
|
@@ -1601,8 +1611,8 @@ msgstr ""
|
|
1601 |
"%s Je kan de gebruikte restricties aanpassen met %sdeze%s filter."
|
1602 |
|
1603 |
#: admin/templates/map-settings.php:128 admin/templates/map-settings.php:494
|
1604 |
-
#: admin/templates/map-settings.php:495 frontend/templates/default.php:
|
1605 |
-
#: frontend/templates/store-listings-below.php:44 inc/wpsl-functions.php:
|
1606 |
msgid "Search"
|
1607 |
msgstr "Zoek"
|
1608 |
|
@@ -1658,6 +1668,15 @@ msgstr "Kaart"
|
|
1658 |
msgid "Attempt to auto-locate the user"
|
1659 |
msgstr "Probeer de locatie van de gebruiker automatische te achterhalen"
|
1660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1661 |
#: admin/templates/map-settings.php:187
|
1662 |
msgid "Load locations on page load"
|
1663 |
msgstr "Toon alle locaties op de kaart zodra de pagina geladen is"
|
@@ -2115,18 +2134,18 @@ msgstr ""
|
|
2115 |
|
2116 |
#: admin/templates/map-settings.php:482 admin/templates/map-settings.php:483
|
2117 |
#: frontend/templates/default.php:12
|
2118 |
-
#: frontend/templates/store-listings-below.php:12 inc/wpsl-functions.php:
|
2119 |
msgid "Your location"
|
2120 |
msgstr "Uw locatie"
|
2121 |
|
2122 |
#: admin/templates/map-settings.php:486 admin/templates/map-settings.php:487
|
2123 |
#: frontend/templates/default.php:21
|
2124 |
-
#: frontend/templates/store-listings-below.php:21 inc/wpsl-functions.php:
|
2125 |
msgid "Search radius"
|
2126 |
msgstr "Zoek radius"
|
2127 |
|
2128 |
#: admin/templates/map-settings.php:490 admin/templates/map-settings.php:491
|
2129 |
-
#: frontend/class-frontend.php:
|
2130 |
msgid "No results found"
|
2131 |
msgstr "Geen resultaten gevonden"
|
2132 |
|
@@ -2134,23 +2153,23 @@ msgstr "Geen resultaten gevonden"
|
|
2134 |
msgid "Searching (preloader text)"
|
2135 |
msgstr "Aan het zoeken (preloader tekst)"
|
2136 |
|
2137 |
-
#: admin/templates/map-settings.php:499 frontend/class-frontend.php:
|
2138 |
-
#: inc/wpsl-functions.php:
|
2139 |
msgid "Searching..."
|
2140 |
msgstr "Zoeken..."
|
2141 |
|
2142 |
#: admin/templates/map-settings.php:502 admin/templates/map-settings.php:503
|
2143 |
#: frontend/templates/default.php:30
|
2144 |
-
#: frontend/templates/store-listings-below.php:30 inc/wpsl-functions.php:
|
2145 |
msgid "Results"
|
2146 |
msgstr "Resultaten"
|
2147 |
|
2148 |
#: admin/templates/map-settings.php:506 admin/upgrade.php:206
|
2149 |
-
#: inc/wpsl-functions.php:
|
2150 |
msgid "Category filter"
|
2151 |
msgstr "Categorie filter"
|
2152 |
|
2153 |
-
#: admin/templates/map-settings.php:507 frontend/class-frontend.php:
|
2154 |
msgid "Category"
|
2155 |
msgstr "Categorie"
|
2156 |
|
@@ -2159,26 +2178,26 @@ msgid "Category first item"
|
|
2159 |
msgstr "Eerste categorie item"
|
2160 |
|
2161 |
#: admin/templates/map-settings.php:511 admin/upgrade.php:367
|
2162 |
-
#: frontend/class-frontend.php:
|
2163 |
msgid "Any"
|
2164 |
msgstr "Alle"
|
2165 |
|
2166 |
#: admin/templates/map-settings.php:514 admin/templates/map-settings.php:515
|
2167 |
-
#: admin/upgrade.php:59 frontend/class-frontend.php:
|
2168 |
-
#: frontend/underscore-functions.php:
|
2169 |
-
#: inc/wpsl-functions.php:
|
2170 |
msgid "More info"
|
2171 |
msgstr "Meer info"
|
2172 |
|
2173 |
#: admin/templates/map-settings.php:518 admin/templates/map-settings.php:519
|
2174 |
-
#: frontend/class-frontend.php:
|
2175 |
-
#: frontend/underscore-functions.php:
|
2176 |
-
#: inc/wpsl-functions.php:
|
2177 |
msgid "Phone"
|
2178 |
msgstr "Telefoon"
|
2179 |
|
2180 |
#: admin/templates/map-settings.php:538 admin/templates/map-settings.php:539
|
2181 |
-
#: frontend/class-frontend.php:
|
2182 |
msgid "Start location"
|
2183 |
msgstr "Start locatie"
|
2184 |
|
@@ -2186,8 +2205,8 @@ msgstr "Start locatie"
|
|
2186 |
msgid "Get directions"
|
2187 |
msgstr "Toon routebeschrijving"
|
2188 |
|
2189 |
-
#: admin/templates/map-settings.php:543 frontend/class-frontend.php:
|
2190 |
-
#: inc/wpsl-functions.php:
|
2191 |
msgid "Directions"
|
2192 |
msgstr "Routebeschrijving"
|
2193 |
|
@@ -2196,25 +2215,25 @@ msgid "No directions found"
|
|
2196 |
msgstr "Geen routebeschrijving beschikbaar"
|
2197 |
|
2198 |
#: admin/templates/map-settings.php:547 admin/upgrade.php:151
|
2199 |
-
#: frontend/class-frontend.php:
|
2200 |
msgid "No route could be found between the origin and destination"
|
2201 |
msgstr "Er kon geen route gevonden worden tussen het begin- en eindpunt"
|
2202 |
|
2203 |
#: admin/templates/map-settings.php:550 admin/templates/map-settings.php:551
|
2204 |
-
#: admin/upgrade.php:77 frontend/class-frontend.php:
|
2205 |
-
#: inc/wpsl-functions.php:
|
2206 |
msgid "Back"
|
2207 |
msgstr "Terug"
|
2208 |
|
2209 |
#: admin/templates/map-settings.php:554 admin/templates/map-settings.php:555
|
2210 |
-
#: admin/upgrade.php:143 frontend/class-frontend.php:
|
2211 |
-
#: inc/wpsl-functions.php:
|
2212 |
msgid "Street view"
|
2213 |
msgstr "Street view"
|
2214 |
|
2215 |
#: admin/templates/map-settings.php:558 admin/templates/map-settings.php:559
|
2216 |
-
#: admin/upgrade.php:147 frontend/class-frontend.php:
|
2217 |
-
#: inc/wpsl-functions.php:
|
2218 |
msgid "Zoom here"
|
2219 |
msgstr "Zoom hier"
|
2220 |
|
@@ -2222,8 +2241,8 @@ msgstr "Zoom hier"
|
|
2222 |
msgid "General error"
|
2223 |
msgstr "Foutmelding"
|
2224 |
|
2225 |
-
#: admin/templates/map-settings.php:563 frontend/class-frontend.php:
|
2226 |
-
#: inc/wpsl-functions.php:
|
2227 |
msgid "Something went wrong, please try again!"
|
2228 |
msgstr "Er ging iets fout, probeer het nog een keer!"
|
2229 |
|
@@ -2240,8 +2259,8 @@ msgstr ""
|
|
2240 |
"Je kan de %sgebruiks limiet%s verhogen door een API %ssleutel%s aan te "
|
2241 |
"vragen en die in het \"API sleutel\" veld bovenaan de pagina in te vullen."
|
2242 |
|
2243 |
-
#: admin/templates/map-settings.php:567 frontend/class-frontend.php:
|
2244 |
-
#: inc/wpsl-functions.php:
|
2245 |
msgid "API usage limit reached"
|
2246 |
msgstr "API gebruikslimiet bereikt"
|
2247 |
|
@@ -2264,10 +2283,23 @@ msgstr ""
|
|
2264 |
"geladen is%s optie is geactiveerd."
|
2265 |
|
2266 |
#: admin/templates/map-settings.php:587
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2267 |
msgid "WPSL transients"
|
2268 |
msgstr "WPSL transients"
|
2269 |
|
2270 |
-
#: admin/templates/map-settings.php:
|
2271 |
msgid "Clear store locator transient cache"
|
2272 |
msgstr "Verwijder het store locator transient cache."
|
2273 |
|
@@ -2279,15 +2311,15 @@ msgstr "info window"
|
|
2279 |
msgid "Reset"
|
2280 |
msgstr "Herstel"
|
2281 |
|
2282 |
-
#: admin/upgrade.php:174 inc/wpsl-functions.php:
|
2283 |
msgid "stores"
|
2284 |
msgstr "winkels"
|
2285 |
|
2286 |
-
#: admin/upgrade.php:178 inc/wpsl-functions.php:
|
2287 |
msgid "store-category"
|
2288 |
msgstr "winkel-categorie"
|
2289 |
|
2290 |
-
#: admin/upgrade.php:
|
2291 |
#, php-format
|
2292 |
msgid ""
|
2293 |
"Because you updated WP Store Locator from version 1.x, the %s current store "
|
@@ -2296,7 +2328,7 @@ msgstr ""
|
|
2296 |
"Doordat je WP Store Locator update van versie 1.x, de %s huidige winkel "
|
2297 |
"locaties moeten worden %somgezet%s naar custom post types."
|
2298 |
|
2299 |
-
#: admin/upgrade.php:
|
2300 |
#, php-format
|
2301 |
msgid ""
|
2302 |
"The script converting the locations timed out. %s You can click the \"Start "
|
@@ -2314,15 +2346,15 @@ msgstr ""
|
|
2314 |
"heeft al geprobeerd om de maximum execution time uit te zetten, maar als je "
|
2315 |
"dit leest dan is dat mislukt."
|
2316 |
|
2317 |
-
#: admin/upgrade.php:
|
2318 |
msgid "Store locations to convert:"
|
2319 |
msgstr "Locaties die omgezet worden:"
|
2320 |
|
2321 |
-
#: admin/upgrade.php:
|
2322 |
msgid "Start Converting"
|
2323 |
msgstr "Begin met omzetten"
|
2324 |
|
2325 |
-
#: admin/upgrade.php:
|
2326 |
#, php-format
|
2327 |
msgid ""
|
2328 |
"All the store locations are now converted to custom post types. %s You can "
|
@@ -2331,7 +2363,7 @@ msgstr ""
|
|
2331 |
"Alle winkel locaties zijn nu omgezet naar custom post types. %s Je kunt ze "
|
2332 |
"bekijken op de %sAlle Winkels%s pagina."
|
2333 |
|
2334 |
-
#: frontend/class-frontend.php:
|
2335 |
msgid ""
|
2336 |
"If you use the [wpsl_address] shortcode outside a store page you need to set "
|
2337 |
"the ID attribute."
|
@@ -2339,7 +2371,7 @@ msgstr ""
|
|
2339 |
"Als je de [wpsl_address] shortcode op een pagina gebruikt die geen winkel "
|
2340 |
"pagina is dan is de ID attribute verplicht."
|
2341 |
|
2342 |
-
#: frontend/class-frontend.php:
|
2343 |
msgid ""
|
2344 |
"If you use the [wpsl_hours] shortcode outside a store page you need to set "
|
2345 |
"the ID attribute."
|
@@ -2347,7 +2379,7 @@ msgstr ""
|
|
2347 |
"Als je de [wpsl_hours] shortcode op een pagina gebruikt die geen winkel "
|
2348 |
"pagina is dan is de ID attribute verplicht."
|
2349 |
|
2350 |
-
#: frontend/class-frontend.php:
|
2351 |
msgid ""
|
2352 |
"If you use the [wpsl_map] shortcode outside a store page, then you need to "
|
2353 |
"set the ID or category attribute."
|
@@ -2355,20 +2387,20 @@ msgstr ""
|
|
2355 |
"Als de [wpsl_map] shortcode buiten een winkel page is geplaatst, dan moet je "
|
2356 |
"de ID of category attribute opgeven."
|
2357 |
|
2358 |
-
#: frontend/class-frontend.php:
|
2359 |
msgid "The application does not have permission to use the Geolocation API."
|
2360 |
msgstr ""
|
2361 |
"Deze applicatie heeft geen toestemming om de Geolocation API te gebruiken."
|
2362 |
|
2363 |
-
#: frontend/class-frontend.php:
|
2364 |
msgid "Location information is unavailable."
|
2365 |
msgstr "Informatie over de huidige locatie is niet beschikbaar."
|
2366 |
|
2367 |
-
#: frontend/class-frontend.php:
|
2368 |
msgid "The geolocation request timed out."
|
2369 |
msgstr "Het geolocation verzoek timed out."
|
2370 |
|
2371 |
-
#: frontend/class-frontend.php:
|
2372 |
msgid "An unknown error occurred."
|
2373 |
msgstr " Er heeft zich een onbekende fout voorgedaan."
|
2374 |
|
@@ -2378,179 +2410,216 @@ msgstr " Er heeft zich een onbekende fout voorgedaan."
|
|
2378 |
msgid "Search provided by %sWP Store Locator%s"
|
2379 |
msgstr "Ondersteund door %sWP Store Locator%s"
|
2380 |
|
2381 |
-
#: inc/class-post-types.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2382 |
msgid "Store"
|
2383 |
msgstr "winkel"
|
2384 |
|
2385 |
-
#: inc/class-post-types.php:
|
2386 |
-
msgid "
|
2387 |
-
msgstr "
|
2388 |
-
|
2389 |
-
#: inc/class-post-types.php:55
|
2390 |
-
msgid "Store Locator"
|
2391 |
-
msgstr "Store Locator"
|
2392 |
|
2393 |
#: inc/class-post-types.php:56
|
2394 |
-
|
2395 |
-
|
2396 |
-
msgstr "Alle %s"
|
2397 |
|
2398 |
-
#: inc/class-post-types.php:
|
2399 |
-
|
2400 |
-
|
2401 |
-
msgstr "Nieuwe %s"
|
2402 |
|
2403 |
#: inc/class-post-types.php:59
|
2404 |
-
|
2405 |
-
|
2406 |
-
msgstr "Nieuwe %s"
|
2407 |
|
2408 |
#: inc/class-post-types.php:60
|
2409 |
-
|
2410 |
-
|
2411 |
-
msgstr "Bewerk %s"
|
2412 |
-
|
2413 |
-
#: inc/class-post-types.php:62
|
2414 |
-
#, php-format
|
2415 |
-
msgid "View %s"
|
2416 |
-
msgstr "Bekijk %s"
|
2417 |
|
2418 |
-
#: inc/class-post-types.php:
|
2419 |
-
|
2420 |
-
|
2421 |
-
msgstr "Zoek %s"
|
2422 |
-
|
2423 |
-
#: inc/class-post-types.php:64
|
2424 |
-
#, php-format
|
2425 |
-
msgid "No %s found"
|
2426 |
-
msgstr "Geen %s gevonden"
|
2427 |
|
2428 |
-
#: inc/class-post-types.php:
|
2429 |
-
|
2430 |
-
|
2431 |
-
msgstr "Geen %s gevonden in de prullenbak"
|
2432 |
|
2433 |
-
#: inc/class-post-types.php:
|
2434 |
msgid "Store Categories"
|
2435 |
msgstr "Winkel categorieën"
|
2436 |
|
2437 |
-
#: inc/class-post-types.php:
|
2438 |
msgid "Store Category"
|
2439 |
msgstr "Winkel categorie"
|
2440 |
|
2441 |
-
#: inc/class-post-types.php:
|
2442 |
msgid "Search Store Categories"
|
2443 |
msgstr "Zoek winkel categorieën"
|
2444 |
|
2445 |
-
#: inc/class-post-types.php:
|
2446 |
msgid "All Store Categories"
|
2447 |
msgstr "Alle winkel categorieën"
|
2448 |
|
2449 |
-
#: inc/class-post-types.php:
|
2450 |
msgid "Parent Store Category"
|
2451 |
msgstr "Hoofd winkel categorie"
|
2452 |
|
2453 |
-
#: inc/class-post-types.php:
|
2454 |
msgid "Parent Store Category:"
|
2455 |
msgstr "Hoofd winkel categorie:"
|
2456 |
|
2457 |
-
#: inc/class-post-types.php:
|
2458 |
msgid "Edit Store Category"
|
2459 |
msgstr "Wijzig winkel categorie"
|
2460 |
|
2461 |
-
#: inc/class-post-types.php:
|
2462 |
msgid "Update Store Category"
|
2463 |
msgstr "Winkel categorie bijwerken"
|
2464 |
|
2465 |
-
#: inc/class-post-types.php:
|
2466 |
msgid "Add New Store Category"
|
2467 |
msgstr "Voeg winkel categorie toe"
|
2468 |
|
2469 |
-
#: inc/class-post-types.php:
|
2470 |
msgid "New Store Category Name"
|
2471 |
msgstr "Naam winkel categorie"
|
2472 |
|
2473 |
-
#: inc/class-post-types.php:
|
2474 |
msgid "Enter store title here"
|
2475 |
msgstr "Voer winkel naam in"
|
2476 |
|
2477 |
-
#: inc/class-post-types.php:
|
2478 |
msgid "Zip"
|
2479 |
msgstr "Postcode"
|
2480 |
|
2481 |
-
#: inc/wpsl-functions.php:
|
2482 |
msgid "Show the store list below the map"
|
2483 |
msgstr "Toon the locatie lijst onder de kaart"
|
2484 |
|
2485 |
-
#: inc/wpsl-functions.php:
|
2486 |
msgid "Monday"
|
2487 |
msgstr "Maandag"
|
2488 |
|
2489 |
-
#: inc/wpsl-functions.php:
|
2490 |
msgid "Tuesday"
|
2491 |
msgstr "Dinsdag"
|
2492 |
|
2493 |
-
#: inc/wpsl-functions.php:
|
2494 |
msgid "Wednesday"
|
2495 |
msgstr "Woensdag"
|
2496 |
|
2497 |
-
#: inc/wpsl-functions.php:
|
2498 |
msgid "Thursday"
|
2499 |
msgstr "Donderdag"
|
2500 |
|
2501 |
-
#: inc/wpsl-functions.php:
|
2502 |
msgid "Friday"
|
2503 |
msgstr "Vrijdag"
|
2504 |
|
2505 |
-
#: inc/wpsl-functions.php:
|
2506 |
msgid "Saturday"
|
2507 |
msgstr "Zaterdag"
|
2508 |
|
2509 |
-
#: inc/wpsl-functions.php:
|
2510 |
msgid "Sunday"
|
2511 |
msgstr "Zondag"
|
2512 |
|
2513 |
-
#: inc/wpsl-functions.php:
|
2514 |
#, php-format
|
2515 |
msgid "Mon %sTue %sWed %sThu %sFri %sSat Closed %sSun Closed"
|
2516 |
msgstr "ma %sdi %swoe %sdo %svrij %szat gesloten %szo gesloten"
|
2517 |
|
2518 |
-
#: inc/wpsl-functions.php:
|
2519 |
msgid "Satellite"
|
2520 |
msgstr "Satelliet"
|
2521 |
|
2522 |
-
#: inc/wpsl-functions.php:
|
2523 |
msgid "Hybrid"
|
2524 |
msgstr "Hybrid"
|
2525 |
|
2526 |
-
#: inc/wpsl-functions.php:
|
2527 |
msgid "Terrain"
|
2528 |
msgstr "Terrein"
|
2529 |
|
2530 |
-
#: inc/wpsl-functions.php:
|
2531 |
msgid "(city) (state) (zip code)"
|
2532 |
msgstr "(stad) (provincie) (postcode)"
|
2533 |
|
2534 |
-
#: inc/wpsl-functions.php:
|
2535 |
msgid "(city), (state) (zip code)"
|
2536 |
msgstr "(stad), (provincie), (postcode)"
|
2537 |
|
2538 |
-
#: inc/wpsl-functions.php:
|
2539 |
msgid "(city) (zip code)"
|
2540 |
msgstr "(stad) (postcode)"
|
2541 |
|
2542 |
-
#: inc/wpsl-functions.php:
|
2543 |
msgid "(city), (zip code)"
|
2544 |
msgstr "(stad), (postcode)"
|
2545 |
|
2546 |
-
#: inc/wpsl-functions.php:
|
2547 |
msgid "(zip code) (city) (state)"
|
2548 |
msgstr "(postcode) (stad) (provincie)"
|
2549 |
|
2550 |
-
#: inc/wpsl-functions.php:
|
2551 |
msgid "(zip code) (city)"
|
2552 |
msgstr "(postcode) (stad)"
|
2553 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2554 |
#~ msgid "Please try again later."
|
2555 |
#~ msgstr "Probeer het later nog een keer."
|
2556 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: WP Store Locator 2.2.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-11 16:49+0700\n"
|
6 |
+
"PO-Revision-Date: 2016-12-11 16:49+0700\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: nl_NL\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Generator: Poedit 1.8.11\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: admin/class-admin.php:116
|
23 |
#, php-format
|
24 |
msgid ""
|
25 |
"Before adding the [wpsl] shortcode to a page, please don't forget to define "
|
28 |
"Vergeet niet voordat je de [wpsl] shortcode op een pagina plaatst, om een "
|
29 |
"start locatie op te geven op de %sinstellingen%s pagina. %sSluit%s"
|
30 |
|
31 |
+
#: admin/class-admin.php:118
|
32 |
+
#, php-format
|
33 |
+
msgid ""
|
34 |
+
"As of %sJune 22, 2016%s Google Maps no longer allows request for new "
|
35 |
+
"projects that doesn't include an %sAPI key%s. %sDismiss%s"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: admin/class-admin.php:155
|
39 |
+
msgid "Security check failed. Please reload the page and try again."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: admin/class-admin.php:174 admin/class-admin.php:175
|
43 |
+
#: admin/class-admin.php:455 admin/templates/map-settings.php:11
|
44 |
msgid "Settings"
|
45 |
msgstr "Instellingen"
|
46 |
|
47 |
+
#: admin/class-admin.php:181 admin/class-admin.php:182
|
48 |
+
#: admin/class-admin.php:475
|
49 |
msgid "Add-Ons"
|
50 |
msgstr "Uitbreidingen"
|
51 |
|
57 |
msgid "Geocode was not successful for the following reason"
|
58 |
msgstr "Geocode was niet succesvol om de volgende reden"
|
59 |
|
60 |
+
#: admin/class-admin.php:295 admin/upgrade.php:446
|
61 |
msgid "Security check failed, reload the page and try again."
|
62 |
msgstr ""
|
63 |
"Beveiligings controle mislukt, herlaad de pagina en probeer het nog een keer."
|
73 |
"getoond kan worden."
|
74 |
|
75 |
#: admin/class-admin.php:298 admin/class-metaboxes.php:525
|
76 |
+
#: frontend/class-frontend.php:545
|
77 |
msgid "Closed"
|
78 |
msgstr "Gesloten"
|
79 |
|
81 |
msgid "The code for the map style is invalid."
|
82 |
msgstr "De code voor de map stijl is ongeldig."
|
83 |
|
84 |
+
#: admin/class-admin.php:410
|
85 |
msgid "Welcome to WP Store Locator"
|
86 |
msgstr "Welkom bij WP Store Locator"
|
87 |
|
88 |
+
#: admin/class-admin.php:411
|
89 |
msgid "Sign up for the latest plugin updates and announcements."
|
90 |
msgstr "Meld je aan voor de nieuwsbrief en ontvang het laatste nieuws."
|
91 |
|
92 |
+
#: admin/class-admin.php:474
|
93 |
msgid "Documentation"
|
94 |
msgstr "Documentatie"
|
95 |
|
96 |
+
#: admin/class-admin.php:497
|
97 |
#, php-format
|
98 |
msgid "If you like this plugin please leave us a %s5 star%s rating."
|
99 |
msgstr "Als je tevreden bent met deze plugin geef het dan %s5 sterren%s."
|
140 |
"Er kon geen verbinding gemaakt worden met de Google Geocode API: %s %s "
|
141 |
"Probeer het later nogmaals."
|
142 |
|
143 |
+
#: admin/class-geocode.php:135
|
144 |
+
#, php-format
|
145 |
+
msgid ""
|
146 |
+
"The Google Geocode API reported the following problem: error %s %s %s Please "
|
147 |
+
"contact %ssupport%s if the problem persists."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
#: admin/class-license-manager.php:183
|
151 |
#, php-format
|
152 |
msgid ""
|
197 |
msgid "Location"
|
198 |
msgstr "Locatie"
|
199 |
|
200 |
+
#: admin/class-metaboxes.php:50 inc/class-post-types.php:159
|
201 |
msgid "Address"
|
202 |
msgstr "Adres"
|
203 |
|
205 |
msgid "Address 2"
|
206 |
msgstr "Adres 2"
|
207 |
|
208 |
+
#: admin/class-metaboxes.php:57 inc/class-post-types.php:160
|
209 |
msgid "City"
|
210 |
msgstr "Stad"
|
211 |
|
212 |
+
#: admin/class-metaboxes.php:61 inc/class-post-types.php:161
|
213 |
msgid "State"
|
214 |
msgstr "Provincie"
|
215 |
|
235 |
msgstr "Openingstijden"
|
236 |
|
237 |
#: admin/class-metaboxes.php:82 admin/templates/map-settings.php:534
|
238 |
+
#: admin/templates/map-settings.php:535 frontend/underscore-functions.php:160
|
239 |
+
#: inc/wpsl-functions.php:149
|
240 |
msgid "Hours"
|
241 |
msgstr "Uren"
|
242 |
|
249 |
msgstr "Tel."
|
250 |
|
251 |
#: admin/class-metaboxes.php:91 admin/templates/map-settings.php:522
|
252 |
+
#: admin/templates/map-settings.php:523 frontend/class-frontend.php:793
|
253 |
+
#: frontend/underscore-functions.php:32 frontend/underscore-functions.php:68
|
254 |
+
#: frontend/underscore-functions.php:150 inc/wpsl-functions.php:146
|
255 |
msgid "Fax"
|
256 |
msgstr "Fax"
|
257 |
|
258 |
#: admin/class-metaboxes.php:94 admin/templates/map-settings.php:526
|
259 |
#: admin/templates/map-settings.php:527 admin/upgrade.php:198
|
260 |
+
#: frontend/class-frontend.php:797 frontend/underscore-functions.php:35
|
261 |
+
#: frontend/underscore-functions.php:71 frontend/underscore-functions.php:153
|
262 |
+
#: inc/wpsl-functions.php:147
|
263 |
msgid "Email"
|
264 |
msgstr "E-mail"
|
265 |
|
266 |
#: admin/class-metaboxes.php:97 admin/templates/map-settings.php:530
|
267 |
#: admin/templates/map-settings.php:531 admin/upgrade.php:202
|
268 |
+
#: frontend/class-frontend.php:802 inc/wpsl-functions.php:148
|
269 |
msgid "Url"
|
270 |
msgstr "Url"
|
271 |
|
357 |
msgid "WP Store Locator Transients Cleared"
|
358 |
msgstr "WP Store Locator transients verwijderd"
|
359 |
|
360 |
+
#: admin/class-settings.php:402
|
361 |
msgid ""
|
362 |
"The max results field cannot be empty, the default value has been restored."
|
363 |
msgstr ""
|
364 |
"Het max. zoek resulaten veld kan niet leeg zijn, de standaard waarde is "
|
365 |
"hersteld."
|
366 |
|
367 |
+
#: admin/class-settings.php:405
|
368 |
msgid ""
|
369 |
"The search radius field cannot be empty, the default value has been restored."
|
370 |
msgstr ""
|
371 |
"Het zoek radius veld kan niet leeg zijn, de standaard waarde is hersteld."
|
372 |
|
373 |
+
#: admin/class-settings.php:408
|
374 |
#, php-format
|
375 |
msgid ""
|
376 |
"Please provide the name of a city or country that can be used as a starting "
|
382 |
"automatische achterhalen van de gebruikers locatie mislukt, of het "
|
383 |
"automatische achterhalen is uitgeschakeld."
|
384 |
|
385 |
+
#: admin/class-settings.php:429
|
386 |
msgid "Select your language"
|
387 |
msgstr "Kies uw taal"
|
388 |
|
389 |
+
#: admin/class-settings.php:430
|
390 |
msgid "English"
|
391 |
msgstr "Engels"
|
392 |
|
393 |
+
#: admin/class-settings.php:431
|
394 |
msgid "Arabic"
|
395 |
msgstr "Arabisch"
|
396 |
|
397 |
+
#: admin/class-settings.php:432
|
398 |
msgid "Basque"
|
399 |
msgstr "Bask"
|
400 |
|
401 |
+
#: admin/class-settings.php:433
|
402 |
msgid "Bulgarian"
|
403 |
msgstr "Bulgaars"
|
404 |
|
405 |
+
#: admin/class-settings.php:434
|
406 |
msgid "Bengali"
|
407 |
msgstr "Bengali"
|
408 |
|
409 |
+
#: admin/class-settings.php:435
|
410 |
msgid "Catalan"
|
411 |
msgstr "Catalaans"
|
412 |
|
413 |
+
#: admin/class-settings.php:436
|
414 |
msgid "Czech"
|
415 |
msgstr "Tjechisch"
|
416 |
|
417 |
+
#: admin/class-settings.php:437
|
418 |
msgid "Danish"
|
419 |
msgstr "Deens"
|
420 |
|
421 |
+
#: admin/class-settings.php:438
|
422 |
msgid "German"
|
423 |
msgstr "Duits"
|
424 |
|
425 |
+
#: admin/class-settings.php:439
|
426 |
msgid "Greek"
|
427 |
msgstr "Grieks"
|
428 |
|
429 |
+
#: admin/class-settings.php:440
|
430 |
msgid "English (Australian)"
|
431 |
msgstr "Engels (Australisch)"
|
432 |
|
433 |
+
#: admin/class-settings.php:441
|
434 |
msgid "English (Great Britain)"
|
435 |
msgstr "Engels (Verenigd Koninkrijk)"
|
436 |
|
437 |
+
#: admin/class-settings.php:442
|
438 |
msgid "Spanish"
|
439 |
msgstr "Spaans"
|
440 |
|
441 |
+
#: admin/class-settings.php:443
|
442 |
msgid "Farsi"
|
443 |
msgstr "Farsi"
|
444 |
|
445 |
+
#: admin/class-settings.php:444
|
446 |
msgid "Finnish"
|
447 |
msgstr "Fins"
|
448 |
|
449 |
+
#: admin/class-settings.php:445
|
450 |
msgid "Filipino"
|
451 |
msgstr "Filipijns"
|
452 |
|
453 |
+
#: admin/class-settings.php:446
|
454 |
msgid "French"
|
455 |
msgstr "Frans"
|
456 |
|
457 |
+
#: admin/class-settings.php:447
|
458 |
msgid "Galician"
|
459 |
msgstr "Gallisch"
|
460 |
|
461 |
+
#: admin/class-settings.php:448
|
462 |
msgid "Gujarati"
|
463 |
msgstr "Gujurati"
|
464 |
|
465 |
+
#: admin/class-settings.php:449
|
466 |
msgid "Hindi"
|
467 |
msgstr "Hindi"
|
468 |
|
469 |
+
#: admin/class-settings.php:450
|
470 |
msgid "Croatian"
|
471 |
msgstr "Kroatisch"
|
472 |
|
473 |
+
#: admin/class-settings.php:451
|
474 |
msgid "Hungarian"
|
475 |
msgstr "Hongaars"
|
476 |
|
477 |
+
#: admin/class-settings.php:452
|
478 |
msgid "Indonesian"
|
479 |
msgstr "Indonesisch"
|
480 |
|
481 |
+
#: admin/class-settings.php:453
|
482 |
msgid "Italian"
|
483 |
msgstr "Italiaans"
|
484 |
|
485 |
+
#: admin/class-settings.php:454
|
486 |
msgid "Hebrew"
|
487 |
msgstr "Hebreeuws"
|
488 |
|
489 |
+
#: admin/class-settings.php:455
|
490 |
msgid "Japanese"
|
491 |
msgstr "Japans"
|
492 |
|
493 |
+
#: admin/class-settings.php:456
|
494 |
msgid "Kannada"
|
495 |
msgstr "Kannada"
|
496 |
|
497 |
+
#: admin/class-settings.php:457
|
498 |
msgid "Korean"
|
499 |
msgstr "Koreaans"
|
500 |
|
501 |
+
#: admin/class-settings.php:458
|
502 |
msgid "Lithuanian"
|
503 |
msgstr "Litouws"
|
504 |
|
505 |
+
#: admin/class-settings.php:459
|
506 |
msgid "Latvian"
|
507 |
msgstr "Lets"
|
508 |
|
509 |
+
#: admin/class-settings.php:460
|
510 |
msgid "Malayalam"
|
511 |
msgstr "Malayalam"
|
512 |
|
513 |
+
#: admin/class-settings.php:461
|
514 |
msgid "Marathi"
|
515 |
msgstr "Marathi"
|
516 |
|
517 |
+
#: admin/class-settings.php:462
|
518 |
msgid "Dutch"
|
519 |
msgstr "Nederlands"
|
520 |
|
521 |
+
#: admin/class-settings.php:463
|
522 |
msgid "Norwegian"
|
523 |
msgstr "Noors"
|
524 |
|
525 |
+
#: admin/class-settings.php:464
|
526 |
msgid "Norwegian Nynorsk"
|
527 |
msgstr "Noors Nynorsk"
|
528 |
|
529 |
+
#: admin/class-settings.php:465
|
530 |
msgid "Polish"
|
531 |
msgstr "Pools"
|
532 |
|
533 |
+
#: admin/class-settings.php:466
|
534 |
msgid "Portuguese"
|
535 |
msgstr "Portugees"
|
536 |
|
537 |
+
#: admin/class-settings.php:467
|
538 |
msgid "Portuguese (Brazil)"
|
539 |
msgstr "Portugees (Brazilië)"
|
540 |
|
541 |
+
#: admin/class-settings.php:468
|
542 |
msgid "Portuguese (Portugal)"
|
543 |
msgstr "Portugees (Portugal)"
|
544 |
|
545 |
+
#: admin/class-settings.php:469
|
546 |
msgid "Romanian"
|
547 |
msgstr "Roemeens"
|
548 |
|
549 |
+
#: admin/class-settings.php:470
|
550 |
msgid "Russian"
|
551 |
msgstr "Russisch"
|
552 |
|
553 |
+
#: admin/class-settings.php:471
|
554 |
msgid "Slovak"
|
555 |
msgstr "Slowaaks"
|
556 |
|
557 |
+
#: admin/class-settings.php:472
|
558 |
msgid "Slovenian"
|
559 |
msgstr "Sloveens"
|
560 |
|
561 |
+
#: admin/class-settings.php:473
|
562 |
msgid "Serbian"
|
563 |
msgstr "Servisch"
|
564 |
|
565 |
+
#: admin/class-settings.php:474
|
566 |
msgid "Swedish"
|
567 |
msgstr "Zweeds"
|
568 |
|
569 |
+
#: admin/class-settings.php:475
|
570 |
msgid "Tagalog"
|
571 |
msgstr "Tagalog"
|
572 |
|
573 |
+
#: admin/class-settings.php:476
|
574 |
msgid "Tamil"
|
575 |
msgstr "Tamil"
|
576 |
|
577 |
+
#: admin/class-settings.php:477
|
578 |
msgid "Telugu"
|
579 |
msgstr "Telugu"
|
580 |
|
581 |
+
#: admin/class-settings.php:478
|
582 |
msgid "Thai"
|
583 |
msgstr "Thai"
|
584 |
|
585 |
+
#: admin/class-settings.php:479
|
586 |
msgid "Turkish"
|
587 |
msgstr "Turks"
|
588 |
|
589 |
+
#: admin/class-settings.php:480
|
590 |
msgid "Ukrainian"
|
591 |
msgstr "Oekraïens"
|
592 |
|
593 |
+
#: admin/class-settings.php:481
|
594 |
msgid "Vietnamese"
|
595 |
msgstr "Vietnamees"
|
596 |
|
597 |
+
#: admin/class-settings.php:482
|
598 |
msgid "Chinese (Simplified)"
|
599 |
msgstr "Chinees (Vereenvoudigd)"
|
600 |
|
601 |
+
#: admin/class-settings.php:483
|
602 |
msgid "Chinese (Traditional)"
|
603 |
msgstr "Chinees (Traditioneel)"
|
604 |
|
605 |
+
#: admin/class-settings.php:488
|
606 |
msgid "Select your region"
|
607 |
msgstr "Kies uw regio"
|
608 |
|
609 |
+
#: admin/class-settings.php:489
|
610 |
msgid "Afghanistan"
|
611 |
msgstr "Afghanistan"
|
612 |
|
613 |
+
#: admin/class-settings.php:490
|
614 |
msgid "Albania"
|
615 |
msgstr "Albanië"
|
616 |
|
617 |
+
#: admin/class-settings.php:491
|
618 |
msgid "Algeria"
|
619 |
msgstr "Algerije"
|
620 |
|
621 |
+
#: admin/class-settings.php:492
|
622 |
msgid "American Samoa"
|
623 |
msgstr "Amerikaans Samoa"
|
624 |
|
625 |
+
#: admin/class-settings.php:493
|
626 |
msgid "Andorra"
|
627 |
msgstr "Andorra"
|
628 |
|
629 |
+
#: admin/class-settings.php:494
|
630 |
msgid "Anguilla"
|
631 |
msgstr "Anguilla"
|
632 |
|
633 |
+
#: admin/class-settings.php:495
|
634 |
msgid "Angola"
|
635 |
msgstr "Angola"
|
636 |
|
637 |
+
#: admin/class-settings.php:496
|
638 |
msgid "Antigua and Barbuda"
|
639 |
msgstr "Antigua en Barbuda"
|
640 |
|
641 |
+
#: admin/class-settings.php:497
|
642 |
msgid "Argentina"
|
643 |
msgstr "Argentinië"
|
644 |
|
645 |
+
#: admin/class-settings.php:498
|
646 |
msgid "Armenia"
|
647 |
msgstr "Armenia"
|
648 |
|
649 |
+
#: admin/class-settings.php:499
|
650 |
msgid "Aruba"
|
651 |
msgstr "Aruba"
|
652 |
|
653 |
+
#: admin/class-settings.php:500
|
654 |
msgid "Australia"
|
655 |
msgstr "Australië"
|
656 |
|
657 |
+
#: admin/class-settings.php:501
|
658 |
msgid "Austria"
|
659 |
msgstr "Oostenrijk"
|
660 |
|
661 |
+
#: admin/class-settings.php:502
|
662 |
msgid "Azerbaijan"
|
663 |
msgstr "Azerbeidzjan"
|
664 |
|
665 |
+
#: admin/class-settings.php:503
|
666 |
msgid "Bahamas"
|
667 |
msgstr "Bahamas"
|
668 |
|
669 |
+
#: admin/class-settings.php:504
|
670 |
msgid "Bahrain"
|
671 |
msgstr "Bahrein"
|
672 |
|
673 |
+
#: admin/class-settings.php:505
|
674 |
msgid "Bangladesh"
|
675 |
msgstr "Bangladesh"
|
676 |
|
677 |
+
#: admin/class-settings.php:506
|
678 |
msgid "Barbados"
|
679 |
msgstr "Barbados"
|
680 |
|
681 |
+
#: admin/class-settings.php:507
|
682 |
msgid "Belarus"
|
683 |
msgstr "Wit-Rusland"
|
684 |
|
685 |
+
#: admin/class-settings.php:508
|
686 |
msgid "Belgium"
|
687 |
msgstr "België"
|
688 |
|
689 |
+
#: admin/class-settings.php:509
|
690 |
msgid "Belize"
|
691 |
msgstr "Belize"
|
692 |
|
693 |
+
#: admin/class-settings.php:510
|
694 |
msgid "Benin"
|
695 |
msgstr "Benin"
|
696 |
|
697 |
+
#: admin/class-settings.php:511
|
698 |
msgid "Bermuda"
|
699 |
msgstr "Bermuda"
|
700 |
|
701 |
+
#: admin/class-settings.php:512
|
702 |
msgid "Bhutan"
|
703 |
msgstr "Bhutan"
|
704 |
|
705 |
+
#: admin/class-settings.php:513
|
706 |
msgid "Bolivia"
|
707 |
msgstr "Bolivia"
|
708 |
|
709 |
+
#: admin/class-settings.php:514
|
710 |
msgid "Bosnia and Herzegovina"
|
711 |
msgstr "Bosnia en Herzegovina"
|
712 |
|
713 |
+
#: admin/class-settings.php:515
|
714 |
msgid "Botswana"
|
715 |
msgstr "Botswana"
|
716 |
|
717 |
+
#: admin/class-settings.php:516
|
718 |
msgid "Brazil"
|
719 |
msgstr "Brazilië"
|
720 |
|
721 |
+
#: admin/class-settings.php:517
|
722 |
msgid "British Indian Ocean Territory"
|
723 |
msgstr "Brits Indische Oceaanterritorium"
|
724 |
|
725 |
+
#: admin/class-settings.php:518
|
726 |
msgid "Brunei"
|
727 |
msgstr "Brunei"
|
728 |
|
729 |
+
#: admin/class-settings.php:519
|
730 |
msgid "Bulgaria"
|
731 |
msgstr "Bulgarije"
|
732 |
|
733 |
+
#: admin/class-settings.php:520
|
734 |
msgid "Burkina Faso"
|
735 |
msgstr "Burkina Faso"
|
736 |
|
737 |
+
#: admin/class-settings.php:521
|
738 |
msgid "Burundi"
|
739 |
msgstr "Burundi"
|
740 |
|
741 |
+
#: admin/class-settings.php:522
|
742 |
msgid "Cambodia"
|
743 |
msgstr "Cambodja"
|
744 |
|
745 |
+
#: admin/class-settings.php:523
|
746 |
msgid "Cameroon"
|
747 |
msgstr "Kameroen"
|
748 |
|
749 |
+
#: admin/class-settings.php:524
|
750 |
msgid "Canada"
|
751 |
msgstr "Canada"
|
752 |
|
753 |
+
#: admin/class-settings.php:525
|
754 |
msgid "Cape Verde"
|
755 |
msgstr "Kaapverdië"
|
756 |
|
757 |
+
#: admin/class-settings.php:526
|
758 |
msgid "Cayman Islands"
|
759 |
msgstr "Kaaimaneilanden"
|
760 |
|
761 |
+
#: admin/class-settings.php:527
|
762 |
msgid "Central African Republic"
|
763 |
msgstr "Centraal-Afrikaanse Republiek"
|
764 |
|
765 |
+
#: admin/class-settings.php:528
|
766 |
msgid "Chad"
|
767 |
msgstr "Chad"
|
768 |
|
769 |
+
#: admin/class-settings.php:529
|
770 |
msgid "Chile"
|
771 |
msgstr "Chili"
|
772 |
|
773 |
+
#: admin/class-settings.php:530
|
774 |
msgid "China"
|
775 |
msgstr "China"
|
776 |
|
777 |
+
#: admin/class-settings.php:531
|
778 |
msgid "Christmas Island"
|
779 |
msgstr "Christmaseiland"
|
780 |
|
781 |
+
#: admin/class-settings.php:532
|
782 |
msgid "Cocos Islands"
|
783 |
msgstr "Cocoseilanden"
|
784 |
|
785 |
+
#: admin/class-settings.php:533
|
786 |
msgid "Colombia"
|
787 |
msgstr "Colombia"
|
788 |
|
789 |
+
#: admin/class-settings.php:534
|
790 |
msgid "Comoros"
|
791 |
msgstr "Comoren"
|
792 |
|
793 |
+
#: admin/class-settings.php:535
|
794 |
msgid "Congo"
|
795 |
msgstr "Congo"
|
796 |
|
797 |
+
#: admin/class-settings.php:536
|
798 |
msgid "Costa Rica"
|
799 |
msgstr "Costa Rica"
|
800 |
|
801 |
+
#: admin/class-settings.php:537
|
802 |
msgid "Côte d'Ivoire"
|
803 |
msgstr "Ivoorkust"
|
804 |
|
805 |
+
#: admin/class-settings.php:538
|
806 |
msgid "Croatia"
|
807 |
msgstr "Kroatië"
|
808 |
|
809 |
+
#: admin/class-settings.php:539
|
810 |
msgid "Cuba"
|
811 |
msgstr "Cuba"
|
812 |
|
813 |
+
#: admin/class-settings.php:540
|
814 |
msgid "Czech Republic"
|
815 |
msgstr "Tsjechië"
|
816 |
|
817 |
+
#: admin/class-settings.php:541
|
818 |
msgid "Denmark"
|
819 |
msgstr "Denemarken"
|
820 |
|
821 |
+
#: admin/class-settings.php:542
|
822 |
msgid "Djibouti"
|
823 |
msgstr "Djibouti"
|
824 |
|
825 |
+
#: admin/class-settings.php:543
|
826 |
msgid "Democratic Republic of the Congo"
|
827 |
msgstr "Democratische Republiek Congo"
|
828 |
|
829 |
+
#: admin/class-settings.php:544
|
830 |
msgid "Dominica"
|
831 |
msgstr "Dominica"
|
832 |
|
833 |
+
#: admin/class-settings.php:545
|
834 |
msgid "Dominican Republic"
|
835 |
msgstr "Dominicaanse Republiek"
|
836 |
|
837 |
+
#: admin/class-settings.php:546
|
838 |
msgid "Ecuador"
|
839 |
msgstr "Ecuador"
|
840 |
|
841 |
+
#: admin/class-settings.php:547
|
842 |
msgid "Egypt"
|
843 |
msgstr "Egypte"
|
844 |
|
845 |
+
#: admin/class-settings.php:548
|
846 |
msgid "El Salvador"
|
847 |
msgstr "El Salvador"
|
848 |
|
849 |
+
#: admin/class-settings.php:549
|
850 |
msgid "Equatorial Guinea"
|
851 |
msgstr "Equatoriaal-Guinea"
|
852 |
|
853 |
+
#: admin/class-settings.php:550
|
854 |
msgid "Eritrea"
|
855 |
msgstr "Eritrea"
|
856 |
|
857 |
+
#: admin/class-settings.php:551
|
858 |
msgid "Estonia"
|
859 |
msgstr "Estland"
|
860 |
|
861 |
+
#: admin/class-settings.php:552
|
862 |
msgid "Ethiopia"
|
863 |
msgstr "Ethiopië"
|
864 |
|
865 |
+
#: admin/class-settings.php:553
|
866 |
msgid "Fiji"
|
867 |
msgstr "Fiji"
|
868 |
|
869 |
+
#: admin/class-settings.php:554
|
870 |
msgid "Finland"
|
871 |
msgstr "Finland"
|
872 |
|
873 |
+
#: admin/class-settings.php:555
|
874 |
msgid "France"
|
875 |
msgstr "Frankrijk"
|
876 |
|
877 |
+
#: admin/class-settings.php:556
|
878 |
msgid "French Guiana"
|
879 |
msgstr "Frans Guyana"
|
880 |
|
881 |
+
#: admin/class-settings.php:557
|
882 |
msgid "Gabon"
|
883 |
msgstr "Gabon"
|
884 |
|
885 |
+
#: admin/class-settings.php:558
|
886 |
msgid "Gambia"
|
887 |
msgstr "Gambia"
|
888 |
|
889 |
+
#: admin/class-settings.php:559
|
890 |
msgid "Germany"
|
891 |
msgstr "Duitsland"
|
892 |
|
893 |
+
#: admin/class-settings.php:560
|
894 |
msgid "Ghana"
|
895 |
msgstr "Ghana"
|
896 |
|
897 |
+
#: admin/class-settings.php:561
|
898 |
msgid "Greenland"
|
899 |
msgstr "Groenland"
|
900 |
|
901 |
+
#: admin/class-settings.php:562
|
902 |
msgid "Greece"
|
903 |
msgstr "Griekenland"
|
904 |
|
905 |
+
#: admin/class-settings.php:563
|
906 |
msgid "Grenada"
|
907 |
msgstr "Grenada"
|
908 |
|
909 |
+
#: admin/class-settings.php:564
|
910 |
msgid "Guam"
|
911 |
msgstr "Guam"
|
912 |
|
913 |
+
#: admin/class-settings.php:565
|
914 |
msgid "Guadeloupe"
|
915 |
msgstr "Guadeloupe"
|
916 |
|
917 |
+
#: admin/class-settings.php:566
|
918 |
msgid "Guatemala"
|
919 |
msgstr "Guatemala"
|
920 |
|
921 |
+
#: admin/class-settings.php:567
|
922 |
msgid "Guinea"
|
923 |
msgstr "Guinee"
|
924 |
|
925 |
+
#: admin/class-settings.php:568
|
926 |
msgid "Guinea-Bissau"
|
927 |
msgstr "Guinee-Bissau"
|
928 |
|
929 |
+
#: admin/class-settings.php:569
|
930 |
msgid "Haiti"
|
931 |
msgstr "Haïti"
|
932 |
|
933 |
+
#: admin/class-settings.php:570
|
934 |
msgid "Honduras"
|
935 |
msgstr "Honduras"
|
936 |
|
937 |
+
#: admin/class-settings.php:571
|
938 |
msgid "Hong Kong"
|
939 |
msgstr "Hong Kong"
|
940 |
|
941 |
+
#: admin/class-settings.php:572
|
942 |
msgid "Hungary"
|
943 |
msgstr "Hongarije"
|
944 |
|
945 |
+
#: admin/class-settings.php:573
|
946 |
msgid "Iceland"
|
947 |
msgstr "IJsland"
|
948 |
|
949 |
+
#: admin/class-settings.php:574
|
950 |
msgid "India"
|
951 |
msgstr "India"
|
952 |
|
953 |
+
#: admin/class-settings.php:575
|
954 |
msgid "Indonesia"
|
955 |
msgstr "Indonesië"
|
956 |
|
957 |
+
#: admin/class-settings.php:576
|
958 |
msgid "Iran"
|
959 |
msgstr "Iran"
|
960 |
|
961 |
+
#: admin/class-settings.php:577
|
962 |
msgid "Iraq"
|
963 |
msgstr "Irak"
|
964 |
|
965 |
+
#: admin/class-settings.php:578
|
966 |
msgid "Ireland"
|
967 |
msgstr "Ierland"
|
968 |
|
969 |
+
#: admin/class-settings.php:579
|
970 |
msgid "Israel"
|
971 |
msgstr "Israël"
|
972 |
|
973 |
+
#: admin/class-settings.php:580
|
974 |
msgid "Italy"
|
975 |
msgstr "Italië"
|
976 |
|
977 |
+
#: admin/class-settings.php:581
|
978 |
msgid "Jamaica"
|
979 |
msgstr "Jamaica"
|
980 |
|
981 |
+
#: admin/class-settings.php:582
|
982 |
msgid "Japan"
|
983 |
msgstr "Japan"
|
984 |
|
985 |
+
#: admin/class-settings.php:583
|
986 |
msgid "Jordan"
|
987 |
msgstr "Jordanië"
|
988 |
|
989 |
+
#: admin/class-settings.php:584
|
990 |
msgid "Kazakhstan"
|
991 |
msgstr "Kazachstan"
|
992 |
|
993 |
+
#: admin/class-settings.php:585
|
994 |
msgid "Kenya"
|
995 |
msgstr "Kenia"
|
996 |
|
997 |
+
#: admin/class-settings.php:586
|
998 |
msgid "Kuwait"
|
999 |
msgstr "Koeweit"
|
1000 |
|
1001 |
+
#: admin/class-settings.php:587
|
1002 |
msgid "Kyrgyzstan"
|
1003 |
msgstr "Kirgizië"
|
1004 |
|
1005 |
+
#: admin/class-settings.php:588
|
1006 |
msgid "Laos"
|
1007 |
msgstr "Laos"
|
1008 |
|
1009 |
+
#: admin/class-settings.php:589
|
1010 |
msgid "Latvia"
|
1011 |
msgstr "Letland"
|
1012 |
|
1013 |
+
#: admin/class-settings.php:590
|
1014 |
msgid "Lebanon"
|
1015 |
msgstr "Libanon"
|
1016 |
|
1017 |
+
#: admin/class-settings.php:591
|
1018 |
msgid "Lesotho"
|
1019 |
msgstr "Lesotho"
|
1020 |
|
1021 |
+
#: admin/class-settings.php:592
|
1022 |
msgid "Liberia"
|
1023 |
msgstr "Liberia"
|
1024 |
|
1025 |
+
#: admin/class-settings.php:593
|
1026 |
msgid "Libya"
|
1027 |
msgstr "Libië"
|
1028 |
|
1029 |
+
#: admin/class-settings.php:594
|
1030 |
msgid "Liechtenstein"
|
1031 |
msgstr "Liechtenstein"
|
1032 |
|
1033 |
+
#: admin/class-settings.php:595
|
1034 |
msgid "Lithuania"
|
1035 |
msgstr "Litouwen"
|
1036 |
|
1037 |
+
#: admin/class-settings.php:596
|
1038 |
msgid "Luxembourg"
|
1039 |
msgstr "Luxemburg"
|
1040 |
|
1041 |
+
#: admin/class-settings.php:597
|
1042 |
msgid "Macau"
|
1043 |
msgstr "Macau"
|
1044 |
|
1045 |
+
#: admin/class-settings.php:598
|
1046 |
msgid "Macedonia"
|
1047 |
msgstr "Macedonië"
|
1048 |
|
1049 |
+
#: admin/class-settings.php:599
|
1050 |
msgid "Madagascar"
|
1051 |
msgstr "Madagascar"
|
1052 |
|
1053 |
+
#: admin/class-settings.php:600
|
1054 |
msgid "Malawi"
|
1055 |
msgstr "Malawi"
|
1056 |
|
1057 |
+
#: admin/class-settings.php:601
|
1058 |
msgid "Malaysia "
|
1059 |
msgstr "Maleisie"
|
1060 |
|
1061 |
+
#: admin/class-settings.php:602
|
1062 |
msgid "Mali"
|
1063 |
msgstr "Mali"
|
1064 |
|
1065 |
+
#: admin/class-settings.php:603
|
1066 |
msgid "Marshall Islands"
|
1067 |
msgstr "Marshalleilanden"
|
1068 |
|
1069 |
+
#: admin/class-settings.php:604
|
1070 |
msgid "Martinique"
|
1071 |
msgstr "Martinique"
|
1072 |
|
1073 |
+
#: admin/class-settings.php:605
|
1074 |
msgid "Mauritania"
|
1075 |
msgstr "Mauritanië"
|
1076 |
|
1077 |
+
#: admin/class-settings.php:606
|
1078 |
msgid "Mauritius"
|
1079 |
msgstr "Mauritius"
|
1080 |
|
1081 |
+
#: admin/class-settings.php:607
|
1082 |
msgid "Mexico"
|
1083 |
msgstr "Mexico"
|
1084 |
|
1085 |
+
#: admin/class-settings.php:608
|
1086 |
msgid "Micronesia"
|
1087 |
msgstr "Micronesia"
|
1088 |
|
1089 |
+
#: admin/class-settings.php:609
|
1090 |
msgid "Moldova"
|
1091 |
msgstr "Moldavië"
|
1092 |
|
1093 |
+
#: admin/class-settings.php:610
|
1094 |
msgid "Monaco"
|
1095 |
msgstr "Monaco"
|
1096 |
|
1097 |
+
#: admin/class-settings.php:611
|
1098 |
msgid "Mongolia"
|
1099 |
msgstr "Mongolië"
|
1100 |
|
1101 |
+
#: admin/class-settings.php:612
|
1102 |
msgid "Montenegro"
|
1103 |
msgstr "Montenegro"
|
1104 |
|
1105 |
+
#: admin/class-settings.php:613
|
1106 |
msgid "Montserrat"
|
1107 |
msgstr "Montserrat "
|
1108 |
|
1109 |
+
#: admin/class-settings.php:614
|
1110 |
msgid "Morocco"
|
1111 |
msgstr "Marokko"
|
1112 |
|
1113 |
+
#: admin/class-settings.php:615
|
1114 |
msgid "Mozambique"
|
1115 |
msgstr "Mozambique"
|
1116 |
|
1117 |
+
#: admin/class-settings.php:616
|
1118 |
msgid "Myanmar"
|
1119 |
msgstr "Myanmar"
|
1120 |
|
1121 |
+
#: admin/class-settings.php:617
|
1122 |
msgid "Namibia"
|
1123 |
msgstr "Namibië"
|
1124 |
|
1125 |
+
#: admin/class-settings.php:618
|
1126 |
msgid "Nauru"
|
1127 |
msgstr "Nauru"
|
1128 |
|
1129 |
+
#: admin/class-settings.php:619
|
1130 |
msgid "Nepal"
|
1131 |
msgstr "Nepal"
|
1132 |
|
1133 |
+
#: admin/class-settings.php:620
|
1134 |
msgid "Netherlands"
|
1135 |
msgstr "Nederland"
|
1136 |
|
1137 |
+
#: admin/class-settings.php:621
|
1138 |
msgid "Netherlands Antilles"
|
1139 |
msgstr "Nederlandse Antillen"
|
1140 |
|
1141 |
+
#: admin/class-settings.php:622
|
1142 |
msgid "New Zealand"
|
1143 |
msgstr "Nieuw Zeeland"
|
1144 |
|
1145 |
+
#: admin/class-settings.php:623
|
1146 |
msgid "Nicaragua"
|
1147 |
msgstr "Nicaragua"
|
1148 |
|
1149 |
+
#: admin/class-settings.php:624
|
1150 |
msgid "Niger"
|
1151 |
msgstr "Niger"
|
1152 |
|
1153 |
+
#: admin/class-settings.php:625
|
1154 |
msgid "Nigeria"
|
1155 |
msgstr "Nigeria"
|
1156 |
|
1157 |
+
#: admin/class-settings.php:626
|
1158 |
msgid "Niue"
|
1159 |
msgstr "Niue"
|
1160 |
|
1161 |
+
#: admin/class-settings.php:627
|
1162 |
msgid "Northern Mariana Islands"
|
1163 |
msgstr "Noordelijke Marianen"
|
1164 |
|
1165 |
+
#: admin/class-settings.php:628
|
1166 |
msgid "Norway"
|
1167 |
msgstr "Noorwegen"
|
1168 |
|
1169 |
+
#: admin/class-settings.php:629
|
1170 |
msgid "Oman"
|
1171 |
msgstr "Oman"
|
1172 |
|
1173 |
+
#: admin/class-settings.php:630
|
1174 |
msgid "Pakistan"
|
1175 |
msgstr "Pakistan"
|
1176 |
|
1177 |
+
#: admin/class-settings.php:631
|
1178 |
msgid "Panama"
|
1179 |
msgstr "Panama"
|
1180 |
|
1181 |
+
#: admin/class-settings.php:632
|
1182 |
msgid "Papua New Guinea"
|
1183 |
msgstr "Papoea-Nieuw-Guinea"
|
1184 |
|
1185 |
+
#: admin/class-settings.php:633
|
1186 |
msgid "Paraguay"
|
1187 |
msgstr "Paraguay"
|
1188 |
|
1189 |
+
#: admin/class-settings.php:634
|
1190 |
msgid "Peru"
|
1191 |
msgstr "Peru"
|
1192 |
|
1193 |
+
#: admin/class-settings.php:635
|
1194 |
msgid "Philippines"
|
1195 |
msgstr "Filipijnen"
|
1196 |
|
1197 |
+
#: admin/class-settings.php:636
|
1198 |
msgid "Pitcairn Islands"
|
1199 |
msgstr "Pitcairneilanden"
|
1200 |
|
1201 |
+
#: admin/class-settings.php:637
|
1202 |
msgid "Poland"
|
1203 |
msgstr "Polen"
|
1204 |
|
1205 |
+
#: admin/class-settings.php:638
|
1206 |
msgid "Portugal"
|
1207 |
msgstr "Portugal"
|
1208 |
|
1209 |
+
#: admin/class-settings.php:639
|
1210 |
msgid "Qatar"
|
1211 |
msgstr "Qatar"
|
1212 |
|
1213 |
+
#: admin/class-settings.php:640
|
1214 |
msgid "Reunion"
|
1215 |
msgstr "Réunion"
|
1216 |
|
1217 |
+
#: admin/class-settings.php:641
|
1218 |
msgid "Romania"
|
1219 |
msgstr "Roemenië"
|
1220 |
|
1221 |
+
#: admin/class-settings.php:642
|
1222 |
msgid "Russia"
|
1223 |
msgstr "Rusland"
|
1224 |
|
1225 |
+
#: admin/class-settings.php:643
|
1226 |
msgid "Rwanda"
|
1227 |
msgstr "Rwanda"
|
1228 |
|
1229 |
+
#: admin/class-settings.php:644
|
1230 |
msgid "Saint Helena"
|
1231 |
msgstr "Sint-Helena"
|
1232 |
|
1233 |
+
#: admin/class-settings.php:645
|
1234 |
msgid "Saint Kitts and Nevis"
|
1235 |
msgstr "Saint Kitts en Nevis"
|
1236 |
|
1237 |
+
#: admin/class-settings.php:646
|
1238 |
msgid "Saint Vincent and the Grenadines"
|
1239 |
msgstr "Saint Vincent en de Grenadines"
|
1240 |
|
1241 |
+
#: admin/class-settings.php:647
|
1242 |
msgid "Saint Lucia"
|
1243 |
msgstr "Saint Lucia"
|
1244 |
|
1245 |
+
#: admin/class-settings.php:648
|
1246 |
msgid "Samoa"
|
1247 |
msgstr "Samoa"
|
1248 |
|
1249 |
+
#: admin/class-settings.php:649
|
1250 |
msgid "San Marino"
|
1251 |
msgstr "San Marino"
|
1252 |
|
1253 |
+
#: admin/class-settings.php:650
|
1254 |
msgid "São Tomé and Príncipe"
|
1255 |
msgstr "Sao Tomé en Principe"
|
1256 |
|
1257 |
+
#: admin/class-settings.php:651
|
1258 |
msgid "Saudi Arabia"
|
1259 |
msgstr "Saoedi-Arabië"
|
1260 |
|
1261 |
+
#: admin/class-settings.php:652
|
1262 |
msgid "Senegal"
|
1263 |
msgstr "Senegal"
|
1264 |
|
1265 |
+
#: admin/class-settings.php:653
|
1266 |
msgid "Serbia"
|
1267 |
msgstr "Servië"
|
1268 |
|
1269 |
+
#: admin/class-settings.php:654
|
1270 |
msgid "Seychelles"
|
1271 |
msgstr "Seychellen"
|
1272 |
|
1273 |
+
#: admin/class-settings.php:655
|
1274 |
msgid "Sierra Leone"
|
1275 |
msgstr "Sierra Leone"
|
1276 |
|
1277 |
+
#: admin/class-settings.php:656
|
1278 |
msgid "Singapore"
|
1279 |
msgstr "Singapore"
|
1280 |
|
1281 |
+
#: admin/class-settings.php:657
|
1282 |
msgid "Slovakia"
|
1283 |
msgstr "Slowakije"
|
1284 |
|
1285 |
+
#: admin/class-settings.php:658
|
1286 |
msgid "Solomon Islands"
|
1287 |
msgstr "Salomonseilanden"
|
1288 |
|
1289 |
+
#: admin/class-settings.php:659
|
1290 |
msgid "Somalia"
|
1291 |
msgstr "Somalie"
|
1292 |
|
1293 |
+
#: admin/class-settings.php:660
|
1294 |
msgid "South Africa"
|
1295 |
msgstr "Zuid Afrika"
|
1296 |
|
1297 |
+
#: admin/class-settings.php:661
|
1298 |
msgid "South Korea"
|
1299 |
msgstr "Zuid Korea"
|
1300 |
|
1301 |
+
#: admin/class-settings.php:662
|
1302 |
msgid "Spain"
|
1303 |
msgstr "Spanje"
|
1304 |
|
1305 |
+
#: admin/class-settings.php:663
|
1306 |
msgid "Sri Lanka"
|
1307 |
msgstr "Sri Lanka"
|
1308 |
|
1309 |
+
#: admin/class-settings.php:664
|
1310 |
msgid "Sudan"
|
1311 |
msgstr "Sudan"
|
1312 |
|
1313 |
+
#: admin/class-settings.php:665
|
1314 |
msgid "Swaziland"
|
1315 |
msgstr "Swaziland "
|
1316 |
|
1317 |
+
#: admin/class-settings.php:666
|
1318 |
msgid "Sweden"
|
1319 |
msgstr "Zweden"
|
1320 |
|
1321 |
+
#: admin/class-settings.php:667
|
1322 |
msgid "Switzerland"
|
1323 |
msgstr "Zwitserland"
|
1324 |
|
1325 |
+
#: admin/class-settings.php:668
|
1326 |
msgid "Syria"
|
1327 |
msgstr "Syrië"
|
1328 |
|
1329 |
+
#: admin/class-settings.php:669
|
1330 |
msgid "Taiwan"
|
1331 |
msgstr "Taiwan"
|
1332 |
|
1333 |
+
#: admin/class-settings.php:670
|
1334 |
msgid "Tajikistan"
|
1335 |
msgstr "Tajikistan"
|
1336 |
|
1337 |
+
#: admin/class-settings.php:671
|
1338 |
msgid "Tanzania"
|
1339 |
msgstr "Tanzania"
|
1340 |
|
1341 |
+
#: admin/class-settings.php:672
|
1342 |
msgid "Thailand"
|
1343 |
msgstr "Thailand"
|
1344 |
|
1345 |
+
#: admin/class-settings.php:673
|
1346 |
msgid "Timor-Leste"
|
1347 |
msgstr "Oost-Timor"
|
1348 |
|
1349 |
+
#: admin/class-settings.php:674
|
1350 |
msgid "Tokelau"
|
1351 |
msgstr "Tokelau"
|
1352 |
|
1353 |
+
#: admin/class-settings.php:675
|
1354 |
msgid "Togo"
|
1355 |
msgstr "Togo"
|
1356 |
|
1357 |
+
#: admin/class-settings.php:676
|
1358 |
msgid "Tonga"
|
1359 |
msgstr "Tonga"
|
1360 |
|
1361 |
+
#: admin/class-settings.php:677
|
1362 |
msgid "Trinidad and Tobago"
|
1363 |
msgstr "Trinidad en Tobago"
|
1364 |
|
1365 |
+
#: admin/class-settings.php:678
|
1366 |
msgid "Tunisia"
|
1367 |
msgstr "Tunesië"
|
1368 |
|
1369 |
+
#: admin/class-settings.php:679
|
1370 |
msgid "Turkey"
|
1371 |
msgstr "Turkije"
|
1372 |
|
1373 |
+
#: admin/class-settings.php:680
|
1374 |
msgid "Turkmenistan"
|
1375 |
msgstr "Turkmenistan"
|
1376 |
|
1377 |
+
#: admin/class-settings.php:681
|
1378 |
msgid "Tuvalu"
|
1379 |
msgstr "Tuvalu"
|
1380 |
|
1381 |
+
#: admin/class-settings.php:682
|
1382 |
msgid "Uganda"
|
1383 |
msgstr "Uganda"
|
1384 |
|
1385 |
+
#: admin/class-settings.php:683
|
1386 |
msgid "Ukraine"
|
1387 |
msgstr "Oekraïne"
|
1388 |
|
1389 |
+
#: admin/class-settings.php:684
|
1390 |
msgid "United Arab Emirates"
|
1391 |
msgstr "Verenigde Arabische Emiraten"
|
1392 |
|
1393 |
+
#: admin/class-settings.php:685
|
1394 |
msgid "United Kingdom"
|
1395 |
msgstr "Verenigd Koninkrijk"
|
1396 |
|
1397 |
+
#: admin/class-settings.php:686
|
1398 |
msgid "United States"
|
1399 |
msgstr "Verenigde Staten"
|
1400 |
|
1401 |
+
#: admin/class-settings.php:687
|
1402 |
msgid "Uruguay"
|
1403 |
msgstr "Uruguay"
|
1404 |
|
1405 |
+
#: admin/class-settings.php:688
|
1406 |
msgid "Uzbekistan"
|
1407 |
msgstr "Uzbekistan"
|
1408 |
|
1409 |
+
#: admin/class-settings.php:689
|
1410 |
msgid "Wallis Futuna"
|
1411 |
msgstr "Wallis en Futuna"
|
1412 |
|
1413 |
+
#: admin/class-settings.php:690
|
1414 |
msgid "Venezuela"
|
1415 |
msgstr "Venezuela"
|
1416 |
|
1417 |
+
#: admin/class-settings.php:691
|
1418 |
msgid "Vietnam"
|
1419 |
msgstr "Vietnam"
|
1420 |
|
1421 |
+
#: admin/class-settings.php:692
|
1422 |
msgid "Yemen"
|
1423 |
msgstr "Yemen"
|
1424 |
|
1425 |
+
#: admin/class-settings.php:693
|
1426 |
msgid "Zambia"
|
1427 |
msgstr "Zambia"
|
1428 |
|
1429 |
+
#: admin/class-settings.php:694
|
1430 |
msgid "Zimbabwe"
|
1431 |
msgstr "Zimbabwe"
|
1432 |
|
1433 |
+
#: admin/class-settings.php:737
|
1434 |
msgid "World view"
|
1435 |
msgstr "Wereldkaart"
|
1436 |
|
1437 |
+
#: admin/class-settings.php:740 admin/class-settings.php:854
|
1438 |
+
#: inc/wpsl-functions.php:215
|
1439 |
msgid "Default"
|
1440 |
msgstr "Standaard"
|
1441 |
|
1442 |
+
#: admin/class-settings.php:743 inc/wpsl-functions.php:288
|
1443 |
msgid "Roadmap"
|
1444 |
msgstr "Wegenkaart"
|
1445 |
|
1446 |
+
#: admin/class-settings.php:884
|
1447 |
msgid "Start location marker"
|
1448 |
msgstr "Start locatie marker"
|
1449 |
|
1450 |
+
#: admin/class-settings.php:886
|
1451 |
msgid "Store location marker"
|
1452 |
msgstr "Winkel locatie marker"
|
1453 |
|
1454 |
+
#: admin/class-settings.php:968
|
1455 |
msgid "Textarea"
|
1456 |
msgstr "Tekstvlak"
|
1457 |
|
1458 |
+
#: admin/class-settings.php:969
|
1459 |
msgid "Dropdowns (recommended)"
|
1460 |
msgstr "Dropdown (aangeraden)"
|
1461 |
|
1462 |
+
#: admin/class-settings.php:977
|
1463 |
msgid "Bounces up and down"
|
1464 |
msgstr "Beweegt op en neer"
|
1465 |
|
1466 |
+
#: admin/class-settings.php:978
|
1467 |
msgid "Will open the info window"
|
1468 |
msgstr "Opent de info window"
|
1469 |
|
1470 |
+
#: admin/class-settings.php:979
|
1471 |
msgid "Does not respond"
|
1472 |
msgstr "Reageert niet"
|
1473 |
|
1474 |
+
#: admin/class-settings.php:987
|
1475 |
msgid "In the store listings"
|
1476 |
msgstr "In de locatie lijst"
|
1477 |
|
1478 |
+
#: admin/class-settings.php:988
|
1479 |
msgid "In the info window on the map"
|
1480 |
msgstr "In de info window op de kaart"
|
1481 |
|
1482 |
+
#: admin/class-settings.php:1020
|
1483 |
msgid "Dropdown"
|
1484 |
msgstr "Dropdown"
|
1485 |
|
1486 |
+
#: admin/class-settings.php:1021
|
1487 |
msgid "Checkboxes"
|
1488 |
msgstr "Checkboxes"
|
1489 |
|
1490 |
+
#: admin/class-settings.php:1053
|
1491 |
msgid "12 Hours"
|
1492 |
msgstr "12 uur"
|
1493 |
|
1494 |
+
#: admin/class-settings.php:1054
|
1495 |
msgid "24 Hours"
|
1496 |
msgstr "24 uur"
|
1497 |
|
1535 |
#: admin/templates/map-settings.php:170 admin/templates/map-settings.php:249
|
1536 |
#: admin/templates/map-settings.php:352 admin/templates/map-settings.php:380
|
1537 |
#: admin/templates/map-settings.php:430 admin/templates/map-settings.php:458
|
1538 |
+
#: admin/templates/map-settings.php:570 admin/templates/map-settings.php:595
|
1539 |
msgid "Save Changes"
|
1540 |
msgstr "Wijzigingen opslaan"
|
1541 |
|
1551 |
#, php-format
|
1552 |
msgid ""
|
1553 |
"A %sserver key%s allows you to monitor the usage of the Google Maps "
|
1554 |
+
"%sGeocoding API%s. %s %sRequired%s for %sapplications%s created after June "
|
1555 |
+
"22, 2016."
|
1556 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1557 |
|
1558 |
#: admin/templates/map-settings.php:98
|
1559 |
msgid "Browser key"
|
1563 |
#, php-format
|
1564 |
msgid ""
|
1565 |
"A %sbrowser key%s allows you to monitor the usage of the Google Maps "
|
1566 |
+
"%sJavaScript API%s. %s %sRequired%s for %sapplications%s created after June "
|
1567 |
+
"22, 2016."
|
1568 |
msgstr ""
|
|
|
|
|
1569 |
|
1570 |
#: admin/templates/map-settings.php:102
|
1571 |
msgid "Map language"
|
1611 |
"%s Je kan de gebruikte restricties aanpassen met %sdeze%s filter."
|
1612 |
|
1613 |
#: admin/templates/map-settings.php:128 admin/templates/map-settings.php:494
|
1614 |
+
#: admin/templates/map-settings.php:495 frontend/templates/default.php:44
|
1615 |
+
#: frontend/templates/store-listings-below.php:44 inc/wpsl-functions.php:132
|
1616 |
msgid "Search"
|
1617 |
msgstr "Zoek"
|
1618 |
|
1668 |
msgid "Attempt to auto-locate the user"
|
1669 |
msgstr "Probeer de locatie van de gebruiker automatische te achterhalen"
|
1670 |
|
1671 |
+
#: admin/templates/map-settings.php:183
|
1672 |
+
#, php-format
|
1673 |
+
msgid ""
|
1674 |
+
"Safari and Chrome %srequire%s a HTTPS connection before the Geolocation "
|
1675 |
+
"feature works."
|
1676 |
+
msgstr ""
|
1677 |
+
"Safari en Chrome %svereisen%s een HTTPS verbinding om de geolocatie optie te "
|
1678 |
+
"laten werken."
|
1679 |
+
|
1680 |
#: admin/templates/map-settings.php:187
|
1681 |
msgid "Load locations on page load"
|
1682 |
msgstr "Toon alle locaties op de kaart zodra de pagina geladen is"
|
2134 |
|
2135 |
#: admin/templates/map-settings.php:482 admin/templates/map-settings.php:483
|
2136 |
#: frontend/templates/default.php:12
|
2137 |
+
#: frontend/templates/store-listings-below.php:12 inc/wpsl-functions.php:131
|
2138 |
msgid "Your location"
|
2139 |
msgstr "Uw locatie"
|
2140 |
|
2141 |
#: admin/templates/map-settings.php:486 admin/templates/map-settings.php:487
|
2142 |
#: frontend/templates/default.php:21
|
2143 |
+
#: frontend/templates/store-listings-below.php:21 inc/wpsl-functions.php:134
|
2144 |
msgid "Search radius"
|
2145 |
msgstr "Zoek radius"
|
2146 |
|
2147 |
#: admin/templates/map-settings.php:490 admin/templates/map-settings.php:491
|
2148 |
+
#: frontend/class-frontend.php:1673 inc/wpsl-functions.php:135
|
2149 |
msgid "No results found"
|
2150 |
msgstr "Geen resultaten gevonden"
|
2151 |
|
2153 |
msgid "Searching (preloader text)"
|
2154 |
msgstr "Aan het zoeken (preloader tekst)"
|
2155 |
|
2156 |
+
#: admin/templates/map-settings.php:499 frontend/class-frontend.php:1672
|
2157 |
+
#: inc/wpsl-functions.php:133
|
2158 |
msgid "Searching..."
|
2159 |
msgstr "Zoeken..."
|
2160 |
|
2161 |
#: admin/templates/map-settings.php:502 admin/templates/map-settings.php:503
|
2162 |
#: frontend/templates/default.php:30
|
2163 |
+
#: frontend/templates/store-listings-below.php:30 inc/wpsl-functions.php:136
|
2164 |
msgid "Results"
|
2165 |
msgstr "Resultaten"
|
2166 |
|
2167 |
#: admin/templates/map-settings.php:506 admin/upgrade.php:206
|
2168 |
+
#: inc/wpsl-functions.php:150
|
2169 |
msgid "Category filter"
|
2170 |
msgstr "Categorie filter"
|
2171 |
|
2172 |
+
#: admin/templates/map-settings.php:507 frontend/class-frontend.php:1297
|
2173 |
msgid "Category"
|
2174 |
msgstr "Categorie"
|
2175 |
|
2178 |
msgstr "Eerste categorie item"
|
2179 |
|
2180 |
#: admin/templates/map-settings.php:511 admin/upgrade.php:367
|
2181 |
+
#: frontend/class-frontend.php:1300 inc/wpsl-functions.php:151
|
2182 |
msgid "Any"
|
2183 |
msgstr "Alle"
|
2184 |
|
2185 |
#: admin/templates/map-settings.php:514 admin/templates/map-settings.php:515
|
2186 |
+
#: admin/upgrade.php:59 frontend/class-frontend.php:1674
|
2187 |
+
#: frontend/underscore-functions.php:138 frontend/underscore-functions.php:168
|
2188 |
+
#: inc/wpsl-functions.php:137
|
2189 |
msgid "More info"
|
2190 |
msgstr "Meer info"
|
2191 |
|
2192 |
#: admin/templates/map-settings.php:518 admin/templates/map-settings.php:519
|
2193 |
+
#: frontend/class-frontend.php:789 frontend/underscore-functions.php:29
|
2194 |
+
#: frontend/underscore-functions.php:65 frontend/underscore-functions.php:147
|
2195 |
+
#: inc/wpsl-functions.php:145
|
2196 |
msgid "Phone"
|
2197 |
msgstr "Telefoon"
|
2198 |
|
2199 |
#: admin/templates/map-settings.php:538 admin/templates/map-settings.php:539
|
2200 |
+
#: frontend/class-frontend.php:1679 inc/wpsl-functions.php:130
|
2201 |
msgid "Start location"
|
2202 |
msgstr "Start locatie"
|
2203 |
|
2205 |
msgid "Get directions"
|
2206 |
msgstr "Toon routebeschrijving"
|
2207 |
|
2208 |
+
#: admin/templates/map-settings.php:543 frontend/class-frontend.php:1677
|
2209 |
+
#: inc/wpsl-functions.php:138
|
2210 |
msgid "Directions"
|
2211 |
msgstr "Routebeschrijving"
|
2212 |
|
2215 |
msgstr "Geen routebeschrijving beschikbaar"
|
2216 |
|
2217 |
#: admin/templates/map-settings.php:547 admin/upgrade.php:151
|
2218 |
+
#: frontend/class-frontend.php:1678 inc/wpsl-functions.php:139
|
2219 |
msgid "No route could be found between the origin and destination"
|
2220 |
msgstr "Er kon geen route gevonden worden tussen het begin- en eindpunt"
|
2221 |
|
2222 |
#: admin/templates/map-settings.php:550 admin/templates/map-settings.php:551
|
2223 |
+
#: admin/upgrade.php:77 frontend/class-frontend.php:1680
|
2224 |
+
#: inc/wpsl-functions.php:140
|
2225 |
msgid "Back"
|
2226 |
msgstr "Terug"
|
2227 |
|
2228 |
#: admin/templates/map-settings.php:554 admin/templates/map-settings.php:555
|
2229 |
+
#: admin/upgrade.php:143 frontend/class-frontend.php:1681
|
2230 |
+
#: inc/wpsl-functions.php:141
|
2231 |
msgid "Street view"
|
2232 |
msgstr "Street view"
|
2233 |
|
2234 |
#: admin/templates/map-settings.php:558 admin/templates/map-settings.php:559
|
2235 |
+
#: admin/upgrade.php:147 frontend/class-frontend.php:1682
|
2236 |
+
#: inc/wpsl-functions.php:142
|
2237 |
msgid "Zoom here"
|
2238 |
msgstr "Zoom hier"
|
2239 |
|
2241 |
msgid "General error"
|
2242 |
msgstr "Foutmelding"
|
2243 |
|
2244 |
+
#: admin/templates/map-settings.php:563 frontend/class-frontend.php:1675
|
2245 |
+
#: inc/wpsl-functions.php:143
|
2246 |
msgid "Something went wrong, please try again!"
|
2247 |
msgstr "Er ging iets fout, probeer het nog een keer!"
|
2248 |
|
2259 |
"Je kan de %sgebruiks limiet%s verhogen door een API %ssleutel%s aan te "
|
2260 |
"vragen en die in het \"API sleutel\" veld bovenaan de pagina in te vullen."
|
2261 |
|
2262 |
+
#: admin/templates/map-settings.php:567 frontend/class-frontend.php:1676
|
2263 |
+
#: inc/wpsl-functions.php:144
|
2264 |
msgid "API usage limit reached"
|
2265 |
msgstr "API gebruikslimiet bereikt"
|
2266 |
|
2283 |
"geladen is%s optie is geactiveerd."
|
2284 |
|
2285 |
#: admin/templates/map-settings.php:587
|
2286 |
+
msgid "Enable compatibility mode?"
|
2287 |
+
msgstr ""
|
2288 |
+
|
2289 |
+
#: admin/templates/map-settings.php:587
|
2290 |
+
#, php-format
|
2291 |
+
msgid ""
|
2292 |
+
"If the %sbrowser console%s shows the error below, then enabling this option "
|
2293 |
+
"should fix it. %s %sYou have included the Google Maps API multiple times on "
|
2294 |
+
"this page. This may cause unexpected errors.%s %s This error can in some "
|
2295 |
+
"situations break the store locator map."
|
2296 |
+
msgstr ""
|
2297 |
+
|
2298 |
+
#: admin/templates/map-settings.php:591
|
2299 |
msgid "WPSL transients"
|
2300 |
msgstr "WPSL transients"
|
2301 |
|
2302 |
+
#: admin/templates/map-settings.php:592
|
2303 |
msgid "Clear store locator transient cache"
|
2304 |
msgstr "Verwijder het store locator transient cache."
|
2305 |
|
2311 |
msgid "Reset"
|
2312 |
msgstr "Herstel"
|
2313 |
|
2314 |
+
#: admin/upgrade.php:174 inc/wpsl-functions.php:124
|
2315 |
msgid "stores"
|
2316 |
msgstr "winkels"
|
2317 |
|
2318 |
+
#: admin/upgrade.php:178 inc/wpsl-functions.php:125
|
2319 |
msgid "store-category"
|
2320 |
msgstr "winkel-categorie"
|
2321 |
|
2322 |
+
#: admin/upgrade.php:424
|
2323 |
#, php-format
|
2324 |
msgid ""
|
2325 |
"Because you updated WP Store Locator from version 1.x, the %s current store "
|
2328 |
"Doordat je WP Store Locator update van versie 1.x, de %s huidige winkel "
|
2329 |
"locaties moeten worden %somgezet%s naar custom post types."
|
2330 |
|
2331 |
+
#: admin/upgrade.php:445
|
2332 |
#, php-format
|
2333 |
msgid ""
|
2334 |
"The script converting the locations timed out. %s You can click the \"Start "
|
2346 |
"heeft al geprobeerd om de maximum execution time uit te zetten, maar als je "
|
2347 |
"dit leest dan is dat mislukt."
|
2348 |
|
2349 |
+
#: admin/upgrade.php:466
|
2350 |
msgid "Store locations to convert:"
|
2351 |
msgstr "Locaties die omgezet worden:"
|
2352 |
|
2353 |
+
#: admin/upgrade.php:468
|
2354 |
msgid "Start Converting"
|
2355 |
msgstr "Begin met omzetten"
|
2356 |
|
2357 |
+
#: admin/upgrade.php:590
|
2358 |
#, php-format
|
2359 |
msgid ""
|
2360 |
"All the store locations are now converted to custom post types. %s You can "
|
2363 |
"Alle winkel locaties zijn nu omgezet naar custom post types. %s Je kunt ze "
|
2364 |
"bekijken op de %sAlle Winkels%s pagina."
|
2365 |
|
2366 |
+
#: frontend/class-frontend.php:726
|
2367 |
msgid ""
|
2368 |
"If you use the [wpsl_address] shortcode outside a store page you need to set "
|
2369 |
"the ID attribute."
|
2371 |
"Als je de [wpsl_address] shortcode op een pagina gebruikt die geen winkel "
|
2372 |
"pagina is dan is de ID attribute verplicht."
|
2373 |
|
2374 |
+
#: frontend/class-frontend.php:840
|
2375 |
msgid ""
|
2376 |
"If you use the [wpsl_hours] shortcode outside a store page you need to set "
|
2377 |
"the ID attribute."
|
2379 |
"Als je de [wpsl_hours] shortcode op een pagina gebruikt die geen winkel "
|
2380 |
"pagina is dan is de ID attribute verplicht."
|
2381 |
|
2382 |
+
#: frontend/class-frontend.php:888
|
2383 |
msgid ""
|
2384 |
"If you use the [wpsl_map] shortcode outside a store page, then you need to "
|
2385 |
"set the ID or category attribute."
|
2387 |
"Als de [wpsl_map] shortcode buiten een winkel page is geplaatst, dan moet je "
|
2388 |
"de ID of category attribute opgeven."
|
2389 |
|
2390 |
+
#: frontend/class-frontend.php:1473
|
2391 |
msgid "The application does not have permission to use the Geolocation API."
|
2392 |
msgstr ""
|
2393 |
"Deze applicatie heeft geen toestemming om de Geolocation API te gebruiken."
|
2394 |
|
2395 |
+
#: frontend/class-frontend.php:1474
|
2396 |
msgid "Location information is unavailable."
|
2397 |
msgstr "Informatie over de huidige locatie is niet beschikbaar."
|
2398 |
|
2399 |
+
#: frontend/class-frontend.php:1475
|
2400 |
msgid "The geolocation request timed out."
|
2401 |
msgstr "Het geolocation verzoek timed out."
|
2402 |
|
2403 |
+
#: frontend/class-frontend.php:1476
|
2404 |
msgid "An unknown error occurred."
|
2405 |
msgstr " Er heeft zich een onbekende fout voorgedaan."
|
2406 |
|
2410 |
msgid "Search provided by %sWP Store Locator%s"
|
2411 |
msgstr "Ondersteund door %sWP Store Locator%s"
|
2412 |
|
2413 |
+
#: inc/class-post-types.php:52
|
2414 |
+
msgid "Store Locator"
|
2415 |
+
msgstr "Store Locator"
|
2416 |
+
|
2417 |
+
#: inc/class-post-types.php:53
|
2418 |
+
msgid "All Stores"
|
2419 |
+
msgstr "Alle winkels"
|
2420 |
+
|
2421 |
+
#: inc/class-post-types.php:54
|
2422 |
msgid "Store"
|
2423 |
msgstr "winkel"
|
2424 |
|
2425 |
+
#: inc/class-post-types.php:55 inc/class-post-types.php:58
|
2426 |
+
msgid "New Store"
|
2427 |
+
msgstr "Nieuwe winkel"
|
|
|
|
|
|
|
|
|
2428 |
|
2429 |
#: inc/class-post-types.php:56
|
2430 |
+
msgid "Add New Store"
|
2431 |
+
msgstr "Voeg winkel toe"
|
|
|
2432 |
|
2433 |
+
#: inc/class-post-types.php:57
|
2434 |
+
msgid "Edit Store"
|
2435 |
+
msgstr "Wijzig winkel"
|
|
|
2436 |
|
2437 |
#: inc/class-post-types.php:59
|
2438 |
+
msgid "View Stores"
|
2439 |
+
msgstr "Bekijk winkel"
|
|
|
2440 |
|
2441 |
#: inc/class-post-types.php:60
|
2442 |
+
msgid "Search Stores"
|
2443 |
+
msgstr "Zoek winkels"
|
|
|
|
|
|
|
|
|
|
|
|
|
2444 |
|
2445 |
+
#: inc/class-post-types.php:61
|
2446 |
+
msgid "No Stores found"
|
2447 |
+
msgstr "Geen winkels gevonden"
|
|
|
|
|
|
|
|
|
|
|
|
|
2448 |
|
2449 |
+
#: inc/class-post-types.php:62
|
2450 |
+
msgid "No Stores found in trash"
|
2451 |
+
msgstr "Geen winkels gevonden in de prullenbak"
|
|
|
2452 |
|
2453 |
+
#: inc/class-post-types.php:104 inc/class-post-types.php:114
|
2454 |
msgid "Store Categories"
|
2455 |
msgstr "Winkel categorieën"
|
2456 |
|
2457 |
+
#: inc/class-post-types.php:105
|
2458 |
msgid "Store Category"
|
2459 |
msgstr "Winkel categorie"
|
2460 |
|
2461 |
+
#: inc/class-post-types.php:106
|
2462 |
msgid "Search Store Categories"
|
2463 |
msgstr "Zoek winkel categorieën"
|
2464 |
|
2465 |
+
#: inc/class-post-types.php:107
|
2466 |
msgid "All Store Categories"
|
2467 |
msgstr "Alle winkel categorieën"
|
2468 |
|
2469 |
+
#: inc/class-post-types.php:108
|
2470 |
msgid "Parent Store Category"
|
2471 |
msgstr "Hoofd winkel categorie"
|
2472 |
|
2473 |
+
#: inc/class-post-types.php:109
|
2474 |
msgid "Parent Store Category:"
|
2475 |
msgstr "Hoofd winkel categorie:"
|
2476 |
|
2477 |
+
#: inc/class-post-types.php:110
|
2478 |
msgid "Edit Store Category"
|
2479 |
msgstr "Wijzig winkel categorie"
|
2480 |
|
2481 |
+
#: inc/class-post-types.php:111
|
2482 |
msgid "Update Store Category"
|
2483 |
msgstr "Winkel categorie bijwerken"
|
2484 |
|
2485 |
+
#: inc/class-post-types.php:112
|
2486 |
msgid "Add New Store Category"
|
2487 |
msgstr "Voeg winkel categorie toe"
|
2488 |
|
2489 |
+
#: inc/class-post-types.php:113
|
2490 |
msgid "New Store Category Name"
|
2491 |
msgstr "Naam winkel categorie"
|
2492 |
|
2493 |
+
#: inc/class-post-types.php:144
|
2494 |
msgid "Enter store title here"
|
2495 |
msgstr "Voer winkel naam in"
|
2496 |
|
2497 |
+
#: inc/class-post-types.php:162
|
2498 |
msgid "Zip"
|
2499 |
msgstr "Postcode"
|
2500 |
|
2501 |
+
#: inc/wpsl-functions.php:220
|
2502 |
msgid "Show the store list below the map"
|
2503 |
msgstr "Toon the locatie lijst onder de kaart"
|
2504 |
|
2505 |
+
#: inc/wpsl-functions.php:237
|
2506 |
msgid "Monday"
|
2507 |
msgstr "Maandag"
|
2508 |
|
2509 |
+
#: inc/wpsl-functions.php:238
|
2510 |
msgid "Tuesday"
|
2511 |
msgstr "Dinsdag"
|
2512 |
|
2513 |
+
#: inc/wpsl-functions.php:239
|
2514 |
msgid "Wednesday"
|
2515 |
msgstr "Woensdag"
|
2516 |
|
2517 |
+
#: inc/wpsl-functions.php:240
|
2518 |
msgid "Thursday"
|
2519 |
msgstr "Donderdag"
|
2520 |
|
2521 |
+
#: inc/wpsl-functions.php:241
|
2522 |
msgid "Friday"
|
2523 |
msgstr "Vrijdag"
|
2524 |
|
2525 |
+
#: inc/wpsl-functions.php:242
|
2526 |
msgid "Saturday"
|
2527 |
msgstr "Zaterdag"
|
2528 |
|
2529 |
+
#: inc/wpsl-functions.php:243
|
2530 |
msgid "Sunday"
|
2531 |
msgstr "Zondag"
|
2532 |
|
2533 |
+
#: inc/wpsl-functions.php:273
|
2534 |
#, php-format
|
2535 |
msgid "Mon %sTue %sWed %sThu %sFri %sSat Closed %sSun Closed"
|
2536 |
msgstr "ma %sdi %swoe %sdo %svrij %szat gesloten %szo gesloten"
|
2537 |
|
2538 |
+
#: inc/wpsl-functions.php:289
|
2539 |
msgid "Satellite"
|
2540 |
msgstr "Satelliet"
|
2541 |
|
2542 |
+
#: inc/wpsl-functions.php:290
|
2543 |
msgid "Hybrid"
|
2544 |
msgstr "Hybrid"
|
2545 |
|
2546 |
+
#: inc/wpsl-functions.php:291
|
2547 |
msgid "Terrain"
|
2548 |
msgstr "Terrein"
|
2549 |
|
2550 |
+
#: inc/wpsl-functions.php:306
|
2551 |
msgid "(city) (state) (zip code)"
|
2552 |
msgstr "(stad) (provincie) (postcode)"
|
2553 |
|
2554 |
+
#: inc/wpsl-functions.php:307
|
2555 |
msgid "(city), (state) (zip code)"
|
2556 |
msgstr "(stad), (provincie), (postcode)"
|
2557 |
|
2558 |
+
#: inc/wpsl-functions.php:308
|
2559 |
msgid "(city) (zip code)"
|
2560 |
msgstr "(stad) (postcode)"
|
2561 |
|
2562 |
+
#: inc/wpsl-functions.php:309
|
2563 |
msgid "(city), (zip code)"
|
2564 |
msgstr "(stad), (postcode)"
|
2565 |
|
2566 |
+
#: inc/wpsl-functions.php:310
|
2567 |
msgid "(zip code) (city) (state)"
|
2568 |
msgstr "(postcode) (stad) (provincie)"
|
2569 |
|
2570 |
+
#: inc/wpsl-functions.php:311
|
2571 |
msgid "(zip code) (city)"
|
2572 |
msgstr "(postcode) (stad)"
|
2573 |
|
2574 |
+
#~ msgid "Enable Google Maps Compatibility Mode?"
|
2575 |
+
#~ msgstr "Activeer de Google Maps compatibility mode."
|
2576 |
+
|
2577 |
+
#~ msgid ""
|
2578 |
+
#~ "A %sserver key%s allows you to monitor the usage of the Google Maps "
|
2579 |
+
#~ "%sGeocoding API%s, and is required if you need to %spurchase%s additional "
|
2580 |
+
#~ "quota."
|
2581 |
+
#~ msgstr ""
|
2582 |
+
#~ "Een %sserver sleutel%s maakt het mogelijk om het gebruik van de Google "
|
2583 |
+
#~ "Maps %sGeocoding API%s in de gaten te houden, en is verplicht als je de "
|
2584 |
+
#~ "%slimiet%s wil verhogen."
|
2585 |
+
|
2586 |
+
#~ msgid "Optional"
|
2587 |
+
#~ msgstr "Optioneel"
|
2588 |
+
|
2589 |
+
#~ msgid ""
|
2590 |
+
#~ "A %sbrowser key%s allows you to monitor the usage of the Google Maps "
|
2591 |
+
#~ "%sJavaScript API%s."
|
2592 |
+
#~ msgstr ""
|
2593 |
+
#~ "Een %sbrowser key%s maakt het mogelijk om het gebruik van de Google "
|
2594 |
+
#~ "%sJavaScript API%s in de gaten te houden."
|
2595 |
+
|
2596 |
+
#~ msgid "Stores"
|
2597 |
+
#~ msgstr "winkels"
|
2598 |
+
|
2599 |
+
#~ msgid "All %s"
|
2600 |
+
#~ msgstr "Alle %s"
|
2601 |
+
|
2602 |
+
#~ msgid "New %s"
|
2603 |
+
#~ msgstr "Nieuwe %s"
|
2604 |
+
|
2605 |
+
#~ msgid "Add New %s"
|
2606 |
+
#~ msgstr "Nieuwe %s"
|
2607 |
+
|
2608 |
+
#~ msgid "Edit %s"
|
2609 |
+
#~ msgstr "Bewerk %s"
|
2610 |
+
|
2611 |
+
#~ msgid "View %s"
|
2612 |
+
#~ msgstr "Bekijk %s"
|
2613 |
+
|
2614 |
+
#~ msgid "Search %s"
|
2615 |
+
#~ msgstr "Zoek %s"
|
2616 |
+
|
2617 |
+
#~ msgid "No %s found"
|
2618 |
+
#~ msgstr "Geen %s gevonden"
|
2619 |
+
|
2620 |
+
#~ msgid "No %s found in trash"
|
2621 |
+
#~ msgstr "Geen %s gevonden in de prullenbak"
|
2622 |
+
|
2623 |
#~ msgid "Please try again later."
|
2624 |
#~ msgstr "Probeer het later nog een keer."
|
2625 |
|
languages/wpsl.pot
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Project-Id-Version: WP Store Locator v2.2.
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2016-
|
7 |
"PO-Revision-Date: 2015-09-01 13:49+0100\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
-
"X-Generator: Poedit 1.8.
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
18 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
@@ -40,12 +40,12 @@ msgid "Security check failed. Please reload the page and try again."
|
|
40 |
msgstr ""
|
41 |
|
42 |
#: admin/class-admin.php:174 admin/class-admin.php:175
|
43 |
-
#: admin/class-admin.php:
|
44 |
msgid "Settings"
|
45 |
msgstr ""
|
46 |
|
47 |
#: admin/class-admin.php:181 admin/class-admin.php:182
|
48 |
-
#: admin/class-admin.php:
|
49 |
msgid "Add-Ons"
|
50 |
msgstr ""
|
51 |
|
@@ -70,7 +70,7 @@ msgid "The map preview requires all the location details."
|
|
70 |
msgstr ""
|
71 |
|
72 |
#: admin/class-admin.php:298 admin/class-metaboxes.php:525
|
73 |
-
#: frontend/class-frontend.php:
|
74 |
msgid "Closed"
|
75 |
msgstr ""
|
76 |
|
@@ -78,19 +78,19 @@ msgstr ""
|
|
78 |
msgid "The code for the map style is invalid."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: admin/class-admin.php:
|
82 |
msgid "Welcome to WP Store Locator"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin/class-admin.php:
|
86 |
msgid "Sign up for the latest plugin updates and announcements."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: admin/class-admin.php:
|
90 |
msgid "Documentation"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin/class-admin.php:
|
94 |
#, php-format
|
95 |
msgid "If you like this plugin please leave us a %s5 star%s rating."
|
96 |
msgstr ""
|
@@ -182,7 +182,7 @@ msgstr ""
|
|
182 |
msgid "Location"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: admin/class-metaboxes.php:50 inc/class-post-types.php:
|
186 |
msgid "Address"
|
187 |
msgstr ""
|
188 |
|
@@ -190,11 +190,11 @@ msgstr ""
|
|
190 |
msgid "Address 2"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: admin/class-metaboxes.php:57 inc/class-post-types.php:
|
194 |
msgid "City"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: admin/class-metaboxes.php:61 inc/class-post-types.php:
|
198 |
msgid "State"
|
199 |
msgstr ""
|
200 |
|
@@ -234,7 +234,7 @@ msgid "Tel"
|
|
234 |
msgstr ""
|
235 |
|
236 |
#: admin/class-metaboxes.php:91 admin/templates/map-settings.php:522
|
237 |
-
#: admin/templates/map-settings.php:523 frontend/class-frontend.php:
|
238 |
#: frontend/underscore-functions.php:32 frontend/underscore-functions.php:68
|
239 |
#: frontend/underscore-functions.php:150 inc/wpsl-functions.php:146
|
240 |
msgid "Fax"
|
@@ -242,7 +242,7 @@ msgstr ""
|
|
242 |
|
243 |
#: admin/class-metaboxes.php:94 admin/templates/map-settings.php:526
|
244 |
#: admin/templates/map-settings.php:527 admin/upgrade.php:198
|
245 |
-
#: frontend/class-frontend.php:
|
246 |
#: frontend/underscore-functions.php:71 frontend/underscore-functions.php:153
|
247 |
#: inc/wpsl-functions.php:147
|
248 |
msgid "Email"
|
@@ -250,7 +250,7 @@ msgstr ""
|
|
250 |
|
251 |
#: admin/class-metaboxes.php:97 admin/templates/map-settings.php:530
|
252 |
#: admin/templates/map-settings.php:531 admin/upgrade.php:202
|
253 |
-
#: frontend/class-frontend.php:
|
254 |
msgid "Url"
|
255 |
msgstr ""
|
256 |
|
@@ -339,17 +339,17 @@ msgstr ""
|
|
339 |
msgid "WP Store Locator Transients Cleared"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: admin/class-settings.php:
|
343 |
msgid ""
|
344 |
"The max results field cannot be empty, the default value has been restored."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: admin/class-settings.php:
|
348 |
msgid ""
|
349 |
"The search radius field cannot be empty, the default value has been restored."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin/class-settings.php:
|
353 |
#, php-format
|
354 |
msgid ""
|
355 |
"Please provide the name of a city or country that can be used as a starting "
|
@@ -357,1116 +357,1116 @@ msgid ""
|
|
357 |
"user fails, or the option itself is disabled."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/class-settings.php:
|
361 |
msgid "Select your language"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin/class-settings.php:
|
365 |
msgid "English"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: admin/class-settings.php:
|
369 |
msgid "Arabic"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin/class-settings.php:
|
373 |
msgid "Basque"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin/class-settings.php:
|
377 |
msgid "Bulgarian"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin/class-settings.php:
|
381 |
msgid "Bengali"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin/class-settings.php:
|
385 |
msgid "Catalan"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin/class-settings.php:
|
389 |
msgid "Czech"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin/class-settings.php:
|
393 |
msgid "Danish"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/class-settings.php:
|
397 |
msgid "German"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: admin/class-settings.php:
|
401 |
msgid "Greek"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: admin/class-settings.php:
|
405 |
msgid "English (Australian)"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: admin/class-settings.php:
|
409 |
msgid "English (Great Britain)"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin/class-settings.php:
|
413 |
msgid "Spanish"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: admin/class-settings.php:
|
417 |
msgid "Farsi"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin/class-settings.php:
|
421 |
msgid "Finnish"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin/class-settings.php:
|
425 |
msgid "Filipino"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin/class-settings.php:
|
429 |
msgid "French"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/class-settings.php:
|
433 |
msgid "Galician"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin/class-settings.php:
|
437 |
msgid "Gujarati"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/class-settings.php:
|
441 |
msgid "Hindi"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin/class-settings.php:
|
445 |
msgid "Croatian"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/class-settings.php:
|
449 |
msgid "Hungarian"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/class-settings.php:
|
453 |
msgid "Indonesian"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin/class-settings.php:
|
457 |
msgid "Italian"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: admin/class-settings.php:
|
461 |
msgid "Hebrew"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: admin/class-settings.php:
|
465 |
msgid "Japanese"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/class-settings.php:
|
469 |
msgid "Kannada"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/class-settings.php:
|
473 |
msgid "Korean"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: admin/class-settings.php:
|
477 |
msgid "Lithuanian"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: admin/class-settings.php:
|
481 |
msgid "Latvian"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: admin/class-settings.php:
|
485 |
msgid "Malayalam"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/class-settings.php:
|
489 |
msgid "Marathi"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/class-settings.php:
|
493 |
msgid "Dutch"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: admin/class-settings.php:
|
497 |
msgid "Norwegian"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/class-settings.php:
|
501 |
msgid "Norwegian Nynorsk"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/class-settings.php:
|
505 |
msgid "Polish"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: admin/class-settings.php:
|
509 |
msgid "Portuguese"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/class-settings.php:
|
513 |
msgid "Portuguese (Brazil)"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: admin/class-settings.php:
|
517 |
msgid "Portuguese (Portugal)"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: admin/class-settings.php:
|
521 |
msgid "Romanian"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/class-settings.php:
|
525 |
msgid "Russian"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin/class-settings.php:
|
529 |
msgid "Slovak"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/class-settings.php:
|
533 |
msgid "Slovenian"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/class-settings.php:
|
537 |
msgid "Serbian"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/class-settings.php:
|
541 |
msgid "Swedish"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/class-settings.php:
|
545 |
msgid "Tagalog"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/class-settings.php:
|
549 |
msgid "Tamil"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/class-settings.php:
|
553 |
msgid "Telugu"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/class-settings.php:
|
557 |
msgid "Thai"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/class-settings.php:
|
561 |
msgid "Turkish"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/class-settings.php:
|
565 |
msgid "Ukrainian"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/class-settings.php:
|
569 |
msgid "Vietnamese"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: admin/class-settings.php:
|
573 |
msgid "Chinese (Simplified)"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/class-settings.php:
|
577 |
msgid "Chinese (Traditional)"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/class-settings.php:
|
581 |
msgid "Select your region"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: admin/class-settings.php:
|
585 |
msgid "Afghanistan"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/class-settings.php:
|
589 |
msgid "Albania"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/class-settings.php:
|
593 |
msgid "Algeria"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: admin/class-settings.php:
|
597 |
msgid "American Samoa"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: admin/class-settings.php:
|
601 |
msgid "Andorra"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: admin/class-settings.php:
|
605 |
msgid "Anguilla"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: admin/class-settings.php:
|
609 |
msgid "Angola"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: admin/class-settings.php:
|
613 |
msgid "Antigua and Barbuda"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: admin/class-settings.php:
|
617 |
msgid "Argentina"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: admin/class-settings.php:
|
621 |
msgid "Armenia"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/class-settings.php:
|
625 |
msgid "Aruba"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: admin/class-settings.php:
|
629 |
msgid "Australia"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/class-settings.php:
|
633 |
msgid "Austria"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/class-settings.php:
|
637 |
msgid "Azerbaijan"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/class-settings.php:
|
641 |
msgid "Bahamas"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/class-settings.php:
|
645 |
msgid "Bahrain"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/class-settings.php:
|
649 |
msgid "Bangladesh"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/class-settings.php:
|
653 |
msgid "Barbados"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: admin/class-settings.php:
|
657 |
msgid "Belarus"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: admin/class-settings.php:
|
661 |
msgid "Belgium"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: admin/class-settings.php:
|
665 |
msgid "Belize"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: admin/class-settings.php:
|
669 |
msgid "Benin"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: admin/class-settings.php:
|
673 |
msgid "Bermuda"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: admin/class-settings.php:
|
677 |
msgid "Bhutan"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: admin/class-settings.php:
|
681 |
msgid "Bolivia"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: admin/class-settings.php:
|
685 |
msgid "Bosnia and Herzegovina"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: admin/class-settings.php:
|
689 |
msgid "Botswana"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: admin/class-settings.php:
|
693 |
msgid "Brazil"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: admin/class-settings.php:
|
697 |
msgid "British Indian Ocean Territory"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: admin/class-settings.php:
|
701 |
msgid "Brunei"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: admin/class-settings.php:
|
705 |
msgid "Bulgaria"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: admin/class-settings.php:
|
709 |
msgid "Burkina Faso"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: admin/class-settings.php:
|
713 |
msgid "Burundi"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: admin/class-settings.php:
|
717 |
msgid "Cambodia"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: admin/class-settings.php:
|
721 |
msgid "Cameroon"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: admin/class-settings.php:
|
725 |
msgid "Canada"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: admin/class-settings.php:
|
729 |
msgid "Cape Verde"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: admin/class-settings.php:
|
733 |
msgid "Cayman Islands"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: admin/class-settings.php:
|
737 |
msgid "Central African Republic"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: admin/class-settings.php:
|
741 |
msgid "Chad"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: admin/class-settings.php:
|
745 |
msgid "Chile"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: admin/class-settings.php:
|
749 |
msgid "China"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: admin/class-settings.php:
|
753 |
msgid "Christmas Island"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: admin/class-settings.php:
|
757 |
msgid "Cocos Islands"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: admin/class-settings.php:
|
761 |
msgid "Colombia"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: admin/class-settings.php:
|
765 |
msgid "Comoros"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: admin/class-settings.php:
|
769 |
msgid "Congo"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: admin/class-settings.php:
|
773 |
msgid "Costa Rica"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: admin/class-settings.php:
|
777 |
msgid "Côte d'Ivoire"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: admin/class-settings.php:
|
781 |
msgid "Croatia"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: admin/class-settings.php:
|
785 |
msgid "Cuba"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: admin/class-settings.php:
|
789 |
msgid "Czech Republic"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: admin/class-settings.php:
|
793 |
msgid "Denmark"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: admin/class-settings.php:
|
797 |
msgid "Djibouti"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: admin/class-settings.php:
|
801 |
msgid "Democratic Republic of the Congo"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: admin/class-settings.php:
|
805 |
msgid "Dominica"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: admin/class-settings.php:
|
809 |
msgid "Dominican Republic"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: admin/class-settings.php:
|
813 |
msgid "Ecuador"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: admin/class-settings.php:
|
817 |
msgid "Egypt"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: admin/class-settings.php:
|
821 |
msgid "El Salvador"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: admin/class-settings.php:
|
825 |
msgid "Equatorial Guinea"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: admin/class-settings.php:
|
829 |
msgid "Eritrea"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: admin/class-settings.php:
|
833 |
msgid "Estonia"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: admin/class-settings.php:
|
837 |
msgid "Ethiopia"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: admin/class-settings.php:
|
841 |
msgid "Fiji"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: admin/class-settings.php:
|
845 |
msgid "Finland"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: admin/class-settings.php:
|
849 |
msgid "France"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: admin/class-settings.php:
|
853 |
msgid "French Guiana"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: admin/class-settings.php:
|
857 |
msgid "Gabon"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: admin/class-settings.php:
|
861 |
msgid "Gambia"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: admin/class-settings.php:
|
865 |
msgid "Germany"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: admin/class-settings.php:
|
869 |
msgid "Ghana"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: admin/class-settings.php:
|
873 |
msgid "Greenland"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: admin/class-settings.php:
|
877 |
msgid "Greece"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: admin/class-settings.php:
|
881 |
msgid "Grenada"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: admin/class-settings.php:
|
885 |
msgid "Guam"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: admin/class-settings.php:
|
889 |
msgid "Guadeloupe"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: admin/class-settings.php:
|
893 |
msgid "Guatemala"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: admin/class-settings.php:
|
897 |
msgid "Guinea"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: admin/class-settings.php:
|
901 |
msgid "Guinea-Bissau"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: admin/class-settings.php:
|
905 |
msgid "Haiti"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: admin/class-settings.php:
|
909 |
msgid "Honduras"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: admin/class-settings.php:
|
913 |
msgid "Hong Kong"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: admin/class-settings.php:
|
917 |
msgid "Hungary"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: admin/class-settings.php:
|
921 |
msgid "Iceland"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: admin/class-settings.php:
|
925 |
msgid "India"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: admin/class-settings.php:
|
929 |
msgid "Indonesia"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: admin/class-settings.php:
|
933 |
msgid "Iran"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: admin/class-settings.php:
|
937 |
msgid "Iraq"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: admin/class-settings.php:
|
941 |
msgid "Ireland"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: admin/class-settings.php:
|
945 |
msgid "Israel"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: admin/class-settings.php:
|
949 |
msgid "Italy"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: admin/class-settings.php:
|
953 |
msgid "Jamaica"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: admin/class-settings.php:
|
957 |
msgid "Japan"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: admin/class-settings.php:
|
961 |
msgid "Jordan"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: admin/class-settings.php:
|
965 |
msgid "Kazakhstan"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: admin/class-settings.php:
|
969 |
msgid "Kenya"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: admin/class-settings.php:
|
973 |
msgid "Kuwait"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: admin/class-settings.php:
|
977 |
msgid "Kyrgyzstan"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: admin/class-settings.php:
|
981 |
msgid "Laos"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: admin/class-settings.php:
|
985 |
msgid "Latvia"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: admin/class-settings.php:
|
989 |
msgid "Lebanon"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: admin/class-settings.php:
|
993 |
msgid "Lesotho"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: admin/class-settings.php:
|
997 |
msgid "Liberia"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: admin/class-settings.php:
|
1001 |
msgid "Libya"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: admin/class-settings.php:
|
1005 |
msgid "Liechtenstein"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: admin/class-settings.php:
|
1009 |
msgid "Lithuania"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: admin/class-settings.php:
|
1013 |
msgid "Luxembourg"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: admin/class-settings.php:
|
1017 |
msgid "Macau"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: admin/class-settings.php:
|
1021 |
msgid "Macedonia"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: admin/class-settings.php:
|
1025 |
msgid "Madagascar"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: admin/class-settings.php:
|
1029 |
msgid "Malawi"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: admin/class-settings.php:
|
1033 |
msgid "Malaysia "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: admin/class-settings.php:
|
1037 |
msgid "Mali"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: admin/class-settings.php:
|
1041 |
msgid "Marshall Islands"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: admin/class-settings.php:
|
1045 |
msgid "Martinique"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: admin/class-settings.php:
|
1049 |
msgid "Mauritania"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: admin/class-settings.php:
|
1053 |
msgid "Mauritius"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: admin/class-settings.php:
|
1057 |
msgid "Mexico"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: admin/class-settings.php:
|
1061 |
msgid "Micronesia"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: admin/class-settings.php:
|
1065 |
msgid "Moldova"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: admin/class-settings.php:
|
1069 |
msgid "Monaco"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: admin/class-settings.php:
|
1073 |
msgid "Mongolia"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: admin/class-settings.php:
|
1077 |
msgid "Montenegro"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: admin/class-settings.php:
|
1081 |
msgid "Montserrat"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: admin/class-settings.php:
|
1085 |
msgid "Morocco"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: admin/class-settings.php:
|
1089 |
msgid "Mozambique"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: admin/class-settings.php:
|
1093 |
msgid "Myanmar"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: admin/class-settings.php:
|
1097 |
msgid "Namibia"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: admin/class-settings.php:
|
1101 |
msgid "Nauru"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: admin/class-settings.php:
|
1105 |
msgid "Nepal"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: admin/class-settings.php:
|
1109 |
msgid "Netherlands"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: admin/class-settings.php:
|
1113 |
msgid "Netherlands Antilles"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: admin/class-settings.php:
|
1117 |
msgid "New Zealand"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: admin/class-settings.php:
|
1121 |
msgid "Nicaragua"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: admin/class-settings.php:
|
1125 |
msgid "Niger"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: admin/class-settings.php:
|
1129 |
msgid "Nigeria"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: admin/class-settings.php:
|
1133 |
msgid "Niue"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: admin/class-settings.php:
|
1137 |
msgid "Northern Mariana Islands"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: admin/class-settings.php:
|
1141 |
msgid "Norway"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: admin/class-settings.php:
|
1145 |
msgid "Oman"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: admin/class-settings.php:
|
1149 |
msgid "Pakistan"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: admin/class-settings.php:
|
1153 |
msgid "Panama"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: admin/class-settings.php:
|
1157 |
msgid "Papua New Guinea"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: admin/class-settings.php:
|
1161 |
msgid "Paraguay"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: admin/class-settings.php:
|
1165 |
msgid "Peru"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: admin/class-settings.php:
|
1169 |
msgid "Philippines"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: admin/class-settings.php:
|
1173 |
msgid "Pitcairn Islands"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: admin/class-settings.php:
|
1177 |
msgid "Poland"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: admin/class-settings.php:
|
1181 |
msgid "Portugal"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: admin/class-settings.php:
|
1185 |
msgid "Qatar"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: admin/class-settings.php:
|
1189 |
msgid "Reunion"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: admin/class-settings.php:
|
1193 |
msgid "Romania"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: admin/class-settings.php:
|
1197 |
msgid "Russia"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: admin/class-settings.php:
|
1201 |
msgid "Rwanda"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: admin/class-settings.php:
|
1205 |
msgid "Saint Helena"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: admin/class-settings.php:
|
1209 |
msgid "Saint Kitts and Nevis"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: admin/class-settings.php:
|
1213 |
msgid "Saint Vincent and the Grenadines"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: admin/class-settings.php:
|
1217 |
msgid "Saint Lucia"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: admin/class-settings.php:
|
1221 |
msgid "Samoa"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: admin/class-settings.php:
|
1225 |
msgid "San Marino"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: admin/class-settings.php:
|
1229 |
msgid "São Tomé and Príncipe"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: admin/class-settings.php:
|
1233 |
msgid "Saudi Arabia"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: admin/class-settings.php:
|
1237 |
msgid "Senegal"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: admin/class-settings.php:
|
1241 |
msgid "Serbia"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: admin/class-settings.php:
|
1245 |
msgid "Seychelles"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: admin/class-settings.php:
|
1249 |
msgid "Sierra Leone"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: admin/class-settings.php:
|
1253 |
msgid "Singapore"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: admin/class-settings.php:
|
1257 |
msgid "Slovakia"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: admin/class-settings.php:
|
1261 |
msgid "Solomon Islands"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: admin/class-settings.php:
|
1265 |
msgid "Somalia"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: admin/class-settings.php:
|
1269 |
msgid "South Africa"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: admin/class-settings.php:
|
1273 |
msgid "South Korea"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: admin/class-settings.php:
|
1277 |
msgid "Spain"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: admin/class-settings.php:
|
1281 |
msgid "Sri Lanka"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: admin/class-settings.php:
|
1285 |
msgid "Sudan"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: admin/class-settings.php:
|
1289 |
msgid "Swaziland"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: admin/class-settings.php:
|
1293 |
msgid "Sweden"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: admin/class-settings.php:
|
1297 |
msgid "Switzerland"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: admin/class-settings.php:
|
1301 |
msgid "Syria"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: admin/class-settings.php:
|
1305 |
msgid "Taiwan"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: admin/class-settings.php:
|
1309 |
msgid "Tajikistan"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: admin/class-settings.php:
|
1313 |
msgid "Tanzania"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: admin/class-settings.php:
|
1317 |
msgid "Thailand"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: admin/class-settings.php:
|
1321 |
msgid "Timor-Leste"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: admin/class-settings.php:
|
1325 |
msgid "Tokelau"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: admin/class-settings.php:
|
1329 |
msgid "Togo"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: admin/class-settings.php:
|
1333 |
msgid "Tonga"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: admin/class-settings.php:
|
1337 |
msgid "Trinidad and Tobago"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: admin/class-settings.php:
|
1341 |
msgid "Tunisia"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: admin/class-settings.php:
|
1345 |
msgid "Turkey"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: admin/class-settings.php:
|
1349 |
msgid "Turkmenistan"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: admin/class-settings.php:
|
1353 |
msgid "Tuvalu"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: admin/class-settings.php:
|
1357 |
msgid "Uganda"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: admin/class-settings.php:
|
1361 |
msgid "Ukraine"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: admin/class-settings.php:
|
1365 |
msgid "United Arab Emirates"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: admin/class-settings.php:
|
1369 |
msgid "United Kingdom"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: admin/class-settings.php:
|
1373 |
msgid "United States"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: admin/class-settings.php:
|
1377 |
msgid "Uruguay"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: admin/class-settings.php:
|
1381 |
msgid "Uzbekistan"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: admin/class-settings.php:
|
1385 |
msgid "Wallis Futuna"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: admin/class-settings.php:
|
1389 |
msgid "Venezuela"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: admin/class-settings.php:
|
1393 |
msgid "Vietnam"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: admin/class-settings.php:
|
1397 |
msgid "Yemen"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: admin/class-settings.php:
|
1401 |
msgid "Zambia"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: admin/class-settings.php:
|
1405 |
msgid "Zimbabwe"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: admin/class-settings.php:
|
1409 |
msgid "World view"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: admin/class-settings.php:
|
1413 |
#: inc/wpsl-functions.php:215
|
1414 |
msgid "Default"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: admin/class-settings.php:
|
1418 |
msgid "Roadmap"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: admin/class-settings.php:
|
1422 |
msgid "Start location marker"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: admin/class-settings.php:
|
1426 |
msgid "Store location marker"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: admin/class-settings.php:
|
1430 |
msgid "Textarea"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: admin/class-settings.php:
|
1434 |
msgid "Dropdowns (recommended)"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: admin/class-settings.php:
|
1438 |
msgid "Bounces up and down"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: admin/class-settings.php:
|
1442 |
msgid "Will open the info window"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: admin/class-settings.php:
|
1446 |
msgid "Does not respond"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: admin/class-settings.php:
|
1450 |
msgid "In the store listings"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: admin/class-settings.php:
|
1454 |
msgid "In the info window on the map"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: admin/class-settings.php:
|
1458 |
msgid "Dropdown"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: admin/class-settings.php:
|
1462 |
msgid "Checkboxes"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: admin/class-settings.php:
|
1466 |
msgid "12 Hours"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: admin/class-settings.php:
|
1470 |
msgid "24 Hours"
|
1471 |
msgstr ""
|
1472 |
|
@@ -1633,6 +1633,13 @@ msgstr ""
|
|
1633 |
msgid "Attempt to auto-locate the user"
|
1634 |
msgstr ""
|
1635 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1636 |
#: admin/templates/map-settings.php:187
|
1637 |
msgid "Load locations on page load"
|
1638 |
msgstr ""
|
@@ -2033,7 +2040,7 @@ msgid "Search radius"
|
|
2033 |
msgstr ""
|
2034 |
|
2035 |
#: admin/templates/map-settings.php:490 admin/templates/map-settings.php:491
|
2036 |
-
#: frontend/class-frontend.php:
|
2037 |
msgid "No results found"
|
2038 |
msgstr ""
|
2039 |
|
@@ -2041,7 +2048,7 @@ msgstr ""
|
|
2041 |
msgid "Searching (preloader text)"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: admin/templates/map-settings.php:499 frontend/class-frontend.php:
|
2045 |
#: inc/wpsl-functions.php:133
|
2046 |
msgid "Searching..."
|
2047 |
msgstr ""
|
@@ -2057,7 +2064,7 @@ msgstr ""
|
|
2057 |
msgid "Category filter"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: admin/templates/map-settings.php:507 frontend/class-frontend.php:
|
2061 |
msgid "Category"
|
2062 |
msgstr ""
|
2063 |
|
@@ -2066,26 +2073,26 @@ msgid "Category first item"
|
|
2066 |
msgstr ""
|
2067 |
|
2068 |
#: admin/templates/map-settings.php:511 admin/upgrade.php:367
|
2069 |
-
#: frontend/class-frontend.php:
|
2070 |
msgid "Any"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
#: admin/templates/map-settings.php:514 admin/templates/map-settings.php:515
|
2074 |
-
#: admin/upgrade.php:59 frontend/class-frontend.php:
|
2075 |
#: frontend/underscore-functions.php:138 frontend/underscore-functions.php:168
|
2076 |
#: inc/wpsl-functions.php:137
|
2077 |
msgid "More info"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
#: admin/templates/map-settings.php:518 admin/templates/map-settings.php:519
|
2081 |
-
#: frontend/class-frontend.php:
|
2082 |
#: frontend/underscore-functions.php:65 frontend/underscore-functions.php:147
|
2083 |
#: inc/wpsl-functions.php:145
|
2084 |
msgid "Phone"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
#: admin/templates/map-settings.php:538 admin/templates/map-settings.php:539
|
2088 |
-
#: frontend/class-frontend.php:
|
2089 |
msgid "Start location"
|
2090 |
msgstr ""
|
2091 |
|
@@ -2093,7 +2100,7 @@ msgstr ""
|
|
2093 |
msgid "Get directions"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: admin/templates/map-settings.php:543 frontend/class-frontend.php:
|
2097 |
#: inc/wpsl-functions.php:138
|
2098 |
msgid "Directions"
|
2099 |
msgstr ""
|
@@ -2103,24 +2110,24 @@ msgid "No directions found"
|
|
2103 |
msgstr ""
|
2104 |
|
2105 |
#: admin/templates/map-settings.php:547 admin/upgrade.php:151
|
2106 |
-
#: frontend/class-frontend.php:
|
2107 |
msgid "No route could be found between the origin and destination"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
#: admin/templates/map-settings.php:550 admin/templates/map-settings.php:551
|
2111 |
-
#: admin/upgrade.php:77 frontend/class-frontend.php:
|
2112 |
#: inc/wpsl-functions.php:140
|
2113 |
msgid "Back"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
#: admin/templates/map-settings.php:554 admin/templates/map-settings.php:555
|
2117 |
-
#: admin/upgrade.php:143 frontend/class-frontend.php:
|
2118 |
#: inc/wpsl-functions.php:141
|
2119 |
msgid "Street view"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
#: admin/templates/map-settings.php:558 admin/templates/map-settings.php:559
|
2123 |
-
#: admin/upgrade.php:147 frontend/class-frontend.php:
|
2124 |
#: inc/wpsl-functions.php:142
|
2125 |
msgid "Zoom here"
|
2126 |
msgstr ""
|
@@ -2129,7 +2136,7 @@ msgstr ""
|
|
2129 |
msgid "General error"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: admin/templates/map-settings.php:563 frontend/class-frontend.php:
|
2133 |
#: inc/wpsl-functions.php:143
|
2134 |
msgid "Something went wrong, please try again!"
|
2135 |
msgstr ""
|
@@ -2145,7 +2152,7 @@ msgid ""
|
|
2145 |
"the \"API key\" field at the top of this page."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: admin/templates/map-settings.php:567 frontend/class-frontend.php:
|
2149 |
#: inc/wpsl-functions.php:144
|
2150 |
msgid "API usage limit reached"
|
2151 |
msgstr ""
|
@@ -2166,9 +2173,7 @@ msgid ""
|
|
2166 |
msgstr ""
|
2167 |
|
2168 |
#: admin/templates/map-settings.php:587
|
2169 |
-
msgid ""
|
2170 |
-
"Prevent other scripts from including the Google Maps API a second time on "
|
2171 |
-
"the store locator page?"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
#: admin/templates/map-settings.php:587
|
@@ -2237,37 +2242,37 @@ msgid ""
|
|
2237 |
"view them on the %sAll Stores%s page."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: frontend/class-frontend.php:
|
2241 |
msgid ""
|
2242 |
"If you use the [wpsl_address] shortcode outside a store page you need to set "
|
2243 |
"the ID attribute."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: frontend/class-frontend.php:
|
2247 |
msgid ""
|
2248 |
"If you use the [wpsl_hours] shortcode outside a store page you need to set "
|
2249 |
"the ID attribute."
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: frontend/class-frontend.php:
|
2253 |
msgid ""
|
2254 |
"If you use the [wpsl_map] shortcode outside a store page, then you need to "
|
2255 |
"set the ID or category attribute."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: frontend/class-frontend.php:
|
2259 |
msgid "The application does not have permission to use the Geolocation API."
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: frontend/class-frontend.php:
|
2263 |
msgid "Location information is unavailable."
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: frontend/class-frontend.php:
|
2267 |
msgid "The geolocation request timed out."
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: frontend/class-frontend.php:
|
2271 |
msgid "An unknown error occurred."
|
2272 |
msgstr ""
|
2273 |
|
@@ -2277,103 +2282,91 @@ msgstr ""
|
|
2277 |
msgid "Search provided by %sWP Store Locator%s"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: inc/class-post-types.php:
|
2281 |
-
msgid "Store"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: inc/class-post-types.php:
|
2285 |
-
msgid "Stores"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: inc/class-post-types.php:
|
2289 |
-
msgid "Store
|
|
|
|
|
|
|
|
|
2290 |
msgstr ""
|
2291 |
|
2292 |
#: inc/class-post-types.php:56
|
2293 |
-
|
2294 |
-
msgid "All %s"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: inc/class-post-types.php:
|
2298 |
-
|
2299 |
-
msgid "New %s"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
#: inc/class-post-types.php:59
|
2303 |
-
|
2304 |
-
msgid "Add New %s"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
#: inc/class-post-types.php:60
|
2308 |
-
|
2309 |
-
msgid "Edit %s"
|
2310 |
-
msgstr ""
|
2311 |
-
|
2312 |
-
#: inc/class-post-types.php:62
|
2313 |
-
#, php-format
|
2314 |
-
msgid "View %s"
|
2315 |
-
msgstr ""
|
2316 |
-
|
2317 |
-
#: inc/class-post-types.php:63
|
2318 |
-
#, php-format
|
2319 |
-
msgid "Search %s"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: inc/class-post-types.php:
|
2323 |
-
|
2324 |
-
msgid "No %s found"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: inc/class-post-types.php:
|
2328 |
-
|
2329 |
-
msgid "No %s found in trash"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: inc/class-post-types.php:
|
2333 |
msgid "Store Categories"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: inc/class-post-types.php:
|
2337 |
msgid "Store Category"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: inc/class-post-types.php:
|
2341 |
msgid "Search Store Categories"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: inc/class-post-types.php:
|
2345 |
msgid "All Store Categories"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: inc/class-post-types.php:
|
2349 |
msgid "Parent Store Category"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: inc/class-post-types.php:
|
2353 |
msgid "Parent Store Category:"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: inc/class-post-types.php:
|
2357 |
msgid "Edit Store Category"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: inc/class-post-types.php:
|
2361 |
msgid "Update Store Category"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: inc/class-post-types.php:
|
2365 |
msgid "Add New Store Category"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: inc/class-post-types.php:
|
2369 |
msgid "New Store Category Name"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: inc/class-post-types.php:
|
2373 |
msgid "Enter store title here"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: inc/class-post-types.php:
|
2377 |
msgid "Zip"
|
2378 |
msgstr ""
|
2379 |
|
1 |
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: WP Store Locator v2.2.5\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2016-12-11 16:49+0700\n"
|
7 |
"PO-Revision-Date: 2015-09-01 13:49+0100\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
+
"X-Generator: Poedit 1.8.11\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
18 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
40 |
msgstr ""
|
41 |
|
42 |
#: admin/class-admin.php:174 admin/class-admin.php:175
|
43 |
+
#: admin/class-admin.php:455 admin/templates/map-settings.php:11
|
44 |
msgid "Settings"
|
45 |
msgstr ""
|
46 |
|
47 |
#: admin/class-admin.php:181 admin/class-admin.php:182
|
48 |
+
#: admin/class-admin.php:475
|
49 |
msgid "Add-Ons"
|
50 |
msgstr ""
|
51 |
|
70 |
msgstr ""
|
71 |
|
72 |
#: admin/class-admin.php:298 admin/class-metaboxes.php:525
|
73 |
+
#: frontend/class-frontend.php:545
|
74 |
msgid "Closed"
|
75 |
msgstr ""
|
76 |
|
78 |
msgid "The code for the map style is invalid."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: admin/class-admin.php:410
|
82 |
msgid "Welcome to WP Store Locator"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: admin/class-admin.php:411
|
86 |
msgid "Sign up for the latest plugin updates and announcements."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/class-admin.php:474
|
90 |
msgid "Documentation"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin/class-admin.php:497
|
94 |
#, php-format
|
95 |
msgid "If you like this plugin please leave us a %s5 star%s rating."
|
96 |
msgstr ""
|
182 |
msgid "Location"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: admin/class-metaboxes.php:50 inc/class-post-types.php:159
|
186 |
msgid "Address"
|
187 |
msgstr ""
|
188 |
|
190 |
msgid "Address 2"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: admin/class-metaboxes.php:57 inc/class-post-types.php:160
|
194 |
msgid "City"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: admin/class-metaboxes.php:61 inc/class-post-types.php:161
|
198 |
msgid "State"
|
199 |
msgstr ""
|
200 |
|
234 |
msgstr ""
|
235 |
|
236 |
#: admin/class-metaboxes.php:91 admin/templates/map-settings.php:522
|
237 |
+
#: admin/templates/map-settings.php:523 frontend/class-frontend.php:793
|
238 |
#: frontend/underscore-functions.php:32 frontend/underscore-functions.php:68
|
239 |
#: frontend/underscore-functions.php:150 inc/wpsl-functions.php:146
|
240 |
msgid "Fax"
|
242 |
|
243 |
#: admin/class-metaboxes.php:94 admin/templates/map-settings.php:526
|
244 |
#: admin/templates/map-settings.php:527 admin/upgrade.php:198
|
245 |
+
#: frontend/class-frontend.php:797 frontend/underscore-functions.php:35
|
246 |
#: frontend/underscore-functions.php:71 frontend/underscore-functions.php:153
|
247 |
#: inc/wpsl-functions.php:147
|
248 |
msgid "Email"
|
250 |
|
251 |
#: admin/class-metaboxes.php:97 admin/templates/map-settings.php:530
|
252 |
#: admin/templates/map-settings.php:531 admin/upgrade.php:202
|
253 |
+
#: frontend/class-frontend.php:802 inc/wpsl-functions.php:148
|
254 |
msgid "Url"
|
255 |
msgstr ""
|
256 |
|
339 |
msgid "WP Store Locator Transients Cleared"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin/class-settings.php:402
|
343 |
msgid ""
|
344 |
"The max results field cannot be empty, the default value has been restored."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin/class-settings.php:405
|
348 |
msgid ""
|
349 |
"The search radius field cannot be empty, the default value has been restored."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/class-settings.php:408
|
353 |
#, php-format
|
354 |
msgid ""
|
355 |
"Please provide the name of a city or country that can be used as a starting "
|
357 |
"user fails, or the option itself is disabled."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/class-settings.php:429
|
361 |
msgid "Select your language"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/class-settings.php:430
|
365 |
msgid "English"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin/class-settings.php:431
|
369 |
msgid "Arabic"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin/class-settings.php:432
|
373 |
msgid "Basque"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/class-settings.php:433
|
377 |
msgid "Bulgarian"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin/class-settings.php:434
|
381 |
msgid "Bengali"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin/class-settings.php:435
|
385 |
msgid "Catalan"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/class-settings.php:436
|
389 |
msgid "Czech"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin/class-settings.php:437
|
393 |
msgid "Danish"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/class-settings.php:438
|
397 |
msgid "German"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin/class-settings.php:439
|
401 |
msgid "Greek"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin/class-settings.php:440
|
405 |
msgid "English (Australian)"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/class-settings.php:441
|
409 |
msgid "English (Great Britain)"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin/class-settings.php:442
|
413 |
msgid "Spanish"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin/class-settings.php:443
|
417 |
msgid "Farsi"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: admin/class-settings.php:444
|
421 |
msgid "Finnish"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: admin/class-settings.php:445
|
425 |
msgid "Filipino"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin/class-settings.php:446
|
429 |
msgid "French"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/class-settings.php:447
|
433 |
msgid "Galician"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin/class-settings.php:448
|
437 |
msgid "Gujarati"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin/class-settings.php:449
|
441 |
msgid "Hindi"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/class-settings.php:450
|
445 |
msgid "Croatian"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin/class-settings.php:451
|
449 |
msgid "Hungarian"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/class-settings.php:452
|
453 |
msgid "Indonesian"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/class-settings.php:453
|
457 |
msgid "Italian"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/class-settings.php:454
|
461 |
msgid "Hebrew"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin/class-settings.php:455
|
465 |
msgid "Japanese"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin/class-settings.php:456
|
469 |
msgid "Kannada"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/class-settings.php:457
|
473 |
msgid "Korean"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin/class-settings.php:458
|
477 |
msgid "Lithuanian"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin/class-settings.php:459
|
481 |
msgid "Latvian"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin/class-settings.php:460
|
485 |
msgid "Malayalam"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin/class-settings.php:461
|
489 |
msgid "Marathi"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/class-settings.php:462
|
493 |
msgid "Dutch"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/class-settings.php:463
|
497 |
msgid "Norwegian"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/class-settings.php:464
|
501 |
msgid "Norwegian Nynorsk"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin/class-settings.php:465
|
505 |
msgid "Polish"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin/class-settings.php:466
|
509 |
msgid "Portuguese"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/class-settings.php:467
|
513 |
msgid "Portuguese (Brazil)"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin/class-settings.php:468
|
517 |
msgid "Portuguese (Portugal)"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: admin/class-settings.php:469
|
521 |
msgid "Romanian"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/class-settings.php:470
|
525 |
msgid "Russian"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin/class-settings.php:471
|
529 |
msgid "Slovak"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/class-settings.php:472
|
533 |
msgid "Slovenian"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/class-settings.php:473
|
537 |
msgid "Serbian"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/class-settings.php:474
|
541 |
msgid "Swedish"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/class-settings.php:475
|
545 |
msgid "Tagalog"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/class-settings.php:476
|
549 |
msgid "Tamil"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/class-settings.php:477
|
553 |
msgid "Telugu"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/class-settings.php:478
|
557 |
msgid "Thai"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/class-settings.php:479
|
561 |
msgid "Turkish"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/class-settings.php:480
|
565 |
msgid "Ukrainian"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin/class-settings.php:481
|
569 |
msgid "Vietnamese"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: admin/class-settings.php:482
|
573 |
msgid "Chinese (Simplified)"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin/class-settings.php:483
|
577 |
msgid "Chinese (Traditional)"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/class-settings.php:488
|
581 |
msgid "Select your region"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: admin/class-settings.php:489
|
585 |
msgid "Afghanistan"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin/class-settings.php:490
|
589 |
msgid "Albania"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/class-settings.php:491
|
593 |
msgid "Algeria"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/class-settings.php:492
|
597 |
msgid "American Samoa"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/class-settings.php:493
|
601 |
msgid "Andorra"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: admin/class-settings.php:494
|
605 |
msgid "Anguilla"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/class-settings.php:495
|
609 |
msgid "Angola"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/class-settings.php:496
|
613 |
msgid "Antigua and Barbuda"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/class-settings.php:497
|
617 |
msgid "Argentina"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: admin/class-settings.php:498
|
621 |
msgid "Armenia"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: admin/class-settings.php:499
|
625 |
msgid "Aruba"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: admin/class-settings.php:500
|
629 |
msgid "Australia"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/class-settings.php:501
|
633 |
msgid "Austria"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/class-settings.php:502
|
637 |
msgid "Azerbaijan"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: admin/class-settings.php:503
|
641 |
msgid "Bahamas"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/class-settings.php:504
|
645 |
msgid "Bahrain"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: admin/class-settings.php:505
|
649 |
msgid "Bangladesh"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: admin/class-settings.php:506
|
653 |
msgid "Barbados"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: admin/class-settings.php:507
|
657 |
msgid "Belarus"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: admin/class-settings.php:508
|
661 |
msgid "Belgium"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: admin/class-settings.php:509
|
665 |
msgid "Belize"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: admin/class-settings.php:510
|
669 |
msgid "Benin"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: admin/class-settings.php:511
|
673 |
msgid "Bermuda"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: admin/class-settings.php:512
|
677 |
msgid "Bhutan"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: admin/class-settings.php:513
|
681 |
msgid "Bolivia"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: admin/class-settings.php:514
|
685 |
msgid "Bosnia and Herzegovina"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: admin/class-settings.php:515
|
689 |
msgid "Botswana"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: admin/class-settings.php:516
|
693 |
msgid "Brazil"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: admin/class-settings.php:517
|
697 |
msgid "British Indian Ocean Territory"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: admin/class-settings.php:518
|
701 |
msgid "Brunei"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: admin/class-settings.php:519
|
705 |
msgid "Bulgaria"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: admin/class-settings.php:520
|
709 |
msgid "Burkina Faso"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: admin/class-settings.php:521
|
713 |
msgid "Burundi"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: admin/class-settings.php:522
|
717 |
msgid "Cambodia"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: admin/class-settings.php:523
|
721 |
msgid "Cameroon"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: admin/class-settings.php:524
|
725 |
msgid "Canada"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: admin/class-settings.php:525
|
729 |
msgid "Cape Verde"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: admin/class-settings.php:526
|
733 |
msgid "Cayman Islands"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: admin/class-settings.php:527
|
737 |
msgid "Central African Republic"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: admin/class-settings.php:528
|
741 |
msgid "Chad"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: admin/class-settings.php:529
|
745 |
msgid "Chile"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: admin/class-settings.php:530
|
749 |
msgid "China"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: admin/class-settings.php:531
|
753 |
msgid "Christmas Island"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: admin/class-settings.php:532
|
757 |
msgid "Cocos Islands"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: admin/class-settings.php:533
|
761 |
msgid "Colombia"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: admin/class-settings.php:534
|
765 |
msgid "Comoros"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: admin/class-settings.php:535
|
769 |
msgid "Congo"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: admin/class-settings.php:536
|
773 |
msgid "Costa Rica"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: admin/class-settings.php:537
|
777 |
msgid "Côte d'Ivoire"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: admin/class-settings.php:538
|
781 |
msgid "Croatia"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: admin/class-settings.php:539
|
785 |
msgid "Cuba"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: admin/class-settings.php:540
|
789 |
msgid "Czech Republic"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: admin/class-settings.php:541
|
793 |
msgid "Denmark"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: admin/class-settings.php:542
|
797 |
msgid "Djibouti"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: admin/class-settings.php:543
|
801 |
msgid "Democratic Republic of the Congo"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: admin/class-settings.php:544
|
805 |
msgid "Dominica"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: admin/class-settings.php:545
|
809 |
msgid "Dominican Republic"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: admin/class-settings.php:546
|
813 |
msgid "Ecuador"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: admin/class-settings.php:547
|
817 |
msgid "Egypt"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: admin/class-settings.php:548
|
821 |
msgid "El Salvador"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: admin/class-settings.php:549
|
825 |
msgid "Equatorial Guinea"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: admin/class-settings.php:550
|
829 |
msgid "Eritrea"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: admin/class-settings.php:551
|
833 |
msgid "Estonia"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: admin/class-settings.php:552
|
837 |
msgid "Ethiopia"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: admin/class-settings.php:553
|
841 |
msgid "Fiji"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: admin/class-settings.php:554
|
845 |
msgid "Finland"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: admin/class-settings.php:555
|
849 |
msgid "France"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: admin/class-settings.php:556
|
853 |
msgid "French Guiana"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: admin/class-settings.php:557
|
857 |
msgid "Gabon"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: admin/class-settings.php:558
|
861 |
msgid "Gambia"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: admin/class-settings.php:559
|
865 |
msgid "Germany"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: admin/class-settings.php:560
|
869 |
msgid "Ghana"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: admin/class-settings.php:561
|
873 |
msgid "Greenland"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: admin/class-settings.php:562
|
877 |
msgid "Greece"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: admin/class-settings.php:563
|
881 |
msgid "Grenada"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: admin/class-settings.php:564
|
885 |
msgid "Guam"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: admin/class-settings.php:565
|
889 |
msgid "Guadeloupe"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: admin/class-settings.php:566
|
893 |
msgid "Guatemala"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: admin/class-settings.php:567
|
897 |
msgid "Guinea"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: admin/class-settings.php:568
|
901 |
msgid "Guinea-Bissau"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: admin/class-settings.php:569
|
905 |
msgid "Haiti"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: admin/class-settings.php:570
|
909 |
msgid "Honduras"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: admin/class-settings.php:571
|
913 |
msgid "Hong Kong"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: admin/class-settings.php:572
|
917 |
msgid "Hungary"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: admin/class-settings.php:573
|
921 |
msgid "Iceland"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: admin/class-settings.php:574
|
925 |
msgid "India"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: admin/class-settings.php:575
|
929 |
msgid "Indonesia"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: admin/class-settings.php:576
|
933 |
msgid "Iran"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: admin/class-settings.php:577
|
937 |
msgid "Iraq"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: admin/class-settings.php:578
|
941 |
msgid "Ireland"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: admin/class-settings.php:579
|
945 |
msgid "Israel"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: admin/class-settings.php:580
|
949 |
msgid "Italy"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: admin/class-settings.php:581
|
953 |
msgid "Jamaica"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: admin/class-settings.php:582
|
957 |
msgid "Japan"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: admin/class-settings.php:583
|
961 |
msgid "Jordan"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: admin/class-settings.php:584
|
965 |
msgid "Kazakhstan"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: admin/class-settings.php:585
|
969 |
msgid "Kenya"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: admin/class-settings.php:586
|
973 |
msgid "Kuwait"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: admin/class-settings.php:587
|
977 |
msgid "Kyrgyzstan"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: admin/class-settings.php:588
|
981 |
msgid "Laos"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: admin/class-settings.php:589
|
985 |
msgid "Latvia"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: admin/class-settings.php:590
|
989 |
msgid "Lebanon"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: admin/class-settings.php:591
|
993 |
msgid "Lesotho"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: admin/class-settings.php:592
|
997 |
msgid "Liberia"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: admin/class-settings.php:593
|
1001 |
msgid "Libya"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: admin/class-settings.php:594
|
1005 |
msgid "Liechtenstein"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: admin/class-settings.php:595
|
1009 |
msgid "Lithuania"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: admin/class-settings.php:596
|
1013 |
msgid "Luxembourg"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: admin/class-settings.php:597
|
1017 |
msgid "Macau"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: admin/class-settings.php:598
|
1021 |
msgid "Macedonia"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: admin/class-settings.php:599
|
1025 |
msgid "Madagascar"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: admin/class-settings.php:600
|
1029 |
msgid "Malawi"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: admin/class-settings.php:601
|
1033 |
msgid "Malaysia "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: admin/class-settings.php:602
|
1037 |
msgid "Mali"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: admin/class-settings.php:603
|
1041 |
msgid "Marshall Islands"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: admin/class-settings.php:604
|
1045 |
msgid "Martinique"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: admin/class-settings.php:605
|
1049 |
msgid "Mauritania"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: admin/class-settings.php:606
|
1053 |
msgid "Mauritius"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: admin/class-settings.php:607
|
1057 |
msgid "Mexico"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: admin/class-settings.php:608
|
1061 |
msgid "Micronesia"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: admin/class-settings.php:609
|
1065 |
msgid "Moldova"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: admin/class-settings.php:610
|
1069 |
msgid "Monaco"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: admin/class-settings.php:611
|
1073 |
msgid "Mongolia"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: admin/class-settings.php:612
|
1077 |
msgid "Montenegro"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: admin/class-settings.php:613
|
1081 |
msgid "Montserrat"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: admin/class-settings.php:614
|
1085 |
msgid "Morocco"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: admin/class-settings.php:615
|
1089 |
msgid "Mozambique"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: admin/class-settings.php:616
|
1093 |
msgid "Myanmar"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: admin/class-settings.php:617
|
1097 |
msgid "Namibia"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: admin/class-settings.php:618
|
1101 |
msgid "Nauru"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: admin/class-settings.php:619
|
1105 |
msgid "Nepal"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: admin/class-settings.php:620
|
1109 |
msgid "Netherlands"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: admin/class-settings.php:621
|
1113 |
msgid "Netherlands Antilles"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: admin/class-settings.php:622
|
1117 |
msgid "New Zealand"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: admin/class-settings.php:623
|
1121 |
msgid "Nicaragua"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: admin/class-settings.php:624
|
1125 |
msgid "Niger"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: admin/class-settings.php:625
|
1129 |
msgid "Nigeria"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: admin/class-settings.php:626
|
1133 |
msgid "Niue"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: admin/class-settings.php:627
|
1137 |
msgid "Northern Mariana Islands"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: admin/class-settings.php:628
|
1141 |
msgid "Norway"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: admin/class-settings.php:629
|
1145 |
msgid "Oman"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: admin/class-settings.php:630
|
1149 |
msgid "Pakistan"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: admin/class-settings.php:631
|
1153 |
msgid "Panama"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: admin/class-settings.php:632
|
1157 |
msgid "Papua New Guinea"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: admin/class-settings.php:633
|
1161 |
msgid "Paraguay"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: admin/class-settings.php:634
|
1165 |
msgid "Peru"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: admin/class-settings.php:635
|
1169 |
msgid "Philippines"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: admin/class-settings.php:636
|
1173 |
msgid "Pitcairn Islands"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: admin/class-settings.php:637
|
1177 |
msgid "Poland"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: admin/class-settings.php:638
|
1181 |
msgid "Portugal"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: admin/class-settings.php:639
|
1185 |
msgid "Qatar"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: admin/class-settings.php:640
|
1189 |
msgid "Reunion"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: admin/class-settings.php:641
|
1193 |
msgid "Romania"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: admin/class-settings.php:642
|
1197 |
msgid "Russia"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: admin/class-settings.php:643
|
1201 |
msgid "Rwanda"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: admin/class-settings.php:644
|
1205 |
msgid "Saint Helena"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: admin/class-settings.php:645
|
1209 |
msgid "Saint Kitts and Nevis"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: admin/class-settings.php:646
|
1213 |
msgid "Saint Vincent and the Grenadines"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: admin/class-settings.php:647
|
1217 |
msgid "Saint Lucia"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: admin/class-settings.php:648
|
1221 |
msgid "Samoa"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: admin/class-settings.php:649
|
1225 |
msgid "San Marino"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: admin/class-settings.php:650
|
1229 |
msgid "São Tomé and Príncipe"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: admin/class-settings.php:651
|
1233 |
msgid "Saudi Arabia"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: admin/class-settings.php:652
|
1237 |
msgid "Senegal"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: admin/class-settings.php:653
|
1241 |
msgid "Serbia"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: admin/class-settings.php:654
|
1245 |
msgid "Seychelles"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: admin/class-settings.php:655
|
1249 |
msgid "Sierra Leone"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: admin/class-settings.php:656
|
1253 |
msgid "Singapore"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: admin/class-settings.php:657
|
1257 |
msgid "Slovakia"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: admin/class-settings.php:658
|
1261 |
msgid "Solomon Islands"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: admin/class-settings.php:659
|
1265 |
msgid "Somalia"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: admin/class-settings.php:660
|
1269 |
msgid "South Africa"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: admin/class-settings.php:661
|
1273 |
msgid "South Korea"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: admin/class-settings.php:662
|
1277 |
msgid "Spain"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: admin/class-settings.php:663
|
1281 |
msgid "Sri Lanka"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: admin/class-settings.php:664
|
1285 |
msgid "Sudan"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: admin/class-settings.php:665
|
1289 |
msgid "Swaziland"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: admin/class-settings.php:666
|
1293 |
msgid "Sweden"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: admin/class-settings.php:667
|
1297 |
msgid "Switzerland"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: admin/class-settings.php:668
|
1301 |
msgid "Syria"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: admin/class-settings.php:669
|
1305 |
msgid "Taiwan"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: admin/class-settings.php:670
|
1309 |
msgid "Tajikistan"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: admin/class-settings.php:671
|
1313 |
msgid "Tanzania"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: admin/class-settings.php:672
|
1317 |
msgid "Thailand"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: admin/class-settings.php:673
|
1321 |
msgid "Timor-Leste"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: admin/class-settings.php:674
|
1325 |
msgid "Tokelau"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: admin/class-settings.php:675
|
1329 |
msgid "Togo"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: admin/class-settings.php:676
|
1333 |
msgid "Tonga"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: admin/class-settings.php:677
|
1337 |
msgid "Trinidad and Tobago"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: admin/class-settings.php:678
|
1341 |
msgid "Tunisia"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: admin/class-settings.php:679
|
1345 |
msgid "Turkey"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: admin/class-settings.php:680
|
1349 |
msgid "Turkmenistan"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: admin/class-settings.php:681
|
1353 |
msgid "Tuvalu"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: admin/class-settings.php:682
|
1357 |
msgid "Uganda"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: admin/class-settings.php:683
|
1361 |
msgid "Ukraine"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: admin/class-settings.php:684
|
1365 |
msgid "United Arab Emirates"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: admin/class-settings.php:685
|
1369 |
msgid "United Kingdom"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: admin/class-settings.php:686
|
1373 |
msgid "United States"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: admin/class-settings.php:687
|
1377 |
msgid "Uruguay"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: admin/class-settings.php:688
|
1381 |
msgid "Uzbekistan"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: admin/class-settings.php:689
|
1385 |
msgid "Wallis Futuna"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: admin/class-settings.php:690
|
1389 |
msgid "Venezuela"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: admin/class-settings.php:691
|
1393 |
msgid "Vietnam"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: admin/class-settings.php:692
|
1397 |
msgid "Yemen"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: admin/class-settings.php:693
|
1401 |
msgid "Zambia"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: admin/class-settings.php:694
|
1405 |
msgid "Zimbabwe"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: admin/class-settings.php:737
|
1409 |
msgid "World view"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: admin/class-settings.php:740 admin/class-settings.php:854
|
1413 |
#: inc/wpsl-functions.php:215
|
1414 |
msgid "Default"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: admin/class-settings.php:743 inc/wpsl-functions.php:288
|
1418 |
msgid "Roadmap"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: admin/class-settings.php:884
|
1422 |
msgid "Start location marker"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: admin/class-settings.php:886
|
1426 |
msgid "Store location marker"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: admin/class-settings.php:968
|
1430 |
msgid "Textarea"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: admin/class-settings.php:969
|
1434 |
msgid "Dropdowns (recommended)"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: admin/class-settings.php:977
|
1438 |
msgid "Bounces up and down"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: admin/class-settings.php:978
|
1442 |
msgid "Will open the info window"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: admin/class-settings.php:979
|
1446 |
msgid "Does not respond"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: admin/class-settings.php:987
|
1450 |
msgid "In the store listings"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: admin/class-settings.php:988
|
1454 |
msgid "In the info window on the map"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: admin/class-settings.php:1020
|
1458 |
msgid "Dropdown"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: admin/class-settings.php:1021
|
1462 |
msgid "Checkboxes"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: admin/class-settings.php:1053
|
1466 |
msgid "12 Hours"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: admin/class-settings.php:1054
|
1470 |
msgid "24 Hours"
|
1471 |
msgstr ""
|
1472 |
|
1633 |
msgid "Attempt to auto-locate the user"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: admin/templates/map-settings.php:183
|
1637 |
+
#, php-format
|
1638 |
+
msgid ""
|
1639 |
+
"Safari and Chrome %srequire%s a HTTPS connection before the Geolocation "
|
1640 |
+
"feature works."
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
#: admin/templates/map-settings.php:187
|
1644 |
msgid "Load locations on page load"
|
1645 |
msgstr ""
|
2040 |
msgstr ""
|
2041 |
|
2042 |
#: admin/templates/map-settings.php:490 admin/templates/map-settings.php:491
|
2043 |
+
#: frontend/class-frontend.php:1673 inc/wpsl-functions.php:135
|
2044 |
msgid "No results found"
|
2045 |
msgstr ""
|
2046 |
|
2048 |
msgid "Searching (preloader text)"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: admin/templates/map-settings.php:499 frontend/class-frontend.php:1672
|
2052 |
#: inc/wpsl-functions.php:133
|
2053 |
msgid "Searching..."
|
2054 |
msgstr ""
|
2064 |
msgid "Category filter"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: admin/templates/map-settings.php:507 frontend/class-frontend.php:1297
|
2068 |
msgid "Category"
|
2069 |
msgstr ""
|
2070 |
|
2073 |
msgstr ""
|
2074 |
|
2075 |
#: admin/templates/map-settings.php:511 admin/upgrade.php:367
|
2076 |
+
#: frontend/class-frontend.php:1300 inc/wpsl-functions.php:151
|
2077 |
msgid "Any"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
#: admin/templates/map-settings.php:514 admin/templates/map-settings.php:515
|
2081 |
+
#: admin/upgrade.php:59 frontend/class-frontend.php:1674
|
2082 |
#: frontend/underscore-functions.php:138 frontend/underscore-functions.php:168
|
2083 |
#: inc/wpsl-functions.php:137
|
2084 |
msgid "More info"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
#: admin/templates/map-settings.php:518 admin/templates/map-settings.php:519
|
2088 |
+
#: frontend/class-frontend.php:789 frontend/underscore-functions.php:29
|
2089 |
#: frontend/underscore-functions.php:65 frontend/underscore-functions.php:147
|
2090 |
#: inc/wpsl-functions.php:145
|
2091 |
msgid "Phone"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
#: admin/templates/map-settings.php:538 admin/templates/map-settings.php:539
|
2095 |
+
#: frontend/class-frontend.php:1679 inc/wpsl-functions.php:130
|
2096 |
msgid "Start location"
|
2097 |
msgstr ""
|
2098 |
|
2100 |
msgid "Get directions"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: admin/templates/map-settings.php:543 frontend/class-frontend.php:1677
|
2104 |
#: inc/wpsl-functions.php:138
|
2105 |
msgid "Directions"
|
2106 |
msgstr ""
|
2110 |
msgstr ""
|
2111 |
|
2112 |
#: admin/templates/map-settings.php:547 admin/upgrade.php:151
|
2113 |
+
#: frontend/class-frontend.php:1678 inc/wpsl-functions.php:139
|
2114 |
msgid "No route could be found between the origin and destination"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
#: admin/templates/map-settings.php:550 admin/templates/map-settings.php:551
|
2118 |
+
#: admin/upgrade.php:77 frontend/class-frontend.php:1680
|
2119 |
#: inc/wpsl-functions.php:140
|
2120 |
msgid "Back"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
#: admin/templates/map-settings.php:554 admin/templates/map-settings.php:555
|
2124 |
+
#: admin/upgrade.php:143 frontend/class-frontend.php:1681
|
2125 |
#: inc/wpsl-functions.php:141
|
2126 |
msgid "Street view"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
#: admin/templates/map-settings.php:558 admin/templates/map-settings.php:559
|
2130 |
+
#: admin/upgrade.php:147 frontend/class-frontend.php:1682
|
2131 |
#: inc/wpsl-functions.php:142
|
2132 |
msgid "Zoom here"
|
2133 |
msgstr ""
|
2136 |
msgid "General error"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: admin/templates/map-settings.php:563 frontend/class-frontend.php:1675
|
2140 |
#: inc/wpsl-functions.php:143
|
2141 |
msgid "Something went wrong, please try again!"
|
2142 |
msgstr ""
|
2152 |
"the \"API key\" field at the top of this page."
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: admin/templates/map-settings.php:567 frontend/class-frontend.php:1676
|
2156 |
#: inc/wpsl-functions.php:144
|
2157 |
msgid "API usage limit reached"
|
2158 |
msgstr ""
|
2173 |
msgstr ""
|
2174 |
|
2175 |
#: admin/templates/map-settings.php:587
|
2176 |
+
msgid "Enable compatibility mode?"
|
|
|
|
|
2177 |
msgstr ""
|
2178 |
|
2179 |
#: admin/templates/map-settings.php:587
|
2242 |
"view them on the %sAll Stores%s page."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: frontend/class-frontend.php:726
|
2246 |
msgid ""
|
2247 |
"If you use the [wpsl_address] shortcode outside a store page you need to set "
|
2248 |
"the ID attribute."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: frontend/class-frontend.php:840
|
2252 |
msgid ""
|
2253 |
"If you use the [wpsl_hours] shortcode outside a store page you need to set "
|
2254 |
"the ID attribute."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: frontend/class-frontend.php:888
|
2258 |
msgid ""
|
2259 |
"If you use the [wpsl_map] shortcode outside a store page, then you need to "
|
2260 |
"set the ID or category attribute."
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: frontend/class-frontend.php:1473
|
2264 |
msgid "The application does not have permission to use the Geolocation API."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: frontend/class-frontend.php:1474
|
2268 |
msgid "Location information is unavailable."
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: frontend/class-frontend.php:1475
|
2272 |
msgid "The geolocation request timed out."
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: frontend/class-frontend.php:1476
|
2276 |
msgid "An unknown error occurred."
|
2277 |
msgstr ""
|
2278 |
|
2282 |
msgid "Search provided by %sWP Store Locator%s"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: inc/class-post-types.php:52
|
2286 |
+
msgid "Store Locator"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: inc/class-post-types.php:53
|
2290 |
+
msgid "All Stores"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: inc/class-post-types.php:54
|
2294 |
+
msgid "Store"
|
2295 |
+
msgstr ""
|
2296 |
+
|
2297 |
+
#: inc/class-post-types.php:55 inc/class-post-types.php:58
|
2298 |
+
msgid "New Store"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
#: inc/class-post-types.php:56
|
2302 |
+
msgid "Add New Store"
|
|
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: inc/class-post-types.php:57
|
2306 |
+
msgid "Edit Store"
|
|
|
2307 |
msgstr ""
|
2308 |
|
2309 |
#: inc/class-post-types.php:59
|
2310 |
+
msgid "View Stores"
|
|
|
2311 |
msgstr ""
|
2312 |
|
2313 |
#: inc/class-post-types.php:60
|
2314 |
+
msgid "Search Stores"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: inc/class-post-types.php:61
|
2318 |
+
msgid "No Stores found"
|
|
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: inc/class-post-types.php:62
|
2322 |
+
msgid "No Stores found in trash"
|
|
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: inc/class-post-types.php:104 inc/class-post-types.php:114
|
2326 |
msgid "Store Categories"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: inc/class-post-types.php:105
|
2330 |
msgid "Store Category"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: inc/class-post-types.php:106
|
2334 |
msgid "Search Store Categories"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: inc/class-post-types.php:107
|
2338 |
msgid "All Store Categories"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: inc/class-post-types.php:108
|
2342 |
msgid "Parent Store Category"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: inc/class-post-types.php:109
|
2346 |
msgid "Parent Store Category:"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: inc/class-post-types.php:110
|
2350 |
msgid "Edit Store Category"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: inc/class-post-types.php:111
|
2354 |
msgid "Update Store Category"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: inc/class-post-types.php:112
|
2358 |
msgid "Add New Store Category"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: inc/class-post-types.php:113
|
2362 |
msgid "New Store Category Name"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: inc/class-post-types.php:144
|
2366 |
msgid "Enter store title here"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: inc/class-post-types.php:162
|
2370 |
msgid "Zip"
|
2371 |
msgstr ""
|
2372 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Contributors: tijmensmit
|
|
4 |
Donate link: https://www.paypal.me/tijmensmit
|
5 |
Tags: google maps, store locator, business locations, geocoding, stores, geo, zipcode locator, dealer locater, geocode, gmaps, google map, google map plugin, location finder, map tools, shop locator, wp google map
|
6 |
Requires at least: 3.7
|
7 |
-
Tested up to: 4.
|
8 |
-
Stable tag: 2.2.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl.html
|
11 |
|
@@ -56,9 +56,9 @@ The [CSV Manager](https://wpstorelocator.co/add-ons/csv-manager/) allows you to
|
|
56 |
|
57 |
The [Search Widget](https://wpstorelocator.co/add-ons/search-widget/) enables users to search from any of the widgetized areas in your theme for nearby store locations, and show the results on the store locator page.
|
58 |
|
59 |
-
**Statistics
|
60 |
|
61 |
-
|
62 |
|
63 |
**Store Directory - Coming Soon**
|
64 |
|
@@ -126,6 +126,17 @@ If you find a plugin or theme that causes a conflict, please report it on the [s
|
|
126 |
|
127 |
== Changelog ==
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
= 2.2.4, Augustus 6, 2016 =
|
130 |
* New: Added an option to the tools section to prevent other scripts from including the Google Maps API a second time on the store locator page. This sometimes breaks the map.
|
131 |
* Fixed: Assigned the correct country code to Martinique on the settings page.
|
4 |
Donate link: https://www.paypal.me/tijmensmit
|
5 |
Tags: google maps, store locator, business locations, geocoding, stores, geo, zipcode locator, dealer locater, geocode, gmaps, google map, google map plugin, location finder, map tools, shop locator, wp google map
|
6 |
Requires at least: 3.7
|
7 |
+
Tested up to: 4.7
|
8 |
+
Stable tag: 2.2.5
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl.html
|
11 |
|
56 |
|
57 |
The [Search Widget](https://wpstorelocator.co/add-ons/search-widget/) enables users to search from any of the widgetized areas in your theme for nearby store locations, and show the results on the store locator page.
|
58 |
|
59 |
+
**Statistics**
|
60 |
|
61 |
+
The [Statistics](https://wpstorelocator.co/add-ons/statistics/) add-on enables you to keep track of the locations users are searching for and see where there is demand for a new store.
|
62 |
|
63 |
**Store Directory - Coming Soon**
|
64 |
|
126 |
|
127 |
== Changelog ==
|
128 |
|
129 |
+
= 2.2.5, December 11, 2016 =
|
130 |
+
* Fixed: Made it work with the latest WPML version.
|
131 |
+
* Fixed: Remove the WPSL caps and Store Locator Manager role on uninstall. The code was always there to do so, but was never called.
|
132 |
+
* Fixed: A PHP notice that showed up when the settings page was saved with an empty start location field.
|
133 |
+
* Changed: Adjusted the structure of the post type labels so you can correctly translate them in singular / plural forms based on the used language. Via [deshack](https://wordpress.org/support/users/deshack/).
|
134 |
+
* Changed: Added a tooltip to the 'Attempt to auto-locate the user' field explaining that HTTPS is now [required](https://wpstorelocator.co/document/html-5-geolocation-not-working-chrome-safari/) in Chrome and Safari.
|
135 |
+
* Changed: The coordinates from the start location are now used to center the map in the map section on the settings page instead of it always defaulting to Holland.
|
136 |
+
* Changed: Renamed the existing option that prevents two Google Maps libraries from loading at the same time to "Enable compatibility mode" on the settings page ( Tools section ).
|
137 |
+
* Changed: Updated the wpsl.pot file.
|
138 |
+
* Changed: No longer use the deprecated icl_object_id() function when the WPML version is newer then 3.2.
|
139 |
+
|
140 |
= 2.2.4, Augustus 6, 2016 =
|
141 |
* New: Added an option to the tools section to prevent other scripts from including the Google Maps API a second time on the store locator page. This sometimes breaks the map.
|
142 |
* Fixed: Assigned the correct country code to Martinique on the settings page.
|
uninstall.php
CHANGED
@@ -74,4 +74,9 @@ function wpsl_uninstall() {
|
|
74 |
WHERE tt.taxonomy = 'wpsl_store_category'";
|
75 |
|
76 |
$wpdb->query( $sql );
|
|
|
|
|
|
|
|
|
|
|
77 |
}
|
74 |
WHERE tt.taxonomy = 'wpsl_store_category'";
|
75 |
|
76 |
$wpdb->query( $sql );
|
77 |
+
|
78 |
+
// Remove the WPSL caps and roles.
|
79 |
+
include_once( 'admin/roles.php' );
|
80 |
+
|
81 |
+
wpsl_remove_caps_and_roles();
|
82 |
}
|
wp-store-locator.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Store Locator
|
|
4 |
Description: An easy to use location management system that enables users to search for nearby physical stores
|
5 |
Author: Tijmen Smit
|
6 |
Author URI: https://wpstorelocator.co/
|
7 |
-
Version: 2.2.
|
8 |
Text Domain: wpsl
|
9 |
Domain Path: /languages/
|
10 |
License: GPL v3
|
@@ -58,7 +58,7 @@ if ( !class_exists( 'WP_Store_locator' ) ) {
|
|
58 |
public function define_constants() {
|
59 |
|
60 |
if ( !defined( 'WPSL_VERSION_NUM' ) )
|
61 |
-
define( 'WPSL_VERSION_NUM', '2.2.
|
62 |
|
63 |
if ( !defined( 'WPSL_URL' ) )
|
64 |
define( 'WPSL_URL', plugin_dir_url( __FILE__ ) );
|
4 |
Description: An easy to use location management system that enables users to search for nearby physical stores
|
5 |
Author: Tijmen Smit
|
6 |
Author URI: https://wpstorelocator.co/
|
7 |
+
Version: 2.2.5
|
8 |
Text Domain: wpsl
|
9 |
Domain Path: /languages/
|
10 |
License: GPL v3
|
58 |
public function define_constants() {
|
59 |
|
60 |
if ( !defined( 'WPSL_VERSION_NUM' ) )
|
61 |
+
define( 'WPSL_VERSION_NUM', '2.2.5' );
|
62 |
|
63 |
if ( !defined( 'WPSL_URL' ) )
|
64 |
define( 'WPSL_URL', plugin_dir_url( __FILE__ ) );
|