WP Store Locator - Version 2.2.11

Version Description

Download this release

Release Info

Developer tijmensmit
Plugin Icon 128x128 WP Store Locator
Version 2.2.11
Comparing to
See all releases

Code changes from version 2.2.10 to 2.2.11

admin/templates/map-settings.php CHANGED
@@ -10,28 +10,36 @@ global $wpdb, $wpsl, $wpsl_admin, $wp_version, $wpsl_settings;
10
  <?php
11
  settings_errors();
12
 
13
- $current_tab = isset( $_GET['tab'] ) ? $_GET['tab'] : '';
14
  $wpsl_licenses = apply_filters( 'wpsl_license_settings', array() );
 
15
 
16
  if ( $wpsl_licenses ) {
17
- $tabs = array( 'general', 'licenses' );
 
 
 
 
 
 
18
 
 
19
  echo '<h2 id="wpsl-tabs" class="nav-tab-wrapper">';
20
-
21
- foreach ( $tabs as $name ) {
22
- if ( !$current_tab && $name == 'general' || $current_tab == $name ) {
23
  $active_tab = 'nav-tab-active';
24
  } else {
25
  $active_tab = '';
26
  }
27
 
28
- echo '<a class="nav-tab ' . $active_tab . '" title="' . ucfirst( $name ) . '" href="' . admin_url( 'edit.php?post_type=wpsl_stores&page=wpsl_settings&tab=' . $name ) . '">' . ucfirst( $name ) . '</a>';
29
  }
30
-
31
  echo '</h2>';
32
  }
33
 
34
- if ( $current_tab == 'licenses' ) {
35
  ?>
36
 
37
  <form action="" method="post">
@@ -78,7 +86,7 @@ global $wpdb, $wpsl, $wpsl_admin, $wp_version, $wpsl_settings;
78
  </p>
79
  </form>
80
  <?php
81
- } else {
82
  ?>
83
 
84
  <div id="general">
@@ -605,6 +613,9 @@ global $wpdb, $wpsl, $wpsl_admin, $wp_version, $wpsl_settings;
605
  </form>
606
  </div>
607
 
608
- <?php } ?>
609
-
 
 
 
610
  </div>
10
  <?php
11
  settings_errors();
12
 
13
+ $tabs = apply_filters( 'wpsl_settings_tab', array( 'general' => __( 'General', 'wpsl' ) ) );
14
  $wpsl_licenses = apply_filters( 'wpsl_license_settings', array() );
15
+ $current_tab = isset( $_GET['tab'] ) ? $_GET['tab'] : '';
16
 
17
  if ( $wpsl_licenses ) {
18
+ $tabs['licenses'] = __( 'Licenses', 'wpsl' );
19
+ }
20
+
21
+ // Default to the general tab if an unknow tab value is set
22
+ if ( !array_key_exists( $current_tab, $tabs ) ) {
23
+ $current_tab = 'general';
24
+ }
25
 
26
+ if ( count( $tabs ) > 1 ) {
27
  echo '<h2 id="wpsl-tabs" class="nav-tab-wrapper">';
28
+
29
+ foreach ( $tabs as $tab_key => $tab_name ) {
30
+ if ( !$current_tab && $tab_key == 'general' || $current_tab == $tab_key ) {
31
  $active_tab = 'nav-tab-active';
32
  } else {
33
  $active_tab = '';
34
  }
35
 
36
+ echo '<a class="nav-tab ' . $active_tab . '" title="' . esc_attr( $tab_name ) . '" href="' . admin_url( 'edit.php?post_type=wpsl_stores&page=wpsl_settings&tab=' . $tab_key ) . '">' . esc_attr( $tab_name ) . '</a>';
37
  }
38
+
39
  echo '</h2>';
40
  }
41
 
42
+ if ( $wpsl_licenses && $current_tab == 'licenses' ) {
43
  ?>
44
 
45
  <form action="" method="post">
86
  </p>
87
  </form>
88
  <?php
89
+ } else if ( $current_tab == 'general' || !$current_tab ) {
90
  ?>
91
 
92
  <div id="general">
613
  </form>
614
  </div>
615
 
616
+ <?php
617
+ } else {
618
+ do_action( 'wpsl_settings_section', $current_tab );
619
+ }
620
+ ?>
621
  </div>
frontend/class-frontend.php CHANGED
@@ -187,9 +187,10 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
187
  * the stores in the db.
188
  *
189
  * @since 2.0.0
 
190
  * @return void|array $store_data The list of stores that fall within the selected range.
191
  */
192
- public function find_nearby_locations() {
193
 
194
  global $wpdb, $wpsl, $wpsl_settings;
195
 
@@ -199,19 +200,18 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
199
  * Set the correct earth radius in either km or miles.
200
  * We need this to calculate the distance between two coordinates.
201
  */
202
- $radius = ( wpsl_get_distance_unit() == 'km' ) ? 6371 : 3959;
203
-
204
- // The placeholder values for the prepared statement in the sql query.
205
- $placeholder_values = array(
206
- $radius,
207
- $_GET['lat'],
208
- $_GET['lng'],
209
- $_GET['lat']
210
- );
211
 
212
  // Check if we need to filter the results by category.
213
- if ( isset( $_GET['filter'] ) && $_GET['filter'] ) {
214
- $filter_ids = array_map( 'absint', explode( ',', $_GET['filter'] ) );
215
  $cat_filter = "INNER JOIN $wpdb->term_relationships AS term_rel ON posts.ID = term_rel.object_id
216
  INNER JOIN $wpdb->term_taxonomy AS term_tax ON term_rel.term_taxonomy_id = term_tax.term_taxonomy_id
217
  AND term_tax.taxonomy = 'wpsl_store_category'
@@ -241,7 +241,7 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
241
  *
242
  * Otherwise include the radius and max results limit in the sql query.
243
  */
244
- if ( isset( $_GET['autoload'] ) && $_GET['autoload'] ) {
245
  $limit = '';
246
 
247
  if ( $wpsl_settings['autoload_limit'] ) {
@@ -251,7 +251,7 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
251
 
252
  $sql_sort = 'ORDER BY distance '. $limit;
253
  } else {
254
- array_push( $placeholder_values, $this->check_store_filter( 'search_radius' ), $this->check_store_filter( 'max_results' ) );
255
  $sql_sort = 'HAVING distance < %d ORDER BY distance LIMIT 0, %d';
256
  }
257
 
@@ -613,17 +613,7 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
613
  * then the start location from the settings page is used.
614
  */
615
  if ( isset( $atts['start_location'] ) && $atts['start_location'] ) {
616
- $name_section = explode( ',', $atts['start_location'] );
617
- $transient_name = 'wpsl_' . trim( strtolower( $name_section[0] ) ) . '_latlng';
618
-
619
- /*
620
- * Check if we still need to geocode the start location,
621
- * or if a transient with the start latlng already exists.
622
- */
623
- if ( false === ( $start_latlng = get_transient( $transient_name ) ) ) {
624
- $start_latlng = wpsl_get_address_latlng( $atts['start_location'] );
625
- set_transient( $transient_name, $start_latlng, 0 );
626
- }
627
 
628
  if ( isset( $start_latlng ) && $start_latlng ) {
629
  $this->sl_shortcode_atts['js']['startLatlng'] = $start_latlng;
@@ -677,7 +667,7 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
677
  */
678
  public function show_store_locator( $atts ) {
679
 
680
- global $wpsl_settings;
681
 
682
  $atts = shortcode_atts( array(
683
  'template' => $wpsl_settings['template_id'],
@@ -697,23 +687,9 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
697
  // Make sure the required scripts are included for the wpsl shortcode.
698
  array_push( $this->load_scripts, 'wpsl_store_locator' );
699
 
700
- $template_list = wpsl_get_templates();
701
- $template_path = '';
702
 
703
- // Loop over the template list and look for a matching id with the one set on the settings page.
704
- foreach ( $template_list as $template ) {
705
- if ( $atts['template'] == $template['id'] ) {
706
- $template_path = $template['path'];
707
- break;
708
- }
709
- }
710
-
711
- // Check if we have a template path and the file exists, otherwise we use the default template.
712
- if ( !$template_path || ( !file_exists( $template_path ) ) ) {
713
- $template_path = WPSL_PLUGIN_DIR . 'frontend/templates/default.php';
714
- }
715
-
716
- $output = include( $template_path );
717
 
718
  return $output;
719
  }
@@ -1093,15 +1069,16 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
1093
 
1094
  /**
1095
  * Make sure the filter contains a valid value, otherwise use the default value.
1096
- *
1097
  * @since 2.0.0
 
1098
  * @param string $filter The name of the filter
1099
  * @return string $filter_value The filter value
1100
  */
1101
- public function check_store_filter( $filter ) {
1102
 
1103
- if ( isset( $_GET[$filter] ) && absint( $_GET[$filter] ) && $this->check_allowed_filter_value( $filter ) ) {
1104
- $filter_value = $_GET[$filter];
1105
  } else {
1106
  $filter_value = $this->get_default_filter_value( $filter );
1107
  }
@@ -1114,10 +1091,11 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
1114
  * then the value that's set on the settings page.
1115
  *
1116
  * @since 2.2.9
 
1117
  * @param string $filter The name of the filter
1118
  * @return bool $allowed True if the value is equal or smaller then the value from the settings page
1119
  */
1120
- public function check_allowed_filter_value( $filter ) {
1121
 
1122
  global $wpsl_settings;
1123
 
@@ -1125,7 +1103,7 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
1125
 
1126
  $max_filter_val = max( explode(',', str_replace( array( '[',']' ), '', $wpsl_settings[$filter] ) ) );
1127
 
1128
- if ( (int) $_GET[$filter] <= (int) $max_filter_val ) {
1129
  $allowed = true;
1130
  }
1131
 
@@ -1718,7 +1696,7 @@ if ( !class_exists( 'WPSL_Frontend' ) ) {
1718
  'maxResults' => $dropdown_defaults['max_results'],
1719
  'searchRadius' => $dropdown_defaults['search_radius'],
1720
  'distanceUnit' => wpsl_get_distance_unit(),
1721
- 'geoLocationTimout' => apply_filters( 'wpsl_geolocation_timeout', 5000 ),
1722
  'ajaxurl' => wpsl_get_ajax_url(),
1723
  'mapControls' => $this->get_map_controls()
1724
  );
187
  * the stores in the db.
188
  *
189
  * @since 2.0.0
190
+ * @param array $args The arguments to use in the SQL query, only used by add-ons
191
  * @return void|array $store_data The list of stores that fall within the selected range.
192
  */
193
+ public function find_nearby_locations( $args = array() ) {
194
 
195
  global $wpdb, $wpsl, $wpsl_settings;
196
 
200
  * Set the correct earth radius in either km or miles.
201
  * We need this to calculate the distance between two coordinates.
202
  */
203
+ $placeholder_values[] = ( wpsl_get_distance_unit() == 'km' ) ? 6371 : 3959;
204
+
205
+ // The placeholder values for the prepared statement in the SQL query.
206
+ if ( empty( $args ) ) {
207
+ $args = $_GET;
208
+ }
209
+
210
+ array_push( $placeholder_values, $args['lat'], $args['lng'], $args['lat'] );
 
211
 
212
  // Check if we need to filter the results by category.
213
+ if ( isset( $args['filter'] ) && $args['filter'] ) {
214
+ $filter_ids = array_map( 'absint', explode( ',', $args['filter'] ) );
215
  $cat_filter = "INNER JOIN $wpdb->term_relationships AS term_rel ON posts.ID = term_rel.object_id
216
  INNER JOIN $wpdb->term_taxonomy AS term_tax ON term_rel.term_taxonomy_id = term_tax.term_taxonomy_id
217
  AND term_tax.taxonomy = 'wpsl_store_category'
241
  *
242
  * Otherwise include the radius and max results limit in the sql query.
243
  */
244
+ if ( isset( $args['autoload'] ) && $args['autoload'] ) {
245
  $limit = '';
246
 
247
  if ( $wpsl_settings['autoload_limit'] ) {
251
 
252
  $sql_sort = 'ORDER BY distance '. $limit;
253
  } else {
254
+ array_push( $placeholder_values, $this->check_store_filter( $args, 'search_radius' ), $this->check_store_filter( $args, 'max_results' ) );
255
  $sql_sort = 'HAVING distance < %d ORDER BY distance LIMIT 0, %d';
256
  }
257
 
613
  * then the start location from the settings page is used.
614
  */
615
  if ( isset( $atts['start_location'] ) && $atts['start_location'] ) {
616
+ $start_latlng = wpsl_check_latlng_transient( $atts['start_location'] );
 
 
 
 
 
 
 
 
 
 
617
 
618
  if ( isset( $start_latlng ) && $start_latlng ) {
619
  $this->sl_shortcode_atts['js']['startLatlng'] = $start_latlng;
667
  */
668
  public function show_store_locator( $atts ) {
669
 
670
+ global $wpsl, $wpsl_settings;
671
 
672
  $atts = shortcode_atts( array(
673
  'template' => $wpsl_settings['template_id'],
687
  // Make sure the required scripts are included for the wpsl shortcode.
688
  array_push( $this->load_scripts, 'wpsl_store_locator' );
689
 
690
+ $template_details = $wpsl->templates->get_template_details( $atts['template'] );
 
691
 
692
+ $output = include( $template_details['path'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
693
 
694
  return $output;
695
  }
1069
 
1070
  /**
1071
  * Make sure the filter contains a valid value, otherwise use the default value.
1072
+ *
1073
  * @since 2.0.0
1074
+ * @param array $args The values used in the SQL query to find nearby locations
1075
  * @param string $filter The name of the filter
1076
  * @return string $filter_value The filter value
1077
  */
1078
+ public function check_store_filter( $args, $filter ) {
1079
 
1080
+ if ( isset( $args[$filter] ) && absint( $args[$filter] ) && $this->check_allowed_filter_value( $args, $filter ) ) {
1081
+ $filter_value = $args[$filter];
1082
  } else {
1083
  $filter_value = $this->get_default_filter_value( $filter );
1084
  }
1091
  * then the value that's set on the settings page.
1092
  *
1093
  * @since 2.2.9
1094
+ * @param array $args The values used in the SQL query to find nearby locations
1095
  * @param string $filter The name of the filter
1096
  * @return bool $allowed True if the value is equal or smaller then the value from the settings page
1097
  */
1098
+ public function check_allowed_filter_value( $args, $filter ) {
1099
 
1100
  global $wpsl_settings;
1101
 
1103
 
1104
  $max_filter_val = max( explode(',', str_replace( array( '[',']' ), '', $wpsl_settings[$filter] ) ) );
1105
 
1106
+ if ( (int) $args[$filter] <= (int) $max_filter_val ) {
1107
  $allowed = true;
1108
  }
1109
 
1696
  'maxResults' => $dropdown_defaults['max_results'],
1697
  'searchRadius' => $dropdown_defaults['search_radius'],
1698
  'distanceUnit' => wpsl_get_distance_unit(),
1699
+ 'geoLocationTimout' => apply_filters( 'wpsl_geolocation_timeout', 7500 ),
1700
  'ajaxurl' => wpsl_get_ajax_url(),
1701
  'mapControls' => $this->get_map_controls()
1702
  );
inc/class-templates.php ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Handle the WPSL and Add-on templates
4
+ *
5
+ * @author Tijmen Smit
6
+ * @since 2.2.11
7
+ */
8
+
9
+ if ( !defined( 'ABSPATH' ) ) exit;
10
+
11
+ if ( !class_exists( 'WPSL_Templates' ) ) {
12
+
13
+ class WPSL_Templates {
14
+
15
+ /**
16
+ * Get the list of available templates
17
+ *
18
+ * @since 2.2.11
19
+ * @param string $type The template type to return
20
+ * @return array|void
21
+ */
22
+ public function get_template_list( $type = 'store_locator' ) {
23
+
24
+ $template_list = array();
25
+
26
+ // Add the WPSL templates or the add-on templates.
27
+ if ( $type == 'store_locator' ) {
28
+ $template_list['store_locator'] = wpsl_get_templates();
29
+ } else {
30
+ $template_list = apply_filters( 'wpsl_template_list', $template_list );
31
+ }
32
+
33
+ if ( isset( $template_list[$type] ) && !empty( $template_list[$type] ) ) {
34
+ return $template_list[$type];
35
+ }
36
+ }
37
+
38
+ /**
39
+ * Get the template details
40
+ *
41
+ * @since 2.2.11
42
+ * @param string $used_template The name of the template
43
+ * @param string $type The type of template data to load
44
+ * @return array $template_data The template data ( id, name, path )
45
+ */
46
+ public function get_template_details( $used_template, $type = 'store_locator' ) {
47
+
48
+ $used_template = ( empty( $used_template ) ) ? 'default' : $used_template;
49
+ $templates = $this->get_template_list( $type );
50
+ $template_data = '';
51
+ $template_path = '';
52
+
53
+ if ( $templates ) {
54
+ // Grab the the correct template data from the available templates.
55
+ foreach ( $templates as $template ) {
56
+ if ( $used_template == $template['id'] ) {
57
+ $template_data = $template;
58
+ break;
59
+ }
60
+ }
61
+ }
62
+
63
+ // Old structure ( WPSL only ) was only the path, new structure ( add-ons ) expects the file name as well.
64
+ if ( isset( $template_data['path'] ) && isset( $template_data['file_name'] ) ) {
65
+ $template_path = $template_data['path'] . $template_data['file_name'];
66
+ } else if ( isset( $template_data['path'] ) ) {
67
+ $template_path = $template_data['path'];
68
+ }
69
+
70
+ // If no match exists, or the template file doesnt exist, then use the default template.
71
+ if ( !$template_data || ( !file_exists( $template_path ) ) ) {
72
+ $template_data = $this->get_default_template( $type );
73
+
74
+ // If no template can be loaded, then show a msg to the admin user.
75
+ if ( !$template_data && current_user_can( 'administrator' ) ) {
76
+ echo '<p>' . sprintf( __( 'No template found for %s', 'wpsl' ), $type ) . '</p>';
77
+ echo '<p>' . sprintf( __( 'Make sure you call the %sget_template_details%s function with the correct parameters.', 'wpsl' ), '<code>', '</code>' ) . '</p>';
78
+ }
79
+ }
80
+
81
+ return $template_data;
82
+ }
83
+
84
+ /**
85
+ * Locate the default template
86
+ *
87
+ * @since 2.2.11
88
+ * @param string $type The type of default template to return
89
+ * @return array $default The default template data
90
+ */
91
+ public function get_default_template( $type = 'store_locator' ) {
92
+
93
+ $template_list = $this->get_template_list( $type );
94
+ $default = '';
95
+
96
+ if ( $template_list ) {
97
+ foreach ( $template_list as $template ) {
98
+ if ( $template['id'] == 'default' ) {
99
+ $default = $template;
100
+ break;
101
+ }
102
+ }
103
+ }
104
+
105
+ return $default;
106
+ }
107
+
108
+ /**
109
+ * Include the template file.
110
+ *
111
+ * @since 2.2.11
112
+ * @param array $args The template path details
113
+ * @param array $template_data The template data ( address, phone, fax etc ).
114
+ * @return string The location template.
115
+ */
116
+ function get_template( $args, $template_data ) {
117
+
118
+ // Don't continue if not path and file name is set.
119
+ if ( !isset( $args['path'] ) || !isset( $args['file_name'] ) ) {
120
+ return;
121
+ }
122
+
123
+ ob_start();
124
+
125
+ include( $this->find_template_path( $args ) );
126
+
127
+ return ob_get_clean();
128
+ }
129
+
130
+ /**
131
+ * Locate the template file in either the
132
+ * theme folder or the plugin folder itself.
133
+ *
134
+ * @since 2.2.11
135
+ * @param array $args The template data
136
+ * @return string $template The path to the template.
137
+ */
138
+ function find_template_path( $args ) {
139
+
140
+ // Look for the template in the theme folder.
141
+ $template = locate_template(
142
+ array( trailingslashit( 'wpsl-templates' ) . $args['file_name'], $args['file_name'] )
143
+ );
144
+
145
+ // If the template doesn't exist in the theme folder load the one from the plugin dir.
146
+ if ( !$template ) {
147
+ $template = $args['path'] . $args['file_name'];
148
+ }
149
+
150
+ return $template;
151
+ }
152
+ }
153
+ }
inc/wpsl-functions.php CHANGED
@@ -483,6 +483,33 @@ function wpsl_get_address_latlng( $address ) {
483
 
484
  return $latlng;
485
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
486
 
487
  /**
488
  * Make sure the shortcode attributes are booleans
483
 
484
  return $latlng;
485
  }
486
+
487
+ /**
488
+ * Check if there's a transient that holds
489
+ * the coordinates for the passed address.
490
+ *
491
+ * If not, then we geocode the address and
492
+ * set the returned value in the transient.
493
+ *
494
+ * @since 2.2.11
495
+ * @param string $address The location to geocode
496
+ * @return string $latlng The coordinates of the geocoded location
497
+ */
498
+ function wpsl_check_latlng_transient( $address ) {
499
+
500
+ $name_section = explode( ',', $address );
501
+ $transient_name = 'wpsl_' . trim( strtolower( $name_section[0] ) ) . '_latlng';
502
+
503
+ if ( false === ( $latlng = get_transient( $transient_name ) ) ) {
504
+ $latlng = wpsl_get_address_latlng( $address );
505
+
506
+ if ( $latlng ) {
507
+ set_transient( $transient_name, $latlng, 0 );
508
+ }
509
+ }
510
+
511
+ return $latlng;
512
+ }
513
 
514
  /**
515
  * Make sure the shortcode attributes are booleans
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.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-11-30 18:43+0700\n"
6
- "PO-Revision-Date: 2017-11-30 23:55+0700\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\n"
@@ -68,12 +68,12 @@ msgstr ""
68
  "Beveiligings controle mislukt, herlaad de pagina en probeer het nog een keer."
69
 
70
  #: admin/class-admin.php:175 admin/class-admin.php:176
71
- #: admin/class-admin.php:468 admin/templates/map-settings.php:11
72
  msgid "Settings"
73
  msgstr "Instellingen"
74
 
75
  #: admin/class-admin.php:182 admin/class-admin.php:183
76
- #: admin/class-admin.php:488
77
  msgid "Add-Ons"
78
  msgstr "Uitbreidingen"
79
 
@@ -101,7 +101,7 @@ msgstr ""
101
  "getoond kan worden."
102
 
103
  #: admin/class-admin.php:299 admin/class-metaboxes.php:525
104
- #: frontend/class-frontend.php:561
105
  msgid "Closed"
106
  msgstr "Gesloten"
107
 
@@ -123,19 +123,19 @@ msgstr ""
123
  msgid "Dismiss this notice."
124
  msgstr "Sluit deze notice."
125
 
126
- #: admin/class-admin.php:423
127
  msgid "Welcome to WP Store Locator"
128
  msgstr "Welkom bij WP Store Locator"
129
 
130
- #: admin/class-admin.php:424
131
  msgid "Sign up for the latest plugin updates and announcements."
132
  msgstr "Meld je aan voor de nieuwsbrief en ontvang het laatste nieuws."
133
 
134
- #: admin/class-admin.php:487
135
  msgid "Documentation"
136
  msgstr "Documentatie"
137
 
138
- #: admin/class-admin.php:510
139
  #, php-format
140
  msgid "If you like this plugin please leave us a %s5 star%s rating."
141
  msgstr "Als je tevreden bent met deze plugin geef het dan %s5 sterren%s."
@@ -325,8 +325,8 @@ msgstr "Lengtegraad"
325
  msgid "Opening Hours"
326
  msgstr "Openingstijden"
327
 
328
- #: admin/class-metaboxes.php:82 admin/templates/map-settings.php:539
329
- #: admin/templates/map-settings.php:540 frontend/underscore-functions.php:160
330
  #: inc/wpsl-functions.php:150
331
  msgid "Hours"
332
  msgstr "Uren"
@@ -339,24 +339,24 @@ msgstr "Extra informatie"
339
  msgid "Tel"
340
  msgstr "Tel."
341
 
342
- #: admin/class-metaboxes.php:91 admin/templates/map-settings.php:527
343
- #: admin/templates/map-settings.php:528 frontend/class-frontend.php:825
344
  #: frontend/underscore-functions.php:32 frontend/underscore-functions.php:68
345
  #: frontend/underscore-functions.php:150 inc/wpsl-functions.php:147
346
  msgid "Fax"
347
  msgstr "Fax"
348
 
349
- #: admin/class-metaboxes.php:94 admin/templates/map-settings.php:531
350
- #: admin/templates/map-settings.php:532 admin/upgrade.php:198
351
- #: frontend/class-frontend.php:829 frontend/underscore-functions.php:35
352
  #: frontend/underscore-functions.php:71 frontend/underscore-functions.php:153
353
  #: inc/wpsl-functions.php:148
354
  msgid "Email"
355
  msgstr "E-mail"
356
 
357
- #: admin/class-metaboxes.php:97 admin/templates/map-settings.php:535
358
- #: admin/templates/map-settings.php:536 admin/upgrade.php:202
359
- #: frontend/class-frontend.php:834 inc/wpsl-functions.php:149
360
  msgid "Url"
361
  msgstr "Url"
362
 
@@ -448,25 +448,25 @@ msgstr "Winkel voorbeeld"
448
  msgid "WP Store Locator Transients Cleared"
449
  msgstr "WP Store Locator transients verwijderd"
450
 
451
- #: admin/class-settings.php:367
452
  #, php-format
453
  msgid "There's a problem with the provided %sserver key%s. %s"
454
  msgstr "Er is een probleem met de opgegeven %sserver sleutel%s. %s"
455
 
456
- #: admin/class-settings.php:481
457
  msgid ""
458
  "The max results field cannot be empty, the default value has been restored."
459
  msgstr ""
460
  "Het max. zoek resulaten veld kan niet leeg zijn, de standaard waarde is "
461
  "hersteld."
462
 
463
- #: admin/class-settings.php:484
464
  msgid ""
465
  "The search radius field cannot be empty, the default value has been restored."
466
  msgstr ""
467
  "Het zoek radius veld kan niet leeg zijn, de standaard waarde is hersteld."
468
 
469
- #: admin/class-settings.php:487
470
  #, php-format
471
  msgid ""
472
  "Please provide the name of a city or country that can be used as a starting "
@@ -478,1296 +478,1296 @@ msgstr ""
478
  "automatische achterhalen van de gebruikers locatie mislukt, of het "
479
  "automatische achterhalen is uitgeschakeld."
480
 
481
- #: admin/class-settings.php:508
482
  msgid "Select your language"
483
  msgstr "Kies uw taal"
484
 
485
- #: admin/class-settings.php:509
486
  msgid "English"
487
  msgstr "Engels"
488
 
489
- #: admin/class-settings.php:510
490
  msgid "Arabic"
491
  msgstr "Arabisch"
492
 
493
- #: admin/class-settings.php:511
494
  msgid "Basque"
495
  msgstr "Bask"
496
 
497
- #: admin/class-settings.php:512
498
  msgid "Bulgarian"
499
  msgstr "Bulgaars"
500
 
501
- #: admin/class-settings.php:513
502
  msgid "Bengali"
503
  msgstr "Bengali"
504
 
505
- #: admin/class-settings.php:514
506
  msgid "Catalan"
507
  msgstr "Catalaans"
508
 
509
- #: admin/class-settings.php:515
510
  msgid "Czech"
511
  msgstr "Tjechisch"
512
 
513
- #: admin/class-settings.php:516
514
  msgid "Danish"
515
  msgstr "Deens"
516
 
517
- #: admin/class-settings.php:517
518
  msgid "German"
519
  msgstr "Duits"
520
 
521
- #: admin/class-settings.php:518
522
  msgid "Greek"
523
  msgstr "Grieks"
524
 
525
- #: admin/class-settings.php:519
526
  msgid "English (Australian)"
527
  msgstr "Engels (Australisch)"
528
 
529
- #: admin/class-settings.php:520
530
  msgid "English (Great Britain)"
531
  msgstr "Engels (Verenigd Koninkrijk)"
532
 
533
- #: admin/class-settings.php:521
534
  msgid "Spanish"
535
  msgstr "Spaans"
536
 
537
- #: admin/class-settings.php:522
538
  msgid "Farsi"
539
  msgstr "Farsi"
540
 
541
- #: admin/class-settings.php:523
542
  msgid "Finnish"
543
  msgstr "Fins"
544
 
545
- #: admin/class-settings.php:524
546
  msgid "Filipino"
547
  msgstr "Filipijns"
548
 
549
- #: admin/class-settings.php:525
550
  msgid "French"
551
  msgstr "Frans"
552
 
553
- #: admin/class-settings.php:526
554
  msgid "Galician"
555
  msgstr "Gallisch"
556
 
557
- #: admin/class-settings.php:527
558
  msgid "Gujarati"
559
  msgstr "Gujurati"
560
 
561
- #: admin/class-settings.php:528
562
  msgid "Hindi"
563
  msgstr "Hindi"
564
 
565
- #: admin/class-settings.php:529
566
  msgid "Croatian"
567
  msgstr "Kroatisch"
568
 
569
- #: admin/class-settings.php:530
570
  msgid "Hungarian"
571
  msgstr "Hongaars"
572
 
573
- #: admin/class-settings.php:531
574
  msgid "Indonesian"
575
  msgstr "Indonesisch"
576
 
577
- #: admin/class-settings.php:532
578
  msgid "Italian"
579
  msgstr "Italiaans"
580
 
581
- #: admin/class-settings.php:533
582
  msgid "Hebrew"
583
  msgstr "Hebreeuws"
584
 
585
- #: admin/class-settings.php:534
586
  msgid "Japanese"
587
  msgstr "Japans"
588
 
589
- #: admin/class-settings.php:535
590
  msgid "Kannada"
591
  msgstr "Kannada"
592
 
593
- #: admin/class-settings.php:536
594
  msgid "Korean"
595
  msgstr "Koreaans"
596
 
597
- #: admin/class-settings.php:537
598
  msgid "Lithuanian"
599
  msgstr "Litouws"
600
 
601
- #: admin/class-settings.php:538
602
  msgid "Latvian"
603
  msgstr "Lets"
604
 
605
- #: admin/class-settings.php:539
606
  msgid "Malayalam"
607
  msgstr "Malayalam"
608
 
609
- #: admin/class-settings.php:540
610
  msgid "Marathi"
611
  msgstr "Marathi"
612
 
613
- #: admin/class-settings.php:541
614
  msgid "Dutch"
615
  msgstr "Nederlands"
616
 
617
- #: admin/class-settings.php:542
618
  msgid "Norwegian"
619
  msgstr "Noors"
620
 
621
- #: admin/class-settings.php:543
622
  msgid "Norwegian Nynorsk"
623
  msgstr "Noors Nynorsk"
624
 
625
- #: admin/class-settings.php:544
626
  msgid "Polish"
627
  msgstr "Pools"
628
 
629
- #: admin/class-settings.php:545
630
  msgid "Portuguese"
631
  msgstr "Portugees"
632
 
633
- #: admin/class-settings.php:546
634
  msgid "Portuguese (Brazil)"
635
  msgstr "Portugees (Brazilië)"
636
 
637
- #: admin/class-settings.php:547
638
  msgid "Portuguese (Portugal)"
639
  msgstr "Portugees (Portugal)"
640
 
641
- #: admin/class-settings.php:548
642
  msgid "Romanian"
643
  msgstr "Roemeens"
644
 
645
- #: admin/class-settings.php:549
646
  msgid "Russian"
647
  msgstr "Russisch"
648
 
649
- #: admin/class-settings.php:550
650
  msgid "Slovak"
651
  msgstr "Slowaaks"
652
 
653
- #: admin/class-settings.php:551
654
  msgid "Slovenian"
655
  msgstr "Sloveens"
656
 
657
- #: admin/class-settings.php:552
658
  msgid "Serbian"
659
  msgstr "Servisch"
660
 
661
- #: admin/class-settings.php:553
662
  msgid "Swedish"
663
  msgstr "Zweeds"
664
 
665
- #: admin/class-settings.php:554
666
  msgid "Tagalog"
667
  msgstr "Tagalog"
668
 
669
- #: admin/class-settings.php:555
670
  msgid "Tamil"
671
  msgstr "Tamil"
672
 
673
- #: admin/class-settings.php:556
674
  msgid "Telugu"
675
  msgstr "Telugu"
676
 
677
- #: admin/class-settings.php:557
678
  msgid "Thai"
679
  msgstr "Thai"
680
 
681
- #: admin/class-settings.php:558
682
  msgid "Turkish"
683
  msgstr "Turks"
684
 
685
- #: admin/class-settings.php:559
686
  msgid "Ukrainian"
687
  msgstr "Oekraïens"
688
 
689
- #: admin/class-settings.php:560
690
  msgid "Vietnamese"
691
  msgstr "Vietnamees"
692
 
693
- #: admin/class-settings.php:561
694
  msgid "Chinese (Simplified)"
695
  msgstr "Chinees (Vereenvoudigd)"
696
 
697
- #: admin/class-settings.php:562
698
  msgid "Chinese (Traditional)"
699
  msgstr "Chinees (Traditioneel)"
700
 
701
- #: admin/class-settings.php:567
702
  msgid "Select your region"
703
  msgstr "Kies uw regio"
704
 
705
- #: admin/class-settings.php:568
706
  msgid "Afghanistan"
707
  msgstr "Afghanistan"
708
 
709
- #: admin/class-settings.php:569
710
  msgid "Albania"
711
  msgstr "Albanië"
712
 
713
- #: admin/class-settings.php:570
714
  msgid "Algeria"
715
  msgstr "Algerije"
716
 
717
- #: admin/class-settings.php:571
718
  msgid "American Samoa"
719
  msgstr "Amerikaans Samoa"
720
 
721
- #: admin/class-settings.php:572
722
  msgid "Andorra"
723
  msgstr "Andorra"
724
 
725
- #: admin/class-settings.php:573
726
  msgid "Angola"
727
  msgstr "Angola"
728
 
729
- #: admin/class-settings.php:574
730
  msgid "Anguilla"
731
  msgstr "Anguilla"
732
 
733
- #: admin/class-settings.php:575
734
  msgid "Antarctica"
735
  msgstr "Antarctica"
736
 
737
- #: admin/class-settings.php:576
738
  msgid "Antigua and Barbuda"
739
  msgstr "Antigua en Barbuda"
740
 
741
- #: admin/class-settings.php:577
742
  msgid "Argentina"
743
  msgstr "Argentinië"
744
 
745
- #: admin/class-settings.php:578
746
  msgid "Armenia"
747
  msgstr "Armenia"
748
 
749
- #: admin/class-settings.php:579
750
  msgid "Aruba"
751
  msgstr "Aruba"
752
 
753
- #: admin/class-settings.php:580
754
  msgid "Ascension Island"
755
  msgstr "Ascension"
756
 
757
- #: admin/class-settings.php:581
758
  msgid "Australia"
759
  msgstr "Australië"
760
 
761
- #: admin/class-settings.php:582
762
  msgid "Austria"
763
  msgstr "Oostenrijk"
764
 
765
- #: admin/class-settings.php:583
766
  msgid "Azerbaijan"
767
  msgstr "Azerbeidzjan"
768
 
769
- #: admin/class-settings.php:584
770
  msgid "Bahamas"
771
  msgstr "Bahamas"
772
 
773
- #: admin/class-settings.php:585
774
  msgid "Bahrain"
775
  msgstr "Bahrein"
776
 
777
- #: admin/class-settings.php:586
778
  msgid "Bangladesh"
779
  msgstr "Bangladesh"
780
 
781
- #: admin/class-settings.php:587
782
  msgid "Barbados"
783
  msgstr "Barbados"
784
 
785
- #: admin/class-settings.php:588
786
  msgid "Belarus"
787
  msgstr "Wit-Rusland"
788
 
789
- #: admin/class-settings.php:589
790
  msgid "Belgium"
791
  msgstr "België"
792
 
793
- #: admin/class-settings.php:590
794
  msgid "Belize"
795
  msgstr "Belize"
796
 
797
- #: admin/class-settings.php:591
798
  msgid "Benin"
799
  msgstr "Benin"
800
 
801
- #: admin/class-settings.php:592
802
  msgid "Bermuda"
803
  msgstr "Bermuda"
804
 
805
- #: admin/class-settings.php:593
806
  msgid "Bhutan"
807
  msgstr "Bhutan"
808
 
809
- #: admin/class-settings.php:594
810
  msgid "Bolivia"
811
  msgstr "Bolivia"
812
 
813
- #: admin/class-settings.php:595
814
  msgid "Bosnia and Herzegovina"
815
  msgstr "Bosnia en Herzegovina"
816
 
817
- #: admin/class-settings.php:596
818
  msgid "Botswana"
819
  msgstr "Botswana"
820
 
821
- #: admin/class-settings.php:597
822
  msgid "Bouvet Island"
823
  msgstr "Bouvet"
824
 
825
- #: admin/class-settings.php:598
826
  msgid "Brazil"
827
  msgstr "Brazilië"
828
 
829
- #: admin/class-settings.php:599
830
  msgid "British Indian Ocean Territory"
831
  msgstr "Brits Indische Oceaanterritorium"
832
 
833
- #: admin/class-settings.php:600
834
  msgid "British Virgin Islands"
835
  msgstr "Britse Maagdeneilanden"
836
 
837
- #: admin/class-settings.php:601
838
  msgid "Brunei"
839
  msgstr "Brunei"
840
 
841
- #: admin/class-settings.php:602
842
  msgid "Bulgaria"
843
  msgstr "Bulgarije"
844
 
845
- #: admin/class-settings.php:603
846
  msgid "Burkina Faso"
847
  msgstr "Burkina Faso"
848
 
849
- #: admin/class-settings.php:604
850
  msgid "Burundi"
851
  msgstr "Burundi"
852
 
853
- #: admin/class-settings.php:605
854
  msgid "Cambodia"
855
  msgstr "Cambodja"
856
 
857
- #: admin/class-settings.php:606
858
  msgid "Cameroon"
859
  msgstr "Kameroen"
860
 
861
- #: admin/class-settings.php:607
862
  msgid "Canada"
863
  msgstr "Canada"
864
 
865
- #: admin/class-settings.php:608
866
  msgid "Canary Islands"
867
  msgstr "Canarische Eilanden"
868
 
869
- #: admin/class-settings.php:609
870
  msgid "Cape Verde"
871
  msgstr "Kaapverdië"
872
 
873
- #: admin/class-settings.php:610
874
  msgid "Caribbean Netherlands"
875
  msgstr "Caribisch Nederland"
876
 
877
- #: admin/class-settings.php:611
878
  msgid "Cayman Islands"
879
  msgstr "Kaaimaneilanden"
880
 
881
- #: admin/class-settings.php:612
882
  msgid "Central African Republic"
883
  msgstr "Centraal-Afrikaanse Republiek"
884
 
885
- #: admin/class-settings.php:613
886
  msgid "Ceuta and Melilla"
887
  msgstr "Ceuta en Melilla"
888
 
889
- #: admin/class-settings.php:614
890
  msgid "Chad"
891
  msgstr "Chad"
892
 
893
- #: admin/class-settings.php:615
894
  msgid "Chile"
895
  msgstr "Chili"
896
 
897
- #: admin/class-settings.php:616
898
  msgid "China"
899
  msgstr "China"
900
 
901
- #: admin/class-settings.php:617
902
  msgid "Christmas Island"
903
  msgstr "Christmaseiland"
904
 
905
- #: admin/class-settings.php:618
906
  msgid "Clipperton Island"
907
  msgstr "Clipperton"
908
 
909
- #: admin/class-settings.php:619
910
  msgid "Cocos (Keeling) Islands"
911
  msgstr "Cocoseilanden"
912
 
913
- #: admin/class-settings.php:620
914
  msgid "Colombia"
915
  msgstr "Colombia"
916
 
917
- #: admin/class-settings.php:621
918
  msgid "Comoros"
919
  msgstr "Comoren"
920
 
921
- #: admin/class-settings.php:622
922
  msgid "Congo (DRC)"
923
  msgstr "Congo (DRC)"
924
 
925
- #: admin/class-settings.php:623
926
  msgid "Congo (Republic)"
927
  msgstr "Republiek Congo"
928
 
929
- #: admin/class-settings.php:624
930
  msgid "Cook Islands"
931
  msgstr "Cookeilanden"
932
 
933
- #: admin/class-settings.php:625
934
  msgid "Costa Rica"
935
  msgstr "Costa Rica"
936
 
937
- #: admin/class-settings.php:626
938
  msgid "Croatia"
939
  msgstr "Kroatië"
940
 
941
- #: admin/class-settings.php:627
942
  msgid "Cuba"
943
  msgstr "Cuba"
944
 
945
- #: admin/class-settings.php:628
946
  msgid "Curaçao"
947
  msgstr "Curaçao"
948
 
949
- #: admin/class-settings.php:629
950
  msgid "Cyprus"
951
  msgstr "Cyprus"
952
 
953
- #: admin/class-settings.php:630
954
  msgid "Czech Republic"
955
  msgstr "Tsjechië"
956
 
957
- #: admin/class-settings.php:631
958
  msgid "Côte d'Ivoire"
959
  msgstr "Ivoorkust"
960
 
961
- #: admin/class-settings.php:632
962
  msgid "Denmark"
963
  msgstr "Denemarken"
964
 
965
- #: admin/class-settings.php:633
966
  msgid "Djibouti"
967
  msgstr "Djibouti"
968
 
969
- #: admin/class-settings.php:634
970
  msgid "Democratic Republic of the Congo"
971
  msgstr "Democratische Republiek Congo"
972
 
973
- #: admin/class-settings.php:635
974
  msgid "Dominica"
975
  msgstr "Dominica"
976
 
977
- #: admin/class-settings.php:636
978
  msgid "Dominican Republic"
979
  msgstr "Dominicaanse Republiek"
980
 
981
- #: admin/class-settings.php:637
982
  msgid "Ecuador"
983
  msgstr "Ecuador"
984
 
985
- #: admin/class-settings.php:638
986
  msgid "Egypt"
987
  msgstr "Egypte"
988
 
989
- #: admin/class-settings.php:639
990
  msgid "El Salvador"
991
  msgstr "El Salvador"
992
 
993
- #: admin/class-settings.php:640
994
  msgid "Equatorial Guinea"
995
  msgstr "Equatoriaal-Guinea"
996
 
997
- #: admin/class-settings.php:641
998
  msgid "Eritrea"
999
  msgstr "Eritrea"
1000
 
1001
- #: admin/class-settings.php:642
1002
  msgid "Estonia"
1003
  msgstr "Estland"
1004
 
1005
- #: admin/class-settings.php:643
1006
  msgid "Ethiopia"
1007
  msgstr "Ethiopië"
1008
 
1009
- #: admin/class-settings.php:644
1010
  msgid "Falkland Islands(Islas Malvinas)"
1011
  msgstr "Falklandeilanden"
1012
 
1013
- #: admin/class-settings.php:645
1014
  msgid "Faroe Islands"
1015
  msgstr "Faeröer"
1016
 
1017
- #: admin/class-settings.php:646
1018
  msgid "Fiji"
1019
  msgstr "Fiji"
1020
 
1021
- #: admin/class-settings.php:647
1022
  msgid "Finland"
1023
  msgstr "Finland"
1024
 
1025
- #: admin/class-settings.php:648
1026
  msgid "France"
1027
  msgstr "Frankrijk"
1028
 
1029
- #: admin/class-settings.php:649
1030
  msgid "French Guiana"
1031
  msgstr "Frans Guyana"
1032
 
1033
- #: admin/class-settings.php:650
1034
  msgid "French Polynesia"
1035
  msgstr "Frans-Polynesië"
1036
 
1037
- #: admin/class-settings.php:651
1038
  msgid "French Southern Territories"
1039
  msgstr "Franse Zuidelijke en Antarctische Gebieden"
1040
 
1041
- #: admin/class-settings.php:652
1042
  msgid "Gabon"
1043
  msgstr "Gabon"
1044
 
1045
- #: admin/class-settings.php:653
1046
  msgid "Gambia"
1047
  msgstr "Gambia"
1048
 
1049
- #: admin/class-settings.php:654
1050
  msgid "Georgia"
1051
  msgstr "Georgië"
1052
 
1053
- #: admin/class-settings.php:655
1054
  msgid "Germany"
1055
  msgstr "Duitsland"
1056
 
1057
- #: admin/class-settings.php:656
1058
  msgid "Ghana"
1059
  msgstr "Ghana"
1060
 
1061
- #: admin/class-settings.php:657
1062
  msgid "Gibraltar"
1063
  msgstr "Gibraltar"
1064
 
1065
- #: admin/class-settings.php:658
1066
  msgid "Greece"
1067
  msgstr "Griekenland"
1068
 
1069
- #: admin/class-settings.php:659
1070
  msgid "Greenland"
1071
  msgstr "Groenland"
1072
 
1073
- #: admin/class-settings.php:660
1074
  msgid "Grenada"
1075
  msgstr "Grenada"
1076
 
1077
- #: admin/class-settings.php:661 admin/class-settings.php:663
1078
  msgid "Guam"
1079
  msgstr "Guam"
1080
 
1081
- #: admin/class-settings.php:662
1082
  msgid "Guadeloupe"
1083
  msgstr "Guadeloupe"
1084
 
1085
- #: admin/class-settings.php:664
1086
  msgid "Guatemala"
1087
  msgstr "Guatemala"
1088
 
1089
- #: admin/class-settings.php:665
1090
  msgid "Guernsey"
1091
  msgstr "Guernsey"
1092
 
1093
- #: admin/class-settings.php:666
1094
  msgid "Guinea"
1095
  msgstr "Guinee"
1096
 
1097
- #: admin/class-settings.php:667
1098
  msgid "Guinea-Bissau"
1099
  msgstr "Guinee-Bissau"
1100
 
1101
- #: admin/class-settings.php:668
1102
  msgid "Guyana"
1103
  msgstr "Guyana"
1104
 
1105
- #: admin/class-settings.php:669
1106
  msgid "Haiti"
1107
  msgstr "Haïti"
1108
 
1109
- #: admin/class-settings.php:670
1110
  msgid "Heard and McDonald Islands"
1111
  msgstr "Heard en McDonaldeilanden"
1112
 
1113
- #: admin/class-settings.php:671
1114
  msgid "Honduras"
1115
  msgstr "Honduras"
1116
 
1117
- #: admin/class-settings.php:672
1118
  msgid "Hong Kong"
1119
  msgstr "Hong Kong"
1120
 
1121
- #: admin/class-settings.php:673
1122
  msgid "Hungary"
1123
  msgstr "Hongarije"
1124
 
1125
- #: admin/class-settings.php:674
1126
  msgid "Iceland"
1127
  msgstr "IJsland"
1128
 
1129
- #: admin/class-settings.php:675
1130
  msgid "India"
1131
  msgstr "India"
1132
 
1133
- #: admin/class-settings.php:676
1134
  msgid "Indonesia"
1135
  msgstr "Indonesië"
1136
 
1137
- #: admin/class-settings.php:677
1138
  msgid "Iran"
1139
  msgstr "Iran"
1140
 
1141
- #: admin/class-settings.php:678
1142
  msgid "Iraq"
1143
  msgstr "Irak"
1144
 
1145
- #: admin/class-settings.php:679
1146
  msgid "Ireland"
1147
  msgstr "Ierland"
1148
 
1149
- #: admin/class-settings.php:680
1150
  msgid "Isle of Man"
1151
  msgstr "Man (eiland)"
1152
 
1153
- #: admin/class-settings.php:681
1154
  msgid "Israel"
1155
  msgstr "Israël"
1156
 
1157
- #: admin/class-settings.php:682
1158
  msgid "Italy"
1159
  msgstr "Italië"
1160
 
1161
- #: admin/class-settings.php:683
1162
  msgid "Jamaica"
1163
  msgstr "Jamaica"
1164
 
1165
- #: admin/class-settings.php:684
1166
  msgid "Japan"
1167
  msgstr "Japan"
1168
 
1169
- #: admin/class-settings.php:685
1170
  msgid "Jersey"
1171
  msgstr "Jersey"
1172
 
1173
- #: admin/class-settings.php:686
1174
  msgid "Jordan"
1175
  msgstr "Jordanië"
1176
 
1177
- #: admin/class-settings.php:687
1178
  msgid "Kazakhstan"
1179
  msgstr "Kazachstan"
1180
 
1181
- #: admin/class-settings.php:688
1182
  msgid "Kenya"
1183
  msgstr "Kenia"
1184
 
1185
- #: admin/class-settings.php:689
1186
  msgid "Kiribati"
1187
  msgstr "Kiribati"
1188
 
1189
- #: admin/class-settings.php:690
1190
  msgid "Kosovo"
1191
  msgstr "Kosovo"
1192
 
1193
- #: admin/class-settings.php:691
1194
  msgid "Kuwait"
1195
  msgstr "Koeweit"
1196
 
1197
- #: admin/class-settings.php:692
1198
  msgid "Kyrgyzstan"
1199
  msgstr "Kirgizië"
1200
 
1201
- #: admin/class-settings.php:693
1202
  msgid "Laos"
1203
  msgstr "Laos"
1204
 
1205
- #: admin/class-settings.php:694
1206
  msgid "Latvia"
1207
  msgstr "Letland"
1208
 
1209
- #: admin/class-settings.php:695
1210
  msgid "Lebanon"
1211
  msgstr "Libanon"
1212
 
1213
- #: admin/class-settings.php:696
1214
  msgid "Lesotho"
1215
  msgstr "Lesotho"
1216
 
1217
- #: admin/class-settings.php:697
1218
  msgid "Liberia"
1219
  msgstr "Liberia"
1220
 
1221
- #: admin/class-settings.php:698
1222
  msgid "Libya"
1223
  msgstr "Libië"
1224
 
1225
- #: admin/class-settings.php:699
1226
  msgid "Liechtenstein"
1227
  msgstr "Liechtenstein"
1228
 
1229
- #: admin/class-settings.php:700
1230
  msgid "Lithuania"
1231
  msgstr "Litouwen"
1232
 
1233
- #: admin/class-settings.php:701
1234
  msgid "Luxembourg"
1235
  msgstr "Luxemburg"
1236
 
1237
- #: admin/class-settings.php:702
1238
  msgid "Macau"
1239
  msgstr "Macau"
1240
 
1241
- #: admin/class-settings.php:703
1242
  msgid "Macedonia (FYROM)"
1243
  msgstr "Macedonië"
1244
 
1245
- #: admin/class-settings.php:704
1246
  msgid "Madagascar"
1247
  msgstr "Madagascar"
1248
 
1249
- #: admin/class-settings.php:705
1250
  msgid "Malawi"
1251
  msgstr "Malawi"
1252
 
1253
- #: admin/class-settings.php:706
1254
  msgid "Malaysia "
1255
  msgstr "Maleisie"
1256
 
1257
- #: admin/class-settings.php:707
1258
  msgid "Maldives "
1259
  msgstr "Maldiven"
1260
 
1261
- #: admin/class-settings.php:708
1262
  msgid "Mali"
1263
  msgstr "Mali"
1264
 
1265
- #: admin/class-settings.php:709
1266
  msgid "Malta"
1267
  msgstr "Malta"
1268
 
1269
- #: admin/class-settings.php:710
1270
  msgid "Marshall Islands"
1271
  msgstr "Marshalleilanden"
1272
 
1273
- #: admin/class-settings.php:711
1274
  msgid "Martinique"
1275
  msgstr "Martinique"
1276
 
1277
- #: admin/class-settings.php:712
1278
  msgid "Mauritania"
1279
  msgstr "Mauritanië"
1280
 
1281
- #: admin/class-settings.php:713
1282
  msgid "Mauritius"
1283
  msgstr "Mauritius"
1284
 
1285
- #: admin/class-settings.php:714
1286
  msgid "Mayotte"
1287
  msgstr "Mayotte"
1288
 
1289
- #: admin/class-settings.php:715
1290
  msgid "Mexico"
1291
  msgstr "Mexico"
1292
 
1293
- #: admin/class-settings.php:716
1294
  msgid "Micronesia"
1295
  msgstr "Micronesia"
1296
 
1297
- #: admin/class-settings.php:717
1298
  msgid "Moldova"
1299
  msgstr "Moldavië"
1300
 
1301
- #: admin/class-settings.php:718
1302
  msgid "Monaco"
1303
  msgstr "Monaco"
1304
 
1305
- #: admin/class-settings.php:719
1306
  msgid "Mongolia"
1307
  msgstr "Mongolië"
1308
 
1309
- #: admin/class-settings.php:720
1310
  msgid "Montenegro"
1311
  msgstr "Montenegro"
1312
 
1313
- #: admin/class-settings.php:721
1314
  msgid "Montserrat"
1315
  msgstr "Montserrat "
1316
 
1317
- #: admin/class-settings.php:722
1318
  msgid "Morocco"
1319
  msgstr "Marokko"
1320
 
1321
- #: admin/class-settings.php:723
1322
  msgid "Mozambique"
1323
  msgstr "Mozambique"
1324
 
1325
- #: admin/class-settings.php:724
1326
  msgid "Myanmar (Burma)"
1327
  msgstr "Myanmar (Birma)"
1328
 
1329
- #: admin/class-settings.php:725
1330
  msgid "Namibia"
1331
  msgstr "Namibië"
1332
 
1333
- #: admin/class-settings.php:726
1334
  msgid "Nauru"
1335
  msgstr "Nauru"
1336
 
1337
- #: admin/class-settings.php:727
1338
  msgid "Nepal"
1339
  msgstr "Nepal"
1340
 
1341
- #: admin/class-settings.php:728
1342
  msgid "Netherlands"
1343
  msgstr "Nederland"
1344
 
1345
- #: admin/class-settings.php:729
1346
  msgid "Netherlands Antilles"
1347
  msgstr "Nederlandse Antillen"
1348
 
1349
- #: admin/class-settings.php:730
1350
  msgid "New Caledonia"
1351
  msgstr "Nieuw-Caledonië"
1352
 
1353
- #: admin/class-settings.php:731
1354
  msgid "New Zealand"
1355
  msgstr "Nieuw Zeeland"
1356
 
1357
- #: admin/class-settings.php:732
1358
  msgid "Nicaragua"
1359
  msgstr "Nicaragua"
1360
 
1361
- #: admin/class-settings.php:733
1362
  msgid "Niger"
1363
  msgstr "Niger"
1364
 
1365
- #: admin/class-settings.php:734
1366
  msgid "Nigeria"
1367
  msgstr "Nigeria"
1368
 
1369
- #: admin/class-settings.php:735
1370
  msgid "Niue"
1371
  msgstr "Niue"
1372
 
1373
- #: admin/class-settings.php:736
1374
  msgid "Norfolk Island"
1375
  msgstr "Norfolk (eiland)"
1376
 
1377
- #: admin/class-settings.php:737
1378
  msgid "North Korea"
1379
  msgstr "Noord-Korea"
1380
 
1381
- #: admin/class-settings.php:738
1382
  msgid "Northern Mariana Islands"
1383
  msgstr "Noordelijke Marianen"
1384
 
1385
- #: admin/class-settings.php:739
1386
  msgid "Norway"
1387
  msgstr "Noorwegen"
1388
 
1389
- #: admin/class-settings.php:740
1390
  msgid "Oman"
1391
  msgstr "Oman"
1392
 
1393
- #: admin/class-settings.php:741
1394
  msgid "Pakistan"
1395
  msgstr "Pakistan"
1396
 
1397
- #: admin/class-settings.php:742
1398
  msgid "Palau"
1399
  msgstr "Palau"
1400
 
1401
- #: admin/class-settings.php:743
1402
  msgid "Palestine"
1403
  msgstr "Palestine"
1404
 
1405
- #: admin/class-settings.php:744
1406
  msgid "Panama"
1407
  msgstr "Panama"
1408
 
1409
- #: admin/class-settings.php:745
1410
  msgid "Papua New Guinea"
1411
  msgstr "Papoea-Nieuw-Guinea"
1412
 
1413
- #: admin/class-settings.php:746
1414
  msgid "Paraguay"
1415
  msgstr "Paraguay"
1416
 
1417
- #: admin/class-settings.php:747
1418
  msgid "Peru"
1419
  msgstr "Peru"
1420
 
1421
- #: admin/class-settings.php:748
1422
  msgid "Philippines"
1423
  msgstr "Filipijnen"
1424
 
1425
- #: admin/class-settings.php:749
1426
  msgid "Pitcairn Islands"
1427
  msgstr "Pitcairneilanden"
1428
 
1429
- #: admin/class-settings.php:750
1430
  msgid "Poland"
1431
  msgstr "Polen"
1432
 
1433
- #: admin/class-settings.php:751
1434
  msgid "Portugal"
1435
  msgstr "Portugal"
1436
 
1437
- #: admin/class-settings.php:752
1438
  msgid "Puerto Rico"
1439
  msgstr "Puerto Rico"
1440
 
1441
- #: admin/class-settings.php:753
1442
  msgid "Qatar"
1443
  msgstr "Qatar"
1444
 
1445
- #: admin/class-settings.php:754
1446
  msgid "Reunion"
1447
  msgstr "Réunion"
1448
 
1449
- #: admin/class-settings.php:755
1450
  msgid "Romania"
1451
  msgstr "Roemenië"
1452
 
1453
- #: admin/class-settings.php:756
1454
  msgid "Russia"
1455
  msgstr "Rusland"
1456
 
1457
- #: admin/class-settings.php:757
1458
  msgid "Rwanda"
1459
  msgstr "Rwanda"
1460
 
1461
- #: admin/class-settings.php:758
1462
  msgid "Saint Helena"
1463
  msgstr "Sint-Helena"
1464
 
1465
- #: admin/class-settings.php:759
1466
  msgid "Saint Kitts and Nevis"
1467
  msgstr "Saint Kitts en Nevis"
1468
 
1469
- #: admin/class-settings.php:760
1470
  msgid "Saint Vincent and the Grenadines"
1471
  msgstr "Saint Vincent en de Grenadines"
1472
 
1473
- #: admin/class-settings.php:761
1474
  msgid "Saint Lucia"
1475
  msgstr "Saint Lucia"
1476
 
1477
- #: admin/class-settings.php:762
1478
  msgid "Samoa"
1479
  msgstr "Samoa"
1480
 
1481
- #: admin/class-settings.php:763
1482
  msgid "San Marino"
1483
  msgstr "San Marino"
1484
 
1485
- #: admin/class-settings.php:764
1486
  msgid "São Tomé and Príncipe"
1487
  msgstr "Sao Tomé en Principe"
1488
 
1489
- #: admin/class-settings.php:765
1490
  msgid "Saudi Arabia"
1491
  msgstr "Saoedi-Arabië"
1492
 
1493
- #: admin/class-settings.php:766
1494
  msgid "Senegal"
1495
  msgstr "Senegal"
1496
 
1497
- #: admin/class-settings.php:767
1498
  msgid "Serbia"
1499
  msgstr "Servië"
1500
 
1501
- #: admin/class-settings.php:768
1502
  msgid "Seychelles"
1503
  msgstr "Seychellen"
1504
 
1505
- #: admin/class-settings.php:769
1506
  msgid "Sierra Leone"
1507
  msgstr "Sierra Leone"
1508
 
1509
- #: admin/class-settings.php:770
1510
  msgid "Singapore"
1511
  msgstr "Singapore"
1512
 
1513
- #: admin/class-settings.php:771
1514
  msgid "Sint Maarten"
1515
  msgstr "Sint Maarten"
1516
 
1517
- #: admin/class-settings.php:772
1518
  msgid "Slovakia"
1519
  msgstr "Slowakije"
1520
 
1521
- #: admin/class-settings.php:773
1522
  msgid "Slovenia"
1523
  msgstr "Slovenië"
1524
 
1525
- #: admin/class-settings.php:774
1526
  msgid "Solomon Islands"
1527
  msgstr "Salomonseilanden"
1528
 
1529
- #: admin/class-settings.php:775
1530
  msgid "Somalia"
1531
  msgstr "Somalie"
1532
 
1533
- #: admin/class-settings.php:776
1534
  msgid "South Africa"
1535
  msgstr "Zuid Afrika"
1536
 
1537
- #: admin/class-settings.php:777
1538
  msgid "South Georgia and South Sandwich Islands"
1539
  msgstr "Zuid-Georgia en de Zuidelijke Sandwicheilanden"
1540
 
1541
- #: admin/class-settings.php:778
1542
  msgid "South Korea"
1543
  msgstr "Zuid Korea"
1544
 
1545
- #: admin/class-settings.php:779
1546
  msgid "South Sudan"
1547
  msgstr "Zuid Sudan"
1548
 
1549
- #: admin/class-settings.php:780
1550
  msgid "Spain"
1551
  msgstr "Spanje"
1552
 
1553
- #: admin/class-settings.php:781
1554
  msgid "Sri Lanka"
1555
  msgstr "Sri Lanka"
1556
 
1557
- #: admin/class-settings.php:782
1558
  msgid "Sudan"
1559
  msgstr "Sudan"
1560
 
1561
- #: admin/class-settings.php:783
1562
  msgid "Swaziland"
1563
  msgstr "Swaziland "
1564
 
1565
- #: admin/class-settings.php:784
1566
  msgid "Sweden"
1567
  msgstr "Zweden"
1568
 
1569
- #: admin/class-settings.php:785
1570
  msgid "Switzerland"
1571
  msgstr "Zwitserland"
1572
 
1573
- #: admin/class-settings.php:786
1574
  msgid "Syria"
1575
  msgstr "Syrië"
1576
 
1577
- #: admin/class-settings.php:787
1578
  msgid "São Tomé & Príncipe"
1579
  msgstr "São Tomé & Príncipe"
1580
 
1581
- #: admin/class-settings.php:788
1582
  msgid "Taiwan"
1583
  msgstr "Taiwan"
1584
 
1585
- #: admin/class-settings.php:789
1586
  msgid "Tajikistan"
1587
  msgstr "Tajikistan"
1588
 
1589
- #: admin/class-settings.php:790
1590
  msgid "Tanzania"
1591
  msgstr "Tanzania"
1592
 
1593
- #: admin/class-settings.php:791
1594
  msgid "Thailand"
1595
  msgstr "Thailand"
1596
 
1597
- #: admin/class-settings.php:792
1598
  msgid "Timor-Leste"
1599
  msgstr "Oost-Timor"
1600
 
1601
- #: admin/class-settings.php:793 admin/class-settings.php:795
1602
  msgid "Tokelau"
1603
  msgstr "Tokelau"
1604
 
1605
- #: admin/class-settings.php:794
1606
  msgid "Togo"
1607
  msgstr "Togo"
1608
 
1609
- #: admin/class-settings.php:796
1610
  msgid "Tonga"
1611
  msgstr "Tonga"
1612
 
1613
- #: admin/class-settings.php:797
1614
  msgid "Trinidad and Tobago"
1615
  msgstr "Trinidad en Tobago"
1616
 
1617
- #: admin/class-settings.php:798
1618
  msgid "Tristan da Cunha"
1619
  msgstr "Tristan da Cunha"
1620
 
1621
- #: admin/class-settings.php:799
1622
  msgid "Tunisia"
1623
  msgstr "Tunesië"
1624
 
1625
- #: admin/class-settings.php:800
1626
  msgid "Turkey"
1627
  msgstr "Turkije"
1628
 
1629
- #: admin/class-settings.php:801
1630
  msgid "Turkmenistan"
1631
  msgstr "Turkmenistan"
1632
 
1633
- #: admin/class-settings.php:802
1634
  msgid "Turks and Caicos Islands"
1635
  msgstr "Turks- en Caicos eilanden"
1636
 
1637
- #: admin/class-settings.php:803
1638
  msgid "Tuvalu"
1639
  msgstr "Tuvalu"
1640
 
1641
- #: admin/class-settings.php:804
1642
  msgid "Uganda"
1643
  msgstr "Uganda"
1644
 
1645
- #: admin/class-settings.php:805
1646
  msgid "Ukraine"
1647
  msgstr "Oekraïne"
1648
 
1649
- #: admin/class-settings.php:806
1650
  msgid "United Arab Emirates"
1651
  msgstr "Verenigde Arabische Emiraten"
1652
 
1653
- #: admin/class-settings.php:807
1654
  msgid "United Kingdom"
1655
  msgstr "Verenigd Koninkrijk"
1656
 
1657
- #: admin/class-settings.php:808
1658
  msgid "United States"
1659
  msgstr "Verenigde Staten"
1660
 
1661
- #: admin/class-settings.php:809
1662
  msgid "Uruguay"
1663
  msgstr "Uruguay"
1664
 
1665
- #: admin/class-settings.php:810
1666
  msgid "Uzbekistan"
1667
  msgstr "Uzbekistan"
1668
 
1669
- #: admin/class-settings.php:811
1670
  msgid "Vanuatu"
1671
  msgstr "Vanuatu"
1672
 
1673
- #: admin/class-settings.php:812
1674
  msgid "Vatican City"
1675
  msgstr "Vaticaanstad"
1676
 
1677
- #: admin/class-settings.php:813
1678
  msgid "Venezuela"
1679
  msgstr "Venezuela"
1680
 
1681
- #: admin/class-settings.php:814
1682
  msgid "Vietnam"
1683
  msgstr "Vietnam"
1684
 
1685
- #: admin/class-settings.php:815
1686
  msgid "Wallis Futuna"
1687
  msgstr "Wallis en Futuna"
1688
 
1689
- #: admin/class-settings.php:816
1690
  msgid "Western Sahara"
1691
  msgstr "Westelijke Sahara"
1692
 
1693
- #: admin/class-settings.php:817
1694
  msgid "Yemen"
1695
  msgstr "Yemen"
1696
 
1697
- #: admin/class-settings.php:818
1698
  msgid "Zambia"
1699
  msgstr "Zambia"
1700
 
1701
- #: admin/class-settings.php:819
1702
  msgid "Zimbabwe"
1703
  msgstr "Zimbabwe"
1704
 
1705
- #: admin/class-settings.php:820
1706
  msgid "Åland Islands"
1707
  msgstr "Åland Eiland"
1708
 
1709
- #: admin/class-settings.php:863
1710
  msgid "World view"
1711
  msgstr "Wereldkaart"
1712
 
1713
- #: admin/class-settings.php:866 admin/class-settings.php:980
1714
  #: inc/wpsl-functions.php:216
1715
  msgid "Default"
1716
  msgstr "Standaard"
1717
 
1718
- #: admin/class-settings.php:869 inc/wpsl-functions.php:289
1719
  msgid "Roadmap"
1720
  msgstr "Wegenkaart"
1721
 
1722
- #: admin/class-settings.php:1010
1723
  msgid "Start location marker"
1724
  msgstr "Start locatie marker"
1725
 
1726
- #: admin/class-settings.php:1012
1727
  msgid "Store location marker"
1728
  msgstr "Winkel locatie marker"
1729
 
1730
- #: admin/class-settings.php:1092
1731
  msgid "Textarea"
1732
  msgstr "Tekstvlak"
1733
 
1734
- #: admin/class-settings.php:1093
1735
  msgid "Dropdowns (recommended)"
1736
  msgstr "Dropdown (aangeraden)"
1737
 
1738
- #: admin/class-settings.php:1101
1739
  msgid "Bounces up and down"
1740
  msgstr "Beweegt op en neer"
1741
 
1742
- #: admin/class-settings.php:1102
1743
  msgid "Will open the info window"
1744
  msgstr "Opent de info window"
1745
 
1746
- #: admin/class-settings.php:1103
1747
  msgid "Does not respond"
1748
  msgstr "Reageert niet"
1749
 
1750
- #: admin/class-settings.php:1111
1751
  msgid "In the store listings"
1752
  msgstr "In de locatie lijst"
1753
 
1754
- #: admin/class-settings.php:1112
1755
  msgid "In the info window on the map"
1756
  msgstr "In de info window op de kaart"
1757
 
1758
- #: admin/class-settings.php:1144 admin/class-shortcode-generator.php:115
1759
  msgid "Dropdown"
1760
  msgstr "Dropdown"
1761
 
1762
- #: admin/class-settings.php:1145 admin/class-shortcode-generator.php:116
1763
  msgid "Checkboxes"
1764
  msgstr "Checkboxes"
1765
 
1766
- #: admin/class-settings.php:1177
1767
  msgid "12 Hours"
1768
  msgstr "12 uur"
1769
 
1770
- #: admin/class-settings.php:1178
1771
  msgid "24 Hours"
1772
  msgstr "24 uur"
1773
 
@@ -1776,7 +1776,7 @@ msgid "WP Store Locator"
1776
  msgstr "WP Store Locator"
1777
 
1778
  #: admin/class-shortcode-generator.php:42
1779
- #: admin/class-shortcode-generator.php:212
1780
  msgid "Insert Store Locator"
1781
  msgstr "Plaats de Store Locator"
1782
 
@@ -1784,23 +1784,23 @@ msgstr "Plaats de Store Locator"
1784
  msgid "You do not have permission to perform this action"
1785
  msgstr "Je hebt geen toestemming om deze actie uit te voeren"
1786
 
1787
- #: admin/class-shortcode-generator.php:90
1788
  msgid "General Options"
1789
  msgstr "Algemene instellingen"
1790
 
1791
- #: admin/class-shortcode-generator.php:91 admin/templates/map-settings.php:367
1792
  msgid "Markers"
1793
  msgstr "Markers"
1794
 
1795
- #: admin/class-shortcode-generator.php:97
1796
  msgid "Select the used template"
1797
  msgstr "Selecteer de gebruikte template"
1798
 
1799
- #: admin/class-shortcode-generator.php:101 admin/templates/map-settings.php:198
1800
  msgid "Start point"
1801
  msgstr "Start locatie"
1802
 
1803
- #: admin/class-shortcode-generator.php:101
1804
  #, php-format
1805
  msgid ""
1806
  "If nothing it set, then the start point from the %ssettings%s page is used."
@@ -1808,11 +1808,11 @@ msgstr ""
1808
  "Als er niks is opgegeven, dan zal de start locatie van de %sinstellingen%s "
1809
  "pagina gebruikt worden."
1810
 
1811
- #: admin/class-shortcode-generator.php:106 admin/templates/map-settings.php:184
1812
  msgid "Attempt to auto-locate the user"
1813
  msgstr "Probeer de locatie van de gebruiker automatische te achterhalen"
1814
 
1815
- #: admin/class-shortcode-generator.php:106 admin/templates/map-settings.php:184
1816
  #, php-format
1817
  msgid ""
1818
  "Most modern browsers %srequire%s a HTTPS connection before the Geolocation "
@@ -1821,35 +1821,35 @@ msgstr ""
1821
  "De meeste browsers %shebben%s een HTTPS verbindingen nodig om de geolocatie "
1822
  "optie te laten werken."
1823
 
1824
- #: admin/class-shortcode-generator.php:111
1825
  msgid "Category filter type"
1826
  msgstr "Type categorie filter"
1827
 
1828
- #: admin/class-shortcode-generator.php:114
1829
  msgid "None"
1830
  msgstr "Geen"
1831
 
1832
- #: admin/class-shortcode-generator.php:126
1833
  msgid "Automatically restrict the returned results to one or more categories?"
1834
  msgstr "Beperk de zoekresultaten automatische tot één of meer categorieën?"
1835
 
1836
- #: admin/class-shortcode-generator.php:142
1837
  msgid "Set a selected category?"
1838
  msgstr "Kies de geselecteerde categorie"
1839
 
1840
- #: admin/class-shortcode-generator.php:147
1841
  msgid "Select category"
1842
  msgstr "Kies een categorie"
1843
 
1844
- #: admin/class-shortcode-generator.php:163
1845
  msgid "Checkbox columns"
1846
  msgstr "Checkbox kolommen"
1847
 
1848
- #: admin/class-shortcode-generator.php:182
1849
  msgid "Set selected checkboxes"
1850
  msgstr "Kies de geslecteerde checkboxes"
1851
 
1852
- #: admin/class-shortcode-generator.php:198 admin/templates/map-settings.php:236
1853
  msgid "Map type"
1854
  msgstr "Kaart soort"
1855
 
@@ -1873,39 +1873,47 @@ msgstr "Binnenkort beschikbaar!"
1873
  msgid "Failed to load the add-on list from the server."
1874
  msgstr "De add-on lijst kon niet geladen worden van de server."
1875
 
1876
- #: admin/templates/map-settings.php:44
 
 
 
 
 
 
 
 
1877
  msgid "Add-On"
1878
  msgstr "Uitbreiding"
1879
 
1880
- #: admin/templates/map-settings.php:45
1881
  msgid "License Key"
1882
  msgstr "Licensie sleutel"
1883
 
1884
- #: admin/templates/map-settings.php:46
1885
  msgid "License Expiry Date"
1886
  msgstr "Verloop datum licensie "
1887
 
1888
- #: admin/templates/map-settings.php:60
1889
  msgid "Deactivate License"
1890
  msgstr "Deactiveer licensie"
1891
 
1892
- #: admin/templates/map-settings.php:80 admin/templates/map-settings.php:119
1893
- #: admin/templates/map-settings.php:171 admin/templates/map-settings.php:254
1894
- #: admin/templates/map-settings.php:357 admin/templates/map-settings.php:385
1895
- #: admin/templates/map-settings.php:435 admin/templates/map-settings.php:463
1896
- #: admin/templates/map-settings.php:575 admin/templates/map-settings.php:600
1897
  msgid "Save Changes"
1898
  msgstr "Wijzigingen opslaan"
1899
 
1900
- #: admin/templates/map-settings.php:92
1901
  msgid "Google Maps API"
1902
  msgstr "Google Maps API"
1903
 
1904
- #: admin/templates/map-settings.php:95
1905
  msgid "Server key"
1906
  msgstr "Server sleutel"
1907
 
1908
- #: admin/templates/map-settings.php:95
1909
  #, php-format
1910
  msgid ""
1911
  "A %sserver key%s allows you to monitor the usage of the Google Maps "
@@ -1916,11 +1924,11 @@ msgstr ""
1916
  "%sGeocode API%s te bekijken. %s %sVerplicht%s voor %sapplicaties%s "
1917
  "aangemaakt na 22 juni, 2016."
1918
 
1919
- #: admin/templates/map-settings.php:99
1920
  msgid "Browser key"
1921
  msgstr "Browser sleutel"
1922
 
1923
- #: admin/templates/map-settings.php:99
1924
  #, php-format
1925
  msgid ""
1926
  "A %sbrowser key%s allows you to monitor the usage of the Google Maps "
@@ -1931,21 +1939,21 @@ msgstr ""
1931
  "Google Maps %sJavaScript API%s. %s %sVerplicht%s voor %sapplicaties%s "
1932
  "aangemaakt na 22 juni, 2016."
1933
 
1934
- #: admin/templates/map-settings.php:103
1935
  msgid "Map language"
1936
  msgstr "Kaart taal"
1937
 
1938
- #: admin/templates/map-settings.php:103
1939
  msgid "If no map language is selected the browser's prefered language is used."
1940
  msgstr ""
1941
  "Als er geen kaart taal is geselecteerd, dan word de standaard browser taal "
1942
  "gebruikt."
1943
 
1944
- #: admin/templates/map-settings.php:109
1945
  msgid "Map region"
1946
  msgstr "Kaart regio"
1947
 
1948
- #: admin/templates/map-settings.php:109
1949
  #, php-format
1950
  msgid ""
1951
  "This will bias the %sgeocoding%s results towards the selected region. %s If "
@@ -1955,11 +1963,11 @@ msgstr ""
1955
  "voorkeur krijgen over resultaten uit andere regio's . %s Als er geen regio "
1956
  "is geselecteerd dan gaat de voorkeur uit naar de Verenigde Staten."
1957
 
1958
- #: admin/templates/map-settings.php:115
1959
  msgid "Restrict the geocoding results to the selected map region?"
1960
  msgstr "Limiteer de geocode resultaten tot de geselecteerde map regio?"
1961
 
1962
- #: admin/templates/map-settings.php:115
1963
  #, php-format
1964
  msgid ""
1965
  "If the %sgeocoding%s API finds more relevant results outside of the set map "
@@ -1974,69 +1982,69 @@ msgstr ""
1974
  "Om dit uit te sluiten kan je een restrictie plaatsen om dit te voorkomen. "
1975
  "%s Je kan de gebruikte restricties aanpassen met %sdeze%s filter."
1976
 
1977
- #: admin/templates/map-settings.php:129 admin/templates/map-settings.php:499
1978
- #: admin/templates/map-settings.php:500 frontend/templates/default.php:44
1979
  #: frontend/templates/store-listings-below.php:44 inc/wpsl-functions.php:133
1980
  msgid "Search"
1981
  msgstr "Zoek"
1982
 
1983
- #: admin/templates/map-settings.php:132
1984
  msgid "Enable autocomplete?"
1985
  msgstr "Activeer autocomplete?"
1986
 
1987
- #: admin/templates/map-settings.php:136
1988
  msgid "Show the max results dropdown?"
1989
  msgstr "Toon de max resultaten dropdown?"
1990
 
1991
- #: admin/templates/map-settings.php:140
1992
  msgid "Show the search radius dropdown?"
1993
  msgstr "Toon de zoek radius dropdown?"
1994
 
1995
- #: admin/templates/map-settings.php:144
1996
  msgid "Enable category filters?"
1997
  msgstr "Activeer de categorie filters?"
1998
 
1999
- #: admin/templates/map-settings.php:149
2000
  msgid "Filter type:"
2001
  msgstr "Filter type:"
2002
 
2003
- #: admin/templates/map-settings.php:154
2004
  msgid "Distance unit"
2005
  msgstr "Afstands eenheid"
2006
 
2007
- #: admin/templates/map-settings.php:157
2008
  msgid "km"
2009
  msgstr "km"
2010
 
2011
- #: admin/templates/map-settings.php:159
2012
  msgid "mi"
2013
  msgstr "mi"
2014
 
2015
- #: admin/templates/map-settings.php:163
2016
  msgid "Max search results"
2017
  msgstr "Max zoek resultaten"
2018
 
2019
- #: admin/templates/map-settings.php:163 admin/templates/map-settings.php:167
2020
  msgid "The default value is set between the [ ]."
2021
  msgstr "* De standaard waarde staat tussen de []."
2022
 
2023
- #: admin/templates/map-settings.php:167
2024
  msgid "Search radius options"
2025
  msgstr "Zoek radius opties"
2026
 
2027
- #: admin/templates/map-settings.php:181
2028
  msgid "Map"
2029
  msgstr "Kaart"
2030
 
2031
- #: admin/templates/map-settings.php:188
2032
  msgid "Load locations on page load"
2033
  msgstr "Toon alle locaties op de kaart zodra de pagina geladen is"
2034
 
2035
- #: admin/templates/map-settings.php:193
2036
  msgid "Number of locations to show"
2037
  msgstr "Aantal getoonde locaties"
2038
 
2039
- #: admin/templates/map-settings.php:193
2040
  #, php-format
2041
  msgid ""
2042
  "Although the location data is cached after the first load, a lower number "
@@ -2049,7 +2057,7 @@ msgstr ""
2049
  "Als het veld leeg blijft of er wordt 0 ingevuld, dan worden alle locaties "
2050
  "geladen."
2051
 
2052
- #: admin/templates/map-settings.php:198
2053
  #, php-format
2054
  msgid ""
2055
  "%sRequired field.%s %s If auto-locating the user is disabled or fails, the "
@@ -2060,12 +2068,12 @@ msgstr ""
2060
  "locatie is uitgeschakeld of mislukt, dan wordt het middelpunt van de "
2061
  "opgegeven locatie als begin punt gebruikt."
2062
 
2063
- #: admin/templates/map-settings.php:203
2064
  msgid "Auto adjust the zoom level to make sure all markers are visible?"
2065
  msgstr ""
2066
  "Zoom de kaart automatische in om te zorgen dat alle markers zichtbaar zijn?"
2067
 
2068
- #: admin/templates/map-settings.php:203
2069
  msgid ""
2070
  "This runs after a search is made, and makes sure all the returned locations "
2071
  "are visible in the viewport."
@@ -2073,15 +2081,15 @@ msgstr ""
2073
  "Dit wordt uitgevoerd nadat een zoekopdracht is gemaakt, en zorgt ervoor dat "
2074
  "alle geretourneerde locaties zichtbaar zijn in de viewport."
2075
 
2076
- #: admin/templates/map-settings.php:207
2077
  msgid "Initial zoom level"
2078
  msgstr "Start zoom niveau"
2079
 
2080
- #: admin/templates/map-settings.php:211
2081
  msgid "Max auto zoom level"
2082
  msgstr "Max zoom niveau"
2083
 
2084
- #: admin/templates/map-settings.php:211
2085
  #, php-format
2086
  msgid ""
2087
  "This value sets the zoom level for the \"Zoom here\" link in the info "
@@ -2093,35 +2101,35 @@ msgstr ""
2093
  "limiteren als de viewport van de kaart verandert, wanneer geprobeerd wordt "
2094
  "om alle markers op het scherm te laten passen."
2095
 
2096
- #: admin/templates/map-settings.php:215
2097
  msgid "Show the street view controls?"
2098
  msgstr "Toon de street view controls?"
2099
 
2100
- #: admin/templates/map-settings.php:219
2101
  msgid "Show the map type control?"
2102
  msgstr "Toon de kaart type controls?"
2103
 
2104
- #: admin/templates/map-settings.php:223
2105
  msgid "Enable scroll wheel zooming?"
2106
  msgstr "Activeer het inzoomen met je scrollwheel?"
2107
 
2108
- #: admin/templates/map-settings.php:227
2109
  msgid "Zoom control position"
2110
  msgstr "Zoom bediening positie"
2111
 
2112
- #: admin/templates/map-settings.php:230
2113
  msgid "Left"
2114
  msgstr "Links"
2115
 
2116
- #: admin/templates/map-settings.php:232
2117
  msgid "Right"
2118
  msgstr "Rechts"
2119
 
2120
- #: admin/templates/map-settings.php:240
2121
  msgid "Map style"
2122
  msgstr "Kaart stijl"
2123
 
2124
- #: admin/templates/map-settings.php:240
2125
  msgid ""
2126
  "Custom map styles only work if the map type is set to \"Roadmap\" or "
2127
  "\"Terrain\"."
@@ -2129,7 +2137,7 @@ msgstr ""
2129
  "Custom map stijlen werken alleen maar als de kaart soort op \"Wegenkaart\" "
2130
  "of \"Terrein\" is gezet."
2131
 
2132
- #: admin/templates/map-settings.php:243
2133
  #, php-format
2134
  msgid ""
2135
  "You can use existing map styles from %sSnazzy Maps%s or %sMap Stylr%s and "
@@ -2140,7 +2148,7 @@ msgstr ""
2140
  "en in het onderstaande tekstvlak plaatsen. Of je kunt de map stijl genereren "
2141
  "via de %sMap Style Editor%s of de %sStyled Maps Wizard%s."
2142
 
2143
- #: admin/templates/map-settings.php:244
2144
  #, php-format
2145
  msgid ""
2146
  "If you like to write the style code yourself, then you can find the "
@@ -2149,46 +2157,46 @@ msgstr ""
2149
  "Als je zelf de stijl code wil schrijven dan kun je de documentatie %shier%s "
2150
  "vinden."
2151
 
2152
- #: admin/templates/map-settings.php:246
2153
  msgid "Preview Map Style"
2154
  msgstr "Map stijl voorbeeld"
2155
 
2156
- #: admin/templates/map-settings.php:250
2157
  msgid "Show credits?"
2158
  msgstr "Toon credits?"
2159
 
2160
- #: admin/templates/map-settings.php:250
2161
  msgid ""
2162
  "This will place a \"Search provided by WP Store Locator\" backlink below the "
2163
  "map."
2164
  msgstr ""
2165
  "Dit plaatst een \"Ondersteund door WP Store Locator\" link onder de kaart."
2166
 
2167
- #: admin/templates/map-settings.php:264
2168
  msgid "User Experience"
2169
  msgstr "Gebruikers ervaring"
2170
 
2171
- #: admin/templates/map-settings.php:267
2172
  msgid "Store Locator height"
2173
  msgstr "Store Locator hoogte"
2174
 
2175
- #: admin/templates/map-settings.php:271
2176
  msgid "Max width for the info window content"
2177
  msgstr "Max breedte voor de info window inhoud"
2178
 
2179
- #: admin/templates/map-settings.php:275
2180
  msgid "Search field width"
2181
  msgstr "Zoekveld breedte"
2182
 
2183
- #: admin/templates/map-settings.php:279
2184
  msgid "Search and radius label width"
2185
  msgstr "Zoek en radius label breedte"
2186
 
2187
- #: admin/templates/map-settings.php:283
2188
  msgid "Store Locator template"
2189
  msgstr "Store locator template"
2190
 
2191
- #: admin/templates/map-settings.php:283
2192
  #, php-format
2193
  msgid ""
2194
  "The selected template is used with the [wpsl] shortcode. %s You can add a "
@@ -2197,19 +2205,19 @@ msgstr ""
2197
  "De geselecteerde template wordt gebruikt bij de [wpsl] shortcode. %s Je kunt "
2198
  "een custom template gebruiken met behulp van de %swpsl_templates%s filter."
2199
 
2200
- #: admin/templates/map-settings.php:287
2201
  msgid "Hide the scrollbar?"
2202
  msgstr "Verberg de scrollbar?"
2203
 
2204
- #: admin/templates/map-settings.php:291
2205
  msgid "Open links in a new window?"
2206
  msgstr "Open links in een nieuw venster?"
2207
 
2208
- #: admin/templates/map-settings.php:295
2209
  msgid "Show a reset map button?"
2210
  msgstr "Toon een knop om de kaart te resetten?"
2211
 
2212
- #: admin/templates/map-settings.php:299
2213
  msgid ""
2214
  "When a user clicks on \"Directions\", open a new window, and show the route "
2215
  "on google.com/maps ?"
@@ -2217,11 +2225,11 @@ msgstr ""
2217
  "Zodra een gebruiker op \"Route\" klikt, open een nieuwe venster en toon de "
2218
  "route op google.com/maps?"
2219
 
2220
- #: admin/templates/map-settings.php:303
2221
  msgid "Show a \"More info\" link in the store listings?"
2222
  msgstr "Toon een \"Meer info\" link in de locatie lijst?"
2223
 
2224
- #: admin/templates/map-settings.php:303
2225
  msgid ""
2226
  "This places a \"More Info\" link below the address and will show the phone, "
2227
  "fax, email, opening hours and description once the link is clicked."
@@ -2230,20 +2238,20 @@ msgstr ""
2230
  "klikt dan wordt het telefoon / fax nummer, email, openings tijden en "
2231
  "omschrijving getoond."
2232
 
2233
- #: admin/templates/map-settings.php:308
2234
  msgid "Where do you want to show the \"More info\" details?"
2235
  msgstr "Waar wil je de \"Meer info\" details tonen?"
2236
 
2237
- #: admin/templates/map-settings.php:313
2238
  msgid ""
2239
  "Always show the contact details below the address in the search results?"
2240
  msgstr "Toon altijd de contact gegevens onder het adres in de zoek resultaten?"
2241
 
2242
- #: admin/templates/map-settings.php:317
2243
  msgid "Make the store name clickable if a store URL exists?"
2244
  msgstr "Als een winkel url bestaat, maak de winkel naam dan klikbaar?"
2245
 
2246
- #: admin/templates/map-settings.php:317
2247
  #, php-format
2248
  msgid ""
2249
  "If %spermalinks%s are enabled, the store name will always link to the store "
@@ -2252,11 +2260,11 @@ msgstr ""
2252
  "Als de %spermalinks%s zijn ingeschakeld dan zal de winkel naam altijd linken "
2253
  "naar de winkel pagina."
2254
 
2255
- #: admin/templates/map-settings.php:321
2256
  msgid "Make the phone number clickable on mobile devices?"
2257
  msgstr "Maak het telefoonnummer klikbaar op mobiele apparaten?"
2258
 
2259
- #: admin/templates/map-settings.php:325
2260
  msgid ""
2261
  "If street view is available for the current location, then show a \"Street "
2262
  "view\" link in the info window?"
@@ -2264,7 +2272,7 @@ msgstr ""
2264
  "Als voor de huidge locatie street view beschikbaar is, toon dan een \"Street "
2265
  "view\" link om vanuit de info window?"
2266
 
2267
- #: admin/templates/map-settings.php:325
2268
  #, php-format
2269
  msgid ""
2270
  "Enabling this option can sometimes result in a small delay in the opening of "
@@ -2276,11 +2284,11 @@ msgstr ""
2276
  "er een verzoek naar de Google Maps API word gemaakt om te controleren ofdat "
2277
  "street view wel beschikbaar is voor de huidige locatie."
2278
 
2279
- #: admin/templates/map-settings.php:329
2280
  msgid "Show a \"Zoom here\" link in the info window?"
2281
  msgstr "Toon een \"zoom hier\" link in de info window?"
2282
 
2283
- #: admin/templates/map-settings.php:329
2284
  #, php-format
2285
  msgid ""
2286
  "Clicking this link will make the map zoom in to the %s max auto zoom level "
@@ -2289,12 +2297,12 @@ msgstr ""
2289
  "Als er op deze link geklikt word dan zoomt de kaart in totdat de %s max auto "
2290
  "zoom level %s bereikt is."
2291
 
2292
- #: admin/templates/map-settings.php:333
2293
  msgid "On page load move the mouse cursor to the search field?"
2294
  msgstr ""
2295
  "Als de pagina wordt geladen, verplaats de muiscursor dan naar het invulveld?"
2296
 
2297
- #: admin/templates/map-settings.php:333
2298
  #, php-format
2299
  msgid ""
2300
  "If the store locator is not placed at the top of the page, enabling this "
@@ -2305,11 +2313,11 @@ msgstr ""
2305
  "instelling ervoor zorgen dat de pagina naar benenden schuift tijden het "
2306
  "laden. %s %sDeze optie staat uit op mobiele apparaten.%s"
2307
 
2308
- #: admin/templates/map-settings.php:337
2309
  msgid "Use the default style for the info window?"
2310
  msgstr "Gebruik de standaard style voor de info window?"
2311
 
2312
- #: admin/templates/map-settings.php:337
2313
  #, php-format
2314
  msgid ""
2315
  "If the default style is disabled the %sInfoBox%s library will be used "
@@ -2320,21 +2328,21 @@ msgstr ""
2320
  "gebruikt. %s Dit script maakt het mogelijk om makkelijk het ontwerp te "
2321
  "wijzigen met behulp van de .wpsl-infobox css class."
2322
 
2323
- #: admin/templates/map-settings.php:341
2324
  msgid "Hide the country in the search results?"
2325
  msgstr "Verberg het land in de zoekresultaten?"
2326
 
2327
- #: admin/templates/map-settings.php:345
2328
  msgid "Hide the distance in the search results?"
2329
  msgstr "Verberg de afstand in de zoek resultaten?"
2330
 
2331
- #: admin/templates/map-settings.php:349
2332
  msgid "If a user hovers over the search results the store marker"
2333
  msgstr ""
2334
  "Als een gebruiker over de zoekresultaten beweegt met zijn muis de "
2335
  "bijbehorende marker"
2336
 
2337
- #: admin/templates/map-settings.php:349
2338
  #, php-format
2339
  msgid ""
2340
  "If marker clusters are enabled this option will not work as expected as long "
@@ -2349,11 +2357,11 @@ msgstr ""
2349
  "de marker cluster wordt omgezet naar losse markers. %s De info window wordt "
2350
  "wel geopend, maar het is niet duidelijk bij welke marker het hoort."
2351
 
2352
- #: admin/templates/map-settings.php:353
2353
  msgid "Address format"
2354
  msgstr "Adres formaat"
2355
 
2356
- #: admin/templates/map-settings.php:353
2357
  #, php-format
2358
  msgid ""
2359
  "You can add custom address formats with the %swpsl_address_formats%s filter."
@@ -2361,19 +2369,19 @@ msgstr ""
2361
  "Je kunt een nieuwe adres formaat toevoegen met de %swpsl_address_formats%s "
2362
  "filter."
2363
 
2364
- #: admin/templates/map-settings.php:371
2365
  msgid "Enable marker clusters?"
2366
  msgstr "Activeer marker clusters?"
2367
 
2368
- #: admin/templates/map-settings.php:371
2369
  msgid "Recommended for maps with a large amount of markers."
2370
  msgstr "Aan te raden voor kaarten met grote hoeveelheden markers."
2371
 
2372
- #: admin/templates/map-settings.php:376
2373
  msgid "Max zoom level"
2374
  msgstr "Max zoom niveau"
2375
 
2376
- #: admin/templates/map-settings.php:376
2377
  msgid ""
2378
  "If this zoom level is reached or exceeded, then all markers are moved out of "
2379
  "the marker cluster and shown as individual markers."
@@ -2381,11 +2389,11 @@ msgstr ""
2381
  "Als dit zoom niveau bereikt is of gepasseerd, dan worden alle markers uit de "
2382
  "marker cluster gehaald en als losse markers getoond."
2383
 
2384
- #: admin/templates/map-settings.php:380
2385
  msgid "Cluster size"
2386
  msgstr "Cluster grote"
2387
 
2388
- #: admin/templates/map-settings.php:380
2389
  #, php-format
2390
  msgid ""
2391
  "The grid size of a cluster in pixels. %s A larger number will result in a "
@@ -2395,27 +2403,27 @@ msgstr ""
2395
  "voor dat er minder clusters zichtbaar zijn en het algoritme dus ook sneller "
2396
  "klaar is."
2397
 
2398
- #: admin/templates/map-settings.php:395
2399
  msgid "Store Editor"
2400
  msgstr "Winkel editor"
2401
 
2402
- #: admin/templates/map-settings.php:398
2403
  msgid "Default country"
2404
  msgstr "Standaard land"
2405
 
2406
- #: admin/templates/map-settings.php:402
2407
  msgid "Map type for the location preview"
2408
  msgstr "Kaart type voor het lokatie voorbeeld"
2409
 
2410
- #: admin/templates/map-settings.php:406
2411
  msgid "Hide the opening hours?"
2412
  msgstr "Verberg de openingstijden?"
2413
 
2414
- #: admin/templates/map-settings.php:412
2415
  msgid "Opening hours input type"
2416
  msgstr "Openingstijden formaat"
2417
 
2418
- #: admin/templates/map-settings.php:416
2419
  #, php-format
2420
  msgid ""
2421
  "Opening hours created in version 1.x %sare not%s automatically converted to "
@@ -2424,15 +2432,15 @@ msgstr ""
2424
  "De openingstijden die zijn aangemaakt in versie 1.x %sworden niet%s "
2425
  "automatische omgezet naar het dropdown formaat."
2426
 
2427
- #: admin/templates/map-settings.php:419 admin/templates/map-settings.php:428
2428
  msgid "The default opening hours"
2429
  msgstr "De standaard openingstijden"
2430
 
2431
- #: admin/templates/map-settings.php:425
2432
  msgid "Opening hours format"
2433
  msgstr "Openingstijden formaat"
2434
 
2435
- #: admin/templates/map-settings.php:432
2436
  msgid ""
2437
  "The default country and opening hours are only used when a new store is "
2438
  "created. So changing the default values will have no effect on existing "
@@ -2442,39 +2450,39 @@ msgstr ""
2442
  "gebruikt als een nieuwe locatie wordt aangemaakt. Het wijzigen van deze "
2443
  "waardes heeft dus geen enkele invloed op de bestaande locaties."
2444
 
2445
- #: admin/templates/map-settings.php:445
2446
  msgid "Permalink"
2447
  msgstr "Permalink"
2448
 
2449
- #: admin/templates/map-settings.php:448
2450
  msgid "Enable permalink?"
2451
  msgstr "Activeer permalink?"
2452
 
2453
- #: admin/templates/map-settings.php:453
2454
  msgid "Store slug"
2455
  msgstr "Winkel slug"
2456
 
2457
- #: admin/templates/map-settings.php:457
2458
  msgid "Category slug"
2459
  msgstr "Categorie slug"
2460
 
2461
- #: admin/templates/map-settings.php:460
2462
  #, php-format
2463
  msgid "The permalink slugs %smust be unique%s on your site."
2464
  msgstr "De permalink slug %smoet uniek%s zijn op je site."
2465
 
2466
- #: admin/templates/map-settings.php:473
2467
  msgid "Labels"
2468
  msgstr "Labels"
2469
 
2470
- #: admin/templates/map-settings.php:482
2471
  #, php-format
2472
  msgid "%sWarning!%s %sWPML%s, or a plugin using the WPML API is active."
2473
  msgstr ""
2474
  "%sWaarschuwing!%s %sWPML%s, of een plugin die de WPML API gebruikt is "
2475
  "actief."
2476
 
2477
- #: admin/templates/map-settings.php:483
2478
  msgid ""
2479
  "Please use the \"String Translations\" section in the used multilingual "
2480
  "plugin to change the labels. Changing them here will have no effect as long "
@@ -2484,125 +2492,125 @@ msgstr ""
2484
  "labels te wijzigen. Wijzigingen die in dit gedeelte worden aangebracht "
2485
  "hebben geen effect zolang de vertaal plugin actief is."
2486
 
2487
- #: admin/templates/map-settings.php:487 admin/templates/map-settings.php:488
2488
  #: frontend/templates/default.php:12
2489
  #: frontend/templates/store-listings-below.php:12 inc/wpsl-functions.php:132
2490
  msgid "Your location"
2491
  msgstr "Uw locatie"
2492
 
2493
- #: admin/templates/map-settings.php:491 admin/templates/map-settings.php:492
2494
  #: frontend/templates/default.php:21
2495
  #: frontend/templates/store-listings-below.php:21 inc/wpsl-functions.php:135
2496
  msgid "Search radius"
2497
  msgstr "Zoek radius"
2498
 
2499
- #: admin/templates/map-settings.php:495 admin/templates/map-settings.php:496
2500
- #: frontend/class-frontend.php:1801 inc/wpsl-functions.php:136
2501
  msgid "No results found"
2502
  msgstr "Geen resultaten gevonden"
2503
 
2504
- #: admin/templates/map-settings.php:503
2505
  msgid "Searching (preloader text)"
2506
  msgstr "Aan het zoeken (preloader tekst)"
2507
 
2508
- #: admin/templates/map-settings.php:504 frontend/class-frontend.php:1800
2509
  #: inc/wpsl-functions.php:134
2510
  msgid "Searching..."
2511
  msgstr "Zoeken..."
2512
 
2513
- #: admin/templates/map-settings.php:507 admin/templates/map-settings.php:508
2514
  #: frontend/templates/default.php:30
2515
  #: frontend/templates/store-listings-below.php:30 inc/wpsl-functions.php:137
2516
  msgid "Results"
2517
  msgstr "Resultaten"
2518
 
2519
- #: admin/templates/map-settings.php:511 admin/upgrade.php:206
2520
  #: inc/wpsl-functions.php:151
2521
  msgid "Category filter"
2522
  msgstr "Categorie filter"
2523
 
2524
- #: admin/templates/map-settings.php:512 frontend/class-frontend.php:1374
2525
  msgid "Category"
2526
  msgstr "Categorie"
2527
 
2528
- #: admin/templates/map-settings.php:515
2529
  msgid "Category first item"
2530
  msgstr "Eerste categorie item"
2531
 
2532
- #: admin/templates/map-settings.php:516 admin/upgrade.php:367
2533
- #: frontend/class-frontend.php:1377 inc/wpsl-functions.php:152
2534
  msgid "Any"
2535
  msgstr "Alle"
2536
 
2537
- #: admin/templates/map-settings.php:519 admin/templates/map-settings.php:520
2538
- #: admin/upgrade.php:59 frontend/class-frontend.php:1802
2539
  #: frontend/underscore-functions.php:138 frontend/underscore-functions.php:168
2540
  #: inc/wpsl-functions.php:138
2541
  msgid "More info"
2542
  msgstr "Meer info"
2543
 
2544
- #: admin/templates/map-settings.php:523 admin/templates/map-settings.php:524
2545
- #: frontend/class-frontend.php:821 frontend/underscore-functions.php:29
2546
  #: frontend/underscore-functions.php:65 frontend/underscore-functions.php:147
2547
  #: inc/wpsl-functions.php:146
2548
  msgid "Phone"
2549
  msgstr "Telefoon"
2550
 
2551
- #: admin/templates/map-settings.php:543 admin/templates/map-settings.php:544
2552
- #: frontend/class-frontend.php:1807 inc/wpsl-functions.php:131
2553
  msgid "Start location"
2554
  msgstr "Start locatie"
2555
 
2556
- #: admin/templates/map-settings.php:547
2557
  msgid "Get directions"
2558
  msgstr "Toon routebeschrijving"
2559
 
2560
- #: admin/templates/map-settings.php:548 frontend/class-frontend.php:1805
2561
  #: inc/wpsl-functions.php:139
2562
  msgid "Directions"
2563
  msgstr "Routebeschrijving"
2564
 
2565
- #: admin/templates/map-settings.php:551
2566
  msgid "No directions found"
2567
  msgstr "Geen routebeschrijving beschikbaar"
2568
 
2569
- #: admin/templates/map-settings.php:552 admin/upgrade.php:151
2570
- #: frontend/class-frontend.php:1806 inc/wpsl-functions.php:140
2571
  msgid "No route could be found between the origin and destination"
2572
  msgstr "Er kon geen route gevonden worden tussen het begin- en eindpunt"
2573
 
2574
- #: admin/templates/map-settings.php:555 admin/templates/map-settings.php:556
2575
- #: admin/upgrade.php:77 frontend/class-frontend.php:1808
2576
  #: inc/wpsl-functions.php:141
2577
  msgid "Back"
2578
  msgstr "Terug"
2579
 
2580
- #: admin/templates/map-settings.php:559 admin/templates/map-settings.php:560
2581
- #: admin/upgrade.php:143 frontend/class-frontend.php:1809
2582
  #: inc/wpsl-functions.php:142
2583
  msgid "Street view"
2584
  msgstr "Street view"
2585
 
2586
- #: admin/templates/map-settings.php:563 admin/templates/map-settings.php:564
2587
- #: admin/upgrade.php:147 frontend/class-frontend.php:1810
2588
  #: inc/wpsl-functions.php:143
2589
  msgid "Zoom here"
2590
  msgstr "Zoom hier"
2591
 
2592
- #: admin/templates/map-settings.php:567
2593
  msgid "General error"
2594
  msgstr "Foutmelding"
2595
 
2596
- #: admin/templates/map-settings.php:568 frontend/class-frontend.php:1803
2597
  #: inc/wpsl-functions.php:144
2598
  msgid "Something went wrong, please try again!"
2599
  msgstr "Er ging iets fout, probeer het nog een keer!"
2600
 
2601
- #: admin/templates/map-settings.php:571
2602
  msgid "Query limit error"
2603
  msgstr "Query limit foutmelding"
2604
 
2605
- #: admin/templates/map-settings.php:571
2606
  #, php-format
2607
  msgid ""
2608
  "You can raise the %susage limit%s by obtaining an API %skey%s, and fill in "
@@ -2611,20 +2619,20 @@ msgstr ""
2611
  "Je kan de %sgebruiks limiet%s verhogen door een API %ssleutel%s aan te "
2612
  "vragen en die in het \"API sleutel\" veld bovenaan de pagina in te vullen."
2613
 
2614
- #: admin/templates/map-settings.php:572 frontend/class-frontend.php:1804
2615
  #: inc/wpsl-functions.php:145
2616
  msgid "API usage limit reached"
2617
  msgstr "API gebruikslimiet bereikt"
2618
 
2619
- #: admin/templates/map-settings.php:585
2620
  msgid "Tools"
2621
  msgstr "Tools"
2622
 
2623
- #: admin/templates/map-settings.php:588
2624
  msgid "Enable store locator debug?"
2625
  msgstr "Activeer store locator debug?"
2626
 
2627
- #: admin/templates/map-settings.php:588
2628
  #, php-format
2629
  msgid ""
2630
  "This disables the WPSL transient cache. %sThe transient cache is only used "
@@ -2634,11 +2642,11 @@ msgstr ""
2634
  "alleen gebruikt als de %sToon alle locaties op de kaart zodra de pagina "
2635
  "geladen is%s optie is geactiveerd."
2636
 
2637
- #: admin/templates/map-settings.php:592
2638
  msgid "Enable compatibility mode?"
2639
  msgstr "Activeer de compatibiliteitsmodus?"
2640
 
2641
- #: admin/templates/map-settings.php:592
2642
  #, php-format
2643
  msgid ""
2644
  "If the %sbrowser console%s shows the error below, then enabling this option "
@@ -2652,11 +2660,11 @@ msgstr ""
2652
  "%s Deze foutmelding kan er in sommige situations voor zorgen dat de store "
2653
  "locator kaart niet goed functioneerd."
2654
 
2655
- #: admin/templates/map-settings.php:596
2656
  msgid "WPSL transients"
2657
  msgstr "WPSL transients"
2658
 
2659
- #: admin/templates/map-settings.php:597
2660
  msgid "Clear store locator transient cache"
2661
  msgstr "Verwijder het store locator transient cache."
2662
 
@@ -2720,7 +2728,7 @@ msgstr ""
2720
  "Alle winkel locaties zijn nu omgezet naar custom post types. %s Je kunt ze "
2721
  "bekijken op de %sAlle Winkels%s pagina."
2722
 
2723
- #: frontend/class-frontend.php:758
2724
  msgid ""
2725
  "If you use the [wpsl_address] shortcode outside a store page you need to set "
2726
  "the ID attribute."
@@ -2728,7 +2736,7 @@ msgstr ""
2728
  "Als je de [wpsl_address] shortcode op een pagina gebruikt die geen winkel "
2729
  "pagina is dan is de ID attribute verplicht."
2730
 
2731
- #: frontend/class-frontend.php:872
2732
  msgid ""
2733
  "If you use the [wpsl_hours] shortcode outside a store page you need to set "
2734
  "the ID attribute."
@@ -2736,7 +2744,7 @@ msgstr ""
2736
  "Als je de [wpsl_hours] shortcode op een pagina gebruikt die geen winkel "
2737
  "pagina is dan is de ID attribute verplicht."
2738
 
2739
- #: frontend/class-frontend.php:920
2740
  msgid ""
2741
  "If you use the [wpsl_map] shortcode outside a store page, then you need to "
2742
  "set the ID or category attribute."
@@ -2744,20 +2752,20 @@ msgstr ""
2744
  "Als de [wpsl_map] shortcode buiten een winkel page is geplaatst, dan moet je "
2745
  "de ID of category attribute opgeven."
2746
 
2747
- #: frontend/class-frontend.php:1575
2748
  msgid "The application does not have permission to use the Geolocation API."
2749
  msgstr ""
2750
  "Deze applicatie heeft geen toestemming om de Geolocation API te gebruiken."
2751
 
2752
- #: frontend/class-frontend.php:1576
2753
  msgid "Location information is unavailable."
2754
  msgstr "Informatie over de huidige locatie is niet beschikbaar."
2755
 
2756
- #: frontend/class-frontend.php:1577
2757
  msgid "The geolocation request timed out."
2758
  msgstr "Het geolocation verzoek timed out."
2759
 
2760
- #: frontend/class-frontend.php:1578
2761
  msgid "An unknown error occurred."
2762
  msgstr " Er heeft zich een onbekende fout voorgedaan."
2763
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Store Locator 2.2.11\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-01-07 12:36+0700\n"
6
+ "PO-Revision-Date: 2018-01-07 12:37+0700\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\n"
68
  "Beveiligings controle mislukt, herlaad de pagina en probeer het nog een keer."
69
 
70
  #: admin/class-admin.php:175 admin/class-admin.php:176
71
+ #: admin/class-admin.php:466 admin/templates/map-settings.php:8
72
  msgid "Settings"
73
  msgstr "Instellingen"
74
 
75
  #: admin/class-admin.php:182 admin/class-admin.php:183
76
+ #: admin/class-admin.php:486
77
  msgid "Add-Ons"
78
  msgstr "Uitbreidingen"
79
 
101
  "getoond kan worden."
102
 
103
  #: admin/class-admin.php:299 admin/class-metaboxes.php:525
104
+ #: frontend/class-frontend.php:567
105
  msgid "Closed"
106
  msgstr "Gesloten"
107
 
123
  msgid "Dismiss this notice."
124
  msgstr "Sluit deze notice."
125
 
126
+ #: admin/class-admin.php:421
127
  msgid "Welcome to WP Store Locator"
128
  msgstr "Welkom bij WP Store Locator"
129
 
130
+ #: admin/class-admin.php:422
131
  msgid "Sign up for the latest plugin updates and announcements."
132
  msgstr "Meld je aan voor de nieuwsbrief en ontvang het laatste nieuws."
133
 
134
+ #: admin/class-admin.php:485
135
  msgid "Documentation"
136
  msgstr "Documentatie"
137
 
138
+ #: admin/class-admin.php:508
139
  #, php-format
140
  msgid "If you like this plugin please leave us a %s5 star%s rating."
141
  msgstr "Als je tevreden bent met deze plugin geef het dan %s5 sterren%s."
325
  msgid "Opening Hours"
326
  msgstr "Openingstijden"
327
 
328
+ #: admin/class-metaboxes.php:82 admin/templates/map-settings.php:544
329
+ #: admin/templates/map-settings.php:545 frontend/underscore-functions.php:160
330
  #: inc/wpsl-functions.php:150
331
  msgid "Hours"
332
  msgstr "Uren"
339
  msgid "Tel"
340
  msgstr "Tel."
341
 
342
+ #: admin/class-metaboxes.php:91 admin/templates/map-settings.php:532
343
+ #: admin/templates/map-settings.php:533 frontend/class-frontend.php:817
344
  #: frontend/underscore-functions.php:32 frontend/underscore-functions.php:68
345
  #: frontend/underscore-functions.php:150 inc/wpsl-functions.php:147
346
  msgid "Fax"
347
  msgstr "Fax"
348
 
349
+ #: admin/class-metaboxes.php:94 admin/templates/map-settings.php:536
350
+ #: admin/templates/map-settings.php:537 admin/upgrade.php:198
351
+ #: frontend/class-frontend.php:821 frontend/underscore-functions.php:35
352
  #: frontend/underscore-functions.php:71 frontend/underscore-functions.php:153
353
  #: inc/wpsl-functions.php:148
354
  msgid "Email"
355
  msgstr "E-mail"
356
 
357
+ #: admin/class-metaboxes.php:97 admin/templates/map-settings.php:540
358
+ #: admin/templates/map-settings.php:541 admin/upgrade.php:202
359
+ #: frontend/class-frontend.php:826 inc/wpsl-functions.php:149
360
  msgid "Url"
361
  msgstr "Url"
362
 
448
  msgid "WP Store Locator Transients Cleared"
449
  msgstr "WP Store Locator transients verwijderd"
450
 
451
+ #: admin/class-settings.php:374
452
  #, php-format
453
  msgid "There's a problem with the provided %sserver key%s. %s"
454
  msgstr "Er is een probleem met de opgegeven %sserver sleutel%s. %s"
455
 
456
+ #: admin/class-settings.php:488
457
  msgid ""
458
  "The max results field cannot be empty, the default value has been restored."
459
  msgstr ""
460
  "Het max. zoek resulaten veld kan niet leeg zijn, de standaard waarde is "
461
  "hersteld."
462
 
463
+ #: admin/class-settings.php:491
464
  msgid ""
465
  "The search radius field cannot be empty, the default value has been restored."
466
  msgstr ""
467
  "Het zoek radius veld kan niet leeg zijn, de standaard waarde is hersteld."
468
 
469
+ #: admin/class-settings.php:494
470
  #, php-format
471
  msgid ""
472
  "Please provide the name of a city or country that can be used as a starting "
478
  "automatische achterhalen van de gebruikers locatie mislukt, of het "
479
  "automatische achterhalen is uitgeschakeld."
480
 
481
+ #: admin/class-settings.php:515
482
  msgid "Select your language"
483
  msgstr "Kies uw taal"
484
 
485
+ #: admin/class-settings.php:516
486
  msgid "English"
487
  msgstr "Engels"
488
 
489
+ #: admin/class-settings.php:517
490
  msgid "Arabic"
491
  msgstr "Arabisch"
492
 
493
+ #: admin/class-settings.php:518
494
  msgid "Basque"
495
  msgstr "Bask"
496
 
497
+ #: admin/class-settings.php:519
498
  msgid "Bulgarian"
499
  msgstr "Bulgaars"
500
 
501
+ #: admin/class-settings.php:520
502
  msgid "Bengali"
503
  msgstr "Bengali"
504
 
505
+ #: admin/class-settings.php:521
506
  msgid "Catalan"
507
  msgstr "Catalaans"
508
 
509
+ #: admin/class-settings.php:522
510
  msgid "Czech"
511
  msgstr "Tjechisch"
512
 
513
+ #: admin/class-settings.php:523
514
  msgid "Danish"
515
  msgstr "Deens"
516
 
517
+ #: admin/class-settings.php:524
518
  msgid "German"
519
  msgstr "Duits"
520
 
521
+ #: admin/class-settings.php:525
522
  msgid "Greek"
523
  msgstr "Grieks"
524
 
525
+ #: admin/class-settings.php:526
526
  msgid "English (Australian)"
527
  msgstr "Engels (Australisch)"
528
 
529
+ #: admin/class-settings.php:527
530
  msgid "English (Great Britain)"
531
  msgstr "Engels (Verenigd Koninkrijk)"
532
 
533
+ #: admin/class-settings.php:528
534
  msgid "Spanish"
535
  msgstr "Spaans"
536
 
537
+ #: admin/class-settings.php:529
538
  msgid "Farsi"
539
  msgstr "Farsi"
540
 
541
+ #: admin/class-settings.php:530
542
  msgid "Finnish"
543
  msgstr "Fins"
544
 
545
+ #: admin/class-settings.php:531
546
  msgid "Filipino"
547
  msgstr "Filipijns"
548
 
549
+ #: admin/class-settings.php:532
550
  msgid "French"
551
  msgstr "Frans"
552
 
553
+ #: admin/class-settings.php:533
554
  msgid "Galician"
555
  msgstr "Gallisch"
556
 
557
+ #: admin/class-settings.php:534
558
  msgid "Gujarati"
559
  msgstr "Gujurati"
560
 
561
+ #: admin/class-settings.php:535
562
  msgid "Hindi"
563
  msgstr "Hindi"
564
 
565
+ #: admin/class-settings.php:536
566
  msgid "Croatian"
567
  msgstr "Kroatisch"
568
 
569
+ #: admin/class-settings.php:537
570
  msgid "Hungarian"
571
  msgstr "Hongaars"
572
 
573
+ #: admin/class-settings.php:538
574
  msgid "Indonesian"
575
  msgstr "Indonesisch"
576
 
577
+ #: admin/class-settings.php:539
578
  msgid "Italian"
579
  msgstr "Italiaans"
580
 
581
+ #: admin/class-settings.php:540
582
  msgid "Hebrew"
583
  msgstr "Hebreeuws"
584
 
585
+ #: admin/class-settings.php:541
586
  msgid "Japanese"
587
  msgstr "Japans"
588
 
589
+ #: admin/class-settings.php:542
590
  msgid "Kannada"
591
  msgstr "Kannada"
592
 
593
+ #: admin/class-settings.php:543
594
  msgid "Korean"
595
  msgstr "Koreaans"
596
 
597
+ #: admin/class-settings.php:544
598
  msgid "Lithuanian"
599
  msgstr "Litouws"
600
 
601
+ #: admin/class-settings.php:545
602
  msgid "Latvian"
603
  msgstr "Lets"
604
 
605
+ #: admin/class-settings.php:546
606
  msgid "Malayalam"
607
  msgstr "Malayalam"
608
 
609
+ #: admin/class-settings.php:547
610
  msgid "Marathi"
611
  msgstr "Marathi"
612
 
613
+ #: admin/class-settings.php:548
614
  msgid "Dutch"
615
  msgstr "Nederlands"
616
 
617
+ #: admin/class-settings.php:549
618
  msgid "Norwegian"
619
  msgstr "Noors"
620
 
621
+ #: admin/class-settings.php:550
622
  msgid "Norwegian Nynorsk"
623
  msgstr "Noors Nynorsk"
624
 
625
+ #: admin/class-settings.php:551
626
  msgid "Polish"
627
  msgstr "Pools"
628
 
629
+ #: admin/class-settings.php:552
630
  msgid "Portuguese"
631
  msgstr "Portugees"
632
 
633
+ #: admin/class-settings.php:553
634
  msgid "Portuguese (Brazil)"
635
  msgstr "Portugees (Brazilië)"
636
 
637
+ #: admin/class-settings.php:554
638
  msgid "Portuguese (Portugal)"
639
  msgstr "Portugees (Portugal)"
640
 
641
+ #: admin/class-settings.php:555
642
  msgid "Romanian"
643
  msgstr "Roemeens"
644
 
645
+ #: admin/class-settings.php:556
646
  msgid "Russian"
647
  msgstr "Russisch"
648
 
649
+ #: admin/class-settings.php:557
650
  msgid "Slovak"
651
  msgstr "Slowaaks"
652
 
653
+ #: admin/class-settings.php:558
654
  msgid "Slovenian"
655
  msgstr "Sloveens"
656
 
657
+ #: admin/class-settings.php:559
658
  msgid "Serbian"
659
  msgstr "Servisch"
660
 
661
+ #: admin/class-settings.php:560
662
  msgid "Swedish"
663
  msgstr "Zweeds"
664
 
665
+ #: admin/class-settings.php:561
666
  msgid "Tagalog"
667
  msgstr "Tagalog"
668
 
669
+ #: admin/class-settings.php:562
670
  msgid "Tamil"
671
  msgstr "Tamil"
672
 
673
+ #: admin/class-settings.php:563
674
  msgid "Telugu"
675
  msgstr "Telugu"
676
 
677
+ #: admin/class-settings.php:564
678
  msgid "Thai"
679
  msgstr "Thai"
680
 
681
+ #: admin/class-settings.php:565
682
  msgid "Turkish"
683
  msgstr "Turks"
684
 
685
+ #: admin/class-settings.php:566
686
  msgid "Ukrainian"
687
  msgstr "Oekraïens"
688
 
689
+ #: admin/class-settings.php:567
690
  msgid "Vietnamese"
691
  msgstr "Vietnamees"
692
 
693
+ #: admin/class-settings.php:568
694
  msgid "Chinese (Simplified)"
695
  msgstr "Chinees (Vereenvoudigd)"
696
 
697
+ #: admin/class-settings.php:569
698
  msgid "Chinese (Traditional)"
699
  msgstr "Chinees (Traditioneel)"
700
 
701
+ #: admin/class-settings.php:574
702
  msgid "Select your region"
703
  msgstr "Kies uw regio"
704
 
705
+ #: admin/class-settings.php:575
706
  msgid "Afghanistan"
707
  msgstr "Afghanistan"
708
 
709
+ #: admin/class-settings.php:576
710
  msgid "Albania"
711
  msgstr "Albanië"
712
 
713
+ #: admin/class-settings.php:577
714
  msgid "Algeria"
715
  msgstr "Algerije"
716
 
717
+ #: admin/class-settings.php:578
718
  msgid "American Samoa"
719
  msgstr "Amerikaans Samoa"
720
 
721
+ #: admin/class-settings.php:579
722
  msgid "Andorra"
723
  msgstr "Andorra"
724
 
725
+ #: admin/class-settings.php:580
726
  msgid "Angola"
727
  msgstr "Angola"
728
 
729
+ #: admin/class-settings.php:581
730
  msgid "Anguilla"
731
  msgstr "Anguilla"
732
 
733
+ #: admin/class-settings.php:582
734
  msgid "Antarctica"
735
  msgstr "Antarctica"
736
 
737
+ #: admin/class-settings.php:583
738
  msgid "Antigua and Barbuda"
739
  msgstr "Antigua en Barbuda"
740
 
741
+ #: admin/class-settings.php:584
742
  msgid "Argentina"
743
  msgstr "Argentinië"
744
 
745
+ #: admin/class-settings.php:585
746
  msgid "Armenia"
747
  msgstr "Armenia"
748
 
749
+ #: admin/class-settings.php:586
750
  msgid "Aruba"
751
  msgstr "Aruba"
752
 
753
+ #: admin/class-settings.php:587
754
  msgid "Ascension Island"
755
  msgstr "Ascension"
756
 
757
+ #: admin/class-settings.php:588
758
  msgid "Australia"
759
  msgstr "Australië"
760
 
761
+ #: admin/class-settings.php:589
762
  msgid "Austria"
763
  msgstr "Oostenrijk"
764
 
765
+ #: admin/class-settings.php:590
766
  msgid "Azerbaijan"
767
  msgstr "Azerbeidzjan"
768
 
769
+ #: admin/class-settings.php:591
770
  msgid "Bahamas"
771
  msgstr "Bahamas"
772
 
773
+ #: admin/class-settings.php:592
774
  msgid "Bahrain"
775
  msgstr "Bahrein"
776
 
777
+ #: admin/class-settings.php:593
778
  msgid "Bangladesh"
779
  msgstr "Bangladesh"
780
 
781
+ #: admin/class-settings.php:594
782
  msgid "Barbados"
783
  msgstr "Barbados"
784
 
785
+ #: admin/class-settings.php:595
786
  msgid "Belarus"
787
  msgstr "Wit-Rusland"
788
 
789
+ #: admin/class-settings.php:596
790
  msgid "Belgium"
791
  msgstr "België"
792
 
793
+ #: admin/class-settings.php:597
794
  msgid "Belize"
795
  msgstr "Belize"
796
 
797
+ #: admin/class-settings.php:598
798
  msgid "Benin"
799
  msgstr "Benin"
800
 
801
+ #: admin/class-settings.php:599
802
  msgid "Bermuda"
803
  msgstr "Bermuda"
804
 
805
+ #: admin/class-settings.php:600
806
  msgid "Bhutan"
807
  msgstr "Bhutan"
808
 
809
+ #: admin/class-settings.php:601
810
  msgid "Bolivia"
811
  msgstr "Bolivia"
812
 
813
+ #: admin/class-settings.php:602
814
  msgid "Bosnia and Herzegovina"
815
  msgstr "Bosnia en Herzegovina"
816
 
817
+ #: admin/class-settings.php:603
818
  msgid "Botswana"
819
  msgstr "Botswana"
820
 
821
+ #: admin/class-settings.php:604
822
  msgid "Bouvet Island"
823
  msgstr "Bouvet"
824
 
825
+ #: admin/class-settings.php:605
826
  msgid "Brazil"
827
  msgstr "Brazilië"
828
 
829
+ #: admin/class-settings.php:606
830
  msgid "British Indian Ocean Territory"
831
  msgstr "Brits Indische Oceaanterritorium"
832
 
833
+ #: admin/class-settings.php:607
834
  msgid "British Virgin Islands"
835
  msgstr "Britse Maagdeneilanden"
836
 
837
+ #: admin/class-settings.php:608
838
  msgid "Brunei"
839
  msgstr "Brunei"
840
 
841
+ #: admin/class-settings.php:609
842
  msgid "Bulgaria"
843
  msgstr "Bulgarije"
844
 
845
+ #: admin/class-settings.php:610
846
  msgid "Burkina Faso"
847
  msgstr "Burkina Faso"
848
 
849
+ #: admin/class-settings.php:611
850
  msgid "Burundi"
851
  msgstr "Burundi"
852
 
853
+ #: admin/class-settings.php:612
854
  msgid "Cambodia"
855
  msgstr "Cambodja"
856
 
857
+ #: admin/class-settings.php:613
858
  msgid "Cameroon"
859
  msgstr "Kameroen"
860
 
861
+ #: admin/class-settings.php:614
862
  msgid "Canada"
863
  msgstr "Canada"
864
 
865
+ #: admin/class-settings.php:615
866
  msgid "Canary Islands"
867
  msgstr "Canarische Eilanden"
868
 
869
+ #: admin/class-settings.php:616
870
  msgid "Cape Verde"
871
  msgstr "Kaapverdië"
872
 
873
+ #: admin/class-settings.php:617
874
  msgid "Caribbean Netherlands"
875
  msgstr "Caribisch Nederland"
876
 
877
+ #: admin/class-settings.php:618
878
  msgid "Cayman Islands"
879
  msgstr "Kaaimaneilanden"
880
 
881
+ #: admin/class-settings.php:619
882
  msgid "Central African Republic"
883
  msgstr "Centraal-Afrikaanse Republiek"
884
 
885
+ #: admin/class-settings.php:620
886
  msgid "Ceuta and Melilla"
887
  msgstr "Ceuta en Melilla"
888
 
889
+ #: admin/class-settings.php:621
890
  msgid "Chad"
891
  msgstr "Chad"
892
 
893
+ #: admin/class-settings.php:622
894
  msgid "Chile"
895
  msgstr "Chili"
896
 
897
+ #: admin/class-settings.php:623
898
  msgid "China"
899
  msgstr "China"
900
 
901
+ #: admin/class-settings.php:624
902
  msgid "Christmas Island"
903
  msgstr "Christmaseiland"
904
 
905
+ #: admin/class-settings.php:625
906
  msgid "Clipperton Island"
907
  msgstr "Clipperton"
908
 
909
+ #: admin/class-settings.php:626
910
  msgid "Cocos (Keeling) Islands"
911
  msgstr "Cocoseilanden"
912
 
913
+ #: admin/class-settings.php:627
914
  msgid "Colombia"
915
  msgstr "Colombia"
916
 
917
+ #: admin/class-settings.php:628
918
  msgid "Comoros"
919
  msgstr "Comoren"
920
 
921
+ #: admin/class-settings.php:629
922
  msgid "Congo (DRC)"
923
  msgstr "Congo (DRC)"
924
 
925
+ #: admin/class-settings.php:630
926
  msgid "Congo (Republic)"
927
  msgstr "Republiek Congo"
928
 
929
+ #: admin/class-settings.php:631
930
  msgid "Cook Islands"
931
  msgstr "Cookeilanden"
932
 
933
+ #: admin/class-settings.php:632
934
  msgid "Costa Rica"
935
  msgstr "Costa Rica"
936
 
937
+ #: admin/class-settings.php:633
938
  msgid "Croatia"
939
  msgstr "Kroatië"
940
 
941
+ #: admin/class-settings.php:634
942
  msgid "Cuba"
943
  msgstr "Cuba"
944
 
945
+ #: admin/class-settings.php:635
946
  msgid "Curaçao"
947
  msgstr "Curaçao"
948
 
949
+ #: admin/class-settings.php:636
950
  msgid "Cyprus"
951
  msgstr "Cyprus"
952
 
953
+ #: admin/class-settings.php:637
954
  msgid "Czech Republic"
955
  msgstr "Tsjechië"
956
 
957
+ #: admin/class-settings.php:638
958
  msgid "Côte d'Ivoire"
959
  msgstr "Ivoorkust"
960
 
961
+ #: admin/class-settings.php:639
962
  msgid "Denmark"
963
  msgstr "Denemarken"
964
 
965
+ #: admin/class-settings.php:640
966
  msgid "Djibouti"
967
  msgstr "Djibouti"
968
 
969
+ #: admin/class-settings.php:641
970
  msgid "Democratic Republic of the Congo"
971
  msgstr "Democratische Republiek Congo"
972
 
973
+ #: admin/class-settings.php:642
974
  msgid "Dominica"
975
  msgstr "Dominica"
976
 
977
+ #: admin/class-settings.php:643
978
  msgid "Dominican Republic"
979
  msgstr "Dominicaanse Republiek"
980
 
981
+ #: admin/class-settings.php:644
982
  msgid "Ecuador"
983
  msgstr "Ecuador"
984
 
985
+ #: admin/class-settings.php:645
986
  msgid "Egypt"
987
  msgstr "Egypte"
988
 
989
+ #: admin/class-settings.php:646
990
  msgid "El Salvador"
991
  msgstr "El Salvador"
992
 
993
+ #: admin/class-settings.php:647
994
  msgid "Equatorial Guinea"
995
  msgstr "Equatoriaal-Guinea"
996
 
997
+ #: admin/class-settings.php:648
998
  msgid "Eritrea"
999
  msgstr "Eritrea"
1000
 
1001
+ #: admin/class-settings.php:649
1002
  msgid "Estonia"
1003
  msgstr "Estland"
1004
 
1005
+ #: admin/class-settings.php:650
1006
  msgid "Ethiopia"
1007
  msgstr "Ethiopië"
1008
 
1009
+ #: admin/class-settings.php:651
1010
  msgid "Falkland Islands(Islas Malvinas)"
1011
  msgstr "Falklandeilanden"
1012
 
1013
+ #: admin/class-settings.php:652
1014
  msgid "Faroe Islands"
1015
  msgstr "Faeröer"
1016
 
1017
+ #: admin/class-settings.php:653
1018
  msgid "Fiji"
1019
  msgstr "Fiji"
1020
 
1021
+ #: admin/class-settings.php:654
1022
  msgid "Finland"
1023
  msgstr "Finland"
1024
 
1025
+ #: admin/class-settings.php:655
1026
  msgid "France"
1027
  msgstr "Frankrijk"
1028
 
1029
+ #: admin/class-settings.php:656
1030
  msgid "French Guiana"
1031
  msgstr "Frans Guyana"
1032
 
1033
+ #: admin/class-settings.php:657
1034
  msgid "French Polynesia"
1035
  msgstr "Frans-Polynesië"
1036
 
1037
+ #: admin/class-settings.php:658
1038
  msgid "French Southern Territories"
1039
  msgstr "Franse Zuidelijke en Antarctische Gebieden"
1040
 
1041
+ #: admin/class-settings.php:659
1042
  msgid "Gabon"
1043
  msgstr "Gabon"
1044
 
1045
+ #: admin/class-settings.php:660
1046
  msgid "Gambia"
1047
  msgstr "Gambia"
1048
 
1049
+ #: admin/class-settings.php:661
1050
  msgid "Georgia"
1051
  msgstr "Georgië"
1052
 
1053
+ #: admin/class-settings.php:662
1054
  msgid "Germany"
1055
  msgstr "Duitsland"
1056
 
1057
+ #: admin/class-settings.php:663
1058
  msgid "Ghana"
1059
  msgstr "Ghana"
1060
 
1061
+ #: admin/class-settings.php:664
1062
  msgid "Gibraltar"
1063
  msgstr "Gibraltar"
1064
 
1065
+ #: admin/class-settings.php:665
1066
  msgid "Greece"
1067
  msgstr "Griekenland"
1068
 
1069
+ #: admin/class-settings.php:666
1070
  msgid "Greenland"
1071
  msgstr "Groenland"
1072
 
1073
+ #: admin/class-settings.php:667
1074
  msgid "Grenada"
1075
  msgstr "Grenada"
1076
 
1077
+ #: admin/class-settings.php:668 admin/class-settings.php:670
1078
  msgid "Guam"
1079
  msgstr "Guam"
1080
 
1081
+ #: admin/class-settings.php:669
1082
  msgid "Guadeloupe"
1083
  msgstr "Guadeloupe"
1084
 
1085
+ #: admin/class-settings.php:671
1086
  msgid "Guatemala"
1087
  msgstr "Guatemala"
1088
 
1089
+ #: admin/class-settings.php:672
1090
  msgid "Guernsey"
1091
  msgstr "Guernsey"
1092
 
1093
+ #: admin/class-settings.php:673
1094
  msgid "Guinea"
1095
  msgstr "Guinee"
1096
 
1097
+ #: admin/class-settings.php:674
1098
  msgid "Guinea-Bissau"
1099
  msgstr "Guinee-Bissau"
1100
 
1101
+ #: admin/class-settings.php:675
1102
  msgid "Guyana"
1103
  msgstr "Guyana"
1104
 
1105
+ #: admin/class-settings.php:676
1106
  msgid "Haiti"
1107
  msgstr "Haïti"
1108
 
1109
+ #: admin/class-settings.php:677
1110
  msgid "Heard and McDonald Islands"
1111
  msgstr "Heard en McDonaldeilanden"
1112
 
1113
+ #: admin/class-settings.php:678
1114
  msgid "Honduras"
1115
  msgstr "Honduras"
1116
 
1117
+ #: admin/class-settings.php:679
1118
  msgid "Hong Kong"
1119
  msgstr "Hong Kong"
1120
 
1121
+ #: admin/class-settings.php:680
1122
  msgid "Hungary"
1123
  msgstr "Hongarije"
1124
 
1125
+ #: admin/class-settings.php:681
1126
  msgid "Iceland"
1127
  msgstr "IJsland"
1128
 
1129
+ #: admin/class-settings.php:682
1130
  msgid "India"
1131
  msgstr "India"
1132
 
1133
+ #: admin/class-settings.php:683
1134
  msgid "Indonesia"
1135
  msgstr "Indonesië"
1136
 
1137
+ #: admin/class-settings.php:684
1138
  msgid "Iran"
1139
  msgstr "Iran"
1140
 
1141
+ #: admin/class-settings.php:685
1142
  msgid "Iraq"
1143
  msgstr "Irak"
1144
 
1145
+ #: admin/class-settings.php:686
1146
  msgid "Ireland"
1147
  msgstr "Ierland"
1148
 
1149
+ #: admin/class-settings.php:687
1150
  msgid "Isle of Man"
1151
  msgstr "Man (eiland)"
1152
 
1153
+ #: admin/class-settings.php:688
1154
  msgid "Israel"
1155
  msgstr "Israël"
1156
 
1157
+ #: admin/class-settings.php:689
1158
  msgid "Italy"
1159
  msgstr "Italië"
1160
 
1161
+ #: admin/class-settings.php:690
1162
  msgid "Jamaica"
1163
  msgstr "Jamaica"
1164
 
1165
+ #: admin/class-settings.php:691
1166
  msgid "Japan"
1167
  msgstr "Japan"
1168
 
1169
+ #: admin/class-settings.php:692
1170
  msgid "Jersey"
1171
  msgstr "Jersey"
1172
 
1173
+ #: admin/class-settings.php:693
1174
  msgid "Jordan"
1175
  msgstr "Jordanië"
1176
 
1177
+ #: admin/class-settings.php:694
1178
  msgid "Kazakhstan"
1179
  msgstr "Kazachstan"
1180
 
1181
+ #: admin/class-settings.php:695
1182
  msgid "Kenya"
1183
  msgstr "Kenia"
1184
 
1185
+ #: admin/class-settings.php:696
1186
  msgid "Kiribati"
1187
  msgstr "Kiribati"
1188
 
1189
+ #: admin/class-settings.php:697
1190
  msgid "Kosovo"
1191
  msgstr "Kosovo"
1192
 
1193
+ #: admin/class-settings.php:698
1194
  msgid "Kuwait"
1195
  msgstr "Koeweit"
1196
 
1197
+ #: admin/class-settings.php:699
1198
  msgid "Kyrgyzstan"
1199
  msgstr "Kirgizië"
1200
 
1201
+ #: admin/class-settings.php:700
1202
  msgid "Laos"
1203
  msgstr "Laos"
1204
 
1205
+ #: admin/class-settings.php:701
1206
  msgid "Latvia"
1207
  msgstr "Letland"
1208
 
1209
+ #: admin/class-settings.php:702
1210
  msgid "Lebanon"
1211
  msgstr "Libanon"
1212
 
1213
+ #: admin/class-settings.php:703
1214
  msgid "Lesotho"
1215
  msgstr "Lesotho"
1216
 
1217
+ #: admin/class-settings.php:704
1218
  msgid "Liberia"
1219
  msgstr "Liberia"
1220
 
1221
+ #: admin/class-settings.php:705
1222
  msgid "Libya"
1223
  msgstr "Libië"
1224
 
1225
+ #: admin/class-settings.php:706
1226
  msgid "Liechtenstein"
1227
  msgstr "Liechtenstein"
1228
 
1229
+ #: admin/class-settings.php:707
1230
  msgid "Lithuania"
1231
  msgstr "Litouwen"
1232
 
1233
+ #: admin/class-settings.php:708
1234
  msgid "Luxembourg"
1235
  msgstr "Luxemburg"
1236
 
1237
+ #: admin/class-settings.php:709
1238
  msgid "Macau"
1239
  msgstr "Macau"
1240
 
1241
+ #: admin/class-settings.php:710
1242
  msgid "Macedonia (FYROM)"
1243
  msgstr "Macedonië"
1244
 
1245
+ #: admin/class-settings.php:711
1246
  msgid "Madagascar"
1247
  msgstr "Madagascar"
1248
 
1249
+ #: admin/class-settings.php:712
1250
  msgid "Malawi"
1251
  msgstr "Malawi"
1252
 
1253
+ #: admin/class-settings.php:713
1254
  msgid "Malaysia "
1255
  msgstr "Maleisie"
1256
 
1257
+ #: admin/class-settings.php:714
1258
  msgid "Maldives "
1259
  msgstr "Maldiven"
1260
 
1261
+ #: admin/class-settings.php:715
1262
  msgid "Mali"
1263
  msgstr "Mali"
1264
 
1265
+ #: admin/class-settings.php:716
1266
  msgid "Malta"
1267
  msgstr "Malta"
1268
 
1269
+ #: admin/class-settings.php:717
1270
  msgid "Marshall Islands"
1271
  msgstr "Marshalleilanden"
1272
 
1273
+ #: admin/class-settings.php:718
1274
  msgid "Martinique"
1275
  msgstr "Martinique"
1276
 
1277
+ #: admin/class-settings.php:719
1278
  msgid "Mauritania"
1279
  msgstr "Mauritanië"
1280
 
1281
+ #: admin/class-settings.php:720
1282
  msgid "Mauritius"
1283
  msgstr "Mauritius"
1284
 
1285
+ #: admin/class-settings.php:721
1286
  msgid "Mayotte"
1287
  msgstr "Mayotte"
1288
 
1289
+ #: admin/class-settings.php:722
1290
  msgid "Mexico"
1291
  msgstr "Mexico"
1292
 
1293
+ #: admin/class-settings.php:723
1294
  msgid "Micronesia"
1295
  msgstr "Micronesia"
1296
 
1297
+ #: admin/class-settings.php:724
1298
  msgid "Moldova"
1299
  msgstr "Moldavië"
1300
 
1301
+ #: admin/class-settings.php:725
1302
  msgid "Monaco"
1303
  msgstr "Monaco"
1304
 
1305
+ #: admin/class-settings.php:726
1306
  msgid "Mongolia"
1307
  msgstr "Mongolië"
1308
 
1309
+ #: admin/class-settings.php:727
1310
  msgid "Montenegro"
1311
  msgstr "Montenegro"
1312
 
1313
+ #: admin/class-settings.php:728
1314
  msgid "Montserrat"
1315
  msgstr "Montserrat "
1316
 
1317
+ #: admin/class-settings.php:729
1318
  msgid "Morocco"
1319
  msgstr "Marokko"
1320
 
1321
+ #: admin/class-settings.php:730
1322
  msgid "Mozambique"
1323
  msgstr "Mozambique"
1324
 
1325
+ #: admin/class-settings.php:731
1326
  msgid "Myanmar (Burma)"
1327
  msgstr "Myanmar (Birma)"
1328
 
1329
+ #: admin/class-settings.php:732
1330
  msgid "Namibia"
1331
  msgstr "Namibië"
1332
 
1333
+ #: admin/class-settings.php:733
1334
  msgid "Nauru"
1335
  msgstr "Nauru"
1336
 
1337
+ #: admin/class-settings.php:734
1338
  msgid "Nepal"
1339
  msgstr "Nepal"
1340
 
1341
+ #: admin/class-settings.php:735
1342
  msgid "Netherlands"
1343
  msgstr "Nederland"
1344
 
1345
+ #: admin/class-settings.php:736
1346
  msgid "Netherlands Antilles"
1347
  msgstr "Nederlandse Antillen"
1348
 
1349
+ #: admin/class-settings.php:737
1350
  msgid "New Caledonia"
1351
  msgstr "Nieuw-Caledonië"
1352
 
1353
+ #: admin/class-settings.php:738
1354
  msgid "New Zealand"
1355
  msgstr "Nieuw Zeeland"
1356
 
1357
+ #: admin/class-settings.php:739
1358
  msgid "Nicaragua"
1359
  msgstr "Nicaragua"
1360
 
1361
+ #: admin/class-settings.php:740
1362
  msgid "Niger"
1363
  msgstr "Niger"
1364
 
1365
+ #: admin/class-settings.php:741
1366
  msgid "Nigeria"
1367
  msgstr "Nigeria"
1368
 
1369
+ #: admin/class-settings.php:742
1370
  msgid "Niue"
1371
  msgstr "Niue"
1372
 
1373
+ #: admin/class-settings.php:743
1374
  msgid "Norfolk Island"
1375
  msgstr "Norfolk (eiland)"
1376
 
1377
+ #: admin/class-settings.php:744
1378
  msgid "North Korea"
1379
  msgstr "Noord-Korea"
1380
 
1381
+ #: admin/class-settings.php:745
1382
  msgid "Northern Mariana Islands"
1383
  msgstr "Noordelijke Marianen"
1384
 
1385
+ #: admin/class-settings.php:746
1386
  msgid "Norway"
1387
  msgstr "Noorwegen"
1388
 
1389
+ #: admin/class-settings.php:747
1390
  msgid "Oman"
1391
  msgstr "Oman"
1392
 
1393
+ #: admin/class-settings.php:748
1394
  msgid "Pakistan"
1395
  msgstr "Pakistan"
1396
 
1397
+ #: admin/class-settings.php:749
1398
  msgid "Palau"
1399
  msgstr "Palau"
1400
 
1401
+ #: admin/class-settings.php:750
1402
  msgid "Palestine"
1403
  msgstr "Palestine"
1404
 
1405
+ #: admin/class-settings.php:751
1406
  msgid "Panama"
1407
  msgstr "Panama"
1408
 
1409
+ #: admin/class-settings.php:752
1410
  msgid "Papua New Guinea"
1411
  msgstr "Papoea-Nieuw-Guinea"
1412
 
1413
+ #: admin/class-settings.php:753
1414
  msgid "Paraguay"
1415
  msgstr "Paraguay"
1416
 
1417
+ #: admin/class-settings.php:754
1418
  msgid "Peru"
1419
  msgstr "Peru"
1420
 
1421
+ #: admin/class-settings.php:755
1422
  msgid "Philippines"
1423
  msgstr "Filipijnen"
1424
 
1425
+ #: admin/class-settings.php:756
1426
  msgid "Pitcairn Islands"
1427
  msgstr "Pitcairneilanden"
1428
 
1429
+ #: admin/class-settings.php:757
1430
  msgid "Poland"
1431
  msgstr "Polen"
1432
 
1433
+ #: admin/class-settings.php:758
1434
  msgid "Portugal"
1435
  msgstr "Portugal"
1436
 
1437
+ #: admin/class-settings.php:759
1438
  msgid "Puerto Rico"
1439
  msgstr "Puerto Rico"
1440
 
1441
+ #: admin/class-settings.php:760
1442
  msgid "Qatar"
1443
  msgstr "Qatar"
1444
 
1445
+ #: admin/class-settings.php:761
1446
  msgid "Reunion"
1447
  msgstr "Réunion"
1448
 
1449
+ #: admin/class-settings.php:762
1450
  msgid "Romania"
1451
  msgstr "Roemenië"
1452
 
1453
+ #: admin/class-settings.php:763
1454
  msgid "Russia"
1455
  msgstr "Rusland"
1456
 
1457
+ #: admin/class-settings.php:764
1458
  msgid "Rwanda"
1459
  msgstr "Rwanda"
1460
 
1461
+ #: admin/class-settings.php:765
1462
  msgid "Saint Helena"
1463
  msgstr "Sint-Helena"
1464
 
1465
+ #: admin/class-settings.php:766
1466
  msgid "Saint Kitts and Nevis"
1467
  msgstr "Saint Kitts en Nevis"
1468
 
1469
+ #: admin/class-settings.php:767
1470
  msgid "Saint Vincent and the Grenadines"
1471
  msgstr "Saint Vincent en de Grenadines"
1472
 
1473
+ #: admin/class-settings.php:768
1474
  msgid "Saint Lucia"
1475
  msgstr "Saint Lucia"
1476
 
1477
+ #: admin/class-settings.php:769
1478
  msgid "Samoa"
1479
  msgstr "Samoa"
1480
 
1481
+ #: admin/class-settings.php:770
1482
  msgid "San Marino"
1483
  msgstr "San Marino"
1484
 
1485
+ #: admin/class-settings.php:771
1486
  msgid "São Tomé and Príncipe"
1487
  msgstr "Sao Tomé en Principe"
1488
 
1489
+ #: admin/class-settings.php:772
1490
  msgid "Saudi Arabia"
1491
  msgstr "Saoedi-Arabië"
1492
 
1493
+ #: admin/class-settings.php:773
1494
  msgid "Senegal"
1495
  msgstr "Senegal"
1496
 
1497
+ #: admin/class-settings.php:774
1498
  msgid "Serbia"
1499
  msgstr "Servië"
1500
 
1501
+ #: admin/class-settings.php:775
1502
  msgid "Seychelles"
1503
  msgstr "Seychellen"
1504
 
1505
+ #: admin/class-settings.php:776
1506
  msgid "Sierra Leone"
1507
  msgstr "Sierra Leone"
1508
 
1509
+ #: admin/class-settings.php:777
1510
  msgid "Singapore"
1511
  msgstr "Singapore"
1512
 
1513
+ #: admin/class-settings.php:778
1514
  msgid "Sint Maarten"
1515
  msgstr "Sint Maarten"
1516
 
1517
+ #: admin/class-settings.php:779
1518
  msgid "Slovakia"
1519
  msgstr "Slowakije"
1520
 
1521
+ #: admin/class-settings.php:780
1522
  msgid "Slovenia"
1523
  msgstr "Slovenië"
1524
 
1525
+ #: admin/class-settings.php:781
1526
  msgid "Solomon Islands"
1527
  msgstr "Salomonseilanden"
1528
 
1529
+ #: admin/class-settings.php:782
1530
  msgid "Somalia"
1531
  msgstr "Somalie"
1532
 
1533
+ #: admin/class-settings.php:783
1534
  msgid "South Africa"
1535
  msgstr "Zuid Afrika"
1536
 
1537
+ #: admin/class-settings.php:784
1538
  msgid "South Georgia and South Sandwich Islands"
1539
  msgstr "Zuid-Georgia en de Zuidelijke Sandwicheilanden"
1540
 
1541
+ #: admin/class-settings.php:785
1542
  msgid "South Korea"
1543
  msgstr "Zuid Korea"
1544
 
1545
+ #: admin/class-settings.php:786
1546
  msgid "South Sudan"
1547
  msgstr "Zuid Sudan"
1548
 
1549
+ #: admin/class-settings.php:787
1550
  msgid "Spain"
1551
  msgstr "Spanje"
1552
 
1553
+ #: admin/class-settings.php:788
1554
  msgid "Sri Lanka"
1555
  msgstr "Sri Lanka"
1556
 
1557
+ #: admin/class-settings.php:789
1558
  msgid "Sudan"
1559
  msgstr "Sudan"
1560
 
1561
+ #: admin/class-settings.php:790
1562
  msgid "Swaziland"
1563
  msgstr "Swaziland "
1564
 
1565
+ #: admin/class-settings.php:791
1566
  msgid "Sweden"
1567
  msgstr "Zweden"
1568
 
1569
+ #: admin/class-settings.php:792
1570
  msgid "Switzerland"
1571
  msgstr "Zwitserland"
1572
 
1573
+ #: admin/class-settings.php:793
1574
  msgid "Syria"
1575
  msgstr "Syrië"
1576
 
1577
+ #: admin/class-settings.php:794
1578
  msgid "São Tomé & Príncipe"
1579
  msgstr "São Tomé & Príncipe"
1580
 
1581
+ #: admin/class-settings.php:795
1582
  msgid "Taiwan"
1583
  msgstr "Taiwan"
1584
 
1585
+ #: admin/class-settings.php:796
1586
  msgid "Tajikistan"
1587
  msgstr "Tajikistan"
1588
 
1589
+ #: admin/class-settings.php:797
1590
  msgid "Tanzania"
1591
  msgstr "Tanzania"
1592
 
1593
+ #: admin/class-settings.php:798
1594
  msgid "Thailand"
1595
  msgstr "Thailand"
1596
 
1597
+ #: admin/class-settings.php:799
1598
  msgid "Timor-Leste"
1599
  msgstr "Oost-Timor"
1600
 
1601
+ #: admin/class-settings.php:800 admin/class-settings.php:802
1602
  msgid "Tokelau"
1603
  msgstr "Tokelau"
1604
 
1605
+ #: admin/class-settings.php:801
1606
  msgid "Togo"
1607
  msgstr "Togo"
1608
 
1609
+ #: admin/class-settings.php:803
1610
  msgid "Tonga"
1611
  msgstr "Tonga"
1612
 
1613
+ #: admin/class-settings.php:804
1614
  msgid "Trinidad and Tobago"
1615
  msgstr "Trinidad en Tobago"
1616
 
1617
+ #: admin/class-settings.php:805
1618
  msgid "Tristan da Cunha"
1619
  msgstr "Tristan da Cunha"
1620
 
1621
+ #: admin/class-settings.php:806
1622
  msgid "Tunisia"
1623
  msgstr "Tunesië"
1624
 
1625
+ #: admin/class-settings.php:807
1626
  msgid "Turkey"
1627
  msgstr "Turkije"
1628
 
1629
+ #: admin/class-settings.php:808
1630
  msgid "Turkmenistan"
1631
  msgstr "Turkmenistan"
1632
 
1633
+ #: admin/class-settings.php:809
1634
  msgid "Turks and Caicos Islands"
1635
  msgstr "Turks- en Caicos eilanden"
1636
 
1637
+ #: admin/class-settings.php:810
1638
  msgid "Tuvalu"
1639
  msgstr "Tuvalu"
1640
 
1641
+ #: admin/class-settings.php:811
1642
  msgid "Uganda"
1643
  msgstr "Uganda"
1644
 
1645
+ #: admin/class-settings.php:812
1646
  msgid "Ukraine"
1647
  msgstr "Oekraïne"
1648
 
1649
+ #: admin/class-settings.php:813
1650
  msgid "United Arab Emirates"
1651
  msgstr "Verenigde Arabische Emiraten"
1652
 
1653
+ #: admin/class-settings.php:814
1654
  msgid "United Kingdom"
1655
  msgstr "Verenigd Koninkrijk"
1656
 
1657
+ #: admin/class-settings.php:815
1658
  msgid "United States"
1659
  msgstr "Verenigde Staten"
1660
 
1661
+ #: admin/class-settings.php:816
1662
  msgid "Uruguay"
1663
  msgstr "Uruguay"
1664
 
1665
+ #: admin/class-settings.php:817
1666
  msgid "Uzbekistan"
1667
  msgstr "Uzbekistan"
1668
 
1669
+ #: admin/class-settings.php:818
1670
  msgid "Vanuatu"
1671
  msgstr "Vanuatu"
1672
 
1673
+ #: admin/class-settings.php:819
1674
  msgid "Vatican City"
1675
  msgstr "Vaticaanstad"
1676
 
1677
+ #: admin/class-settings.php:820
1678
  msgid "Venezuela"
1679
  msgstr "Venezuela"
1680
 
1681
+ #: admin/class-settings.php:821
1682
  msgid "Vietnam"
1683
  msgstr "Vietnam"
1684
 
1685
+ #: admin/class-settings.php:822
1686
  msgid "Wallis Futuna"
1687
  msgstr "Wallis en Futuna"
1688
 
1689
+ #: admin/class-settings.php:823
1690
  msgid "Western Sahara"
1691
  msgstr "Westelijke Sahara"
1692
 
1693
+ #: admin/class-settings.php:824
1694
  msgid "Yemen"
1695
  msgstr "Yemen"
1696
 
1697
+ #: admin/class-settings.php:825
1698
  msgid "Zambia"
1699
  msgstr "Zambia"
1700
 
1701
+ #: admin/class-settings.php:826
1702
  msgid "Zimbabwe"
1703
  msgstr "Zimbabwe"
1704
 
1705
+ #: admin/class-settings.php:827
1706
  msgid "Åland Islands"
1707
  msgstr "Åland Eiland"
1708
 
1709
+ #: admin/class-settings.php:870
1710
  msgid "World view"
1711
  msgstr "Wereldkaart"
1712
 
1713
+ #: admin/class-settings.php:873 admin/class-settings.php:987
1714
  #: inc/wpsl-functions.php:216
1715
  msgid "Default"
1716
  msgstr "Standaard"
1717
 
1718
+ #: admin/class-settings.php:876 inc/wpsl-functions.php:289
1719
  msgid "Roadmap"
1720
  msgstr "Wegenkaart"
1721
 
1722
+ #: admin/class-settings.php:1017
1723
  msgid "Start location marker"
1724
  msgstr "Start locatie marker"
1725
 
1726
+ #: admin/class-settings.php:1019
1727
  msgid "Store location marker"
1728
  msgstr "Winkel locatie marker"
1729
 
1730
+ #: admin/class-settings.php:1099
1731
  msgid "Textarea"
1732
  msgstr "Tekstvlak"
1733
 
1734
+ #: admin/class-settings.php:1100
1735
  msgid "Dropdowns (recommended)"
1736
  msgstr "Dropdown (aangeraden)"
1737
 
1738
+ #: admin/class-settings.php:1108
1739
  msgid "Bounces up and down"
1740
  msgstr "Beweegt op en neer"
1741
 
1742
+ #: admin/class-settings.php:1109
1743
  msgid "Will open the info window"
1744
  msgstr "Opent de info window"
1745
 
1746
+ #: admin/class-settings.php:1110
1747
  msgid "Does not respond"
1748
  msgstr "Reageert niet"
1749
 
1750
+ #: admin/class-settings.php:1118
1751
  msgid "In the store listings"
1752
  msgstr "In de locatie lijst"
1753
 
1754
+ #: admin/class-settings.php:1119
1755
  msgid "In the info window on the map"
1756
  msgstr "In de info window op de kaart"
1757
 
1758
+ #: admin/class-settings.php:1151 admin/class-shortcode-generator.php:263
1759
  msgid "Dropdown"
1760
  msgstr "Dropdown"
1761
 
1762
+ #: admin/class-settings.php:1152 admin/class-shortcode-generator.php:264
1763
  msgid "Checkboxes"
1764
  msgstr "Checkboxes"
1765
 
1766
+ #: admin/class-settings.php:1184
1767
  msgid "12 Hours"
1768
  msgstr "12 uur"
1769
 
1770
+ #: admin/class-settings.php:1185
1771
  msgid "24 Hours"
1772
  msgstr "24 uur"
1773
 
1776
  msgstr "WP Store Locator"
1777
 
1778
  #: admin/class-shortcode-generator.php:42
1779
+ #: admin/class-shortcode-generator.php:355
1780
  msgid "Insert Store Locator"
1781
  msgstr "Plaats de Store Locator"
1782
 
1784
  msgid "You do not have permission to perform this action"
1785
  msgstr "Je hebt geen toestemming om deze actie uit te voeren"
1786
 
1787
+ #: admin/class-shortcode-generator.php:233
1788
  msgid "General Options"
1789
  msgstr "Algemene instellingen"
1790
 
1791
+ #: admin/class-shortcode-generator.php:234 admin/templates/map-settings.php:372
1792
  msgid "Markers"
1793
  msgstr "Markers"
1794
 
1795
+ #: admin/class-shortcode-generator.php:240
1796
  msgid "Select the used template"
1797
  msgstr "Selecteer de gebruikte template"
1798
 
1799
+ #: admin/class-shortcode-generator.php:244 admin/templates/map-settings.php:203
1800
  msgid "Start point"
1801
  msgstr "Start locatie"
1802
 
1803
+ #: admin/class-shortcode-generator.php:244
1804
  #, php-format
1805
  msgid ""
1806
  "If nothing it set, then the start point from the %ssettings%s page is used."
1808
  "Als er niks is opgegeven, dan zal de start locatie van de %sinstellingen%s "
1809
  "pagina gebruikt worden."
1810
 
1811
+ #: admin/class-shortcode-generator.php:249 admin/templates/map-settings.php:189
1812
  msgid "Attempt to auto-locate the user"
1813
  msgstr "Probeer de locatie van de gebruiker automatische te achterhalen"
1814
 
1815
+ #: admin/class-shortcode-generator.php:249 admin/templates/map-settings.php:189
1816
  #, php-format
1817
  msgid ""
1818
  "Most modern browsers %srequire%s a HTTPS connection before the Geolocation "
1821
  "De meeste browsers %shebben%s een HTTPS verbindingen nodig om de geolocatie "
1822
  "optie te laten werken."
1823
 
1824
+ #: admin/class-shortcode-generator.php:259
1825
  msgid "Category filter type"
1826
  msgstr "Type categorie filter"
1827
 
1828
+ #: admin/class-shortcode-generator.php:262
1829
  msgid "None"
1830
  msgstr "Geen"
1831
 
1832
+ #: admin/class-shortcode-generator.php:269
1833
  msgid "Automatically restrict the returned results to one or more categories?"
1834
  msgstr "Beperk de zoekresultaten automatische tot één of meer categorieën?"
1835
 
1836
+ #: admin/class-shortcode-generator.php:285
1837
  msgid "Set a selected category?"
1838
  msgstr "Kies de geselecteerde categorie"
1839
 
1840
+ #: admin/class-shortcode-generator.php:290
1841
  msgid "Select category"
1842
  msgstr "Kies een categorie"
1843
 
1844
+ #: admin/class-shortcode-generator.php:306
1845
  msgid "Checkbox columns"
1846
  msgstr "Checkbox kolommen"
1847
 
1848
+ #: admin/class-shortcode-generator.php:325
1849
  msgid "Set selected checkboxes"
1850
  msgstr "Kies de geslecteerde checkboxes"
1851
 
1852
+ #: admin/class-shortcode-generator.php:341 admin/templates/map-settings.php:241
1853
  msgid "Map type"
1854
  msgstr "Kaart soort"
1855
 
1873
  msgid "Failed to load the add-on list from the server."
1874
  msgstr "De add-on lijst kon niet geladen worden van de server."
1875
 
1876
+ #: admin/templates/map-settings.php:13
1877
+ msgid "General"
1878
+ msgstr "Algemeen"
1879
+
1880
+ #: admin/templates/map-settings.php:18
1881
+ msgid "Licenses"
1882
+ msgstr "Licenties"
1883
+
1884
+ #: admin/templates/map-settings.php:49
1885
  msgid "Add-On"
1886
  msgstr "Uitbreiding"
1887
 
1888
+ #: admin/templates/map-settings.php:50
1889
  msgid "License Key"
1890
  msgstr "Licensie sleutel"
1891
 
1892
+ #: admin/templates/map-settings.php:51
1893
  msgid "License Expiry Date"
1894
  msgstr "Verloop datum licensie "
1895
 
1896
+ #: admin/templates/map-settings.php:65
1897
  msgid "Deactivate License"
1898
  msgstr "Deactiveer licensie"
1899
 
1900
+ #: admin/templates/map-settings.php:85 admin/templates/map-settings.php:124
1901
+ #: admin/templates/map-settings.php:176 admin/templates/map-settings.php:259
1902
+ #: admin/templates/map-settings.php:362 admin/templates/map-settings.php:390
1903
+ #: admin/templates/map-settings.php:440 admin/templates/map-settings.php:468
1904
+ #: admin/templates/map-settings.php:580 admin/templates/map-settings.php:605
1905
  msgid "Save Changes"
1906
  msgstr "Wijzigingen opslaan"
1907
 
1908
+ #: admin/templates/map-settings.php:97
1909
  msgid "Google Maps API"
1910
  msgstr "Google Maps API"
1911
 
1912
+ #: admin/templates/map-settings.php:100
1913
  msgid "Server key"
1914
  msgstr "Server sleutel"
1915
 
1916
+ #: admin/templates/map-settings.php:100
1917
  #, php-format
1918
  msgid ""
1919
  "A %sserver key%s allows you to monitor the usage of the Google Maps "
1924
  "%sGeocode API%s te bekijken. %s %sVerplicht%s voor %sapplicaties%s "
1925
  "aangemaakt na 22 juni, 2016."
1926
 
1927
+ #: admin/templates/map-settings.php:104
1928
  msgid "Browser key"
1929
  msgstr "Browser sleutel"
1930
 
1931
+ #: admin/templates/map-settings.php:104
1932
  #, php-format
1933
  msgid ""
1934
  "A %sbrowser key%s allows you to monitor the usage of the Google Maps "
1939
  "Google Maps %sJavaScript API%s. %s %sVerplicht%s voor %sapplicaties%s "
1940
  "aangemaakt na 22 juni, 2016."
1941
 
1942
+ #: admin/templates/map-settings.php:108
1943
  msgid "Map language"
1944
  msgstr "Kaart taal"
1945
 
1946
+ #: admin/templates/map-settings.php:108
1947
  msgid "If no map language is selected the browser's prefered language is used."
1948
  msgstr ""
1949
  "Als er geen kaart taal is geselecteerd, dan word de standaard browser taal "
1950
  "gebruikt."
1951
 
1952
+ #: admin/templates/map-settings.php:114
1953
  msgid "Map region"
1954
  msgstr "Kaart regio"
1955
 
1956
+ #: admin/templates/map-settings.php:114
1957
  #, php-format
1958
  msgid ""
1959
  "This will bias the %sgeocoding%s results towards the selected region. %s If "
1963
  "voorkeur krijgen over resultaten uit andere regio's . %s Als er geen regio "
1964
  "is geselecteerd dan gaat de voorkeur uit naar de Verenigde Staten."
1965
 
1966
+ #: admin/templates/map-settings.php:120
1967
  msgid "Restrict the geocoding results to the selected map region?"
1968
  msgstr "Limiteer de geocode resultaten tot de geselecteerde map regio?"
1969
 
1970
+ #: admin/templates/map-settings.php:120
1971
  #, php-format
1972
  msgid ""
1973
  "If the %sgeocoding%s API finds more relevant results outside of the set map "
1982
  "Om dit uit te sluiten kan je een restrictie plaatsen om dit te voorkomen. "
1983
  "%s Je kan de gebruikte restricties aanpassen met %sdeze%s filter."
1984
 
1985
+ #: admin/templates/map-settings.php:134 admin/templates/map-settings.php:504
1986
+ #: admin/templates/map-settings.php:505 frontend/templates/default.php:44
1987
  #: frontend/templates/store-listings-below.php:44 inc/wpsl-functions.php:133
1988
  msgid "Search"
1989
  msgstr "Zoek"
1990
 
1991
+ #: admin/templates/map-settings.php:137
1992
  msgid "Enable autocomplete?"
1993
  msgstr "Activeer autocomplete?"
1994
 
1995
+ #: admin/templates/map-settings.php:141
1996
  msgid "Show the max results dropdown?"
1997
  msgstr "Toon de max resultaten dropdown?"
1998
 
1999
+ #: admin/templates/map-settings.php:145
2000
  msgid "Show the search radius dropdown?"
2001
  msgstr "Toon de zoek radius dropdown?"
2002
 
2003
+ #: admin/templates/map-settings.php:149
2004
  msgid "Enable category filters?"
2005
  msgstr "Activeer de categorie filters?"
2006
 
2007
+ #: admin/templates/map-settings.php:154
2008
  msgid "Filter type:"
2009
  msgstr "Filter type:"
2010
 
2011
+ #: admin/templates/map-settings.php:159
2012
  msgid "Distance unit"
2013
  msgstr "Afstands eenheid"
2014
 
2015
+ #: admin/templates/map-settings.php:162
2016
  msgid "km"
2017
  msgstr "km"
2018
 
2019
+ #: admin/templates/map-settings.php:164
2020
  msgid "mi"
2021
  msgstr "mi"
2022
 
2023
+ #: admin/templates/map-settings.php:168
2024
  msgid "Max search results"
2025
  msgstr "Max zoek resultaten"
2026
 
2027
+ #: admin/templates/map-settings.php:168 admin/templates/map-settings.php:172
2028
  msgid "The default value is set between the [ ]."
2029
  msgstr "* De standaard waarde staat tussen de []."
2030
 
2031
+ #: admin/templates/map-settings.php:172
2032
  msgid "Search radius options"
2033
  msgstr "Zoek radius opties"
2034
 
2035
+ #: admin/templates/map-settings.php:186
2036
  msgid "Map"
2037
  msgstr "Kaart"
2038
 
2039
+ #: admin/templates/map-settings.php:193
2040
  msgid "Load locations on page load"
2041
  msgstr "Toon alle locaties op de kaart zodra de pagina geladen is"
2042
 
2043
+ #: admin/templates/map-settings.php:198
2044
  msgid "Number of locations to show"
2045
  msgstr "Aantal getoonde locaties"
2046
 
2047
+ #: admin/templates/map-settings.php:198
2048
  #, php-format
2049
  msgid ""
2050
  "Although the location data is cached after the first load, a lower number "
2057
  "Als het veld leeg blijft of er wordt 0 ingevuld, dan worden alle locaties "
2058
  "geladen."
2059
 
2060
+ #: admin/templates/map-settings.php:203
2061
  #, php-format
2062
  msgid ""
2063
  "%sRequired field.%s %s If auto-locating the user is disabled or fails, the "
2068
  "locatie is uitgeschakeld of mislukt, dan wordt het middelpunt van de "
2069
  "opgegeven locatie als begin punt gebruikt."
2070
 
2071
+ #: admin/templates/map-settings.php:208
2072
  msgid "Auto adjust the zoom level to make sure all markers are visible?"
2073
  msgstr ""
2074
  "Zoom de kaart automatische in om te zorgen dat alle markers zichtbaar zijn?"
2075
 
2076
+ #: admin/templates/map-settings.php:208
2077
  msgid ""
2078
  "This runs after a search is made, and makes sure all the returned locations "
2079
  "are visible in the viewport."
2081
  "Dit wordt uitgevoerd nadat een zoekopdracht is gemaakt, en zorgt ervoor dat "
2082
  "alle geretourneerde locaties zichtbaar zijn in de viewport."
2083
 
2084
+ #: admin/templates/map-settings.php:212
2085
  msgid "Initial zoom level"
2086
  msgstr "Start zoom niveau"
2087
 
2088
+ #: admin/templates/map-settings.php:216
2089
  msgid "Max auto zoom level"
2090
  msgstr "Max zoom niveau"
2091
 
2092
+ #: admin/templates/map-settings.php:216
2093
  #, php-format
2094
  msgid ""
2095
  "This value sets the zoom level for the \"Zoom here\" link in the info "
2101
  "limiteren als de viewport van de kaart verandert, wanneer geprobeerd wordt "
2102
  "om alle markers op het scherm te laten passen."
2103
 
2104
+ #: admin/templates/map-settings.php:220
2105
  msgid "Show the street view controls?"
2106
  msgstr "Toon de street view controls?"
2107
 
2108
+ #: admin/templates/map-settings.php:224
2109
  msgid "Show the map type control?"
2110
  msgstr "Toon de kaart type controls?"
2111
 
2112
+ #: admin/templates/map-settings.php:228
2113
  msgid "Enable scroll wheel zooming?"
2114
  msgstr "Activeer het inzoomen met je scrollwheel?"
2115
 
2116
+ #: admin/templates/map-settings.php:232
2117
  msgid "Zoom control position"
2118
  msgstr "Zoom bediening positie"
2119
 
2120
+ #: admin/templates/map-settings.php:235
2121
  msgid "Left"
2122
  msgstr "Links"
2123
 
2124
+ #: admin/templates/map-settings.php:237
2125
  msgid "Right"
2126
  msgstr "Rechts"
2127
 
2128
+ #: admin/templates/map-settings.php:245
2129
  msgid "Map style"
2130
  msgstr "Kaart stijl"
2131
 
2132
+ #: admin/templates/map-settings.php:245
2133
  msgid ""
2134
  "Custom map styles only work if the map type is set to \"Roadmap\" or "
2135
  "\"Terrain\"."
2137
  "Custom map stijlen werken alleen maar als de kaart soort op \"Wegenkaart\" "
2138
  "of \"Terrein\" is gezet."
2139
 
2140
+ #: admin/templates/map-settings.php:248
2141
  #, php-format
2142
  msgid ""
2143
  "You can use existing map styles from %sSnazzy Maps%s or %sMap Stylr%s and "
2148
  "en in het onderstaande tekstvlak plaatsen. Of je kunt de map stijl genereren "
2149
  "via de %sMap Style Editor%s of de %sStyled Maps Wizard%s."
2150
 
2151
+ #: admin/templates/map-settings.php:249
2152
  #, php-format
2153
  msgid ""
2154
  "If you like to write the style code yourself, then you can find the "
2157
  "Als je zelf de stijl code wil schrijven dan kun je de documentatie %shier%s "
2158
  "vinden."
2159
 
2160
+ #: admin/templates/map-settings.php:251
2161
  msgid "Preview Map Style"
2162
  msgstr "Map stijl voorbeeld"
2163
 
2164
+ #: admin/templates/map-settings.php:255
2165
  msgid "Show credits?"
2166
  msgstr "Toon credits?"
2167
 
2168
+ #: admin/templates/map-settings.php:255
2169
  msgid ""
2170
  "This will place a \"Search provided by WP Store Locator\" backlink below the "
2171
  "map."
2172
  msgstr ""
2173
  "Dit plaatst een \"Ondersteund door WP Store Locator\" link onder de kaart."
2174
 
2175
+ #: admin/templates/map-settings.php:269
2176
  msgid "User Experience"
2177
  msgstr "Gebruikers ervaring"
2178
 
2179
+ #: admin/templates/map-settings.php:272
2180
  msgid "Store Locator height"
2181
  msgstr "Store Locator hoogte"
2182
 
2183
+ #: admin/templates/map-settings.php:276
2184
  msgid "Max width for the info window content"
2185
  msgstr "Max breedte voor de info window inhoud"
2186
 
2187
+ #: admin/templates/map-settings.php:280
2188
  msgid "Search field width"
2189
  msgstr "Zoekveld breedte"
2190
 
2191
+ #: admin/templates/map-settings.php:284
2192
  msgid "Search and radius label width"
2193
  msgstr "Zoek en radius label breedte"
2194
 
2195
+ #: admin/templates/map-settings.php:288
2196
  msgid "Store Locator template"
2197
  msgstr "Store locator template"
2198
 
2199
+ #: admin/templates/map-settings.php:288
2200
  #, php-format
2201
  msgid ""
2202
  "The selected template is used with the [wpsl] shortcode. %s You can add a "
2205
  "De geselecteerde template wordt gebruikt bij de [wpsl] shortcode. %s Je kunt "
2206
  "een custom template gebruiken met behulp van de %swpsl_templates%s filter."
2207
 
2208
+ #: admin/templates/map-settings.php:292
2209
  msgid "Hide the scrollbar?"
2210
  msgstr "Verberg de scrollbar?"
2211
 
2212
+ #: admin/templates/map-settings.php:296
2213
  msgid "Open links in a new window?"
2214
  msgstr "Open links in een nieuw venster?"
2215
 
2216
+ #: admin/templates/map-settings.php:300
2217
  msgid "Show a reset map button?"
2218
  msgstr "Toon een knop om de kaart te resetten?"
2219
 
2220
+ #: admin/templates/map-settings.php:304
2221
  msgid ""
2222
  "When a user clicks on \"Directions\", open a new window, and show the route "
2223
  "on google.com/maps ?"
2225
  "Zodra een gebruiker op \"Route\" klikt, open een nieuwe venster en toon de "
2226
  "route op google.com/maps?"
2227
 
2228
+ #: admin/templates/map-settings.php:308
2229
  msgid "Show a \"More info\" link in the store listings?"
2230
  msgstr "Toon een \"Meer info\" link in de locatie lijst?"
2231
 
2232
+ #: admin/templates/map-settings.php:308
2233
  msgid ""
2234
  "This places a \"More Info\" link below the address and will show the phone, "
2235
  "fax, email, opening hours and description once the link is clicked."
2238
  "klikt dan wordt het telefoon / fax nummer, email, openings tijden en "
2239
  "omschrijving getoond."
2240
 
2241
+ #: admin/templates/map-settings.php:313
2242
  msgid "Where do you want to show the \"More info\" details?"
2243
  msgstr "Waar wil je de \"Meer info\" details tonen?"
2244
 
2245
+ #: admin/templates/map-settings.php:318
2246
  msgid ""
2247
  "Always show the contact details below the address in the search results?"
2248
  msgstr "Toon altijd de contact gegevens onder het adres in de zoek resultaten?"
2249
 
2250
+ #: admin/templates/map-settings.php:322
2251
  msgid "Make the store name clickable if a store URL exists?"
2252
  msgstr "Als een winkel url bestaat, maak de winkel naam dan klikbaar?"
2253
 
2254
+ #: admin/templates/map-settings.php:322
2255
  #, php-format
2256
  msgid ""
2257
  "If %spermalinks%s are enabled, the store name will always link to the store "
2260
  "Als de %spermalinks%s zijn ingeschakeld dan zal de winkel naam altijd linken "
2261
  "naar de winkel pagina."
2262
 
2263
+ #: admin/templates/map-settings.php:326
2264
  msgid "Make the phone number clickable on mobile devices?"
2265
  msgstr "Maak het telefoonnummer klikbaar op mobiele apparaten?"
2266
 
2267
+ #: admin/templates/map-settings.php:330
2268
  msgid ""
2269
  "If street view is available for the current location, then show a \"Street "
2270
  "view\" link in the info window?"
2272
  "Als voor de huidge locatie street view beschikbaar is, toon dan een \"Street "
2273
  "view\" link om vanuit de info window?"
2274
 
2275
+ #: admin/templates/map-settings.php:330
2276
  #, php-format
2277
  msgid ""
2278
  "Enabling this option can sometimes result in a small delay in the opening of "
2284
  "er een verzoek naar de Google Maps API word gemaakt om te controleren ofdat "
2285
  "street view wel beschikbaar is voor de huidige locatie."
2286
 
2287
+ #: admin/templates/map-settings.php:334
2288
  msgid "Show a \"Zoom here\" link in the info window?"
2289
  msgstr "Toon een \"zoom hier\" link in de info window?"
2290
 
2291
+ #: admin/templates/map-settings.php:334
2292
  #, php-format
2293
  msgid ""
2294
  "Clicking this link will make the map zoom in to the %s max auto zoom level "
2297
  "Als er op deze link geklikt word dan zoomt de kaart in totdat de %s max auto "
2298
  "zoom level %s bereikt is."
2299
 
2300
+ #: admin/templates/map-settings.php:338
2301
  msgid "On page load move the mouse cursor to the search field?"
2302
  msgstr ""
2303
  "Als de pagina wordt geladen, verplaats de muiscursor dan naar het invulveld?"
2304
 
2305
+ #: admin/templates/map-settings.php:338
2306
  #, php-format
2307
  msgid ""
2308
  "If the store locator is not placed at the top of the page, enabling this "
2313
  "instelling ervoor zorgen dat de pagina naar benenden schuift tijden het "
2314
  "laden. %s %sDeze optie staat uit op mobiele apparaten.%s"
2315
 
2316
+ #: admin/templates/map-settings.php:342
2317
  msgid "Use the default style for the info window?"
2318
  msgstr "Gebruik de standaard style voor de info window?"
2319
 
2320
+ #: admin/templates/map-settings.php:342
2321
  #, php-format
2322
  msgid ""
2323
  "If the default style is disabled the %sInfoBox%s library will be used "
2328
  "gebruikt. %s Dit script maakt het mogelijk om makkelijk het ontwerp te "
2329
  "wijzigen met behulp van de .wpsl-infobox css class."
2330
 
2331
+ #: admin/templates/map-settings.php:346
2332
  msgid "Hide the country in the search results?"
2333
  msgstr "Verberg het land in de zoekresultaten?"
2334
 
2335
+ #: admin/templates/map-settings.php:350
2336
  msgid "Hide the distance in the search results?"
2337
  msgstr "Verberg de afstand in de zoek resultaten?"
2338
 
2339
+ #: admin/templates/map-settings.php:354
2340
  msgid "If a user hovers over the search results the store marker"
2341
  msgstr ""
2342
  "Als een gebruiker over de zoekresultaten beweegt met zijn muis de "
2343
  "bijbehorende marker"
2344
 
2345
+ #: admin/templates/map-settings.php:354
2346
  #, php-format
2347
  msgid ""
2348
  "If marker clusters are enabled this option will not work as expected as long "
2357
  "de marker cluster wordt omgezet naar losse markers. %s De info window wordt "
2358
  "wel geopend, maar het is niet duidelijk bij welke marker het hoort."
2359
 
2360
+ #: admin/templates/map-settings.php:358
2361
  msgid "Address format"
2362
  msgstr "Adres formaat"
2363
 
2364
+ #: admin/templates/map-settings.php:358
2365
  #, php-format
2366
  msgid ""
2367
  "You can add custom address formats with the %swpsl_address_formats%s filter."
2369
  "Je kunt een nieuwe adres formaat toevoegen met de %swpsl_address_formats%s "
2370
  "filter."
2371
 
2372
+ #: admin/templates/map-settings.php:376
2373
  msgid "Enable marker clusters?"
2374
  msgstr "Activeer marker clusters?"
2375
 
2376
+ #: admin/templates/map-settings.php:376
2377
  msgid "Recommended for maps with a large amount of markers."
2378
  msgstr "Aan te raden voor kaarten met grote hoeveelheden markers."
2379
 
2380
+ #: admin/templates/map-settings.php:381
2381
  msgid "Max zoom level"
2382
  msgstr "Max zoom niveau"
2383
 
2384
+ #: admin/templates/map-settings.php:381
2385
  msgid ""
2386
  "If this zoom level is reached or exceeded, then all markers are moved out of "
2387
  "the marker cluster and shown as individual markers."
2389
  "Als dit zoom niveau bereikt is of gepasseerd, dan worden alle markers uit de "
2390
  "marker cluster gehaald en als losse markers getoond."
2391
 
2392
+ #: admin/templates/map-settings.php:385
2393
  msgid "Cluster size"
2394
  msgstr "Cluster grote"
2395
 
2396
+ #: admin/templates/map-settings.php:385
2397
  #, php-format
2398
  msgid ""
2399
  "The grid size of a cluster in pixels. %s A larger number will result in a "
2403
  "voor dat er minder clusters zichtbaar zijn en het algoritme dus ook sneller "
2404
  "klaar is."
2405
 
2406
+ #: admin/templates/map-settings.php:400
2407
  msgid "Store Editor"
2408
  msgstr "Winkel editor"
2409
 
2410
+ #: admin/templates/map-settings.php:403
2411
  msgid "Default country"
2412
  msgstr "Standaard land"
2413
 
2414
+ #: admin/templates/map-settings.php:407
2415
  msgid "Map type for the location preview"
2416
  msgstr "Kaart type voor het lokatie voorbeeld"
2417
 
2418
+ #: admin/templates/map-settings.php:411
2419
  msgid "Hide the opening hours?"
2420
  msgstr "Verberg de openingstijden?"
2421
 
2422
+ #: admin/templates/map-settings.php:417
2423
  msgid "Opening hours input type"
2424
  msgstr "Openingstijden formaat"
2425
 
2426
+ #: admin/templates/map-settings.php:421
2427
  #, php-format
2428
  msgid ""
2429
  "Opening hours created in version 1.x %sare not%s automatically converted to "
2432
  "De openingstijden die zijn aangemaakt in versie 1.x %sworden niet%s "
2433
  "automatische omgezet naar het dropdown formaat."
2434
 
2435
+ #: admin/templates/map-settings.php:424 admin/templates/map-settings.php:433
2436
  msgid "The default opening hours"
2437
  msgstr "De standaard openingstijden"
2438
 
2439
+ #: admin/templates/map-settings.php:430
2440
  msgid "Opening hours format"
2441
  msgstr "Openingstijden formaat"
2442
 
2443
+ #: admin/templates/map-settings.php:437
2444
  msgid ""
2445
  "The default country and opening hours are only used when a new store is "
2446
  "created. So changing the default values will have no effect on existing "
2450
  "gebruikt als een nieuwe locatie wordt aangemaakt. Het wijzigen van deze "
2451
  "waardes heeft dus geen enkele invloed op de bestaande locaties."
2452
 
2453
+ #: admin/templates/map-settings.php:450
2454
  msgid "Permalink"
2455
  msgstr "Permalink"
2456
 
2457
+ #: admin/templates/map-settings.php:453
2458
  msgid "Enable permalink?"
2459
  msgstr "Activeer permalink?"
2460
 
2461
+ #: admin/templates/map-settings.php:458
2462
  msgid "Store slug"
2463
  msgstr "Winkel slug"
2464
 
2465
+ #: admin/templates/map-settings.php:462
2466
  msgid "Category slug"
2467
  msgstr "Categorie slug"
2468
 
2469
+ #: admin/templates/map-settings.php:465
2470
  #, php-format
2471
  msgid "The permalink slugs %smust be unique%s on your site."
2472
  msgstr "De permalink slug %smoet uniek%s zijn op je site."
2473
 
2474
+ #: admin/templates/map-settings.php:478
2475
  msgid "Labels"
2476
  msgstr "Labels"
2477
 
2478
+ #: admin/templates/map-settings.php:487
2479
  #, php-format
2480
  msgid "%sWarning!%s %sWPML%s, or a plugin using the WPML API is active."
2481
  msgstr ""
2482
  "%sWaarschuwing!%s %sWPML%s, of een plugin die de WPML API gebruikt is "
2483
  "actief."
2484
 
2485
+ #: admin/templates/map-settings.php:488
2486
  msgid ""
2487
  "Please use the \"String Translations\" section in the used multilingual "
2488
  "plugin to change the labels. Changing them here will have no effect as long "
2492
  "labels te wijzigen. Wijzigingen die in dit gedeelte worden aangebracht "
2493
  "hebben geen effect zolang de vertaal plugin actief is."
2494
 
2495
+ #: admin/templates/map-settings.php:492 admin/templates/map-settings.php:493
2496
  #: frontend/templates/default.php:12
2497
  #: frontend/templates/store-listings-below.php:12 inc/wpsl-functions.php:132
2498
  msgid "Your location"
2499
  msgstr "Uw locatie"
2500
 
2501
+ #: admin/templates/map-settings.php:496 admin/templates/map-settings.php:497
2502
  #: frontend/templates/default.php:21
2503
  #: frontend/templates/store-listings-below.php:21 inc/wpsl-functions.php:135
2504
  msgid "Search radius"
2505
  msgstr "Zoek radius"
2506
 
2507
+ #: admin/templates/map-settings.php:500 admin/templates/map-settings.php:501
2508
+ #: frontend/class-frontend.php:1776 inc/wpsl-functions.php:136
2509
  msgid "No results found"
2510
  msgstr "Geen resultaten gevonden"
2511
 
2512
+ #: admin/templates/map-settings.php:508
2513
  msgid "Searching (preloader text)"
2514
  msgstr "Aan het zoeken (preloader tekst)"
2515
 
2516
+ #: admin/templates/map-settings.php:509 frontend/class-frontend.php:1775
2517
  #: inc/wpsl-functions.php:134
2518
  msgid "Searching..."
2519
  msgstr "Zoeken..."
2520
 
2521
+ #: admin/templates/map-settings.php:512 admin/templates/map-settings.php:513
2522
  #: frontend/templates/default.php:30
2523
  #: frontend/templates/store-listings-below.php:30 inc/wpsl-functions.php:137
2524
  msgid "Results"
2525
  msgstr "Resultaten"
2526
 
2527
+ #: admin/templates/map-settings.php:516 admin/upgrade.php:206
2528
  #: inc/wpsl-functions.php:151
2529
  msgid "Category filter"
2530
  msgstr "Categorie filter"
2531
 
2532
+ #: admin/templates/map-settings.php:517 frontend/class-frontend.php:1370
2533
  msgid "Category"
2534
  msgstr "Categorie"
2535
 
2536
+ #: admin/templates/map-settings.php:520
2537
  msgid "Category first item"
2538
  msgstr "Eerste categorie item"
2539
 
2540
+ #: admin/templates/map-settings.php:521 admin/upgrade.php:367
2541
+ #: frontend/class-frontend.php:1373 inc/wpsl-functions.php:152
2542
  msgid "Any"
2543
  msgstr "Alle"
2544
 
2545
+ #: admin/templates/map-settings.php:524 admin/templates/map-settings.php:525
2546
+ #: admin/upgrade.php:59 frontend/class-frontend.php:1777
2547
  #: frontend/underscore-functions.php:138 frontend/underscore-functions.php:168
2548
  #: inc/wpsl-functions.php:138
2549
  msgid "More info"
2550
  msgstr "Meer info"
2551
 
2552
+ #: admin/templates/map-settings.php:528 admin/templates/map-settings.php:529
2553
+ #: frontend/class-frontend.php:813 frontend/underscore-functions.php:29
2554
  #: frontend/underscore-functions.php:65 frontend/underscore-functions.php:147
2555
  #: inc/wpsl-functions.php:146
2556
  msgid "Phone"
2557
  msgstr "Telefoon"
2558
 
2559
+ #: admin/templates/map-settings.php:548 admin/templates/map-settings.php:549
2560
+ #: frontend/class-frontend.php:1782 inc/wpsl-functions.php:131
2561
  msgid "Start location"
2562
  msgstr "Start locatie"
2563
 
2564
+ #: admin/templates/map-settings.php:552
2565
  msgid "Get directions"
2566
  msgstr "Toon routebeschrijving"
2567
 
2568
+ #: admin/templates/map-settings.php:553 frontend/class-frontend.php:1780
2569
  #: inc/wpsl-functions.php:139
2570
  msgid "Directions"
2571
  msgstr "Routebeschrijving"
2572
 
2573
+ #: admin/templates/map-settings.php:556
2574
  msgid "No directions found"
2575
  msgstr "Geen routebeschrijving beschikbaar"
2576
 
2577
+ #: admin/templates/map-settings.php:557 admin/upgrade.php:151
2578
+ #: frontend/class-frontend.php:1781 inc/wpsl-functions.php:140
2579
  msgid "No route could be found between the origin and destination"
2580
  msgstr "Er kon geen route gevonden worden tussen het begin- en eindpunt"
2581
 
2582
+ #: admin/templates/map-settings.php:560 admin/templates/map-settings.php:561
2583
+ #: admin/upgrade.php:77 frontend/class-frontend.php:1783
2584
  #: inc/wpsl-functions.php:141
2585
  msgid "Back"
2586
  msgstr "Terug"
2587
 
2588
+ #: admin/templates/map-settings.php:564 admin/templates/map-settings.php:565
2589
+ #: admin/upgrade.php:143 frontend/class-frontend.php:1784
2590
  #: inc/wpsl-functions.php:142
2591
  msgid "Street view"
2592
  msgstr "Street view"
2593
 
2594
+ #: admin/templates/map-settings.php:568 admin/templates/map-settings.php:569
2595
+ #: admin/upgrade.php:147 frontend/class-frontend.php:1785
2596
  #: inc/wpsl-functions.php:143
2597
  msgid "Zoom here"
2598
  msgstr "Zoom hier"
2599
 
2600
+ #: admin/templates/map-settings.php:572
2601
  msgid "General error"
2602
  msgstr "Foutmelding"
2603
 
2604
+ #: admin/templates/map-settings.php:573 frontend/class-frontend.php:1778
2605
  #: inc/wpsl-functions.php:144
2606
  msgid "Something went wrong, please try again!"
2607
  msgstr "Er ging iets fout, probeer het nog een keer!"
2608
 
2609
+ #: admin/templates/map-settings.php:576
2610
  msgid "Query limit error"
2611
  msgstr "Query limit foutmelding"
2612
 
2613
+ #: admin/templates/map-settings.php:576
2614
  #, php-format
2615
  msgid ""
2616
  "You can raise the %susage limit%s by obtaining an API %skey%s, and fill in "
2619
  "Je kan de %sgebruiks limiet%s verhogen door een API %ssleutel%s aan te "
2620
  "vragen en die in het \"API sleutel\" veld bovenaan de pagina in te vullen."
2621
 
2622
+ #: admin/templates/map-settings.php:577 frontend/class-frontend.php:1779
2623
  #: inc/wpsl-functions.php:145
2624
  msgid "API usage limit reached"
2625
  msgstr "API gebruikslimiet bereikt"
2626
 
2627
+ #: admin/templates/map-settings.php:590
2628
  msgid "Tools"
2629
  msgstr "Tools"
2630
 
2631
+ #: admin/templates/map-settings.php:593
2632
  msgid "Enable store locator debug?"
2633
  msgstr "Activeer store locator debug?"
2634
 
2635
+ #: admin/templates/map-settings.php:593
2636
  #, php-format
2637
  msgid ""
2638
  "This disables the WPSL transient cache. %sThe transient cache is only used "
2642
  "alleen gebruikt als de %sToon alle locaties op de kaart zodra de pagina "
2643
  "geladen is%s optie is geactiveerd."
2644
 
2645
+ #: admin/templates/map-settings.php:597
2646
  msgid "Enable compatibility mode?"
2647
  msgstr "Activeer de compatibiliteitsmodus?"
2648
 
2649
+ #: admin/templates/map-settings.php:597
2650
  #, php-format
2651
  msgid ""
2652
  "If the %sbrowser console%s shows the error below, then enabling this option "
2660
  "%s Deze foutmelding kan er in sommige situations voor zorgen dat de store "
2661
  "locator kaart niet goed functioneerd."
2662
 
2663
+ #: admin/templates/map-settings.php:601
2664
  msgid "WPSL transients"
2665
  msgstr "WPSL transients"
2666
 
2667
+ #: admin/templates/map-settings.php:602
2668
  msgid "Clear store locator transient cache"
2669
  msgstr "Verwijder het store locator transient cache."
2670
 
2728
  "Alle winkel locaties zijn nu omgezet naar custom post types. %s Je kunt ze "
2729
  "bekijken op de %sAlle Winkels%s pagina."
2730
 
2731
+ #: frontend/class-frontend.php:750
2732
  msgid ""
2733
  "If you use the [wpsl_address] shortcode outside a store page you need to set "
2734
  "the ID attribute."
2736
  "Als je de [wpsl_address] shortcode op een pagina gebruikt die geen winkel "
2737
  "pagina is dan is de ID attribute verplicht."
2738
 
2739
+ #: frontend/class-frontend.php:864
2740
  msgid ""
2741
  "If you use the [wpsl_hours] shortcode outside a store page you need to set "
2742
  "the ID attribute."
2744
  "Als je de [wpsl_hours] shortcode op een pagina gebruikt die geen winkel "
2745
  "pagina is dan is de ID attribute verplicht."
2746
 
2747
+ #: frontend/class-frontend.php:912
2748
  msgid ""
2749
  "If you use the [wpsl_map] shortcode outside a store page, then you need to "
2750
  "set the ID or category attribute."
2752
  "Als de [wpsl_map] shortcode buiten een winkel page is geplaatst, dan moet je "
2753
  "de ID of category attribute opgeven."
2754
 
2755
+ #: frontend/class-frontend.php:1571
2756
  msgid "The application does not have permission to use the Geolocation API."
2757
  msgstr ""
2758
  "Deze applicatie heeft geen toestemming om de Geolocation API te gebruiken."
2759
 
2760
+ #: frontend/class-frontend.php:1572
2761
  msgid "Location information is unavailable."
2762
  msgstr "Informatie over de huidige locatie is niet beschikbaar."
2763
 
2764
+ #: frontend/class-frontend.php:1573
2765
  msgid "The geolocation request timed out."
2766
  msgstr "Het geolocation verzoek timed out."
2767
 
2768
+ #: frontend/class-frontend.php:1574
2769
  msgid "An unknown error occurred."
2770
  msgstr " Er heeft zich een onbekende fout voorgedaan."
2771
 
languages/wpsl.pot CHANGED
@@ -1,9 +1,9 @@
1
  #, fuzzy
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: WP Store Locator v2.2.10\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2017-11-30 18:43+0700\n"
7
  "PO-Revision-Date: 2015-09-01 13:49+0100\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -40,12 +40,12 @@ msgid "Security check failed. Please reload the page and try again."
40
  msgstr ""
41
 
42
  #: admin/class-admin.php:175 admin/class-admin.php:176
43
- #: admin/class-admin.php:468 admin/templates/map-settings.php:11
44
  msgid "Settings"
45
  msgstr ""
46
 
47
  #: admin/class-admin.php:182 admin/class-admin.php:183
48
- #: admin/class-admin.php:488
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:299 admin/class-metaboxes.php:525
73
- #: frontend/class-frontend.php:561
74
  msgid "Closed"
75
  msgstr ""
76
 
@@ -89,19 +89,19 @@ msgstr ""
89
  msgid "Dismiss this notice."
90
  msgstr ""
91
 
92
- #: admin/class-admin.php:423
93
  msgid "Welcome to WP Store Locator"
94
  msgstr ""
95
 
96
- #: admin/class-admin.php:424
97
  msgid "Sign up for the latest plugin updates and announcements."
98
  msgstr ""
99
 
100
- #: admin/class-admin.php:487
101
  msgid "Documentation"
102
  msgstr ""
103
 
104
- #: admin/class-admin.php:510
105
  #, php-format
106
  msgid "If you like this plugin please leave us a %s5 star%s rating."
107
  msgstr ""
@@ -264,8 +264,8 @@ msgstr ""
264
  msgid "Opening Hours"
265
  msgstr ""
266
 
267
- #: admin/class-metaboxes.php:82 admin/templates/map-settings.php:539
268
- #: admin/templates/map-settings.php:540 frontend/underscore-functions.php:160
269
  #: inc/wpsl-functions.php:150
270
  msgid "Hours"
271
  msgstr ""
@@ -278,24 +278,24 @@ msgstr ""
278
  msgid "Tel"
279
  msgstr ""
280
 
281
- #: admin/class-metaboxes.php:91 admin/templates/map-settings.php:527
282
- #: admin/templates/map-settings.php:528 frontend/class-frontend.php:825
283
  #: frontend/underscore-functions.php:32 frontend/underscore-functions.php:68
284
  #: frontend/underscore-functions.php:150 inc/wpsl-functions.php:147
285
  msgid "Fax"
286
  msgstr ""
287
 
288
- #: admin/class-metaboxes.php:94 admin/templates/map-settings.php:531
289
- #: admin/templates/map-settings.php:532 admin/upgrade.php:198
290
- #: frontend/class-frontend.php:829 frontend/underscore-functions.php:35
291
  #: frontend/underscore-functions.php:71 frontend/underscore-functions.php:153
292
  #: inc/wpsl-functions.php:148
293
  msgid "Email"
294
  msgstr ""
295
 
296
- #: admin/class-metaboxes.php:97 admin/templates/map-settings.php:535
297
- #: admin/templates/map-settings.php:536 admin/upgrade.php:202
298
- #: frontend/class-frontend.php:834 inc/wpsl-functions.php:149
299
  msgid "Url"
300
  msgstr ""
301
 
@@ -1684,11 +1684,11 @@ msgstr ""
1684
  msgid "In the info window on the map"
1685
  msgstr ""
1686
 
1687
- #: admin/class-settings.php:1144 admin/class-shortcode-generator.php:115
1688
  msgid "Dropdown"
1689
  msgstr ""
1690
 
1691
- #: admin/class-settings.php:1145 admin/class-shortcode-generator.php:116
1692
  msgid "Checkboxes"
1693
  msgstr ""
1694
 
@@ -1705,7 +1705,7 @@ msgid "WP Store Locator"
1705
  msgstr ""
1706
 
1707
  #: admin/class-shortcode-generator.php:42
1708
- #: admin/class-shortcode-generator.php:212
1709
  msgid "Insert Store Locator"
1710
  msgstr ""
1711
 
@@ -1717,68 +1717,68 @@ msgstr ""
1717
  msgid "Error"
1718
  msgstr ""
1719
 
1720
- #: admin/class-shortcode-generator.php:90
1721
  msgid "General Options"
1722
  msgstr ""
1723
 
1724
- #: admin/class-shortcode-generator.php:91 admin/templates/map-settings.php:367
1725
  msgid "Markers"
1726
  msgstr ""
1727
 
1728
- #: admin/class-shortcode-generator.php:97
1729
  msgid "Select the used template"
1730
  msgstr ""
1731
 
1732
- #: admin/class-shortcode-generator.php:101 admin/templates/map-settings.php:198
1733
  msgid "Start point"
1734
  msgstr ""
1735
 
1736
- #: admin/class-shortcode-generator.php:101
1737
  #, php-format
1738
  msgid ""
1739
  "If nothing it set, then the start point from the %ssettings%s page is used."
1740
  msgstr ""
1741
 
1742
- #: admin/class-shortcode-generator.php:106 admin/templates/map-settings.php:184
1743
  msgid "Attempt to auto-locate the user"
1744
  msgstr ""
1745
 
1746
- #: admin/class-shortcode-generator.php:106 admin/templates/map-settings.php:184
1747
  #, php-format
1748
  msgid ""
1749
  "Most modern browsers %srequire%s a HTTPS connection before the Geolocation "
1750
  "feature works."
1751
  msgstr ""
1752
 
1753
- #: admin/class-shortcode-generator.php:111
1754
  msgid "Category filter type"
1755
  msgstr ""
1756
 
1757
- #: admin/class-shortcode-generator.php:114
1758
  msgid "None"
1759
  msgstr ""
1760
 
1761
- #: admin/class-shortcode-generator.php:126
1762
  msgid "Automatically restrict the returned results to one or more categories?"
1763
  msgstr ""
1764
 
1765
- #: admin/class-shortcode-generator.php:142
1766
  msgid "Set a selected category?"
1767
  msgstr ""
1768
 
1769
- #: admin/class-shortcode-generator.php:147
1770
  msgid "Select category"
1771
  msgstr ""
1772
 
1773
- #: admin/class-shortcode-generator.php:163
1774
  msgid "Checkbox columns"
1775
  msgstr ""
1776
 
1777
- #: admin/class-shortcode-generator.php:182
1778
  msgid "Set selected checkboxes"
1779
  msgstr ""
1780
 
1781
- #: admin/class-shortcode-generator.php:198 admin/templates/map-settings.php:236
1782
  msgid "Map type"
1783
  msgstr ""
1784
 
@@ -1802,39 +1802,47 @@ msgstr ""
1802
  msgid "Failed to load the add-on list from the server."
1803
  msgstr ""
1804
 
1805
- #: admin/templates/map-settings.php:44
 
 
 
 
 
 
 
 
1806
  msgid "Add-On"
1807
  msgstr ""
1808
 
1809
- #: admin/templates/map-settings.php:45
1810
  msgid "License Key"
1811
  msgstr ""
1812
 
1813
- #: admin/templates/map-settings.php:46
1814
  msgid "License Expiry Date"
1815
  msgstr ""
1816
 
1817
- #: admin/templates/map-settings.php:60
1818
  msgid "Deactivate License"
1819
  msgstr ""
1820
 
1821
- #: admin/templates/map-settings.php:80 admin/templates/map-settings.php:119
1822
- #: admin/templates/map-settings.php:171 admin/templates/map-settings.php:254
1823
- #: admin/templates/map-settings.php:357 admin/templates/map-settings.php:385
1824
- #: admin/templates/map-settings.php:435 admin/templates/map-settings.php:463
1825
- #: admin/templates/map-settings.php:575 admin/templates/map-settings.php:600
1826
  msgid "Save Changes"
1827
  msgstr ""
1828
 
1829
- #: admin/templates/map-settings.php:92
1830
  msgid "Google Maps API"
1831
  msgstr ""
1832
 
1833
- #: admin/templates/map-settings.php:95
1834
  msgid "Server key"
1835
  msgstr ""
1836
 
1837
- #: admin/templates/map-settings.php:95
1838
  #, php-format
1839
  msgid ""
1840
  "A %sserver key%s allows you to monitor the usage of the Google Maps "
@@ -1842,11 +1850,11 @@ msgid ""
1842
  "22, 2016."
1843
  msgstr ""
1844
 
1845
- #: admin/templates/map-settings.php:99
1846
  msgid "Browser key"
1847
  msgstr ""
1848
 
1849
- #: admin/templates/map-settings.php:99
1850
  #, php-format
1851
  msgid ""
1852
  "A %sbrowser key%s allows you to monitor the usage of the Google Maps "
@@ -1854,30 +1862,30 @@ msgid ""
1854
  "22, 2016."
1855
  msgstr ""
1856
 
1857
- #: admin/templates/map-settings.php:103
1858
  msgid "Map language"
1859
  msgstr ""
1860
 
1861
- #: admin/templates/map-settings.php:103
1862
  msgid "If no map language is selected the browser's prefered language is used."
1863
  msgstr ""
1864
 
1865
- #: admin/templates/map-settings.php:109
1866
  msgid "Map region"
1867
  msgstr ""
1868
 
1869
- #: admin/templates/map-settings.php:109
1870
  #, php-format
1871
  msgid ""
1872
  "This will bias the %sgeocoding%s results towards the selected region. %s If "
1873
  "no region is selected the bias is set to the United States."
1874
  msgstr ""
1875
 
1876
- #: admin/templates/map-settings.php:115
1877
  msgid "Restrict the geocoding results to the selected map region?"
1878
  msgstr ""
1879
 
1880
- #: admin/templates/map-settings.php:115
1881
  #, php-format
1882
  msgid ""
1883
  "If the %sgeocoding%s API finds more relevant results outside of the set map "
@@ -1887,69 +1895,69 @@ msgid ""
1887
  "restrictions with %sthis%s filter."
1888
  msgstr ""
1889
 
1890
- #: admin/templates/map-settings.php:129 admin/templates/map-settings.php:499
1891
- #: admin/templates/map-settings.php:500 frontend/templates/default.php:44
1892
  #: frontend/templates/store-listings-below.php:44 inc/wpsl-functions.php:133
1893
  msgid "Search"
1894
  msgstr ""
1895
 
1896
- #: admin/templates/map-settings.php:132
1897
  msgid "Enable autocomplete?"
1898
  msgstr ""
1899
 
1900
- #: admin/templates/map-settings.php:136
1901
  msgid "Show the max results dropdown?"
1902
  msgstr ""
1903
 
1904
- #: admin/templates/map-settings.php:140
1905
  msgid "Show the search radius dropdown?"
1906
  msgstr ""
1907
 
1908
- #: admin/templates/map-settings.php:144
1909
  msgid "Enable category filters?"
1910
  msgstr ""
1911
 
1912
- #: admin/templates/map-settings.php:149
1913
  msgid "Filter type:"
1914
  msgstr ""
1915
 
1916
- #: admin/templates/map-settings.php:154
1917
  msgid "Distance unit"
1918
  msgstr ""
1919
 
1920
- #: admin/templates/map-settings.php:157
1921
  msgid "km"
1922
  msgstr ""
1923
 
1924
- #: admin/templates/map-settings.php:159
1925
  msgid "mi"
1926
  msgstr ""
1927
 
1928
- #: admin/templates/map-settings.php:163
1929
  msgid "Max search results"
1930
  msgstr ""
1931
 
1932
- #: admin/templates/map-settings.php:163 admin/templates/map-settings.php:167
1933
  msgid "The default value is set between the [ ]."
1934
  msgstr ""
1935
 
1936
- #: admin/templates/map-settings.php:167
1937
  msgid "Search radius options"
1938
  msgstr ""
1939
 
1940
- #: admin/templates/map-settings.php:181
1941
  msgid "Map"
1942
  msgstr ""
1943
 
1944
- #: admin/templates/map-settings.php:188
1945
  msgid "Load locations on page load"
1946
  msgstr ""
1947
 
1948
- #: admin/templates/map-settings.php:193
1949
  msgid "Number of locations to show"
1950
  msgstr ""
1951
 
1952
- #: admin/templates/map-settings.php:193
1953
  #, php-format
1954
  msgid ""
1955
  "Although the location data is cached after the first load, a lower number "
@@ -1957,7 +1965,7 @@ msgid ""
1957
  "or set to 0, then all locations are loaded."
1958
  msgstr ""
1959
 
1960
- #: admin/templates/map-settings.php:198
1961
  #, php-format
1962
  msgid ""
1963
  "%sRequired field.%s %s If auto-locating the user is disabled or fails, the "
@@ -1965,25 +1973,25 @@ msgid ""
1965
  "point for the user."
1966
  msgstr ""
1967
 
1968
- #: admin/templates/map-settings.php:203
1969
  msgid "Auto adjust the zoom level to make sure all markers are visible?"
1970
  msgstr ""
1971
 
1972
- #: admin/templates/map-settings.php:203
1973
  msgid ""
1974
  "This runs after a search is made, and makes sure all the returned locations "
1975
  "are visible in the viewport."
1976
  msgstr ""
1977
 
1978
- #: admin/templates/map-settings.php:207
1979
  msgid "Initial zoom level"
1980
  msgstr ""
1981
 
1982
- #: admin/templates/map-settings.php:211
1983
  msgid "Max auto zoom level"
1984
  msgstr ""
1985
 
1986
- #: admin/templates/map-settings.php:211
1987
  #, php-format
1988
  msgid ""
1989
  "This value sets the zoom level for the \"Zoom here\" link in the info "
@@ -1991,41 +1999,41 @@ msgid ""
1991
  "is changed to make all the markers fit on the screen."
1992
  msgstr ""
1993
 
1994
- #: admin/templates/map-settings.php:215
1995
  msgid "Show the street view controls?"
1996
  msgstr ""
1997
 
1998
- #: admin/templates/map-settings.php:219
1999
  msgid "Show the map type control?"
2000
  msgstr ""
2001
 
2002
- #: admin/templates/map-settings.php:223
2003
  msgid "Enable scroll wheel zooming?"
2004
  msgstr ""
2005
 
2006
- #: admin/templates/map-settings.php:227
2007
  msgid "Zoom control position"
2008
  msgstr ""
2009
 
2010
- #: admin/templates/map-settings.php:230
2011
  msgid "Left"
2012
  msgstr ""
2013
 
2014
- #: admin/templates/map-settings.php:232
2015
  msgid "Right"
2016
  msgstr ""
2017
 
2018
- #: admin/templates/map-settings.php:240
2019
  msgid "Map style"
2020
  msgstr ""
2021
 
2022
- #: admin/templates/map-settings.php:240
2023
  msgid ""
2024
  "Custom map styles only work if the map type is set to \"Roadmap\" or "
2025
  "\"Terrain\"."
2026
  msgstr ""
2027
 
2028
- #: admin/templates/map-settings.php:243
2029
  #, php-format
2030
  msgid ""
2031
  "You can use existing map styles from %sSnazzy Maps%s or %sMap Stylr%s and "
@@ -2033,117 +2041,117 @@ msgid ""
2033
  "through the %sMap Style Editor%s or %sStyled Maps Wizard%s."
2034
  msgstr ""
2035
 
2036
- #: admin/templates/map-settings.php:244
2037
  #, php-format
2038
  msgid ""
2039
  "If you like to write the style code yourself, then you can find the "
2040
  "documentation from Google %shere%s."
2041
  msgstr ""
2042
 
2043
- #: admin/templates/map-settings.php:246
2044
  msgid "Preview Map Style"
2045
  msgstr ""
2046
 
2047
- #: admin/templates/map-settings.php:250
2048
  msgid "Show credits?"
2049
  msgstr ""
2050
 
2051
- #: admin/templates/map-settings.php:250
2052
  msgid ""
2053
  "This will place a \"Search provided by WP Store Locator\" backlink below the "
2054
  "map."
2055
  msgstr ""
2056
 
2057
- #: admin/templates/map-settings.php:264
2058
  msgid "User Experience"
2059
  msgstr ""
2060
 
2061
- #: admin/templates/map-settings.php:267
2062
  msgid "Store Locator height"
2063
  msgstr ""
2064
 
2065
- #: admin/templates/map-settings.php:271
2066
  msgid "Max width for the info window content"
2067
  msgstr ""
2068
 
2069
- #: admin/templates/map-settings.php:275
2070
  msgid "Search field width"
2071
  msgstr ""
2072
 
2073
- #: admin/templates/map-settings.php:279
2074
  msgid "Search and radius label width"
2075
  msgstr ""
2076
 
2077
- #: admin/templates/map-settings.php:283
2078
  msgid "Store Locator template"
2079
  msgstr ""
2080
 
2081
- #: admin/templates/map-settings.php:283
2082
  #, php-format
2083
  msgid ""
2084
  "The selected template is used with the [wpsl] shortcode. %s You can add a "
2085
  "custom template with the %swpsl_templates%s filter."
2086
  msgstr ""
2087
 
2088
- #: admin/templates/map-settings.php:287
2089
  msgid "Hide the scrollbar?"
2090
  msgstr ""
2091
 
2092
- #: admin/templates/map-settings.php:291
2093
  msgid "Open links in a new window?"
2094
  msgstr ""
2095
 
2096
- #: admin/templates/map-settings.php:295
2097
  msgid "Show a reset map button?"
2098
  msgstr ""
2099
 
2100
- #: admin/templates/map-settings.php:299
2101
  msgid ""
2102
  "When a user clicks on \"Directions\", open a new window, and show the route "
2103
  "on google.com/maps ?"
2104
  msgstr ""
2105
 
2106
- #: admin/templates/map-settings.php:303
2107
  msgid "Show a \"More info\" link in the store listings?"
2108
  msgstr ""
2109
 
2110
- #: admin/templates/map-settings.php:303
2111
  msgid ""
2112
  "This places a \"More Info\" link below the address and will show the phone, "
2113
  "fax, email, opening hours and description once the link is clicked."
2114
  msgstr ""
2115
 
2116
- #: admin/templates/map-settings.php:308
2117
  msgid "Where do you want to show the \"More info\" details?"
2118
  msgstr ""
2119
 
2120
- #: admin/templates/map-settings.php:313
2121
  msgid ""
2122
  "Always show the contact details below the address in the search results?"
2123
  msgstr ""
2124
 
2125
- #: admin/templates/map-settings.php:317
2126
  msgid "Make the store name clickable if a store URL exists?"
2127
  msgstr ""
2128
 
2129
- #: admin/templates/map-settings.php:317
2130
  #, php-format
2131
  msgid ""
2132
  "If %spermalinks%s are enabled, the store name will always link to the store "
2133
  "page."
2134
  msgstr ""
2135
 
2136
- #: admin/templates/map-settings.php:321
2137
  msgid "Make the phone number clickable on mobile devices?"
2138
  msgstr ""
2139
 
2140
- #: admin/templates/map-settings.php:325
2141
  msgid ""
2142
  "If street view is available for the current location, then show a \"Street "
2143
  "view\" link in the info window?"
2144
  msgstr ""
2145
 
2146
- #: admin/templates/map-settings.php:325
2147
  #, php-format
2148
  msgid ""
2149
  "Enabling this option can sometimes result in a small delay in the opening of "
@@ -2151,22 +2159,22 @@ msgid ""
2151
  "Maps to check if street view is available for the current location."
2152
  msgstr ""
2153
 
2154
- #: admin/templates/map-settings.php:329
2155
  msgid "Show a \"Zoom here\" link in the info window?"
2156
  msgstr ""
2157
 
2158
- #: admin/templates/map-settings.php:329
2159
  #, php-format
2160
  msgid ""
2161
  "Clicking this link will make the map zoom in to the %s max auto zoom level "
2162
  "%s."
2163
  msgstr ""
2164
 
2165
- #: admin/templates/map-settings.php:333
2166
  msgid "On page load move the mouse cursor to the search field?"
2167
  msgstr ""
2168
 
2169
- #: admin/templates/map-settings.php:333
2170
  #, php-format
2171
  msgid ""
2172
  "If the store locator is not placed at the top of the page, enabling this "
@@ -2174,11 +2182,11 @@ msgid ""
2174
  "on mobile devices.%s"
2175
  msgstr ""
2176
 
2177
- #: admin/templates/map-settings.php:337
2178
  msgid "Use the default style for the info window?"
2179
  msgstr ""
2180
 
2181
- #: admin/templates/map-settings.php:337
2182
  #, php-format
2183
  msgid ""
2184
  "If the default style is disabled the %sInfoBox%s library will be used "
@@ -2186,19 +2194,19 @@ msgid ""
2186
  "window through the .wpsl-infobox css class."
2187
  msgstr ""
2188
 
2189
- #: admin/templates/map-settings.php:341
2190
  msgid "Hide the country in the search results?"
2191
  msgstr ""
2192
 
2193
- #: admin/templates/map-settings.php:345
2194
  msgid "Hide the distance in the search results?"
2195
  msgstr ""
2196
 
2197
- #: admin/templates/map-settings.php:349
2198
  msgid "If a user hovers over the search results the store marker"
2199
  msgstr ""
2200
 
2201
- #: admin/templates/map-settings.php:349
2202
  #, php-format
2203
  msgid ""
2204
  "If marker clusters are enabled this option will not work as expected as long "
@@ -2208,274 +2216,274 @@ msgid ""
2208
  "it won't be clear to which marker it belongs to. "
2209
  msgstr ""
2210
 
2211
- #: admin/templates/map-settings.php:353
2212
  msgid "Address format"
2213
  msgstr ""
2214
 
2215
- #: admin/templates/map-settings.php:353
2216
  #, php-format
2217
  msgid ""
2218
  "You can add custom address formats with the %swpsl_address_formats%s filter."
2219
  msgstr ""
2220
 
2221
- #: admin/templates/map-settings.php:371
2222
  msgid "Enable marker clusters?"
2223
  msgstr ""
2224
 
2225
- #: admin/templates/map-settings.php:371
2226
  msgid "Recommended for maps with a large amount of markers."
2227
  msgstr ""
2228
 
2229
- #: admin/templates/map-settings.php:376
2230
  msgid "Max zoom level"
2231
  msgstr ""
2232
 
2233
- #: admin/templates/map-settings.php:376
2234
  msgid ""
2235
  "If this zoom level is reached or exceeded, then all markers are moved out of "
2236
  "the marker cluster and shown as individual markers."
2237
  msgstr ""
2238
 
2239
- #: admin/templates/map-settings.php:380
2240
  msgid "Cluster size"
2241
  msgstr ""
2242
 
2243
- #: admin/templates/map-settings.php:380
2244
  #, php-format
2245
  msgid ""
2246
  "The grid size of a cluster in pixels. %s A larger number will result in a "
2247
  "lower amount of clusters and also make the algorithm run faster."
2248
  msgstr ""
2249
 
2250
- #: admin/templates/map-settings.php:395
2251
  msgid "Store Editor"
2252
  msgstr ""
2253
 
2254
- #: admin/templates/map-settings.php:398
2255
  msgid "Default country"
2256
  msgstr ""
2257
 
2258
- #: admin/templates/map-settings.php:402
2259
  msgid "Map type for the location preview"
2260
  msgstr ""
2261
 
2262
- #: admin/templates/map-settings.php:406
2263
  msgid "Hide the opening hours?"
2264
  msgstr ""
2265
 
2266
- #: admin/templates/map-settings.php:412
2267
  msgid "Opening hours input type"
2268
  msgstr ""
2269
 
2270
- #: admin/templates/map-settings.php:416
2271
  #, php-format
2272
  msgid ""
2273
  "Opening hours created in version 1.x %sare not%s automatically converted to "
2274
  "the new dropdown format."
2275
  msgstr ""
2276
 
2277
- #: admin/templates/map-settings.php:419 admin/templates/map-settings.php:428
2278
  msgid "The default opening hours"
2279
  msgstr ""
2280
 
2281
- #: admin/templates/map-settings.php:425
2282
  msgid "Opening hours format"
2283
  msgstr ""
2284
 
2285
- #: admin/templates/map-settings.php:432
2286
  msgid ""
2287
  "The default country and opening hours are only used when a new store is "
2288
  "created. So changing the default values will have no effect on existing "
2289
  "store locations."
2290
  msgstr ""
2291
 
2292
- #: admin/templates/map-settings.php:445
2293
  msgid "Permalink"
2294
  msgstr ""
2295
 
2296
- #: admin/templates/map-settings.php:448
2297
  msgid "Enable permalink?"
2298
  msgstr ""
2299
 
2300
- #: admin/templates/map-settings.php:453
2301
  msgid "Store slug"
2302
  msgstr ""
2303
 
2304
- #: admin/templates/map-settings.php:457
2305
  msgid "Category slug"
2306
  msgstr ""
2307
 
2308
- #: admin/templates/map-settings.php:460
2309
  #, php-format
2310
  msgid "The permalink slugs %smust be unique%s on your site."
2311
  msgstr ""
2312
 
2313
- #: admin/templates/map-settings.php:473
2314
  msgid "Labels"
2315
  msgstr ""
2316
 
2317
- #: admin/templates/map-settings.php:482
2318
  #, php-format
2319
  msgid "%sWarning!%s %sWPML%s, or a plugin using the WPML API is active."
2320
  msgstr ""
2321
 
2322
- #: admin/templates/map-settings.php:483
2323
  msgid ""
2324
  "Please use the \"String Translations\" section in the used multilingual "
2325
  "plugin to change the labels. Changing them here will have no effect as long "
2326
  "as the multilingual plugin remains active."
2327
  msgstr ""
2328
 
2329
- #: admin/templates/map-settings.php:487 admin/templates/map-settings.php:488
2330
  #: frontend/templates/default.php:12
2331
  #: frontend/templates/store-listings-below.php:12 inc/wpsl-functions.php:132
2332
  msgid "Your location"
2333
  msgstr ""
2334
 
2335
- #: admin/templates/map-settings.php:491 admin/templates/map-settings.php:492
2336
  #: frontend/templates/default.php:21
2337
  #: frontend/templates/store-listings-below.php:21 inc/wpsl-functions.php:135
2338
  msgid "Search radius"
2339
  msgstr ""
2340
 
2341
- #: admin/templates/map-settings.php:495 admin/templates/map-settings.php:496
2342
- #: frontend/class-frontend.php:1801 inc/wpsl-functions.php:136
2343
  msgid "No results found"
2344
  msgstr ""
2345
 
2346
- #: admin/templates/map-settings.php:503
2347
  msgid "Searching (preloader text)"
2348
  msgstr ""
2349
 
2350
- #: admin/templates/map-settings.php:504 frontend/class-frontend.php:1800
2351
  #: inc/wpsl-functions.php:134
2352
  msgid "Searching..."
2353
  msgstr ""
2354
 
2355
- #: admin/templates/map-settings.php:507 admin/templates/map-settings.php:508
2356
  #: frontend/templates/default.php:30
2357
  #: frontend/templates/store-listings-below.php:30 inc/wpsl-functions.php:137
2358
  msgid "Results"
2359
  msgstr ""
2360
 
2361
- #: admin/templates/map-settings.php:511 admin/upgrade.php:206
2362
  #: inc/wpsl-functions.php:151
2363
  msgid "Category filter"
2364
  msgstr ""
2365
 
2366
- #: admin/templates/map-settings.php:512 frontend/class-frontend.php:1374
2367
  msgid "Category"
2368
  msgstr ""
2369
 
2370
- #: admin/templates/map-settings.php:515
2371
  msgid "Category first item"
2372
  msgstr ""
2373
 
2374
- #: admin/templates/map-settings.php:516 admin/upgrade.php:367
2375
- #: frontend/class-frontend.php:1377 inc/wpsl-functions.php:152
2376
  msgid "Any"
2377
  msgstr ""
2378
 
2379
- #: admin/templates/map-settings.php:519 admin/templates/map-settings.php:520
2380
- #: admin/upgrade.php:59 frontend/class-frontend.php:1802
2381
  #: frontend/underscore-functions.php:138 frontend/underscore-functions.php:168
2382
  #: inc/wpsl-functions.php:138
2383
  msgid "More info"
2384
  msgstr ""
2385
 
2386
- #: admin/templates/map-settings.php:523 admin/templates/map-settings.php:524
2387
- #: frontend/class-frontend.php:821 frontend/underscore-functions.php:29
2388
  #: frontend/underscore-functions.php:65 frontend/underscore-functions.php:147
2389
  #: inc/wpsl-functions.php:146
2390
  msgid "Phone"
2391
  msgstr ""
2392
 
2393
- #: admin/templates/map-settings.php:543 admin/templates/map-settings.php:544
2394
- #: frontend/class-frontend.php:1807 inc/wpsl-functions.php:131
2395
  msgid "Start location"
2396
  msgstr ""
2397
 
2398
- #: admin/templates/map-settings.php:547
2399
  msgid "Get directions"
2400
  msgstr ""
2401
 
2402
- #: admin/templates/map-settings.php:548 frontend/class-frontend.php:1805
2403
  #: inc/wpsl-functions.php:139
2404
  msgid "Directions"
2405
  msgstr ""
2406
 
2407
- #: admin/templates/map-settings.php:551
2408
  msgid "No directions found"
2409
  msgstr ""
2410
 
2411
- #: admin/templates/map-settings.php:552 admin/upgrade.php:151
2412
- #: frontend/class-frontend.php:1806 inc/wpsl-functions.php:140
2413
  msgid "No route could be found between the origin and destination"
2414
  msgstr ""
2415
 
2416
- #: admin/templates/map-settings.php:555 admin/templates/map-settings.php:556
2417
- #: admin/upgrade.php:77 frontend/class-frontend.php:1808
2418
  #: inc/wpsl-functions.php:141
2419
  msgid "Back"
2420
  msgstr ""
2421
 
2422
- #: admin/templates/map-settings.php:559 admin/templates/map-settings.php:560
2423
- #: admin/upgrade.php:143 frontend/class-frontend.php:1809
2424
  #: inc/wpsl-functions.php:142
2425
  msgid "Street view"
2426
  msgstr ""
2427
 
2428
- #: admin/templates/map-settings.php:563 admin/templates/map-settings.php:564
2429
- #: admin/upgrade.php:147 frontend/class-frontend.php:1810
2430
  #: inc/wpsl-functions.php:143
2431
  msgid "Zoom here"
2432
  msgstr ""
2433
 
2434
- #: admin/templates/map-settings.php:567
2435
  msgid "General error"
2436
  msgstr ""
2437
 
2438
- #: admin/templates/map-settings.php:568 frontend/class-frontend.php:1803
2439
  #: inc/wpsl-functions.php:144
2440
  msgid "Something went wrong, please try again!"
2441
  msgstr ""
2442
 
2443
- #: admin/templates/map-settings.php:571
2444
  msgid "Query limit error"
2445
  msgstr ""
2446
 
2447
- #: admin/templates/map-settings.php:571
2448
  #, php-format
2449
  msgid ""
2450
  "You can raise the %susage limit%s by obtaining an API %skey%s, and fill in "
2451
  "the \"API key\" field at the top of this page."
2452
  msgstr ""
2453
 
2454
- #: admin/templates/map-settings.php:572 frontend/class-frontend.php:1804
2455
  #: inc/wpsl-functions.php:145
2456
  msgid "API usage limit reached"
2457
  msgstr ""
2458
 
2459
- #: admin/templates/map-settings.php:585
2460
  msgid "Tools"
2461
  msgstr ""
2462
 
2463
- #: admin/templates/map-settings.php:588
2464
  msgid "Enable store locator debug?"
2465
  msgstr ""
2466
 
2467
- #: admin/templates/map-settings.php:588
2468
  #, php-format
2469
  msgid ""
2470
  "This disables the WPSL transient cache. %sThe transient cache is only used "
2471
  "if the %sLoad locations on page load%s option is enabled."
2472
  msgstr ""
2473
 
2474
- #: admin/templates/map-settings.php:592
2475
  msgid "Enable compatibility mode?"
2476
  msgstr ""
2477
 
2478
- #: admin/templates/map-settings.php:592
2479
  #, php-format
2480
  msgid ""
2481
  "If the %sbrowser console%s shows the error below, then enabling this option "
@@ -2484,11 +2492,11 @@ msgid ""
2484
  "situations break the store locator map."
2485
  msgstr ""
2486
 
2487
- #: admin/templates/map-settings.php:596
2488
  msgid "WPSL transients"
2489
  msgstr ""
2490
 
2491
- #: admin/templates/map-settings.php:597
2492
  msgid "Clear store locator transient cache"
2493
  msgstr ""
2494
 
@@ -2541,37 +2549,37 @@ msgid ""
2541
  "view them on the %sAll Stores%s page."
2542
  msgstr ""
2543
 
2544
- #: frontend/class-frontend.php:758
2545
  msgid ""
2546
  "If you use the [wpsl_address] shortcode outside a store page you need to set "
2547
  "the ID attribute."
2548
  msgstr ""
2549
 
2550
- #: frontend/class-frontend.php:872
2551
  msgid ""
2552
  "If you use the [wpsl_hours] shortcode outside a store page you need to set "
2553
  "the ID attribute."
2554
  msgstr ""
2555
 
2556
- #: frontend/class-frontend.php:920
2557
  msgid ""
2558
  "If you use the [wpsl_map] shortcode outside a store page, then you need to "
2559
  "set the ID or category attribute."
2560
  msgstr ""
2561
 
2562
- #: frontend/class-frontend.php:1575
2563
  msgid "The application does not have permission to use the Geolocation API."
2564
  msgstr ""
2565
 
2566
- #: frontend/class-frontend.php:1576
2567
  msgid "Location information is unavailable."
2568
  msgstr ""
2569
 
2570
- #: frontend/class-frontend.php:1577
2571
  msgid "The geolocation request timed out."
2572
  msgstr ""
2573
 
2574
- #: frontend/class-frontend.php:1578
2575
  msgid "An unknown error occurred."
2576
  msgstr ""
2577
 
@@ -2669,6 +2677,18 @@ msgstr ""
2669
  msgid "Zip"
2670
  msgstr ""
2671
 
 
 
 
 
 
 
 
 
 
 
 
 
2672
  #: inc/wpsl-functions.php:221
2673
  msgid "Show the store list below the map"
2674
  msgstr ""
1
  #, fuzzy
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: WP Store Locator v2.2.11\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2018-01-09 12:28+0700\n"
7
  "PO-Revision-Date: 2015-09-01 13:49+0100\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
40
  msgstr ""
41
 
42
  #: admin/class-admin.php:175 admin/class-admin.php:176
43
+ #: admin/class-admin.php:466 admin/templates/map-settings.php:8
44
  msgid "Settings"
45
  msgstr ""
46
 
47
  #: admin/class-admin.php:182 admin/class-admin.php:183
48
+ #: admin/class-admin.php:486
49
  msgid "Add-Ons"
50
  msgstr ""
51
 
70
  msgstr ""
71
 
72
  #: admin/class-admin.php:299 admin/class-metaboxes.php:525
73
+ #: frontend/class-frontend.php:565
74
  msgid "Closed"
75
  msgstr ""
76
 
89
  msgid "Dismiss this notice."
90
  msgstr ""
91
 
92
+ #: admin/class-admin.php:421
93
  msgid "Welcome to WP Store Locator"
94
  msgstr ""
95
 
96
+ #: admin/class-admin.php:422
97
  msgid "Sign up for the latest plugin updates and announcements."
98
  msgstr ""
99
 
100
+ #: admin/class-admin.php:485
101
  msgid "Documentation"
102
  msgstr ""
103
 
104
+ #: admin/class-admin.php:508
105
  #, php-format
106
  msgid "If you like this plugin please leave us a %s5 star%s rating."
107
  msgstr ""
264
  msgid "Opening Hours"
265
  msgstr ""
266
 
267
+ #: admin/class-metaboxes.php:82 admin/templates/map-settings.php:544
268
+ #: admin/templates/map-settings.php:545 frontend/underscore-functions.php:160
269
  #: inc/wpsl-functions.php:150
270
  msgid "Hours"
271
  msgstr ""
278
  msgid "Tel"
279
  msgstr ""
280
 
281
+ #: admin/class-metaboxes.php:91 admin/templates/map-settings.php:532
282
+ #: admin/templates/map-settings.php:533 frontend/class-frontend.php:815
283
  #: frontend/underscore-functions.php:32 frontend/underscore-functions.php:68
284
  #: frontend/underscore-functions.php:150 inc/wpsl-functions.php:147
285
  msgid "Fax"
286
  msgstr ""
287
 
288
+ #: admin/class-metaboxes.php:94 admin/templates/map-settings.php:536
289
+ #: admin/templates/map-settings.php:537 admin/upgrade.php:198
290
+ #: frontend/class-frontend.php:819 frontend/underscore-functions.php:35
291
  #: frontend/underscore-functions.php:71 frontend/underscore-functions.php:153
292
  #: inc/wpsl-functions.php:148
293
  msgid "Email"
294
  msgstr ""
295
 
296
+ #: admin/class-metaboxes.php:97 admin/templates/map-settings.php:540
297
+ #: admin/templates/map-settings.php:541 admin/upgrade.php:202
298
+ #: frontend/class-frontend.php:824 inc/wpsl-functions.php:149
299
  msgid "Url"
300
  msgstr ""
301
 
1684
  msgid "In the info window on the map"
1685
  msgstr ""
1686
 
1687
+ #: admin/class-settings.php:1144 admin/class-shortcode-generator.php:263
1688
  msgid "Dropdown"
1689
  msgstr ""
1690
 
1691
+ #: admin/class-settings.php:1145 admin/class-shortcode-generator.php:264
1692
  msgid "Checkboxes"
1693
  msgstr ""
1694
 
1705
  msgstr ""
1706
 
1707
  #: admin/class-shortcode-generator.php:42
1708
+ #: admin/class-shortcode-generator.php:355
1709
  msgid "Insert Store Locator"
1710
  msgstr ""
1711
 
1717
  msgid "Error"
1718
  msgstr ""
1719
 
1720
+ #: admin/class-shortcode-generator.php:233
1721
  msgid "General Options"
1722
  msgstr ""
1723
 
1724
+ #: admin/class-shortcode-generator.php:234 admin/templates/map-settings.php:372
1725
  msgid "Markers"
1726
  msgstr ""
1727
 
1728
+ #: admin/class-shortcode-generator.php:240
1729
  msgid "Select the used template"
1730
  msgstr ""
1731
 
1732
+ #: admin/class-shortcode-generator.php:244 admin/templates/map-settings.php:203
1733
  msgid "Start point"
1734
  msgstr ""
1735
 
1736
+ #: admin/class-shortcode-generator.php:244
1737
  #, php-format
1738
  msgid ""
1739
  "If nothing it set, then the start point from the %ssettings%s page is used."
1740
  msgstr ""
1741
 
1742
+ #: admin/class-shortcode-generator.php:249 admin/templates/map-settings.php:189
1743
  msgid "Attempt to auto-locate the user"
1744
  msgstr ""
1745
 
1746
+ #: admin/class-shortcode-generator.php:249 admin/templates/map-settings.php:189
1747
  #, php-format
1748
  msgid ""
1749
  "Most modern browsers %srequire%s a HTTPS connection before the Geolocation "
1750
  "feature works."
1751
  msgstr ""
1752
 
1753
+ #: admin/class-shortcode-generator.php:259
1754
  msgid "Category filter type"
1755
  msgstr ""
1756
 
1757
+ #: admin/class-shortcode-generator.php:262
1758
  msgid "None"
1759
  msgstr ""
1760
 
1761
+ #: admin/class-shortcode-generator.php:269
1762
  msgid "Automatically restrict the returned results to one or more categories?"
1763
  msgstr ""
1764
 
1765
+ #: admin/class-shortcode-generator.php:285
1766
  msgid "Set a selected category?"
1767
  msgstr ""
1768
 
1769
+ #: admin/class-shortcode-generator.php:290
1770
  msgid "Select category"
1771
  msgstr ""
1772
 
1773
+ #: admin/class-shortcode-generator.php:306
1774
  msgid "Checkbox columns"
1775
  msgstr ""
1776
 
1777
+ #: admin/class-shortcode-generator.php:325
1778
  msgid "Set selected checkboxes"
1779
  msgstr ""
1780
 
1781
+ #: admin/class-shortcode-generator.php:341 admin/templates/map-settings.php:241
1782
  msgid "Map type"
1783
  msgstr ""
1784
 
1802
  msgid "Failed to load the add-on list from the server."
1803
  msgstr ""
1804
 
1805
+ #: admin/templates/map-settings.php:13
1806
+ msgid "General"
1807
+ msgstr ""
1808
+
1809
+ #: admin/templates/map-settings.php:18
1810
+ msgid "Licenses"
1811
+ msgstr ""
1812
+
1813
+ #: admin/templates/map-settings.php:49
1814
  msgid "Add-On"
1815
  msgstr ""
1816
 
1817
+ #: admin/templates/map-settings.php:50
1818
  msgid "License Key"
1819
  msgstr ""
1820
 
1821
+ #: admin/templates/map-settings.php:51
1822
  msgid "License Expiry Date"
1823
  msgstr ""
1824
 
1825
+ #: admin/templates/map-settings.php:65
1826
  msgid "Deactivate License"
1827
  msgstr ""
1828
 
1829
+ #: admin/templates/map-settings.php:85 admin/templates/map-settings.php:124
1830
+ #: admin/templates/map-settings.php:176 admin/templates/map-settings.php:259
1831
+ #: admin/templates/map-settings.php:362 admin/templates/map-settings.php:390
1832
+ #: admin/templates/map-settings.php:440 admin/templates/map-settings.php:468
1833
+ #: admin/templates/map-settings.php:580 admin/templates/map-settings.php:605
1834
  msgid "Save Changes"
1835
  msgstr ""
1836
 
1837
+ #: admin/templates/map-settings.php:97
1838
  msgid "Google Maps API"
1839
  msgstr ""
1840
 
1841
+ #: admin/templates/map-settings.php:100
1842
  msgid "Server key"
1843
  msgstr ""
1844
 
1845
+ #: admin/templates/map-settings.php:100
1846
  #, php-format
1847
  msgid ""
1848
  "A %sserver key%s allows you to monitor the usage of the Google Maps "
1850
  "22, 2016."
1851
  msgstr ""
1852
 
1853
+ #: admin/templates/map-settings.php:104
1854
  msgid "Browser key"
1855
  msgstr ""
1856
 
1857
+ #: admin/templates/map-settings.php:104
1858
  #, php-format
1859
  msgid ""
1860
  "A %sbrowser key%s allows you to monitor the usage of the Google Maps "
1862
  "22, 2016."
1863
  msgstr ""
1864
 
1865
+ #: admin/templates/map-settings.php:108
1866
  msgid "Map language"
1867
  msgstr ""
1868
 
1869
+ #: admin/templates/map-settings.php:108
1870
  msgid "If no map language is selected the browser's prefered language is used."
1871
  msgstr ""
1872
 
1873
+ #: admin/templates/map-settings.php:114
1874
  msgid "Map region"
1875
  msgstr ""
1876
 
1877
+ #: admin/templates/map-settings.php:114
1878
  #, php-format
1879
  msgid ""
1880
  "This will bias the %sgeocoding%s results towards the selected region. %s If "
1881
  "no region is selected the bias is set to the United States."
1882
  msgstr ""
1883
 
1884
+ #: admin/templates/map-settings.php:120
1885
  msgid "Restrict the geocoding results to the selected map region?"
1886
  msgstr ""
1887
 
1888
+ #: admin/templates/map-settings.php:120
1889
  #, php-format
1890
  msgid ""
1891
  "If the %sgeocoding%s API finds more relevant results outside of the set map "
1895
  "restrictions with %sthis%s filter."
1896
  msgstr ""
1897
 
1898
+ #: admin/templates/map-settings.php:134 admin/templates/map-settings.php:504
1899
+ #: admin/templates/map-settings.php:505 frontend/templates/default.php:44
1900
  #: frontend/templates/store-listings-below.php:44 inc/wpsl-functions.php:133
1901
  msgid "Search"
1902
  msgstr ""
1903
 
1904
+ #: admin/templates/map-settings.php:137
1905
  msgid "Enable autocomplete?"
1906
  msgstr ""
1907
 
1908
+ #: admin/templates/map-settings.php:141
1909
  msgid "Show the max results dropdown?"
1910
  msgstr ""
1911
 
1912
+ #: admin/templates/map-settings.php:145
1913
  msgid "Show the search radius dropdown?"
1914
  msgstr ""
1915
 
1916
+ #: admin/templates/map-settings.php:149
1917
  msgid "Enable category filters?"
1918
  msgstr ""
1919
 
1920
+ #: admin/templates/map-settings.php:154
1921
  msgid "Filter type:"
1922
  msgstr ""
1923
 
1924
+ #: admin/templates/map-settings.php:159
1925
  msgid "Distance unit"
1926
  msgstr ""
1927
 
1928
+ #: admin/templates/map-settings.php:162
1929
  msgid "km"
1930
  msgstr ""
1931
 
1932
+ #: admin/templates/map-settings.php:164
1933
  msgid "mi"
1934
  msgstr ""
1935
 
1936
+ #: admin/templates/map-settings.php:168
1937
  msgid "Max search results"
1938
  msgstr ""
1939
 
1940
+ #: admin/templates/map-settings.php:168 admin/templates/map-settings.php:172
1941
  msgid "The default value is set between the [ ]."
1942
  msgstr ""
1943
 
1944
+ #: admin/templates/map-settings.php:172
1945
  msgid "Search radius options"
1946
  msgstr ""
1947
 
1948
+ #: admin/templates/map-settings.php:186
1949
  msgid "Map"
1950
  msgstr ""
1951
 
1952
+ #: admin/templates/map-settings.php:193
1953
  msgid "Load locations on page load"
1954
  msgstr ""
1955
 
1956
+ #: admin/templates/map-settings.php:198
1957
  msgid "Number of locations to show"
1958
  msgstr ""
1959
 
1960
+ #: admin/templates/map-settings.php:198
1961
  #, php-format
1962
  msgid ""
1963
  "Although the location data is cached after the first load, a lower number "
1965
  "or set to 0, then all locations are loaded."
1966
  msgstr ""
1967
 
1968
+ #: admin/templates/map-settings.php:203
1969
  #, php-format
1970
  msgid ""
1971
  "%sRequired field.%s %s If auto-locating the user is disabled or fails, the "
1973
  "point for the user."
1974
  msgstr ""
1975
 
1976
+ #: admin/templates/map-settings.php:208
1977
  msgid "Auto adjust the zoom level to make sure all markers are visible?"
1978
  msgstr ""
1979
 
1980
+ #: admin/templates/map-settings.php:208
1981
  msgid ""
1982
  "This runs after a search is made, and makes sure all the returned locations "
1983
  "are visible in the viewport."
1984
  msgstr ""
1985
 
1986
+ #: admin/templates/map-settings.php:212
1987
  msgid "Initial zoom level"
1988
  msgstr ""
1989
 
1990
+ #: admin/templates/map-settings.php:216
1991
  msgid "Max auto zoom level"
1992
  msgstr ""
1993
 
1994
+ #: admin/templates/map-settings.php:216
1995
  #, php-format
1996
  msgid ""
1997
  "This value sets the zoom level for the \"Zoom here\" link in the info "
1999
  "is changed to make all the markers fit on the screen."
2000
  msgstr ""
2001
 
2002
+ #: admin/templates/map-settings.php:220
2003
  msgid "Show the street view controls?"
2004
  msgstr ""
2005
 
2006
+ #: admin/templates/map-settings.php:224
2007
  msgid "Show the map type control?"
2008
  msgstr ""
2009
 
2010
+ #: admin/templates/map-settings.php:228
2011
  msgid "Enable scroll wheel zooming?"
2012
  msgstr ""
2013
 
2014
+ #: admin/templates/map-settings.php:232
2015
  msgid "Zoom control position"
2016
  msgstr ""
2017
 
2018
+ #: admin/templates/map-settings.php:235
2019
  msgid "Left"
2020
  msgstr ""
2021
 
2022
+ #: admin/templates/map-settings.php:237
2023
  msgid "Right"
2024
  msgstr ""
2025
 
2026
+ #: admin/templates/map-settings.php:245
2027
  msgid "Map style"
2028
  msgstr ""
2029
 
2030
+ #: admin/templates/map-settings.php:245
2031
  msgid ""
2032
  "Custom map styles only work if the map type is set to \"Roadmap\" or "
2033
  "\"Terrain\"."
2034
  msgstr ""
2035
 
2036
+ #: admin/templates/map-settings.php:248
2037
  #, php-format
2038
  msgid ""
2039
  "You can use existing map styles from %sSnazzy Maps%s or %sMap Stylr%s and "
2041
  "through the %sMap Style Editor%s or %sStyled Maps Wizard%s."
2042
  msgstr ""
2043
 
2044
+ #: admin/templates/map-settings.php:249
2045
  #, php-format
2046
  msgid ""
2047
  "If you like to write the style code yourself, then you can find the "
2048
  "documentation from Google %shere%s."
2049
  msgstr ""
2050
 
2051
+ #: admin/templates/map-settings.php:251
2052
  msgid "Preview Map Style"
2053
  msgstr ""
2054
 
2055
+ #: admin/templates/map-settings.php:255
2056
  msgid "Show credits?"
2057
  msgstr ""
2058
 
2059
+ #: admin/templates/map-settings.php:255
2060
  msgid ""
2061
  "This will place a \"Search provided by WP Store Locator\" backlink below the "
2062
  "map."
2063
  msgstr ""
2064
 
2065
+ #: admin/templates/map-settings.php:269
2066
  msgid "User Experience"
2067
  msgstr ""
2068
 
2069
+ #: admin/templates/map-settings.php:272
2070
  msgid "Store Locator height"
2071
  msgstr ""
2072
 
2073
+ #: admin/templates/map-settings.php:276
2074
  msgid "Max width for the info window content"
2075
  msgstr ""
2076
 
2077
+ #: admin/templates/map-settings.php:280
2078
  msgid "Search field width"
2079
  msgstr ""
2080
 
2081
+ #: admin/templates/map-settings.php:284
2082
  msgid "Search and radius label width"
2083
  msgstr ""
2084
 
2085
+ #: admin/templates/map-settings.php:288
2086
  msgid "Store Locator template"
2087
  msgstr ""
2088
 
2089
+ #: admin/templates/map-settings.php:288
2090
  #, php-format
2091
  msgid ""
2092
  "The selected template is used with the [wpsl] shortcode. %s You can add a "
2093
  "custom template with the %swpsl_templates%s filter."
2094
  msgstr ""
2095
 
2096
+ #: admin/templates/map-settings.php:292
2097
  msgid "Hide the scrollbar?"
2098
  msgstr ""
2099
 
2100
+ #: admin/templates/map-settings.php:296
2101
  msgid "Open links in a new window?"
2102
  msgstr ""
2103
 
2104
+ #: admin/templates/map-settings.php:300
2105
  msgid "Show a reset map button?"
2106
  msgstr ""
2107
 
2108
+ #: admin/templates/map-settings.php:304
2109
  msgid ""
2110
  "When a user clicks on \"Directions\", open a new window, and show the route "
2111
  "on google.com/maps ?"
2112
  msgstr ""
2113
 
2114
+ #: admin/templates/map-settings.php:308
2115
  msgid "Show a \"More info\" link in the store listings?"
2116
  msgstr ""
2117
 
2118
+ #: admin/templates/map-settings.php:308
2119
  msgid ""
2120
  "This places a \"More Info\" link below the address and will show the phone, "
2121
  "fax, email, opening hours and description once the link is clicked."
2122
  msgstr ""
2123
 
2124
+ #: admin/templates/map-settings.php:313
2125
  msgid "Where do you want to show the \"More info\" details?"
2126
  msgstr ""
2127
 
2128
+ #: admin/templates/map-settings.php:318
2129
  msgid ""
2130
  "Always show the contact details below the address in the search results?"
2131
  msgstr ""
2132
 
2133
+ #: admin/templates/map-settings.php:322
2134
  msgid "Make the store name clickable if a store URL exists?"
2135
  msgstr ""
2136
 
2137
+ #: admin/templates/map-settings.php:322
2138
  #, php-format
2139
  msgid ""
2140
  "If %spermalinks%s are enabled, the store name will always link to the store "
2141
  "page."
2142
  msgstr ""
2143
 
2144
+ #: admin/templates/map-settings.php:326
2145
  msgid "Make the phone number clickable on mobile devices?"
2146
  msgstr ""
2147
 
2148
+ #: admin/templates/map-settings.php:330
2149
  msgid ""
2150
  "If street view is available for the current location, then show a \"Street "
2151
  "view\" link in the info window?"
2152
  msgstr ""
2153
 
2154
+ #: admin/templates/map-settings.php:330
2155
  #, php-format
2156
  msgid ""
2157
  "Enabling this option can sometimes result in a small delay in the opening of "
2159
  "Maps to check if street view is available for the current location."
2160
  msgstr ""
2161
 
2162
+ #: admin/templates/map-settings.php:334
2163
  msgid "Show a \"Zoom here\" link in the info window?"
2164
  msgstr ""
2165
 
2166
+ #: admin/templates/map-settings.php:334
2167
  #, php-format
2168
  msgid ""
2169
  "Clicking this link will make the map zoom in to the %s max auto zoom level "
2170
  "%s."
2171
  msgstr ""
2172
 
2173
+ #: admin/templates/map-settings.php:338
2174
  msgid "On page load move the mouse cursor to the search field?"
2175
  msgstr ""
2176
 
2177
+ #: admin/templates/map-settings.php:338
2178
  #, php-format
2179
  msgid ""
2180
  "If the store locator is not placed at the top of the page, enabling this "
2182
  "on mobile devices.%s"
2183
  msgstr ""
2184
 
2185
+ #: admin/templates/map-settings.php:342
2186
  msgid "Use the default style for the info window?"
2187
  msgstr ""
2188
 
2189
+ #: admin/templates/map-settings.php:342
2190
  #, php-format
2191
  msgid ""
2192
  "If the default style is disabled the %sInfoBox%s library will be used "
2194
  "window through the .wpsl-infobox css class."
2195
  msgstr ""
2196
 
2197
+ #: admin/templates/map-settings.php:346
2198
  msgid "Hide the country in the search results?"
2199
  msgstr ""
2200
 
2201
+ #: admin/templates/map-settings.php:350
2202
  msgid "Hide the distance in the search results?"
2203
  msgstr ""
2204
 
2205
+ #: admin/templates/map-settings.php:354
2206
  msgid "If a user hovers over the search results the store marker"
2207
  msgstr ""
2208
 
2209
+ #: admin/templates/map-settings.php:354
2210
  #, php-format
2211
  msgid ""
2212
  "If marker clusters are enabled this option will not work as expected as long "
2216
  "it won't be clear to which marker it belongs to. "
2217
  msgstr ""
2218
 
2219
+ #: admin/templates/map-settings.php:358
2220
  msgid "Address format"
2221
  msgstr ""
2222
 
2223
+ #: admin/templates/map-settings.php:358
2224
  #, php-format
2225
  msgid ""
2226
  "You can add custom address formats with the %swpsl_address_formats%s filter."
2227
  msgstr ""
2228
 
2229
+ #: admin/templates/map-settings.php:376
2230
  msgid "Enable marker clusters?"
2231
  msgstr ""
2232
 
2233
+ #: admin/templates/map-settings.php:376
2234
  msgid "Recommended for maps with a large amount of markers."
2235
  msgstr ""
2236
 
2237
+ #: admin/templates/map-settings.php:381
2238
  msgid "Max zoom level"
2239
  msgstr ""
2240
 
2241
+ #: admin/templates/map-settings.php:381
2242
  msgid ""
2243
  "If this zoom level is reached or exceeded, then all markers are moved out of "
2244
  "the marker cluster and shown as individual markers."
2245
  msgstr ""
2246
 
2247
+ #: admin/templates/map-settings.php:385
2248
  msgid "Cluster size"
2249
  msgstr ""
2250
 
2251
+ #: admin/templates/map-settings.php:385
2252
  #, php-format
2253
  msgid ""
2254
  "The grid size of a cluster in pixels. %s A larger number will result in a "
2255
  "lower amount of clusters and also make the algorithm run faster."
2256
  msgstr ""
2257
 
2258
+ #: admin/templates/map-settings.php:400
2259
  msgid "Store Editor"
2260
  msgstr ""
2261
 
2262
+ #: admin/templates/map-settings.php:403
2263
  msgid "Default country"
2264
  msgstr ""
2265
 
2266
+ #: admin/templates/map-settings.php:407
2267
  msgid "Map type for the location preview"
2268
  msgstr ""
2269
 
2270
+ #: admin/templates/map-settings.php:411
2271
  msgid "Hide the opening hours?"
2272
  msgstr ""
2273
 
2274
+ #: admin/templates/map-settings.php:417
2275
  msgid "Opening hours input type"
2276
  msgstr ""
2277
 
2278
+ #: admin/templates/map-settings.php:421
2279
  #, php-format
2280
  msgid ""
2281
  "Opening hours created in version 1.x %sare not%s automatically converted to "
2282
  "the new dropdown format."
2283
  msgstr ""
2284
 
2285
+ #: admin/templates/map-settings.php:424 admin/templates/map-settings.php:433
2286
  msgid "The default opening hours"
2287
  msgstr ""
2288
 
2289
+ #: admin/templates/map-settings.php:430
2290
  msgid "Opening hours format"
2291
  msgstr ""
2292
 
2293
+ #: admin/templates/map-settings.php:437
2294
  msgid ""
2295
  "The default country and opening hours are only used when a new store is "
2296
  "created. So changing the default values will have no effect on existing "
2297
  "store locations."
2298
  msgstr ""
2299
 
2300
+ #: admin/templates/map-settings.php:450
2301
  msgid "Permalink"
2302
  msgstr ""
2303
 
2304
+ #: admin/templates/map-settings.php:453
2305
  msgid "Enable permalink?"
2306
  msgstr ""
2307
 
2308
+ #: admin/templates/map-settings.php:458
2309
  msgid "Store slug"
2310
  msgstr ""
2311
 
2312
+ #: admin/templates/map-settings.php:462
2313
  msgid "Category slug"
2314
  msgstr ""
2315
 
2316
+ #: admin/templates/map-settings.php:465
2317
  #, php-format
2318
  msgid "The permalink slugs %smust be unique%s on your site."
2319
  msgstr ""
2320
 
2321
+ #: admin/templates/map-settings.php:478
2322
  msgid "Labels"
2323
  msgstr ""
2324
 
2325
+ #: admin/templates/map-settings.php:487
2326
  #, php-format
2327
  msgid "%sWarning!%s %sWPML%s, or a plugin using the WPML API is active."
2328
  msgstr ""
2329
 
2330
+ #: admin/templates/map-settings.php:488
2331
  msgid ""
2332
  "Please use the \"String Translations\" section in the used multilingual "
2333
  "plugin to change the labels. Changing them here will have no effect as long "
2334
  "as the multilingual plugin remains active."
2335
  msgstr ""
2336
 
2337
+ #: admin/templates/map-settings.php:492 admin/templates/map-settings.php:493
2338
  #: frontend/templates/default.php:12
2339
  #: frontend/templates/store-listings-below.php:12 inc/wpsl-functions.php:132
2340
  msgid "Your location"
2341
  msgstr ""
2342
 
2343
+ #: admin/templates/map-settings.php:496 admin/templates/map-settings.php:497
2344
  #: frontend/templates/default.php:21
2345
  #: frontend/templates/store-listings-below.php:21 inc/wpsl-functions.php:135
2346
  msgid "Search radius"
2347
  msgstr ""
2348
 
2349
+ #: admin/templates/map-settings.php:500 admin/templates/map-settings.php:501
2350
+ #: frontend/class-frontend.php:1772 inc/wpsl-functions.php:136
2351
  msgid "No results found"
2352
  msgstr ""
2353
 
2354
+ #: admin/templates/map-settings.php:508
2355
  msgid "Searching (preloader text)"
2356
  msgstr ""
2357
 
2358
+ #: admin/templates/map-settings.php:509 frontend/class-frontend.php:1771
2359
  #: inc/wpsl-functions.php:134
2360
  msgid "Searching..."
2361
  msgstr ""
2362
 
2363
+ #: admin/templates/map-settings.php:512 admin/templates/map-settings.php:513
2364
  #: frontend/templates/default.php:30
2365
  #: frontend/templates/store-listings-below.php:30 inc/wpsl-functions.php:137
2366
  msgid "Results"
2367
  msgstr ""
2368
 
2369
+ #: admin/templates/map-settings.php:516 admin/upgrade.php:206
2370
  #: inc/wpsl-functions.php:151
2371
  msgid "Category filter"
2372
  msgstr ""
2373
 
2374
+ #: admin/templates/map-settings.php:517 frontend/class-frontend.php:1366
2375
  msgid "Category"
2376
  msgstr ""
2377
 
2378
+ #: admin/templates/map-settings.php:520
2379
  msgid "Category first item"
2380
  msgstr ""
2381
 
2382
+ #: admin/templates/map-settings.php:521 admin/upgrade.php:367
2383
+ #: frontend/class-frontend.php:1369 inc/wpsl-functions.php:152
2384
  msgid "Any"
2385
  msgstr ""
2386
 
2387
+ #: admin/templates/map-settings.php:524 admin/templates/map-settings.php:525
2388
+ #: admin/upgrade.php:59 frontend/class-frontend.php:1773
2389
  #: frontend/underscore-functions.php:138 frontend/underscore-functions.php:168
2390
  #: inc/wpsl-functions.php:138
2391
  msgid "More info"
2392
  msgstr ""
2393
 
2394
+ #: admin/templates/map-settings.php:528 admin/templates/map-settings.php:529
2395
+ #: frontend/class-frontend.php:811 frontend/underscore-functions.php:29
2396
  #: frontend/underscore-functions.php:65 frontend/underscore-functions.php:147
2397
  #: inc/wpsl-functions.php:146
2398
  msgid "Phone"
2399
  msgstr ""
2400
 
2401
+ #: admin/templates/map-settings.php:548 admin/templates/map-settings.php:549
2402
+ #: frontend/class-frontend.php:1778 inc/wpsl-functions.php:131
2403
  msgid "Start location"
2404
  msgstr ""
2405
 
2406
+ #: admin/templates/map-settings.php:552
2407
  msgid "Get directions"
2408
  msgstr ""
2409
 
2410
+ #: admin/templates/map-settings.php:553 frontend/class-frontend.php:1776
2411
  #: inc/wpsl-functions.php:139
2412
  msgid "Directions"
2413
  msgstr ""
2414
 
2415
+ #: admin/templates/map-settings.php:556
2416
  msgid "No directions found"
2417
  msgstr ""
2418
 
2419
+ #: admin/templates/map-settings.php:557 admin/upgrade.php:151
2420
+ #: frontend/class-frontend.php:1777 inc/wpsl-functions.php:140
2421
  msgid "No route could be found between the origin and destination"
2422
  msgstr ""
2423
 
2424
+ #: admin/templates/map-settings.php:560 admin/templates/map-settings.php:561
2425
+ #: admin/upgrade.php:77 frontend/class-frontend.php:1779
2426
  #: inc/wpsl-functions.php:141
2427
  msgid "Back"
2428
  msgstr ""
2429
 
2430
+ #: admin/templates/map-settings.php:564 admin/templates/map-settings.php:565
2431
+ #: admin/upgrade.php:143 frontend/class-frontend.php:1780
2432
  #: inc/wpsl-functions.php:142
2433
  msgid "Street view"
2434
  msgstr ""
2435
 
2436
+ #: admin/templates/map-settings.php:568 admin/templates/map-settings.php:569
2437
+ #: admin/upgrade.php:147 frontend/class-frontend.php:1781
2438
  #: inc/wpsl-functions.php:143
2439
  msgid "Zoom here"
2440
  msgstr ""
2441
 
2442
+ #: admin/templates/map-settings.php:572
2443
  msgid "General error"
2444
  msgstr ""
2445
 
2446
+ #: admin/templates/map-settings.php:573 frontend/class-frontend.php:1774
2447
  #: inc/wpsl-functions.php:144
2448
  msgid "Something went wrong, please try again!"
2449
  msgstr ""
2450
 
2451
+ #: admin/templates/map-settings.php:576
2452
  msgid "Query limit error"
2453
  msgstr ""
2454
 
2455
+ #: admin/templates/map-settings.php:576
2456
  #, php-format
2457
  msgid ""
2458
  "You can raise the %susage limit%s by obtaining an API %skey%s, and fill in "
2459
  "the \"API key\" field at the top of this page."
2460
  msgstr ""
2461
 
2462
+ #: admin/templates/map-settings.php:577 frontend/class-frontend.php:1775
2463
  #: inc/wpsl-functions.php:145
2464
  msgid "API usage limit reached"
2465
  msgstr ""
2466
 
2467
+ #: admin/templates/map-settings.php:590
2468
  msgid "Tools"
2469
  msgstr ""
2470
 
2471
+ #: admin/templates/map-settings.php:593
2472
  msgid "Enable store locator debug?"
2473
  msgstr ""
2474
 
2475
+ #: admin/templates/map-settings.php:593
2476
  #, php-format
2477
  msgid ""
2478
  "This disables the WPSL transient cache. %sThe transient cache is only used "
2479
  "if the %sLoad locations on page load%s option is enabled."
2480
  msgstr ""
2481
 
2482
+ #: admin/templates/map-settings.php:597
2483
  msgid "Enable compatibility mode?"
2484
  msgstr ""
2485
 
2486
+ #: admin/templates/map-settings.php:597
2487
  #, php-format
2488
  msgid ""
2489
  "If the %sbrowser console%s shows the error below, then enabling this option "
2492
  "situations break the store locator map."
2493
  msgstr ""
2494
 
2495
+ #: admin/templates/map-settings.php:601
2496
  msgid "WPSL transients"
2497
  msgstr ""
2498
 
2499
+ #: admin/templates/map-settings.php:602
2500
  msgid "Clear store locator transient cache"
2501
  msgstr ""
2502
 
2549
  "view them on the %sAll Stores%s page."
2550
  msgstr ""
2551
 
2552
+ #: frontend/class-frontend.php:748
2553
  msgid ""
2554
  "If you use the [wpsl_address] shortcode outside a store page you need to set "
2555
  "the ID attribute."
2556
  msgstr ""
2557
 
2558
+ #: frontend/class-frontend.php:862
2559
  msgid ""
2560
  "If you use the [wpsl_hours] shortcode outside a store page you need to set "
2561
  "the ID attribute."
2562
  msgstr ""
2563
 
2564
+ #: frontend/class-frontend.php:910
2565
  msgid ""
2566
  "If you use the [wpsl_map] shortcode outside a store page, then you need to "
2567
  "set the ID or category attribute."
2568
  msgstr ""
2569
 
2570
+ #: frontend/class-frontend.php:1567
2571
  msgid "The application does not have permission to use the Geolocation API."
2572
  msgstr ""
2573
 
2574
+ #: frontend/class-frontend.php:1568
2575
  msgid "Location information is unavailable."
2576
  msgstr ""
2577
 
2578
+ #: frontend/class-frontend.php:1569
2579
  msgid "The geolocation request timed out."
2580
  msgstr ""
2581
 
2582
+ #: frontend/class-frontend.php:1570
2583
  msgid "An unknown error occurred."
2584
  msgstr ""
2585
 
2677
  msgid "Zip"
2678
  msgstr ""
2679
 
2680
+ #: inc/class-templates.php:76
2681
+ #, php-format
2682
+ msgid "No template found for %s"
2683
+ msgstr ""
2684
+
2685
+ #: inc/class-templates.php:77
2686
+ #, php-format
2687
+ msgid ""
2688
+ "Make sure you call the %sget_template_details%s function with the correct "
2689
+ "parameters."
2690
+ msgstr ""
2691
+
2692
  #: inc/wpsl-functions.php:221
2693
  msgid "Show the store list below the map"
2694
  msgstr ""
readme.txt CHANGED
@@ -5,7 +5,7 @@ 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.9.1
8
- Stable tag: 2.2.10
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl.html
11
 
@@ -126,6 +126,14 @@ If you find a plugin or theme that causes a conflict, please report it on the [s
126
 
127
  == Changelog ==
128
 
 
 
 
 
 
 
 
 
129
  = 2.2.10, December 12, 2017 =
130
  * Added: The [wpsl_map_tab_anchor](https://wpstorelocator.co/document/wpsl_map_tab_anchor) filter now also accepts an array, so you can show multiple maps ( with the wpsl_map shortcode ) next to eachother in different tabs.
131
  * Added: A store locator media button in the editor that enables you to generate the shortcode attributes for the wpsl shortcode.
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.9.1
8
+ Stable tag: 2.2.11
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl.html
11
 
126
 
127
  == Changelog ==
128
 
129
+ = 2.2.11, January 14, 2018 =
130
+ * Added: A WPSL_Templates class that handles the different templates in the store locator and in the upcoming directory and nearby locations add-ons.
131
+ * Added: A 'wpsl_settings_tab' filter that makes it possible to add custom tabs on the settings page.
132
+ * Added: A 'wpsl_settings_section' action so you can add custom fields to the settings page.
133
+ * Added: A 'wpsl_check_latlng_transient' function that checks if the coordinates for the passed address exist in a transient, if not, then create it.
134
+ * Changed: The find_nearby_locations(), check_store_filter() and the check_allowed_filter_value() now accepts an $args param.
135
+ * Changed: Increased the timeout for the geolocation request.
136
+
137
  = 2.2.10, December 12, 2017 =
138
  * Added: The [wpsl_map_tab_anchor](https://wpstorelocator.co/document/wpsl_map_tab_anchor) filter now also accepts an array, so you can show multiple maps ( with the wpsl_map shortcode ) next to eachother in different tabs.
139
  * Added: A store locator media button in the editor that enables you to generate the shortcode attributes for the wpsl shortcode.
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.10
8
  Text Domain: wpsl
9
  Domain Path: /languages/
10
  License: GPL v3
@@ -45,6 +45,7 @@ if ( !class_exists( 'WP_Store_locator' ) ) {
45
 
46
  $this->post_types = new WPSL_Post_Types();
47
  $this->i18n = new WPSL_i18n();
 
48
 
49
  register_activation_hook( __FILE__, array( $this, 'install' ) );
50
  }
@@ -58,7 +59,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.10' );
62
 
63
  if ( !defined( 'WPSL_URL' ) )
64
  define( 'WPSL_URL', plugin_dir_url( __FILE__ ) );
@@ -77,8 +78,9 @@ if ( !class_exists( 'WP_Store_locator' ) ) {
77
  * @return void
78
  */
79
  public function includes() {
80
-
81
  require_once( WPSL_PLUGIN_DIR . 'inc/wpsl-functions.php' );
 
82
  require_once( WPSL_PLUGIN_DIR . 'inc/class-post-types.php' );
83
  require_once( WPSL_PLUGIN_DIR . 'inc/class-i18n.php' );
84
  require_once( WPSL_PLUGIN_DIR . 'frontend/class-frontend.php' );
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.11
8
  Text Domain: wpsl
9
  Domain Path: /languages/
10
  License: GPL v3
45
 
46
  $this->post_types = new WPSL_Post_Types();
47
  $this->i18n = new WPSL_i18n();
48
+ $this->templates = new WPSL_Templates();
49
 
50
  register_activation_hook( __FILE__, array( $this, 'install' ) );
51
  }
59
  public function define_constants() {
60
 
61
  if ( !defined( 'WPSL_VERSION_NUM' ) )
62
+ define( 'WPSL_VERSION_NUM', '2.2.11' );
63
 
64
  if ( !defined( 'WPSL_URL' ) )
65
  define( 'WPSL_URL', plugin_dir_url( __FILE__ ) );
78
  * @return void
79
  */
80
  public function includes() {
81
+
82
  require_once( WPSL_PLUGIN_DIR . 'inc/wpsl-functions.php' );
83
+ require_once( WPSL_PLUGIN_DIR . 'inc/class-templates.php' );
84
  require_once( WPSL_PLUGIN_DIR . 'inc/class-post-types.php' );
85
  require_once( WPSL_PLUGIN_DIR . 'inc/class-i18n.php' );
86
  require_once( WPSL_PLUGIN_DIR . 'frontend/class-frontend.php' );