Google Maps Easy - Version 1.9.29

Version Description

Download this release

Release Info

Developer supsystic.com
Plugin Icon 128x128 Google Maps Easy
Version 1.9.29
Comparing to
See all releases

Code changes from version 1.9.1 to 1.9.29

classes/frame.php CHANGED
@@ -14,7 +14,7 @@ class frameGmp {
14
  private $_scriptsInitialized = false;
15
  private $_styles = array();
16
  private $_stylesInitialized = false;
17
-
18
  private $_scriptsVars = array();
19
  private $_mod = '';
20
  private $_action = '';
@@ -22,10 +22,10 @@ class frameGmp {
22
  * Object with result of executing non-ajax module request
23
  */
24
  private $_res = null;
25
-
26
  public function __construct() {
27
  $this->_res = toeCreateObjGmp('response', array());
28
-
29
  }
30
  static public function getInstance() {
31
  static $instance;
@@ -106,23 +106,23 @@ class frameGmp {
106
  $this->_initModules();
107
 
108
  dispatcherGmp::doAction('afterModulesInit');
109
-
110
  modInstallerGmp::checkActivationMessages();
111
-
112
  $this->_execModules();
113
-
114
  add_action('init', array($this, 'addScripts'));
115
  add_action('init', array($this, 'addStyles'));
116
 
117
  register_activation_hook( GMP_DIR. DS. GMP_MAIN_FILE, array('utilsGmp', 'activatePlugin') ); //See classes/install.php file
118
  register_uninstall_hook(GMP_DIR. DS. GMP_MAIN_FILE, array('utilsGmp', 'deletePlugin'));
119
  register_deactivation_hook(GMP_DIR. DS. GMP_MAIN_FILE, array( 'utilsGmp', 'deactivatePlugin' ) );
120
-
121
  add_action('init', array($this, 'connectLang'));
122
  //$operationTime = microtime(true) - $startTime;
123
  }
124
  public function connectLang() {
125
- load_plugin_textdomain(GMP_LANG_CODE, false, GMP_PLUG_NAME. '/lang');
126
  }
127
  /**
128
  * Check permissions for action in controller by $code and made corresponding action
@@ -150,7 +150,7 @@ class frameGmp {
150
  if($mod) {
151
  $permissions = $mod->getController()->getPermissions();
152
  if(!empty($permissions)) { // Special permissions
153
- if(isset($permissions[GMP_METHODS])
154
  && !empty($permissions[GMP_METHODS])
155
  ) {
156
  foreach($permissions[GMP_METHODS] as $method => $permissions) { // Make case-insensitive
@@ -177,14 +177,14 @@ class frameGmp {
177
  if(is_array($methods)) {
178
  $lowerMethods = array_map('strtolower', $methods); // Make case-insensitive
179
  if(in_array($action, $lowerMethods)) { // Permission for this method exists
180
- if($currentUserPosition != $userlevel)
181
  $res = false;
182
  break;
183
  }
184
  } else {
185
  $lowerMethod = strtolower($methods); // Make case-insensitive
186
  if($lowerMethod == $action) { // Permission for this method exists
187
- if($currentUserPosition != $userlevel)
188
  $res = false;
189
  break;
190
  }
@@ -212,7 +212,7 @@ class frameGmp {
212
  if($mod) {
213
  $permissions = $mod->getController()->getPermissions();
214
  if(!empty($permissions)) { // Special permissions
215
- if(isset($permissions[GMP_METHODS])
216
  && !empty($permissions[GMP_METHODS])
217
  ) {
218
  foreach($permissions[GMP_METHODS] as $method => $permissions) { // Make case-insensitive
@@ -319,7 +319,7 @@ class frameGmp {
319
  }
320
  return $res;
321
  }
322
-
323
  public function getModule($code) {
324
  return (isset($this->_modules[$code]) ? $this->_modules[$code] : NULL);
325
  }
@@ -338,10 +338,10 @@ class frameGmp {
338
  wp_enqueue_script($handle, $src, $deps, $ver, $in_footer);
339
  } else {
340
  $this->_scripts[] = array(
341
- 'handle' => $handle,
342
- 'src' => $src,
343
- 'deps' => $deps,
344
- 'ver' => $ver,
345
  'in_footer' => $in_footer,
346
  'vars' => $vars
347
  );
@@ -354,7 +354,7 @@ class frameGmp {
354
  if(!empty($this->_scripts)) {
355
  foreach($this->_scripts as $s) {
356
  wp_enqueue_script($s['handle'], $s['src'], $s['deps'], $s['ver'], $s['in_footer']);
357
-
358
  if($s['vars'] || isset($this->_scriptsVars[$s['handle']])) {
359
  $vars = array();
360
  if($s['vars'])
@@ -378,7 +378,7 @@ class frameGmp {
378
  $this->_scriptsVars[$script][$name] = $val;
379
  }
380
  }
381
-
382
  public function addStyle($handle, $src = false, $deps = array(), $ver = false, $media = 'all') {
383
  $src = empty($src) ? $src : uriGmp::_($src);
384
  if(!$ver)
@@ -391,7 +391,7 @@ class frameGmp {
391
  'src' => $src,
392
  'deps' => $deps,
393
  'ver' => $ver,
394
- 'media' => $media
395
  );
396
  }
397
  }
@@ -421,13 +421,13 @@ class frameGmp {
421
 
422
  //Very interesting thing going here.............
423
  public function loadPlugins() {
424
- require_once(ABSPATH. 'wp-includes/pluggable.php');
425
  }
426
  public function loadWPSettings() {
427
- require_once(ABSPATH. 'wp-settings.php');
428
  }
429
  public function loadLocale() {
430
- require_once(ABSPATH. 'wp-includes/locale.php');
431
  }
432
  public function moduleActive($code) {
433
  return isset($this->_modules[$code]);
14
  private $_scriptsInitialized = false;
15
  private $_styles = array();
16
  private $_stylesInitialized = false;
17
+
18
  private $_scriptsVars = array();
19
  private $_mod = '';
20
  private $_action = '';
22
  * Object with result of executing non-ajax module request
23
  */
24
  private $_res = null;
25
+
26
  public function __construct() {
27
  $this->_res = toeCreateObjGmp('response', array());
28
+
29
  }
30
  static public function getInstance() {
31
  static $instance;
106
  $this->_initModules();
107
 
108
  dispatcherGmp::doAction('afterModulesInit');
109
+
110
  modInstallerGmp::checkActivationMessages();
111
+
112
  $this->_execModules();
113
+
114
  add_action('init', array($this, 'addScripts'));
115
  add_action('init', array($this, 'addStyles'));
116
 
117
  register_activation_hook( GMP_DIR. DS. GMP_MAIN_FILE, array('utilsGmp', 'activatePlugin') ); //See classes/install.php file
118
  register_uninstall_hook(GMP_DIR. DS. GMP_MAIN_FILE, array('utilsGmp', 'deletePlugin'));
119
  register_deactivation_hook(GMP_DIR. DS. GMP_MAIN_FILE, array( 'utilsGmp', 'deactivatePlugin' ) );
120
+
121
  add_action('init', array($this, 'connectLang'));
122
  //$operationTime = microtime(true) - $startTime;
123
  }
124
  public function connectLang() {
125
+ load_plugin_textdomain(GMP_LANG_CODE, false, GMP_PLUG_NAME. '/languages/');
126
  }
127
  /**
128
  * Check permissions for action in controller by $code and made corresponding action
150
  if($mod) {
151
  $permissions = $mod->getController()->getPermissions();
152
  if(!empty($permissions)) { // Special permissions
153
+ if(isset($permissions[GMP_METHODS])
154
  && !empty($permissions[GMP_METHODS])
155
  ) {
156
  foreach($permissions[GMP_METHODS] as $method => $permissions) { // Make case-insensitive
177
  if(is_array($methods)) {
178
  $lowerMethods = array_map('strtolower', $methods); // Make case-insensitive
179
  if(in_array($action, $lowerMethods)) { // Permission for this method exists
180
+ if($currentUserPosition != $userlevel)
181
  $res = false;
182
  break;
183
  }
184
  } else {
185
  $lowerMethod = strtolower($methods); // Make case-insensitive
186
  if($lowerMethod == $action) { // Permission for this method exists
187
+ if($currentUserPosition != $userlevel)
188
  $res = false;
189
  break;
190
  }
212
  if($mod) {
213
  $permissions = $mod->getController()->getPermissions();
214
  if(!empty($permissions)) { // Special permissions
215
+ if(isset($permissions[GMP_METHODS])
216
  && !empty($permissions[GMP_METHODS])
217
  ) {
218
  foreach($permissions[GMP_METHODS] as $method => $permissions) { // Make case-insensitive
319
  }
320
  return $res;
321
  }
322
+
323
  public function getModule($code) {
324
  return (isset($this->_modules[$code]) ? $this->_modules[$code] : NULL);
325
  }
338
  wp_enqueue_script($handle, $src, $deps, $ver, $in_footer);
339
  } else {
340
  $this->_scripts[] = array(
341
+ 'handle' => $handle,
342
+ 'src' => $src,
343
+ 'deps' => $deps,
344
+ 'ver' => $ver,
345
  'in_footer' => $in_footer,
346
  'vars' => $vars
347
  );
354
  if(!empty($this->_scripts)) {
355
  foreach($this->_scripts as $s) {
356
  wp_enqueue_script($s['handle'], $s['src'], $s['deps'], $s['ver'], $s['in_footer']);
357
+
358
  if($s['vars'] || isset($this->_scriptsVars[$s['handle']])) {
359
  $vars = array();
360
  if($s['vars'])
378
  $this->_scriptsVars[$script][$name] = $val;
379
  }
380
  }
381
+
382
  public function addStyle($handle, $src = false, $deps = array(), $ver = false, $media = 'all') {
383
  $src = empty($src) ? $src : uriGmp::_($src);
384
  if(!$ver)
391
  'src' => $src,
392
  'deps' => $deps,
393
  'ver' => $ver,
394
+ 'media' => $media
395
  );
396
  }
397
  }
421
 
422
  //Very interesting thing going here.............
423
  public function loadPlugins() {
424
+ require_once(ABSPATH. 'wp-includes/pluggable.php');
425
  }
426
  public function loadWPSettings() {
427
+ require_once(ABSPATH. 'wp-settings.php');
428
  }
429
  public function loadLocale() {
430
+ require_once(ABSPATH. 'wp-includes/locale.php');
431
  }
432
  public function moduleActive($code) {
433
  return isset($this->_modules[$code]);
classes/html.php CHANGED
@@ -109,7 +109,7 @@ class htmlGmp {
109
  if($params['usetable']) $out .= '</tr></table>';
110
  }
111
  return $out;
112
- }
113
  static public function timepicker($name, $params = array('attrs' => '', 'value' => '')) {
114
  if(isset($params['id']) && !empty($params['id']))
115
  $id = $params['id'];
@@ -178,7 +178,7 @@ class htmlGmp {
178
  }
179
  static public function selectlist($name, $params = array('attrs'=>'', 'size'=> 5, 'options' => array(), 'value' => '')) {
180
  $out = '';
181
- if(!strpos($name, '[]'))
182
  $name .= '[]';
183
  if (!isset($params['size']) || !is_numeric($params['size']) || $params['size'] == '') {
184
  $params['size'] = 5;
@@ -193,7 +193,7 @@ class htmlGmp {
193
  }
194
  }
195
  $out .= '</select>';
196
- return $out;
197
  }
198
  static public function file($name, $params = array()) {
199
  $params['type'] = 'file';
@@ -211,9 +211,9 @@ class htmlGmp {
211
  $out .= '<span class="delete_option" id="delete_'.$name.'" '.$display.'></span>';
212
  $out .= '<script type="text/javascript">// <!--
213
  jQuery(document).ready(function(){
214
- new AjaxUpload("#toeUploadbut_'.$name.'", {
215
- action: "'.$params['url'].'",
216
- name: "'. $name. '" '.
217
  (empty($params['data']) ? '' : ', data: '. $params['data']. '').
218
  (empty($params['autoSubmit']) ? '' : ', autoSubmit: "'. $params['autoSubmit']. '"').
219
  (empty($params['responseType']) ? '' : ', responseType: "'. $params['responseType']. '"').
@@ -304,7 +304,7 @@ class htmlGmp {
304
  $params['action'] = isset($params['action']) ? $params['action'] : '';
305
  $params['method'] = isset($params['method']) ? $params['method'] : 'GET';
306
  if(isset($params['hideMethodInside']) && $params['hideMethodInside']) {
307
- return '<form name="'. $name. '" action="'. $params['action']. '" method="'. $params['method']. '" '. $params['attrs']. '>'.
308
  self::hidden('method', array('value' => $params['method']));
309
  } else {
310
  return '<form name="'. $name. '" action="'. $params['action']. '" method="'. $params['method']. '" '. $params['attrs']. '>';
@@ -316,10 +316,10 @@ class htmlGmp {
316
  static public function statesInput($name, $params = array('value' => '', 'attrs' => '', 'notSelected' => true, 'id' => '', 'selectHtml' => '')) {
317
  if(empty($params['selectHtml']) || !method_exists(html, $params['selectHtml']))
318
  return false;
319
-
320
  $params['notSelected'] = isset($params['notSelected']) ? $params['notSelected'] : true;
321
  $states = fieldAdapterGmp::getStates($params['notSelected']);
322
-
323
  foreach($states as $sid => $s) {
324
  $params['options'][$sid] = $s['name'];
325
  }
@@ -396,7 +396,7 @@ class htmlGmp {
396
  $countOptions = count($params['options']);
397
  $remove = '<a href="#" onclick="toeRemoveTextFieldsDynamicTable(this); return false;">remove</a>';
398
  $add = '<a href="#" onclick="toeAddTextFieldsDynamicTable(this, '. $countOptions. '); return false;">add</a>';
399
-
400
  $res = '<div class="toeTextFieldsDynamicTable">';
401
  if(empty($params['value']))
402
  $params['value'] = array();
@@ -410,7 +410,7 @@ class htmlGmp {
410
  foreach($params['options'] as $key => $p) {
411
  switch($countOptions) {
412
  case 1:
413
- if(isset($params['value'][$i]))
414
  $value = is_array($params['value'][$i]) ? $params['value'][$i][$key] : $params['value'][$i];
415
  else
416
  $value = '';
@@ -504,7 +504,7 @@ class htmlGmp {
504
  $paramsStr = implode(', ', $paramsArr);
505
  }
506
 
507
- $res = '<div id="toeSliderDisplay_'. $id. '" class="toeSliderDisplay">'. (isset($params['value']) ? $params['value'] . ' meter(s)' : '') . '</div>';
508
  $res .= '<div id="'. $id. '"></div>';
509
  $params['attrs'] = 'id="toeSliderInput_'. $id. '"';
510
  $res .= self::hidden($name, $params);
@@ -576,7 +576,7 @@ class htmlGmp {
576
  }
577
  static public function fontsList($name, $params = array('value' => '')) {
578
  static $options = array();
579
-
580
  if(empty($options)) { // Fill them only one time per loading
581
  foreach(fieldAdapterGmp::getFontsList() as $font)
582
  $options[ $font ] = $font;
@@ -621,7 +621,7 @@ class htmlGmp {
621
  $params['checked'] = isset($params['checked']) ? (int) $params['checked'] : 0;
622
  $params['attrs'] = isset($params['attrs']) && !empty($params['attrs']) ? $params['attrs'] : '';
623
  $params['attrs'] .= ' id="'. $params['id']. '"';
624
-
625
  return '<a class="toeSlideShellGmp" href="#"'. $params['attrs']. '>
626
  <span class="toeSlideButtGmp"></span>
627
  <span class="toeSlideOnGmp">'. __('ON'). '</span>
109
  if($params['usetable']) $out .= '</tr></table>';
110
  }
111
  return $out;
112
+ }
113
  static public function timepicker($name, $params = array('attrs' => '', 'value' => '')) {
114
  if(isset($params['id']) && !empty($params['id']))
115
  $id = $params['id'];
178
  }
179
  static public function selectlist($name, $params = array('attrs'=>'', 'size'=> 5, 'options' => array(), 'value' => '')) {
180
  $out = '';
181
+ if(!strpos($name, '[]'))
182
  $name .= '[]';
183
  if (!isset($params['size']) || !is_numeric($params['size']) || $params['size'] == '') {
184
  $params['size'] = 5;
193
  }
194
  }
195
  $out .= '</select>';
196
+ return $out;
197
  }
198
  static public function file($name, $params = array()) {
199
  $params['type'] = 'file';
211
  $out .= '<span class="delete_option" id="delete_'.$name.'" '.$display.'></span>';
212
  $out .= '<script type="text/javascript">// <!--
213
  jQuery(document).ready(function(){
214
+ new AjaxUpload("#toeUploadbut_'.$name.'", {
215
+ action: "'.$params['url'].'",
216
+ name: "'. $name. '" '.
217
  (empty($params['data']) ? '' : ', data: '. $params['data']. '').
218
  (empty($params['autoSubmit']) ? '' : ', autoSubmit: "'. $params['autoSubmit']. '"').
219
  (empty($params['responseType']) ? '' : ', responseType: "'. $params['responseType']. '"').
304
  $params['action'] = isset($params['action']) ? $params['action'] : '';
305
  $params['method'] = isset($params['method']) ? $params['method'] : 'GET';
306
  if(isset($params['hideMethodInside']) && $params['hideMethodInside']) {
307
+ return '<form name="'. $name. '" action="'. $params['action']. '" method="'. $params['method']. '" '. $params['attrs']. '>'.
308
  self::hidden('method', array('value' => $params['method']));
309
  } else {
310
  return '<form name="'. $name. '" action="'. $params['action']. '" method="'. $params['method']. '" '. $params['attrs']. '>';
316
  static public function statesInput($name, $params = array('value' => '', 'attrs' => '', 'notSelected' => true, 'id' => '', 'selectHtml' => '')) {
317
  if(empty($params['selectHtml']) || !method_exists(html, $params['selectHtml']))
318
  return false;
319
+
320
  $params['notSelected'] = isset($params['notSelected']) ? $params['notSelected'] : true;
321
  $states = fieldAdapterGmp::getStates($params['notSelected']);
322
+
323
  foreach($states as $sid => $s) {
324
  $params['options'][$sid] = $s['name'];
325
  }
396
  $countOptions = count($params['options']);
397
  $remove = '<a href="#" onclick="toeRemoveTextFieldsDynamicTable(this); return false;">remove</a>';
398
  $add = '<a href="#" onclick="toeAddTextFieldsDynamicTable(this, '. $countOptions. '); return false;">add</a>';
399
+
400
  $res = '<div class="toeTextFieldsDynamicTable">';
401
  if(empty($params['value']))
402
  $params['value'] = array();
410
  foreach($params['options'] as $key => $p) {
411
  switch($countOptions) {
412
  case 1:
413
+ if(isset($params['value'][$i]))
414
  $value = is_array($params['value'][$i]) ? $params['value'][$i][$key] : $params['value'][$i];
415
  else
416
  $value = '';
504
  $paramsStr = implode(', ', $paramsArr);
505
  }
506
 
507
+ $res = '<div id="toeSliderDisplay_'. $id. '" class="toeSliderDisplay" data-unit="">'. (isset($params['value']) ? $params['value'] . ' <span class="customControlsUnit"></span>' : '') . '</div>';
508
  $res .= '<div id="'. $id. '"></div>';
509
  $params['attrs'] = 'id="toeSliderInput_'. $id. '"';
510
  $res .= self::hidden($name, $params);
576
  }
577
  static public function fontsList($name, $params = array('value' => '')) {
578
  static $options = array();
579
+
580
  if(empty($options)) { // Fill them only one time per loading
581
  foreach(fieldAdapterGmp::getFontsList() as $font)
582
  $options[ $font ] = $font;
621
  $params['checked'] = isset($params['checked']) ? (int) $params['checked'] : 0;
622
  $params['attrs'] = isset($params['attrs']) && !empty($params['attrs']) ? $params['attrs'] : '';
623
  $params['attrs'] .= ' id="'. $params['id']. '"';
624
+
625
  return '<a class="toeSlideShellGmp" href="#"'. $params['attrs']. '>
626
  <span class="toeSlideButtGmp"></span>
627
  <span class="toeSlideOnGmp">'. __('ON'). '</span>
classes/installer.php CHANGED
@@ -136,16 +136,16 @@ class installerGmp {
136
  `animation` int(1),
137
  `create_date` datetime,
138
  `params` text CHARACTER SET utf8 NOT NULL,
139
- `sort_order` tinyint(1) NOT NULL DEFAULT '0',
140
- `user_id` int(11),
141
  PRIMARY KEY (`id`)
142
  ) DEFAULT CHARSET=utf8");
143
  }
144
  if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."markers", 'sort_order')) {
145
- dbGmp::query("ALTER TABLE `@__markers` ADD COLUMN `sort_order` tinyint(1) NOT NULL DEFAULT '0';");
146
  }
147
  if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."markers", 'user_id')) {
148
- dbGmp::query("ALTER TABLE `@__markers` ADD COLUMN `user_id` int(11);");
149
  }
150
  /**
151
  * Create table for marker Icons
@@ -169,7 +169,7 @@ class installerGmp {
169
  `title` varchar(250) CHARACTER SET utf8,
170
  `description` text CHARACTER SET utf8,
171
  `params` text CHARACTER SET utf8,
172
- `sort_order` tinyint(1) NOT NULL DEFAULT '0',
173
  PRIMARY KEY (`id`)
174
  ) DEFAULT CHARSET=utf8");
175
  }
@@ -177,7 +177,7 @@ class installerGmp {
177
  dbGmp::query("ALTER TABLE @__marker_groups ADD params text CHARACTER SET utf8;");
178
  }
179
  if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."marker_groups", 'sort_order')) {
180
- dbGmp::query("ALTER TABLE @__marker_groups ADD sort_order tinyint(1) NOT NULL DEFAULT '0';");
181
  }
182
  if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."marker_groups", 'parent')) {
183
  dbGmp::query("ALTER TABLE @__marker_groups ADD parent tinyint(1) NOT NULL DEFAULT '0' AFTER params;");
@@ -216,6 +216,28 @@ class installerGmp {
216
  dbGmp::query("INSERT INTO `@__modules` (id, code, active, type_id, params, has_tab, label, description) VALUES
217
  (NULL, 'membership', 1, 1, '', 1, 'membership', 'membership');");
218
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  update_option($wpPrefix. GMP_DB_PREF. 'db_version', GMP_VERSION_PLUGIN);
220
  add_option($wpPrefix. GMP_DB_PREF. 'db_installed', 1);
221
 
@@ -260,6 +282,7 @@ class installerGmp {
260
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."htmltype`");
261
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."markers`");
262
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."marker_groups`");
 
263
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."options_categories`");
264
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."modules_type`");
265
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."usage_stat`");
136
  `animation` int(1),
137
  `create_date` datetime,
138
  `params` text CHARACTER SET utf8 NOT NULL,
139
+ `sort_order` smallint(1) NOT NULL DEFAULT '0',
140
+ `user_id` bigint(20),
141
  PRIMARY KEY (`id`)
142
  ) DEFAULT CHARSET=utf8");
143
  }
144
  if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."markers", 'sort_order')) {
145
+ dbGmp::query("ALTER TABLE `@__markers` ADD COLUMN `sort_order` smallint(1) NOT NULL DEFAULT '0';");
146
  }
147
  if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."markers", 'user_id')) {
148
+ dbGmp::query("ALTER TABLE `@__markers` ADD COLUMN `user_id` bigint(20);");
149
  }
150
  /**
151
  * Create table for marker Icons
169
  `title` varchar(250) CHARACTER SET utf8,
170
  `description` text CHARACTER SET utf8,
171
  `params` text CHARACTER SET utf8,
172
+ `sort_order` smallint(1) NOT NULL DEFAULT '0',
173
  PRIMARY KEY (`id`)
174
  ) DEFAULT CHARSET=utf8");
175
  }
177
  dbGmp::query("ALTER TABLE @__marker_groups ADD params text CHARACTER SET utf8;");
178
  }
179
  if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."marker_groups", 'sort_order')) {
180
+ dbGmp::query("ALTER TABLE @__marker_groups ADD sort_order smallint(1) NOT NULL DEFAULT '0';");
181
  }
182
  if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."marker_groups", 'parent')) {
183
  dbGmp::query("ALTER TABLE @__marker_groups ADD parent tinyint(1) NOT NULL DEFAULT '0' AFTER params;");
216
  dbGmp::query("INSERT INTO `@__modules` (id, code, active, type_id, params, has_tab, label, description) VALUES
217
  (NULL, 'membership', 1, 1, '', 1, 'membership', 'membership');");
218
  }
219
+ /**
220
+ * Create table for marker groups
221
+ */
222
+ if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."marker_groups_relation")){
223
+ dbDelta("CREATE TABLE IF NOT EXISTS `".$wpPrefix.GMP_DB_PREF."marker_groups_relation"."` (
224
+ `id` int(11) NOT NULL AUTO_INCREMENT,
225
+ `marker_id` int(11) NOT NULL,
226
+ `groups_id` int(11) NOT NULL,
227
+ PRIMARY KEY (`id`)
228
+ ) DEFAULT CHARSET=utf8");
229
+ }
230
+
231
+ if( !get_option($wpPrefix. GMP_DB_PREF. 'markers_groups_multiple_updated') ){
232
+ $markersData = dbGmp::get("SELECT `id`,`marker_group_id` FROM @__markers", 'all', ARRAY_A);
233
+ if($markersData){
234
+ foreach ($markersData as $marker) {
235
+ dbGmp::query("INSERT INTO `".$wpPrefix.GMP_DB_PREF."marker_groups_relation` (marker_id, groups_id) VALUES
236
+ (".$marker['id'].", ".$marker['marker_group_id'].");");
237
+ }
238
+ update_option($wpPrefix. GMP_DB_PREF. 'markers_groups_multiple_updated', 1);
239
+ }
240
+ }
241
  update_option($wpPrefix. GMP_DB_PREF. 'db_version', GMP_VERSION_PLUGIN);
242
  add_option($wpPrefix. GMP_DB_PREF. 'db_installed', 1);
243
 
282
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."htmltype`");
283
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."markers`");
284
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."marker_groups`");
285
+ $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."marker_groups_relation`");
286
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."options_categories`");
287
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."modules_type`");
288
  $wpdb->query("DROP TABLE IF EXISTS `".$wpPrefix.GMP_DB_PREF."usage_stat`");
classes/installerDbUpdater.php CHANGED
@@ -4,6 +4,8 @@ class installerDbUpdaterGmp {
4
  self::update_105();
5
  self::update_109();
6
  self::update_117();
 
 
7
  }
8
  public static function update_105() {
9
  if(!dbGmp::exist('@__modules', 'code', 'csv')) {
@@ -20,4 +22,28 @@ class installerDbUpdaterGmp {
20
  public static function update_117() {
21
  dbGmp::query("UPDATE @__options SET value_type = 'array' WHERE code = 'infowindow_size' LIMIT 1");
22
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  }
4
  self::update_105();
5
  self::update_109();
6
  self::update_117();
7
+ self::update_192();
8
+ self::update_193();
9
  }
10
  public static function update_105() {
11
  if(!dbGmp::exist('@__modules', 'code', 'csv')) {
22
  public static function update_117() {
23
  dbGmp::query("UPDATE @__options SET value_type = 'array' WHERE code = 'infowindow_size' LIMIT 1");
24
  }
25
+
26
+ public static function update_192() {
27
+ global $wpdb;
28
+ $wpPrefix = $wpdb->prefix;
29
+
30
+ if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."markers", 'period_from')) {
31
+ dbGmp::query("ALTER TABLE `@__markers` ADD COLUMN `period_from` DATE NULL;");
32
+ }
33
+ if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."markers", 'period_to')) {
34
+ dbGmp::query("ALTER TABLE `@__markers` ADD COLUMN `period_to` DATE NULL;");
35
+ }
36
+ if(!dbGmp::exist($wpPrefix.GMP_DB_PREF."markers", 'hash')) {
37
+ dbGmp::query("ALTER TABLE `@__markers` ADD COLUMN `hash` varchar(32) DEFAULT NULL;");
38
+ }
39
+ }
40
+
41
+ public static function update_193(){
42
+ global $wpdb;
43
+ $wpPrefix = $wpdb->prefix;
44
+
45
+ if(dbGmp::exist($wpPrefix.GMP_DB_PREF."markers", 'sort_order')) {
46
+ dbGmp::query("ALTER TABLE `@__markers` MODIFY COLUMN `sort_order` SMALLINT(1) NOT NULL DEFAULT '0';");
47
+ }
48
+ }
49
  }
classes/mobileDetect.php ADDED
@@ -0,0 +1,1468 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Mobile Detect Library
4
+ * Motto: "Every business should have a mobile detection script to detect mobile readers"
5
+ *
6
+ * Mobile_Detect is a lightweight PHP class for detecting mobile devices (including tablets).
7
+ * It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.
8
+ *
9
+ * Homepage: http://mobiledetect.net
10
+ * GitHub: https://github.com/serbanghita/Mobile-Detect
11
+ * README: https://github.com/serbanghita/Mobile-Detect/blob/master/README.md
12
+ * CONTRIBUTING: https://github.com/serbanghita/Mobile-Detect/blob/master/docs/CONTRIBUTING.md
13
+ * KNOWN LIMITATIONS: https://github.com/serbanghita/Mobile-Detect/blob/master/docs/KNOWN_LIMITATIONS.md
14
+ * EXAMPLES: https://github.com/serbanghita/Mobile-Detect/wiki/Code-examples
15
+ *
16
+ * @license https://github.com/serbanghita/Mobile-Detect/blob/master/LICENSE.txt MIT License
17
+ * @author Serban Ghita <serbanghita@gmail.com>
18
+ * @author Nick Ilyin <nick.ilyin@gmail.com>
19
+ * Original author: Victor Stanciu <vic.stanciu@gmail.com>
20
+ *
21
+ * @version 2.8.31
22
+ */
23
+ class mobileDetectGmp
24
+ {
25
+ /**
26
+ * Mobile detection type.
27
+ *
28
+ * @deprecated since version 2.6.9
29
+ */
30
+ const DETECTION_TYPE_MOBILE = 'mobile';
31
+
32
+ /**
33
+ * Extended detection type.
34
+ *
35
+ * @deprecated since version 2.6.9
36
+ */
37
+ const DETECTION_TYPE_EXTENDED = 'extended';
38
+
39
+ /**
40
+ * A frequently used regular expression to extract version #s.
41
+ *
42
+ * @deprecated since version 2.6.9
43
+ */
44
+ const VER = '([\w._\+]+)';
45
+
46
+ /**
47
+ * Top-level device.
48
+ */
49
+ const MOBILE_GRADE_A = 'A';
50
+
51
+ /**
52
+ * Mid-level device.
53
+ */
54
+ const MOBILE_GRADE_B = 'B';
55
+
56
+ /**
57
+ * Low-level device.
58
+ */
59
+ const MOBILE_GRADE_C = 'C';
60
+
61
+ /**
62
+ * Stores the version number of the current release.
63
+ */
64
+ const VERSION = '2.8.31';
65
+
66
+ /**
67
+ * A type for the version() method indicating a string return value.
68
+ */
69
+ const VERSION_TYPE_STRING = 'text';
70
+
71
+ /**
72
+ * A type for the version() method indicating a float return value.
73
+ */
74
+ const VERSION_TYPE_FLOAT = 'float';
75
+
76
+ /**
77
+ * A cache for resolved matches
78
+ * @var array
79
+ */
80
+ protected $cache = array();
81
+
82
+ /**
83
+ * The User-Agent HTTP header is stored in here.
84
+ * @var string
85
+ */
86
+ protected $userAgent = null;
87
+
88
+ /**
89
+ * HTTP headers in the PHP-flavor. So HTTP_USER_AGENT and SERVER_SOFTWARE.
90
+ * @var array
91
+ */
92
+ protected $httpHeaders = array();
93
+
94
+ /**
95
+ * CloudFront headers. E.g. CloudFront-Is-Desktop-Viewer, CloudFront-Is-Mobile-Viewer & CloudFront-Is-Tablet-Viewer.
96
+ * @var array
97
+ */
98
+ protected $cloudfrontHeaders = array();
99
+
100
+ /**
101
+ * The matching Regex.
102
+ * This is good for debug.
103
+ * @var string
104
+ */
105
+ protected $matchingRegex = null;
106
+
107
+ /**
108
+ * The matches extracted from the regex expression.
109
+ * This is good for debug.
110
+ *
111
+ * @var string
112
+ */
113
+ protected $matchesArray = null;
114
+
115
+ /**
116
+ * The detection type, using self::DETECTION_TYPE_MOBILE or self::DETECTION_TYPE_EXTENDED.
117
+ *
118
+ * @deprecated since version 2.6.9
119
+ *
120
+ * @var string
121
+ */
122
+ protected $detectionType = self::DETECTION_TYPE_MOBILE;
123
+
124
+ /**
125
+ * HTTP headers that trigger the 'isMobile' detection
126
+ * to be true.
127
+ *
128
+ * @var array
129
+ */
130
+ protected static $mobileHeaders = array(
131
+
132
+ 'HTTP_ACCEPT' => array('matches' => array(
133
+ // Opera Mini; @reference: http://dev.opera.com/articles/view/opera-binary-markup-language/
134
+ 'application/x-obml2d',
135
+ // BlackBerry devices.
136
+ 'application/vnd.rim.html',
137
+ 'text/vnd.wap.wml',
138
+ 'application/vnd.wap.xhtml+xml'
139
+ )),
140
+ 'HTTP_X_WAP_PROFILE' => null,
141
+ 'HTTP_X_WAP_CLIENTID' => null,
142
+ 'HTTP_WAP_CONNECTION' => null,
143
+ 'HTTP_PROFILE' => null,
144
+ // Reported by Opera on Nokia devices (eg. C3).
145
+ 'HTTP_X_OPERAMINI_PHONE_UA' => null,
146
+ 'HTTP_X_NOKIA_GATEWAY_ID' => null,
147
+ 'HTTP_X_ORANGE_ID' => null,
148
+ 'HTTP_X_VODAFONE_3GPDPCONTEXT' => null,
149
+ 'HTTP_X_HUAWEI_USERID' => null,
150
+ // Reported by Windows Smartphones.
151
+ 'HTTP_UA_OS' => null,
152
+ // Reported by Verizon, Vodafone proxy system.
153
+ 'HTTP_X_MOBILE_GATEWAY' => null,
154
+ // Seen this on HTC Sensation. SensationXE_Beats_Z715e.
155
+ 'HTTP_X_ATT_DEVICEID' => null,
156
+ // Seen this on a HTC.
157
+ 'HTTP_UA_CPU' => array('matches' => array('ARM')),
158
+ );
159
+
160
+ /**
161
+ * List of mobile devices (phones).
162
+ *
163
+ * @var array
164
+ */
165
+ protected static $phoneDevices = array(
166
+ 'iPhone' => '\biPhone\b|\biPod\b', // |\biTunes
167
+ 'BlackBerry' => 'BlackBerry|\bBB10\b|rim[0-9]+',
168
+ 'HTC' => 'HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\bEVO\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel',
169
+ 'Nexus' => 'Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6',
170
+ // @todo: Is 'Dell Streak' a tablet or a phone? ;)
171
+ 'Dell' => 'Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\b001DL\b|\b101DL\b|\bGS01\b',
172
+ 'Motorola' => 'Motorola|DROIDX|DROID BIONIC|\bDroid\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\bMoto E\b|XT1068|XT1092',
173
+ 'Samsung' => '\bSamsung\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F',
174
+ 'LG' => '\bLG\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|MS323)',
175
+ 'Sony' => 'SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533',
176
+ 'Asus' => 'Asus.*Galaxy|PadFone.*Mobile',
177
+ 'NokiaLumia' => 'Lumia [0-9]{3,4}',
178
+ // http://www.micromaxinfo.com/mobiles/smartphones
179
+ // Added because the codes might conflict with Acer Tablets.
180
+ 'Micromax' => 'Micromax.*\b(A210|A92|A88|A72|A111|A110Q|A115|A116|A110|A90S|A26|A51|A35|A54|A25|A27|A89|A68|A65|A57|A90)\b',
181
+ // @todo Complete the regex.
182
+ 'Palm' => 'PalmSource|Palm', // avantgo|blazer|elaine|hiptop|plucker|xiino ;
183
+ 'Vertu' => 'Vertu|Vertu.*Ltd|Vertu.*Ascent|Vertu.*Ayxta|Vertu.*Constellation(F|Quest)?|Vertu.*Monika|Vertu.*Signature', // Just for fun ;)
184
+ // http://www.pantech.co.kr/en/prod/prodList.do?gbrand=VEGA (PANTECH)
185
+ // Most of the VEGA devices are legacy. PANTECH seem to be newer devices based on Android.
186
+ 'Pantech' => 'PANTECH|IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|IM-A725L|IM-A780L|IM-A775C|IM-A770K|IM-A760S|IM-A750K|IM-A740S|IM-A730S|IM-A720L|IM-A710K|IM-A690L|IM-A690S|IM-A650S|IM-A630K|IM-A600S|VEGA PTL21|PT003|P8010|ADR910L|P6030|P6020|P9070|P4100|P9060|P5000|CDM8992|TXT8045|ADR8995|IS11PT|P2030|P6010|P8000|PT002|IS06|CDM8999|P9050|PT001|TXT8040|P2020|P9020|P2000|P7040|P7000|C790',
187
+ // http://www.fly-phone.com/devices/smartphones/ ; Included only smartphones.
188
+ 'Fly' => 'IQ230|IQ444|IQ450|IQ440|IQ442|IQ441|IQ245|IQ256|IQ236|IQ255|IQ235|IQ245|IQ275|IQ240|IQ285|IQ280|IQ270|IQ260|IQ250',
189
+ // http://fr.wikomobile.com
190
+ 'Wiko' => 'KITE 4G|HIGHWAY|GETAWAY|STAIRWAY|DARKSIDE|DARKFULL|DARKNIGHT|DARKMOON|SLIDE|WAX 4G|RAINBOW|BLOOM|SUNSET|GOA(?!nna)|LENNY|BARRY|IGGY|OZZY|CINK FIVE|CINK PEAX|CINK PEAX 2|CINK SLIM|CINK SLIM 2|CINK +|CINK KING|CINK PEAX|CINK SLIM|SUBLIM',
191
+ 'iMobile' => 'i-mobile (IQ|i-STYLE|idea|ZAA|Hitz)',
192
+ // Added simvalley mobile just for fun. They have some interesting devices.
193
+ // http://www.simvalley.fr/telephonie---gps-_22_telephonie-mobile_telephones_.html
194
+ 'SimValley' => '\b(SP-80|XT-930|SX-340|XT-930|SX-310|SP-360|SP60|SPT-800|SP-120|SPT-800|SP-140|SPX-5|SPX-8|SP-100|SPX-8|SPX-12)\b',
195
+ // Wolfgang - a brand that is sold by Aldi supermarkets.
196
+ // http://www.wolfgangmobile.com/
197
+ 'Wolfgang' => 'AT-B24D|AT-AS50HD|AT-AS40W|AT-AS55HD|AT-AS45q2|AT-B26D|AT-AS50Q',
198
+ 'Alcatel' => 'Alcatel',
199
+ 'Nintendo' => 'Nintendo 3DS',
200
+ // http://en.wikipedia.org/wiki/Amoi
201
+ 'Amoi' => 'Amoi',
202
+ // http://en.wikipedia.org/wiki/INQ
203
+ 'INQ' => 'INQ',
204
+ // @Tapatalk is a mobile app; http://support.tapatalk.com/threads/smf-2-0-2-os-and-browser-detection-plugin-and-tapatalk.15565/#post-79039
205
+ 'GenericPhone' => 'Tapatalk|PDA;|SAGEM|\bmmp\b|pocket|\bpsp\b|symbian|Smartphone|smartfon|treo|up.browser|up.link|vodafone|\bwap\b|nokia|Series40|Series60|S60|SonyEricsson|N900|MAUI.*WAP.*Browser',
206
+ );
207
+
208
+ /**
209
+ * List of tablet devices.
210
+ *
211
+ * @var array
212
+ */
213
+ protected static $tabletDevices = array(
214
+ // @todo: check for mobile friendly emails topic.
215
+ 'iPad' => 'iPad|iPad.*Mobile',
216
+ // Removed |^.*Android.*Nexus(?!(?:Mobile).)*$
217
+ // @see #442
218
+ 'NexusTablet' => 'Android.*Nexus[\s]+(7|9|10)',
219
+ 'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285', // SCH-P709|SCH-P729|SM-T2558|GT-I9205 - Samsung Mega - treat them like a regular phone.
220
+ // http://docs.aws.amazon.com/silk/latest/developerguide/user-agent.html
221
+ 'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)',
222
+ // Only the Surface tablets with Windows RT are considered mobile.
223
+ // http://msdn.microsoft.com/en-us/library/ie/hh920767(v=vs.85).aspx
224
+ 'SurfaceTablet' => 'Windows NT [0-9.]+; ARM;.*(Tablet|ARMBJS)',
225
+ // http://shopping1.hp.com/is-bin/INTERSHOP.enfinity/WFS/WW-USSMBPublicStore-Site/en_US/-/USD/ViewStandardCatalog-Browse?CatalogCategoryID=JfIQ7EN5lqMAAAEyDcJUDwMT
226
+ 'HPTablet' => 'HP Slate (7|8|10)|HP ElitePad 900|hp-tablet|EliteBook.*Touch|HP 8|Slate 21|HP SlateBook 10',
227
+ // Watch out for PadFone, see #132.
228
+ // http://www.asus.com/de/Tablets_Mobile/Memo_Pad_Products/
229
+ 'AsusTablet' => '^.*PadFone((?!Mobile).)*$|Transformer|TF101|TF101G|TF300T|TF300TG|TF300TL|TF700T|TF700KL|TF701T|TF810C|ME171|ME301T|ME302C|ME371MG|ME370T|ME372MG|ME172V|ME173X|ME400C|Slider SL101|\bK00F\b|\bK00C\b|\bK00E\b|\bK00L\b|TX201LA|ME176C|ME102A|\bM80TA\b|ME372CL|ME560CG|ME372CG|ME302KL| K010 | K011 | K017 | K01E |ME572C|ME103K|ME170C|ME171C|\bME70C\b|ME581C|ME581CL|ME8510C|ME181C|P01Y|PO1MA|P01Z|\bP027\b|\bP024\b',
230
+ 'BlackBerryTablet' => 'PlayBook|RIM Tablet',
231
+ 'HTCtablet' => 'HTC_Flyer_P512|HTC Flyer|HTC Jetstream|HTC-P715a|HTC EVO View 4G|PG41200|PG09410',
232
+ 'MotorolaTablet' => 'xoom|sholest|MZ615|MZ605|MZ505|MZ601|MZ602|MZ603|MZ604|MZ606|MZ607|MZ608|MZ609|MZ615|MZ616|MZ617',
233
+ 'NookTablet' => 'Android.*Nook|NookColor|nook browser|BNRV200|BNRV200A|BNTV250|BNTV250A|BNTV400|BNTV600|LogicPD Zoom2',
234
+ // http://www.acer.ro/ac/ro/RO/content/drivers
235
+ // http://www.packardbell.co.uk/pb/en/GB/content/download (Packard Bell is part of Acer)
236
+ // http://us.acer.com/ac/en/US/content/group/tablets
237
+ // http://www.acer.de/ac/de/DE/content/models/tablets/
238
+ // Can conflict with Micromax and Motorola phones codes.
239
+ 'AcerTablet' => 'Android.*; \b(A100|A101|A110|A200|A210|A211|A500|A501|A510|A511|A700|A701|W500|W500P|W501|W501P|W510|W511|W700|G100|G100W|B1-A71|B1-710|B1-711|A1-810|A1-811|A1-830)\b|W3-810|\bA3-A10\b|\bA3-A11\b|\bA3-A20\b|\bA3-A30',
240
+ // http://eu.computers.toshiba-europe.com/innovation/family/Tablets/1098744/banner_id/tablet_footerlink/
241
+ // http://us.toshiba.com/tablets/tablet-finder
242
+ // http://www.toshiba.co.jp/regza/tablet/
243
+ 'ToshibaTablet' => 'Android.*(AT100|AT105|AT200|AT205|AT270|AT275|AT300|AT305|AT1S5|AT500|AT570|AT700|AT830)|TOSHIBA.*FOLIO',
244
+ // http://www.nttdocomo.co.jp/english/service/developer/smart_phone/technical_info/spec/index.html
245
+ // http://www.lg.com/us/tablets
246
+ 'LGTablet' => '\bL-06C|LG-V909|LG-V900|LG-V700|LG-V510|LG-V500|LG-V410|LG-V400|LG-VK810\b',
247
+ 'FujitsuTablet' => 'Android.*\b(F-01D|F-02F|F-05E|F-10D|M532|Q572)\b',
248
+ // Prestigio Tablets http://www.prestigio.com/support
249
+ 'PrestigioTablet' => 'PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|PMT5887|PMT5001|PMT5002',
250
+ // http://support.lenovo.com/en_GB/downloads/default.page?#
251
+ 'LenovoTablet' => 'Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|B8000|B8080)(-|)(FL|F|HV|H|)|TB-X103F|TB-X304F|TB-X304L|TB-8703F',
252
+ // http://www.dell.com/support/home/us/en/04/Products/tab_mob/tablets
253
+ 'DellTablet' => 'Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7',
254
+ // http://www.yarvik.com/en/matrix/tablets/
255
+ 'YarvikTablet' => 'Android.*\b(TAB210|TAB211|TAB224|TAB250|TAB260|TAB264|TAB310|TAB360|TAB364|TAB410|TAB411|TAB420|TAB424|TAB450|TAB460|TAB461|TAB464|TAB465|TAB467|TAB468|TAB07-100|TAB07-101|TAB07-150|TAB07-151|TAB07-152|TAB07-200|TAB07-201-3G|TAB07-210|TAB07-211|TAB07-212|TAB07-214|TAB07-220|TAB07-400|TAB07-485|TAB08-150|TAB08-200|TAB08-201-3G|TAB08-201-30|TAB09-100|TAB09-211|TAB09-410|TAB10-150|TAB10-201|TAB10-211|TAB10-400|TAB10-410|TAB13-201|TAB274EUK|TAB275EUK|TAB374EUK|TAB462EUK|TAB474EUK|TAB9-200)\b',
256
+ 'MedionTablet' => 'Android.*\bOYO\b|LIFE.*(P9212|P9514|P9516|S9512)|LIFETAB',
257
+ 'ArnovaTablet' => '97G4|AN10G2|AN7bG3|AN7fG3|AN8G3|AN8cG3|AN7G3|AN9G3|AN7dG3|AN7dG3ST|AN7dG3ChildPad|AN10bG3|AN10bG3DT|AN9G2',
258
+ // http://www.intenso.de/kategorie_en.php?kategorie=33
259
+ // @todo: http://www.nbhkdz.com/read/b8e64202f92a2df129126bff.html - investigate
260
+ 'IntensoTablet' => 'INM8002KP|INM1010FP|INM805ND|Intenso Tab|TAB1004',
261
+ // IRU.ru Tablets http://www.iru.ru/catalog/soho/planetable/
262
+ 'IRUTablet' => 'M702pro',
263
+ 'MegafonTablet' => 'MegaFon V9|\bZTE V9\b|Android.*\bMT7A\b',
264
+ // http://www.e-boda.ro/tablete-pc.html
265
+ 'EbodaTablet' => 'E-Boda (Supreme|Impresspeed|Izzycomm|Essential)',
266
+ // http://www.allview.ro/produse/droseries/lista-tablete-pc/
267
+ 'AllViewTablet' => 'Allview.*(Viva|Alldro|City|Speed|All TV|Frenzy|Quasar|Shine|TX1|AX1|AX2)',
268
+ // http://wiki.archosfans.com/index.php?title=Main_Page
269
+ // @note Rewrite the regex format after we add more UAs.
270
+ 'ArchosTablet' => '\b(101G9|80G9|A101IT)\b|Qilive 97R|Archos5|\bARCHOS (70|79|80|90|97|101|FAMILYPAD|)(b|c|)(G10| Cobalt| TITANIUM(HD|)| Xenon| Neon|XSK| 2| XS 2| PLATINUM| CARBON|GAMEPAD)\b',
271
+ // http://www.ainol.com/plugin.php?identifier=ainol&module=product
272
+ 'AinolTablet' => 'NOVO7|NOVO8|NOVO10|Novo7Aurora|Novo7Basic|NOVO7PALADIN|novo9-Spark',
273
+ 'NokiaLumiaTablet' => 'Lumia 2520',
274
+ // @todo: inspect http://esupport.sony.com/US/p/select-system.pl?DIRECTOR=DRIVER
275
+ // Readers http://www.atsuhiro-me.net/ebook/sony-reader/sony-reader-web-browser
276
+ // http://www.sony.jp/support/tablet/
277
+ 'SonyTablet' => 'Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|EBRD1102|EBRD1201|SGP351|SGP341|SGP511|SGP512|SGP521|SGP541|SGP551|SGP621|SGP612|SOT31',
278
+ // http://www.support.philips.com/support/catalog/worldproducts.jsp?userLanguage=en&userCountry=cn&categoryid=3G_LTE_TABLET_SU_CN_CARE&title=3G%20tablets%20/%20LTE%20range&_dyncharset=UTF-8
279
+ 'PhilipsTablet' => '\b(PI2010|PI3000|PI3100|PI3105|PI3110|PI3205|PI3210|PI3900|PI4010|PI7000|PI7100)\b',
280
+ // db + http://www.cube-tablet.com/buy-products.html
281
+ 'CubeTablet' => 'Android.*(K8GT|U9GT|U10GT|U16GT|U17GT|U18GT|U19GT|U20GT|U23GT|U30GT)|CUBE U8GT',
282
+ // http://www.cobyusa.com/?p=pcat&pcat_id=3001
283
+ 'CobyTablet' => 'MID1042|MID1045|MID1125|MID1126|MID7012|MID7014|MID7015|MID7034|MID7035|MID7036|MID7042|MID7048|MID7127|MID8042|MID8048|MID8127|MID9042|MID9740|MID9742|MID7022|MID7010',
284
+ // http://www.match.net.cn/products.asp
285
+ 'MIDTablet' => 'M9701|M9000|M9100|M806|M1052|M806|T703|MID701|MID713|MID710|MID727|MID760|MID830|MID728|MID933|MID125|MID810|MID732|MID120|MID930|MID800|MID731|MID900|MID100|MID820|MID735|MID980|MID130|MID833|MID737|MID960|MID135|MID860|MID736|MID140|MID930|MID835|MID733|MID4X10',
286
+ // http://www.msi.com/support
287
+ // @todo Research the Windows Tablets.
288
+ 'MSITablet' => 'MSI \b(Primo 73K|Primo 73L|Primo 81L|Primo 77|Primo 93|Primo 75|Primo 76|Primo 73|Primo 81|Primo 91|Primo 90|Enjoy 71|Enjoy 7|Enjoy 10)\b',
289
+ // @todo http://www.kyoceramobile.com/support/drivers/
290
+ // 'KyoceraTablet' => null,
291
+ // @todo http://intexuae.com/index.php/category/mobile-devices/tablets-products/
292
+ // 'IntextTablet' => null,
293
+ // http://pdadb.net/index.php?m=pdalist&list=SMiT (NoName Chinese Tablets)
294
+ // http://www.imp3.net/14/show.php?itemid=20454
295
+ 'SMiTTablet' => 'Android.*(\bMID\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)',
296
+ // http://www.rock-chips.com/index.php?do=prod&pid=2
297
+ 'RockChipTablet' => 'Android.*(RK2818|RK2808A|RK2918|RK3066)|RK2738|RK2808A',
298
+ // http://www.fly-phone.com/devices/tablets/ ; http://www.fly-phone.com/service/
299
+ 'FlyTablet' => 'IQ310|Fly Vision',
300
+ // http://www.bqreaders.com/gb/tablets-prices-sale.html
301
+ 'bqTablet' => 'Android.*(bq)?.*(Elcano|Curie|Edison|Maxwell|Kepler|Pascal|Tesla|Hypatia|Platon|Newton|Livingstone|Cervantes|Avant|Aquaris ([E|M]10|M8))|Maxwell.*Lite|Maxwell.*Plus',
302
+ // http://www.huaweidevice.com/worldwide/productFamily.do?method=index&directoryId=5011&treeId=3290
303
+ // http://www.huaweidevice.com/worldwide/downloadCenter.do?method=index&directoryId=3372&treeId=0&tb=1&type=software (including legacy tablets)
304
+ 'HuaweiTablet' => 'MediaPad|MediaPad 7 Youth|IDEOS S7|S7-201c|S7-202u|S7-101|S7-103|S7-104|S7-105|S7-106|S7-201|S7-Slim|M2-A01L',
305
+ // Nec or Medias Tab
306
+ 'NecTablet' => '\bN-06D|\bN-08D',
307
+ // Pantech Tablets: http://www.pantechusa.com/phones/
308
+ 'PantechTablet' => 'Pantech.*P4100',
309
+ // Broncho Tablets: http://www.broncho.cn/ (hard to find)
310
+ 'BronchoTablet' => 'Broncho.*(N701|N708|N802|a710)',
311
+ // http://versusuk.com/support.html
312
+ 'VersusTablet' => 'TOUCHPAD.*[78910]|\bTOUCHTAB\b',
313
+ // http://www.zync.in/index.php/our-products/tablet-phablets
314
+ 'ZyncTablet' => 'z1000|Z99 2G|z99|z930|z999|z990|z909|Z919|z900',
315
+ // http://www.positivoinformatica.com.br/www/pessoal/tablet-ypy/
316
+ 'PositivoTablet' => 'TB07STA|TB10STA|TB07FTA|TB10FTA',
317
+ // https://www.nabitablet.com/
318
+ 'NabiTablet' => 'Android.*\bNabi',
319
+ 'KoboTablet' => 'Kobo Touch|\bK080\b|\bVox\b Build|\bArc\b Build',
320
+ // French Danew Tablets http://www.danew.com/produits-tablette.php
321
+ 'DanewTablet' => 'DSlide.*\b(700|701R|702|703R|704|802|970|971|972|973|974|1010|1012)\b',
322
+ // Texet Tablets and Readers http://www.texet.ru/tablet/
323
+ 'TexetTablet' => 'NaviPad|TB-772A|TM-7045|TM-7055|TM-9750|TM-7016|TM-7024|TM-7026|TM-7041|TM-7043|TM-7047|TM-8041|TM-9741|TM-9747|TM-9748|TM-9751|TM-7022|TM-7021|TM-7020|TM-7011|TM-7010|TM-7023|TM-7025|TM-7037W|TM-7038W|TM-7027W|TM-9720|TM-9725|TM-9737W|TM-1020|TM-9738W|TM-9740|TM-9743W|TB-807A|TB-771A|TB-727A|TB-725A|TB-719A|TB-823A|TB-805A|TB-723A|TB-715A|TB-707A|TB-705A|TB-709A|TB-711A|TB-890HD|TB-880HD|TB-790HD|TB-780HD|TB-770HD|TB-721HD|TB-710HD|TB-434HD|TB-860HD|TB-840HD|TB-760HD|TB-750HD|TB-740HD|TB-730HD|TB-722HD|TB-720HD|TB-700HD|TB-500HD|TB-470HD|TB-431HD|TB-430HD|TB-506|TB-504|TB-446|TB-436|TB-416|TB-146SE|TB-126SE',
324
+ // Avoid detecting 'PLAYSTATION 3' as mobile.
325
+ 'PlaystationTablet' => 'Playstation.*(Portable|Vita)',
326
+ // http://www.trekstor.de/surftabs.html
327
+ 'TrekstorTablet' => 'ST10416-1|VT10416-1|ST70408-1|ST702xx-1|ST702xx-2|ST80208|ST97216|ST70104-2|VT10416-2|ST10216-2A|SurfTab',
328
+ // http://www.pyleaudio.com/Products.aspx?%2fproducts%2fPersonal-Electronics%2fTablets
329
+ 'PyleAudioTablet' => '\b(PTBL10CEU|PTBL10C|PTBL72BC|PTBL72BCEU|PTBL7CEU|PTBL7C|PTBL92BC|PTBL92BCEU|PTBL9CEU|PTBL9CUK|PTBL9C)\b',
330
+ // http://www.advandigital.com/index.php?link=content-product&jns=JP001
331
+ // because of the short codenames we have to include whitespaces to reduce the possible conflicts.
332
+ 'AdvanTablet' => 'Android.* \b(E3A|T3X|T5C|T5B|T3E|T3C|T3B|T1J|T1F|T2A|T1H|T1i|E1C|T1-E|T5-A|T4|E1-B|T2Ci|T1-B|T1-D|O1-A|E1-A|T1-A|T3A|T4i)\b ',
333
+ // http://www.danytech.com/category/tablet-pc
334
+ 'DanyTechTablet' => 'Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1',
335
+ // http://www.galapad.net/product.html
336
+ 'GalapadTablet' => 'Android.*\bG1\b',
337
+ // http://www.micromaxinfo.com/tablet/funbook
338
+ 'MicromaxTablet' => 'Funbook|Micromax.*\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\b',
339
+ // http://www.karbonnmobiles.com/products_tablet.php
340
+ 'KarbonnTablet' => 'Android.*\b(A39|A37|A34|ST8|ST10|ST7|Smart Tab3|Smart Tab2)\b',
341
+ // http://www.myallfine.com/Products.asp
342
+ 'AllFineTablet' => 'Fine7 Genius|Fine7 Shine|Fine7 Air|Fine8 Style|Fine9 More|Fine10 Joy|Fine11 Wide',
343
+ // http://www.proscanvideo.com/products-search.asp?itemClass=TABLET&itemnmbr=
344
+ 'PROSCANTablet' => '\b(PEM63|PLT1023G|PLT1041|PLT1044|PLT1044G|PLT1091|PLT4311|PLT4311PL|PLT4315|PLT7030|PLT7033|PLT7033D|PLT7035|PLT7035D|PLT7044K|PLT7045K|PLT7045KB|PLT7071KG|PLT7072|PLT7223G|PLT7225G|PLT7777G|PLT7810K|PLT7849G|PLT7851G|PLT7852G|PLT8015|PLT8031|PLT8034|PLT8036|PLT8080K|PLT8082|PLT8088|PLT8223G|PLT8234G|PLT8235G|PLT8816K|PLT9011|PLT9045K|PLT9233G|PLT9735|PLT9760G|PLT9770G)\b',
345
+ // http://www.yonesnav.com/products/products.php
346
+ 'YONESTablet' => 'BQ1078|BC1003|BC1077|RK9702|BC9730|BC9001|IT9001|BC7008|BC7010|BC708|BC728|BC7012|BC7030|BC7027|BC7026',
347
+ // http://www.cjshowroom.com/eproducts.aspx?classcode=004001001
348
+ // China manufacturer makes tablets for different small brands (eg. http://www.zeepad.net/index.html)
349
+ 'ChangJiaTablet' => 'TPC7102|TPC7103|TPC7105|TPC7106|TPC7107|TPC7201|TPC7203|TPC7205|TPC7210|TPC7708|TPC7709|TPC7712|TPC7110|TPC8101|TPC8103|TPC8105|TPC8106|TPC8203|TPC8205|TPC8503|TPC9106|TPC9701|TPC97101|TPC97103|TPC97105|TPC97106|TPC97111|TPC97113|TPC97203|TPC97603|TPC97809|TPC97205|TPC10101|TPC10103|TPC10106|TPC10111|TPC10203|TPC10205|TPC10503',
350
+ // http://www.gloryunion.cn/products.asp
351
+ // http://www.allwinnertech.com/en/apply/mobile.html
352
+ // http://www.ptcl.com.pk/pd_content.php?pd_id=284 (EVOTAB)
353
+ // @todo: Softwiner tablets?
354
+ // aka. Cute or Cool tablets. Not sure yet, must research to avoid collisions.
355
+ 'GUTablet' => 'TX-A1301|TX-M9002|Q702|kf026', // A12R|D75A|D77|D79|R83|A95|A106C|R15|A75|A76|D71|D72|R71|R73|R77|D82|R85|D92|A97|D92|R91|A10F|A77F|W71F|A78F|W78F|W81F|A97F|W91F|W97F|R16G|C72|C73E|K72|K73|R96G
356
+ // http://www.pointofview-online.com/showroom.php?shop_mode=product_listing&category_id=118
357
+ 'PointOfViewTablet' => 'TAB-P506|TAB-navi-7-3G-M|TAB-P517|TAB-P-527|TAB-P701|TAB-P703|TAB-P721|TAB-P731N|TAB-P741|TAB-P825|TAB-P905|TAB-P925|TAB-PR945|TAB-PL1015|TAB-P1025|TAB-PI1045|TAB-P1325|TAB-PROTAB[0-9]+|TAB-PROTAB25|TAB-PROTAB26|TAB-PROTAB27|TAB-PROTAB26XL|TAB-PROTAB2-IPS9|TAB-PROTAB30-IPS9|TAB-PROTAB25XXL|TAB-PROTAB26-IPS10|TAB-PROTAB30-IPS10',
358
+ // http://www.overmax.pl/pl/katalog-produktow,p8/tablety,c14/
359
+ // @todo: add more tests.
360
+ 'OvermaxTablet' => 'OV-(SteelCore|NewBase|Basecore|Baseone|Exellen|Quattor|EduTab|Solution|ACTION|BasicTab|TeddyTab|MagicTab|Stream|TB-08|TB-09)|Qualcore 1027',
361
+ // http://hclmetablet.com/India/index.php
362
+ 'HCLTablet' => 'HCL.*Tablet|Connect-3G-2.0|Connect-2G-2.0|ME Tablet U1|ME Tablet U2|ME Tablet G1|ME Tablet X1|ME Tablet Y2|ME Tablet Sync',
363
+ // http://www.edigital.hu/Tablet_es_e-book_olvaso/Tablet-c18385.html
364
+ 'DPSTablet' => 'DPS Dream 9|DPS Dual 7',
365
+ // http://www.visture.com/index.asp
366
+ 'VistureTablet' => 'V97 HD|i75 3G|Visture V4( HD)?|Visture V5( HD)?|Visture V10',
367
+ // http://www.mijncresta.nl/tablet
368
+ 'CrestaTablet' => 'CTP(-)?810|CTP(-)?818|CTP(-)?828|CTP(-)?838|CTP(-)?888|CTP(-)?978|CTP(-)?980|CTP(-)?987|CTP(-)?988|CTP(-)?989',
369
+ // MediaTek - http://www.mediatek.com/_en/01_products/02_proSys.php?cata_sn=1&cata1_sn=1&cata2_sn=309
370
+ 'MediatekTablet' => '\bMT8125|MT8389|MT8135|MT8377\b',
371
+ // Concorde tab
372
+ 'ConcordeTablet' => 'Concorde([ ]+)?Tab|ConCorde ReadMan',
373
+ // GoClever Tablets - http://www.goclever.com/uk/products,c1/tablet,c5/
374
+ 'GoCleverTablet' => 'GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042',
375
+ // Modecom Tablets - http://www.modecom.eu/tablets/portal/
376
+ 'ModecomTablet' => 'FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003',
377
+ // Vonino Tablets - http://www.vonino.eu/tablets
378
+ 'VoninoTablet' => '\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|Primus[ _]?QS|Android.*\bQ8\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\b',
379
+ // ECS Tablets - http://www.ecs.com.tw/ECSWebSite/Product/Product_Tablet_List.aspx?CategoryID=14&MenuID=107&childid=M_107&LanID=0
380
+ 'ECSTablet' => 'V07OT2|TM105A|S10OT1|TR10CS1',
381
+ // Storex Tablets - http://storex.fr/espace_client/support.html
382
+ // @note: no need to add all the tablet codes since they are guided by the first regex.
383
+ 'StorexTablet' => 'eZee[_\']?(Tab|Go)[0-9]+|TabLC7|Looney Tunes Tab',
384
+ // Generic Vodafone tablets.
385
+ 'VodafoneTablet' => 'SmartTab([ ]+)?[0-9]+|SmartTabII10|SmartTabII7|VF-1497',
386
+ // French tablets - Essentiel B http://www.boulanger.fr/tablette_tactile_e-book/tablette_tactile_essentiel_b/cl_68908.htm?multiChoiceToDelete=brand&mc_brand=essentielb
387
+ // Aka: http://www.essentielb.fr/
388
+ 'EssentielBTablet' => 'Smart[ \']?TAB[ ]+?[0-9]+|Family[ \']?TAB2',
389
+ // Ross & Moor - http://ross-moor.ru/
390
+ 'RossMoorTablet' => 'RM-790|RM-997|RMD-878G|RMD-974R|RMT-705A|RMT-701|RME-601|RMT-501|RMT-711',
391
+ // i-mobile http://product.i-mobilephone.com/Mobile_Device
392
+ 'iMobileTablet' => 'i-mobile i-note',
393
+ // http://www.tolino.de/de/vergleichen/
394
+ 'TolinoTablet' => 'tolino tab [0-9.]+|tolino shine',
395
+ // AudioSonic - a Kmart brand
396
+ // http://www.kmart.com.au/webapp/wcs/stores/servlet/Search?langId=-1&storeId=10701&catalogId=10001&categoryId=193001&pageSize=72&currentPage=1&searchCategory=193001%2b4294965664&sortBy=p_MaxPrice%7c1
397
+ 'AudioSonicTablet' => '\bC-22Q|T7-QC|T-17B|T-17P\b',
398
+ // AMPE Tablets - http://www.ampe.com.my/product-category/tablets/
399
+ // @todo: add them gradually to avoid conflicts.
400
+ 'AMPETablet' => 'Android.* A78 ',
401
+ // Skk Mobile - http://skkmobile.com.ph/product_tablets.php
402
+ 'SkkTablet' => 'Android.* (SKYPAD|PHOENIX|CYCLOPS)',
403
+ // Tecno Mobile (only tablet) - http://www.tecno-mobile.com/index.php/product?filterby=smart&list_order=all&page=1
404
+ 'TecnoTablet' => 'TECNO P9',
405
+ // JXD (consoles & tablets) - http://jxd.hk/products.asp?selectclassid=009008&clsid=3
406
+ 'JXDTablet' => 'Android.* \b(F3000|A3300|JXD5000|JXD3000|JXD2000|JXD300B|JXD300|S5800|S7800|S602b|S5110b|S7300|S5300|S602|S603|S5100|S5110|S601|S7100a|P3000F|P3000s|P101|P200s|P1000m|P200m|P9100|P1000s|S6600b|S908|P1000|P300|S18|S6600|S9100)\b',
407
+ // i-Joy tablets - http://www.i-joy.es/en/cat/products/tablets/
408
+ 'iJoyTablet' => 'Tablet (Spirit 7|Essentia|Galatea|Fusion|Onix 7|Landa|Titan|Scooby|Deox|Stella|Themis|Argon|Unique 7|Sygnus|Hexen|Finity 7|Cream|Cream X2|Jade|Neon 7|Neron 7|Kandy|Scape|Saphyr 7|Rebel|Biox|Rebel|Rebel 8GB|Myst|Draco 7|Myst|Tab7-004|Myst|Tadeo Jones|Tablet Boing|Arrow|Draco Dual Cam|Aurix|Mint|Amity|Revolution|Finity 9|Neon 9|T9w|Amity 4GB Dual Cam|Stone 4GB|Stone 8GB|Andromeda|Silken|X2|Andromeda II|Halley|Flame|Saphyr 9,7|Touch 8|Planet|Triton|Unique 10|Hexen 10|Memphis 4GB|Memphis 8GB|Onix 10)',
409
+ // http://www.intracon.eu/tablet
410
+ 'FX2Tablet' => 'FX2 PAD7|FX2 PAD10',
411
+ // http://www.xoro.de/produkte/
412
+ // @note: Might be the same brand with 'Simply tablets'
413
+ 'XoroTablet' => 'KidsPAD 701|PAD[ ]?712|PAD[ ]?714|PAD[ ]?716|PAD[ ]?717|PAD[ ]?718|PAD[ ]?720|PAD[ ]?721|PAD[ ]?722|PAD[ ]?790|PAD[ ]?792|PAD[ ]?900|PAD[ ]?9715D|PAD[ ]?9716DR|PAD[ ]?9718DR|PAD[ ]?9719QR|PAD[ ]?9720QR|TelePAD1030|Telepad1032|TelePAD730|TelePAD731|TelePAD732|TelePAD735Q|TelePAD830|TelePAD9730|TelePAD795|MegaPAD 1331|MegaPAD 1851|MegaPAD 2151',
414
+ // http://www1.viewsonic.com/products/computing/tablets/
415
+ 'ViewsonicTablet' => 'ViewPad 10pi|ViewPad 10e|ViewPad 10s|ViewPad E72|ViewPad7|ViewPad E100|ViewPad 7e|ViewSonic VB733|VB100a',
416
+ // https://www.verizonwireless.com/tablets/verizon/
417
+ 'VerizonTablet' => 'QTAQZ3|QTAIR7|QTAQTZ3|QTASUN1|QTASUN2|QTAXIA1',
418
+ // http://www.odys.de/web/internet-tablet_en.html
419
+ 'OdysTablet' => 'LOOX|XENO10|ODYS[ -](Space|EVO|Xpress|NOON)|\bXELIO\b|Xelio10Pro|XELIO7PHONETAB|XELIO10EXTREME|XELIOPT2|NEO_QUAD10',
420
+ // http://www.captiva-power.de/products.html#tablets-en
421
+ 'CaptivaTablet' => 'CAPTIVA PAD',
422
+ // IconBIT - http://www.iconbit.com/products/tablets/
423
+ 'IconbitTablet' => 'NetTAB|NT-3702|NT-3702S|NT-3702S|NT-3603P|NT-3603P|NT-0704S|NT-0704S|NT-3805C|NT-3805C|NT-0806C|NT-0806C|NT-0909T|NT-0909T|NT-0907S|NT-0907S|NT-0902S|NT-0902S',
424
+ // http://www.teclast.com/topic.php?channelID=70&topicID=140&pid=63
425
+ 'TeclastTablet' => 'T98 4G|\bP80\b|\bX90HD\b|X98 Air|X98 Air 3G|\bX89\b|P80 3G|\bX80h\b|P98 Air|\bX89HD\b|P98 3G|\bP90HD\b|P89 3G|X98 3G|\bP70h\b|P79HD 3G|G18d 3G|\bP79HD\b|\bP89s\b|\bA88\b|\bP10HD\b|\bP19HD\b|G18 3G|\bP78HD\b|\bA78\b|\bP75\b|G17s 3G|G17h 3G|\bP85t\b|\bP90\b|\bP11\b|\bP98t\b|\bP98HD\b|\bG18d\b|\bP85s\b|\bP11HD\b|\bP88s\b|\bA80HD\b|\bA80se\b|\bA10h\b|\bP89\b|\bP78s\b|\bG18\b|\bP85\b|\bA70h\b|\bA70\b|\bG17\b|\bP18\b|\bA80s\b|\bA11s\b|\bP88HD\b|\bA80h\b|\bP76s\b|\bP76h\b|\bP98\b|\bA10HD\b|\bP78\b|\bP88\b|\bA11\b|\bA10t\b|\bP76a\b|\bP76t\b|\bP76e\b|\bP85HD\b|\bP85a\b|\bP86\b|\bP75HD\b|\bP76v\b|\bA12\b|\bP75a\b|\bA15\b|\bP76Ti\b|\bP81HD\b|\bA10\b|\bT760VE\b|\bT720HD\b|\bP76\b|\bP73\b|\bP71\b|\bP72\b|\bT720SE\b|\bC520Ti\b|\bT760\b|\bT720VE\b|T720-3GE|T720-WiFi',
426
+ // Onda - http://www.onda-tablet.com/buy-android-onda.html?dir=desc&limit=all&order=price
427
+ 'OndaTablet' => '\b(V975i|Vi30|VX530|V701|Vi60|V701s|Vi50|V801s|V719|Vx610w|VX610W|V819i|Vi10|VX580W|Vi10|V711s|V813|V811|V820w|V820|Vi20|V711|VI30W|V712|V891w|V972|V819w|V820w|Vi60|V820w|V711|V813s|V801|V819|V975s|V801|V819|V819|V818|V811|V712|V975m|V101w|V961w|V812|V818|V971|V971s|V919|V989|V116w|V102w|V973|Vi40)\b[\s]+',
428
+ 'JaytechTablet' => 'TPC-PA762',
429
+ 'BlaupunktTablet' => 'Endeavour 800NG|Endeavour 1010',
430
+ // http://www.digma.ru/support/download/
431
+ // @todo: Ebooks also (if requested)
432
+ 'DigmaTablet' => '\b(iDx10|iDx9|iDx8|iDx7|iDxD7|iDxD8|iDsQ8|iDsQ7|iDsQ8|iDsD10|iDnD7|3TS804H|iDsQ11|iDj7|iDs10)\b',
433
+ // http://www.evolioshop.com/ro/tablete-pc.html
434
+ // http://www.evolio.ro/support/downloads_static.html?cat=2
435
+ // @todo: Research some more
436
+ 'EvolioTablet' => 'ARIA_Mini_wifi|Aria[ _]Mini|Evolio X10|Evolio X7|Evolio X8|\bEvotab\b|\bNeura\b',
437
+ // @todo http://www.lavamobiles.com/tablets-data-cards
438
+ 'LavaTablet' => 'QPAD E704|\bIvoryS\b|E-TAB IVORY|\bE-TAB\b',
439
+ // http://www.breezetablet.com/
440
+ 'AocTablet' => 'MW0811|MW0812|MW0922|MTK8382|MW1031|MW0831|MW0821|MW0931|MW0712',
441
+ // http://www.mpmaneurope.com/en/products/internet-tablets-14/android-tablets-14/
442
+ 'MpmanTablet' => 'MP11 OCTA|MP10 OCTA|MPQC1114|MPQC1004|MPQC994|MPQC974|MPQC973|MPQC804|MPQC784|MPQC780|\bMPG7\b|MPDCG75|MPDCG71|MPDC1006|MP101DC|MPDC9000|MPDC905|MPDC706HD|MPDC706|MPDC705|MPDC110|MPDC100|MPDC99|MPDC97|MPDC88|MPDC8|MPDC77|MP709|MID701|MID711|MID170|MPDC703|MPQC1010',
443
+ // https://www.celkonmobiles.com/?_a=categoryphones&sid=2
444
+ 'CelkonTablet' => 'CT695|CT888|CT[\s]?910|CT7 Tab|CT9 Tab|CT3 Tab|CT2 Tab|CT1 Tab|C820|C720|\bCT-1\b',
445
+ // http://www.wolderelectronics.com/productos/manuales-y-guias-rapidas/categoria-2-miTab
446
+ 'WolderTablet' => 'miTab \b(DIAMOND|SPACE|BROOKLYN|NEO|FLY|MANHATTAN|FUNK|EVOLUTION|SKY|GOCAR|IRON|GENIUS|POP|MINT|EPSILON|BROADWAY|JUMP|HOP|LEGEND|NEW AGE|LINE|ADVANCE|FEEL|FOLLOW|LIKE|LINK|LIVE|THINK|FREEDOM|CHICAGO|CLEVELAND|BALTIMORE-GH|IOWA|BOSTON|SEATTLE|PHOENIX|DALLAS|IN 101|MasterChef)\b',
447
+ // http://www.mi.com/en
448
+ 'MiTablet' => '\bMI PAD\b|\bHM NOTE 1W\b',
449
+ // http://www.nbru.cn/index.html
450
+ 'NibiruTablet' => 'Nibiru M1|Nibiru Jupiter One',
451
+ // http://navroad.com/products/produkty/tablety/
452
+ // http://navroad.com/products/produkty/tablety/
453
+ 'NexoTablet' => 'NEXO NOVA|NEXO 10|NEXO AVIO|NEXO FREE|NEXO GO|NEXO EVO|NEXO 3G|NEXO SMART|NEXO KIDDO|NEXO MOBI',
454
+ // http://leader-online.com/new_site/product-category/tablets/
455
+ // http://www.leader-online.net.au/List/Tablet
456
+ 'LeaderTablet' => 'TBLT10Q|TBLT10I|TBL-10WDKB|TBL-10WDKBO2013|TBL-W230V2|TBL-W450|TBL-W500|SV572|TBLT7I|TBA-AC7-8G|TBLT79|TBL-8W16|TBL-10W32|TBL-10WKB|TBL-W100',
457
+ // http://www.datawind.com/ubislate/
458
+ 'UbislateTablet' => 'UbiSlate[\s]?7C',
459
+ // http://www.pocketbook-int.com/ru/support
460
+ 'PocketBookTablet' => 'Pocketbook',
461
+ // http://www.kocaso.com/product_tablet.html
462
+ 'KocasoTablet' => '\b(TB-1207)\b',
463
+ // http://global.hisense.com/product/asia/tablet/Sero7/201412/t20141215_91832.htm
464
+ 'HisenseTablet' => '\b(F5281|E2371)\b',
465
+ // http://www.tesco.com/direct/hudl/
466
+ 'Hudl' => 'Hudl HT7S3|Hudl 2',
467
+ // http://www.telstra.com.au/home-phone/thub-2/
468
+ 'TelstraTablet' => 'T-Hub2',
469
+ 'GenericTablet' => 'Android.*\b97D\b|Tablet(?!.*PC)|BNTV250A|MID-WCDMA|LogicPD Zoom2|\bA7EB\b|CatNova8|A1_07|CT704|CT1002|\bM721\b|rk30sdk|\bEVOTAB\b|M758A|ET904|ALUMIUM10|Smartfren Tab|Endeavour 1010|Tablet-PC-4|Tagi Tab|\bM6pro\b|CT1020W|arc 10HD|\bTP750\b|\bQTAQZ3\b'
470
+ );
471
+
472
+ /**
473
+ * List of mobile Operating Systems.
474
+ *
475
+ * @var array
476
+ */
477
+ protected static $operatingSystems = array(
478
+ 'AndroidOS' => 'Android',
479
+ 'BlackBerryOS' => 'blackberry|\bBB10\b|rim tablet os',
480
+ 'PalmOS' => 'PalmOS|avantgo|blazer|elaine|hiptop|palm|plucker|xiino',
481
+ 'SymbianOS' => 'Symbian|SymbOS|Series60|Series40|SYB-[0-9]+|\bS60\b',
482
+ // @reference: http://en.wikipedia.org/wiki/Windows_Mobile
483
+ 'WindowsMobileOS' => 'Windows CE.*(PPC|Smartphone|Mobile|[0-9]{3}x[0-9]{3})|Window Mobile|Windows Phone [0-9.]+|WCE;',
484
+ // @reference: http://en.wikipedia.org/wiki/Windows_Phone
485
+ // http://wifeng.cn/?r=blog&a=view&id=106
486
+ // http://nicksnettravels.builttoroam.com/post/2011/01/10/Bogus-Windows-Phone-7-User-Agent-String.aspx
487
+ // http://msdn.microsoft.com/library/ms537503.aspx
488
+ // https://msdn.microsoft.com/en-us/library/hh869301(v=vs.85).aspx
489
+ 'WindowsPhoneOS' => 'Windows Phone 10.0|Windows Phone 8.1|Windows Phone 8.0|Windows Phone OS|XBLWP7|ZuneWP7|Windows NT 6.[23]; ARM;',
490
+ 'iOS' => '\biPhone.*Mobile|\biPod|\biPad|AppleCoreMedia',
491
+ // http://en.wikipedia.org/wiki/MeeGo
492
+ // @todo: research MeeGo in UAs
493
+ 'MeeGoOS' => 'MeeGo',
494
+ // http://en.wikipedia.org/wiki/Maemo
495
+ // @todo: research Maemo in UAs
496
+ 'MaemoOS' => 'Maemo',
497
+ 'JavaOS' => 'J2ME/|\bMIDP\b|\bCLDC\b', // '|Java/' produces bug #135
498
+ 'webOS' => 'webOS|hpwOS',
499
+ 'badaOS' => '\bBada\b',
500
+ 'BREWOS' => 'BREW',
501
+ );
502
+
503
+ /**
504
+ * List of mobile User Agents.
505
+ *
506
+ * IMPORTANT: This is a list of only mobile browsers.
507
+ * Mobile Detect 2.x supports only mobile browsers,
508
+ * it was never designed to detect all browsers.
509
+ * The change will come in 2017 in the 3.x release for PHP7.
510
+ *
511
+ * @var array
512
+ */
513
+ protected static $browsers = array(
514
+ //'Vivaldi' => 'Vivaldi',
515
+ // @reference: https://developers.google.com/chrome/mobile/docs/user-agent
516
+ 'Chrome' => '\bCrMo\b|CriOS|Android.*Chrome/[.0-9]* (Mobile)?',
517
+ 'Dolfin' => '\bDolfin\b',
518
+ 'Opera' => 'Opera.*Mini|Opera.*Mobi|Android.*Opera|Mobile.*OPR/[0-9.]+|Coast/[0-9.]+',
519
+ 'Skyfire' => 'Skyfire',
520
+ 'Edge' => 'Mobile Safari/[.0-9]* Edge',
521
+ 'IE' => 'IEMobile|MSIEMobile', // |Trident/[.0-9]+
522
+ 'Firefox' => 'fennec|firefox.*maemo|(Mobile|Tablet).*Firefox|Firefox.*Mobile|FxiOS',
523
+ 'Bolt' => 'bolt',
524
+ 'TeaShark' => 'teashark',
525
+ 'Blazer' => 'Blazer',
526
+ // @reference: http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.html#//apple_ref/doc/uid/TP40006517-SW3
527
+ 'Safari' => 'Version.*Mobile.*Safari|Safari.*Mobile|MobileSafari',
528
+ // http://en.wikipedia.org/wiki/Midori_(web_browser)
529
+ //'Midori' => 'midori',
530
+ //'Tizen' => 'Tizen',
531
+ 'UCBrowser' => 'UC.*Browser|UCWEB',
532
+ 'baiduboxapp' => 'baiduboxapp',
533
+ 'baidubrowser' => 'baidubrowser',
534
+ // https://github.com/serbanghita/Mobile-Detect/issues/7
535
+ 'DiigoBrowser' => 'DiigoBrowser',
536
+ // http://www.puffinbrowser.com/index.php
537
+ 'Puffin' => 'Puffin',
538
+ // http://mercury-browser.com/index.html
539
+ 'Mercury' => '\bMercury\b',
540
+ // http://en.wikipedia.org/wiki/Obigo_Browser
541
+ 'ObigoBrowser' => 'Obigo',
542
+ // http://en.wikipedia.org/wiki/NetFront
543
+ 'NetFront' => 'NF-Browser',
544
+ // @reference: http://en.wikipedia.org/wiki/Minimo
545
+ // http://en.wikipedia.org/wiki/Vision_Mobile_Browser
546
+ 'GenericBrowser' => 'NokiaBrowser|OviBrowser|OneBrowser|TwonkyBeamBrowser|SEMC.*Browser|FlyFlow|Minimo|NetFront|Novarra-Vision|MQQBrowser|MicroMessenger',
547
+ // @reference: https://en.wikipedia.org/wiki/Pale_Moon_(web_browser)
548
+ 'PaleMoon' => 'Android.*PaleMoon|Mobile.*PaleMoon',
549
+ );
550
+
551
+ /**
552
+ * Utilities.
553
+ *
554
+ * @var array
555
+ */
556
+ protected static $utilities = array(
557
+ // Experimental. When a mobile device wants to switch to 'Desktop Mode'.
558
+ // http://scottcate.com/technology/windows-phone-8-ie10-desktop-or-mobile/
559
+ // https://github.com/serbanghita/Mobile-Detect/issues/57#issuecomment-15024011
560
+ // https://developers.facebook.com/docs/sharing/best-practices
561
+ 'Bot' => 'Googlebot|facebookexternalhit|AdsBot-Google|Google Keyword Suggestion|Facebot|YandexBot|YandexMobileBot|bingbot|ia_archiver|AhrefsBot|Ezooms|GSLFbot|WBSearchBot|Twitterbot|TweetmemeBot|Twikle|PaperLiBot|Wotbox|UnwindFetchor|Exabot|MJ12bot|YandexImages|TurnitinBot|Pingdom',
562
+ 'MobileBot' => 'Googlebot-Mobile|AdsBot-Google-Mobile|YahooSeeker/M1A1-R2D2',
563
+ 'DesktopMode' => 'WPDesktop',
564
+ 'TV' => 'SonyDTV|HbbTV', // experimental
565
+ 'WebKit' => '(webkit)[ /]([\w.]+)',
566
+ // @todo: Include JXD consoles.
567
+ 'Console' => '\b(Nintendo|Nintendo WiiU|Nintendo 3DS|PLAYSTATION|Xbox)\b',
568
+ 'Watch' => 'SM-V700',
569
+ );
570
+
571
+ /**
572
+ * All possible HTTP headers that represent the
573
+ * User-Agent string.
574
+ *
575
+ * @var array
576
+ */
577
+ protected static $uaHttpHeaders = array(
578
+ // The default User-Agent string.
579
+ 'HTTP_USER_AGENT',
580
+ // Header can occur on devices using Opera Mini.
581
+ 'HTTP_X_OPERAMINI_PHONE_UA',
582
+ // Vodafone specific header: http://www.seoprinciple.com/mobile-web-community-still-angry-at-vodafone/24/
583
+ 'HTTP_X_DEVICE_USER_AGENT',
584
+ 'HTTP_X_ORIGINAL_USER_AGENT',
585
+ 'HTTP_X_SKYFIRE_PHONE',
586
+ 'HTTP_X_BOLT_PHONE_UA',
587
+ 'HTTP_DEVICE_STOCK_UA',
588
+ 'HTTP_X_UCBROWSER_DEVICE_UA'
589
+ );
590
+
591
+ /**
592
+ * The individual segments that could exist in a User-Agent string. VER refers to the regular
593
+ * expression defined in the constant self::VER.
594
+ *
595
+ * @var array
596
+ */
597
+ protected static $properties = array(
598
+
599
+ // Build
600
+ 'Mobile' => 'Mobile/[VER]',
601
+ 'Build' => 'Build/[VER]',
602
+ 'Version' => 'Version/[VER]',
603
+ 'VendorID' => 'VendorID/[VER]',
604
+
605
+ // Devices
606
+ 'iPad' => 'iPad.*CPU[a-z ]+[VER]',
607
+ 'iPhone' => 'iPhone.*CPU[a-z ]+[VER]',
608
+ 'iPod' => 'iPod.*CPU[a-z ]+[VER]',
609
+ //'BlackBerry' => array('BlackBerry[VER]', 'BlackBerry [VER];'),
610
+ 'Kindle' => 'Kindle/[VER]',
611
+
612
+ // Browser
613
+ 'Chrome' => array('Chrome/[VER]', 'CriOS/[VER]', 'CrMo/[VER]'),
614
+ 'Coast' => array('Coast/[VER]'),
615
+ 'Dolfin' => 'Dolfin/[VER]',
616
+ // @reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent/Firefox
617
+ 'Firefox' => array('Firefox/[VER]', 'FxiOS/[VER]'),
618
+ 'Fennec' => 'Fennec/[VER]',
619
+ // http://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx
620
+ // https://msdn.microsoft.com/en-us/library/ie/hh869301(v=vs.85).aspx
621
+ 'Edge' => 'Edge/[VER]',
622
+ 'IE' => array('IEMobile/[VER];', 'IEMobile [VER]', 'MSIE [VER];', 'Trident/[0-9.]+;.*rv:[VER]'),
623
+ // http://en.wikipedia.org/wiki/NetFront
624
+ 'NetFront' => 'NetFront/[VER]',
625
+ 'NokiaBrowser' => 'NokiaBrowser/[VER]',
626
+ 'Opera' => array( ' OPR/[VER]', 'Opera Mini/[VER]', 'Version/[VER]' ),
627
+ 'Opera Mini' => 'Opera Mini/[VER]',
628
+ 'Opera Mobi' => 'Version/[VER]',
629
+ 'UCBrowser' => array( 'UCWEB[VER]', 'UC.*Browser/[VER]' ),
630
+ 'MQQBrowser' => 'MQQBrowser/[VER]',
631
+ 'MicroMessenger' => 'MicroMessenger/[VER]',
632
+ 'baiduboxapp' => 'baiduboxapp/[VER]',
633
+ 'baidubrowser' => 'baidubrowser/[VER]',
634
+ 'SamsungBrowser' => 'SamsungBrowser/[VER]',
635
+ 'Iron' => 'Iron/[VER]',
636
+ // @note: Safari 7534.48.3 is actually Version 5.1.
637
+ // @note: On BlackBerry the Version is overwriten by the OS.
638
+ 'Safari' => array( 'Version/[VER]', 'Safari/[VER]' ),
639
+ 'Skyfire' => 'Skyfire/[VER]',
640
+ 'Tizen' => 'Tizen/[VER]',
641
+ 'Webkit' => 'webkit[ /][VER]',
642
+ 'PaleMoon' => 'PaleMoon/[VER]',
643
+
644
+ // Engine
645
+ 'Gecko' => 'Gecko/[VER]',
646
+ 'Trident' => 'Trident/[VER]',
647
+ 'Presto' => 'Presto/[VER]',
648
+ 'Goanna' => 'Goanna/[VER]',
649
+
650
+ // OS
651
+ 'iOS' => ' \bi?OS\b [VER][ ;]{1}',
652
+ 'Android' => 'Android [VER]',
653
+ 'BlackBerry' => array('BlackBerry[\w]+/[VER]', 'BlackBerry.*Version/[VER]', 'Version/[VER]'),
654
+ 'BREW' => 'BREW [VER]',
655
+ 'Java' => 'Java/[VER]',
656
+ // @reference: http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/08/29/introducing-the-ie9-on-windows-phone-mango-user-agent-string.aspx
657
+ // @reference: http://en.wikipedia.org/wiki/Windows_NT#Releases
658
+ 'Windows Phone OS' => array( 'Windows Phone OS [VER]', 'Windows Phone [VER]'),
659
+ 'Windows Phone' => 'Windows Phone [VER]',
660
+ 'Windows CE' => 'Windows CE/[VER]',
661
+ // http://social.msdn.microsoft.com/Forums/en-US/windowsdeveloperpreviewgeneral/thread/6be392da-4d2f-41b4-8354-8dcee20c85cd
662
+ 'Windows NT' => 'Windows NT [VER]',
663
+ 'Symbian' => array('SymbianOS/[VER]', 'Symbian/[VER]'),
664
+ 'webOS' => array('webOS/[VER]', 'hpwOS/[VER];'),
665
+ );
666
+
667
+ /**
668
+ * Construct an instance of this class.
669
+ *
670
+ * @param array $headers Specify the headers as injection. Should be PHP _SERVER flavored.
671
+ * If left empty, will use the global _SERVER['HTTP_*'] vars instead.
672
+ * @param string $userAgent Inject the User-Agent header. If null, will use HTTP_USER_AGENT
673
+ * from the $headers array instead.
674
+ */
675
+ public function __construct(
676
+ array $headers = null,
677
+ $userAgent = null
678
+ ) {
679
+ $this->setHttpHeaders($headers);
680
+ $this->setUserAgent($userAgent);
681
+ }
682
+
683
+ /**
684
+ * Get the current script version.
685
+ * This is useful for the demo.php file,
686
+ * so people can check on what version they are testing
687
+ * for mobile devices.
688
+ *
689
+ * @return string The version number in semantic version format.
690
+ */
691
+ public static function getScriptVersion()
692
+ {
693
+ return self::VERSION;
694
+ }
695
+
696
+ /**
697
+ * Set the HTTP Headers. Must be PHP-flavored. This method will reset existing headers.
698
+ *
699
+ * @param array $httpHeaders The headers to set. If null, then using PHP's _SERVER to extract
700
+ * the headers. The default null is left for backwards compatibility.
701
+ */
702
+ public function setHttpHeaders($httpHeaders = null)
703
+ {
704
+ // use global _SERVER if $httpHeaders aren't defined
705
+ if (!is_array($httpHeaders) || !count($httpHeaders)) {
706
+ $httpHeaders = $_SERVER;
707
+ }
708
+
709
+ // clear existing headers
710
+ $this->httpHeaders = array();
711
+
712
+ // Only save HTTP headers. In PHP land, that means only _SERVER vars that
713
+ // start with HTTP_.
714
+ foreach ($httpHeaders as $key => $value) {
715
+ if (substr($key, 0, 5) === 'HTTP_') {
716
+ $this->httpHeaders[$key] = $value;
717
+ }
718
+ }
719
+
720
+ // In case we're dealing with CloudFront, we need to know.
721
+ $this->setCfHeaders($httpHeaders);
722
+ }
723
+
724
+ /**
725
+ * Retrieves the HTTP headers.
726
+ *
727
+ * @return array
728
+ */
729
+ public function getHttpHeaders()
730
+ {
731
+ return $this->httpHeaders;
732
+ }
733
+
734
+ /**
735
+ * Retrieves a particular header. If it doesn't exist, no exception/error is caused.
736
+ * Simply null is returned.
737
+ *
738
+ * @param string $header The name of the header to retrieve. Can be HTTP compliant such as
739
+ * "User-Agent" or "X-Device-User-Agent" or can be php-esque with the
740
+ * all-caps, HTTP_ prefixed, underscore seperated awesomeness.
741
+ *
742
+ * @return string|null The value of the header.
743
+ */
744
+ public function getHttpHeader($header)
745
+ {
746
+ // are we using PHP-flavored headers?
747
+ if (strpos($header, '_') === false) {
748
+ $header = str_replace('-', '_', $header);
749
+ $header = strtoupper($header);
750
+ }
751
+
752
+ // test the alternate, too
753
+ $altHeader = 'HTTP_' . $header;
754
+
755
+ //Test both the regular and the HTTP_ prefix
756
+ if (isset($this->httpHeaders[$header])) {
757
+ return $this->httpHeaders[$header];
758
+ } elseif (isset($this->httpHeaders[$altHeader])) {
759
+ return $this->httpHeaders[$altHeader];
760
+ }
761
+
762
+ return null;
763
+ }
764
+
765
+ public function getMobileHeaders()
766
+ {
767
+ return self::$mobileHeaders;
768
+ }
769
+
770
+ /**
771
+ * Get all possible HTTP headers that
772
+ * can contain the User-Agent string.
773
+ *
774
+ * @return array List of HTTP headers.
775
+ */
776
+ public function getUaHttpHeaders()
777
+ {
778
+ return self::$uaHttpHeaders;
779
+ }
780
+
781
+
782
+ /**
783
+ * Set CloudFront headers
784
+ * http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html#header-caching-web-device
785
+ *
786
+ * @param array $cfHeaders List of HTTP headers
787
+ *
788
+ * @return boolean If there were CloudFront headers to be set
789
+ */
790
+ public function setCfHeaders($cfHeaders = null) {
791
+ // use global _SERVER if $cfHeaders aren't defined
792
+ if (!is_array($cfHeaders) || !count($cfHeaders)) {
793
+ $cfHeaders = $_SERVER;
794
+ }
795
+
796
+ // clear existing headers
797
+ $this->cloudfrontHeaders = array();
798
+
799
+ // Only save CLOUDFRONT headers. In PHP land, that means only _SERVER vars that
800
+ // start with cloudfront-.
801
+ $response = false;
802
+ foreach ($cfHeaders as $key => $value) {
803
+ if (substr(strtolower($key), 0, 16) === 'http_cloudfront_') {
804
+ $this->cloudfrontHeaders[strtoupper($key)] = $value;
805
+ $response = true;
806
+ }
807
+ }
808
+
809
+ return $response;
810
+ }
811
+
812
+ /**
813
+ * Retrieves the cloudfront headers.
814
+ *
815
+ * @return array
816
+ */
817
+ public function getCfHeaders()
818
+ {
819
+ return $this->cloudfrontHeaders;
820
+ }
821
+
822
+ /**
823
+ * @param string $userAgent
824
+ * @return string
825
+ */
826
+ private function prepareUserAgent($userAgent) {
827
+ $userAgent = trim($userAgent);
828
+ $userAgent = substr($userAgent, 0, 500);
829
+ return $userAgent;
830
+ }
831
+
832
+ /**
833
+ * Set the User-Agent to be used.
834
+ *
835
+ * @param string $userAgent The user agent string to set.
836
+ *
837
+ * @return string|null
838
+ */
839
+ public function setUserAgent($userAgent = null)
840
+ {
841
+ // Invalidate cache due to #375
842
+ $this->cache = array();
843
+
844
+ if (false === empty($userAgent)) {
845
+ return $this->userAgent = $this->prepareUserAgent($userAgent);
846
+ } else {
847
+ $this->userAgent = null;
848
+ foreach ($this->getUaHttpHeaders() as $altHeader) {
849
+ if (false === empty($this->httpHeaders[$altHeader])) { // @todo: should use getHttpHeader(), but it would be slow. (Serban)
850
+ $this->userAgent .= $this->httpHeaders[$altHeader] . " ";
851
+ }
852
+ }
853
+
854
+ if (!empty($this->userAgent)) {
855
+ return $this->userAgent = $this->prepareUserAgent($this->userAgent);
856
+ }
857
+ }
858
+
859
+ if (count($this->getCfHeaders()) > 0) {
860
+ return $this->userAgent = 'Amazon CloudFront';
861
+ }
862
+ return $this->userAgent = null;
863
+ }
864
+
865
+ /**
866
+ * Retrieve the User-Agent.
867
+ *
868
+ * @return string|null The user agent if it's set.
869
+ */
870
+ public function getUserAgent()
871
+ {
872
+ return $this->userAgent;
873
+ }
874
+
875
+ /**
876
+ * Set the detection type. Must be one of self::DETECTION_TYPE_MOBILE or
877
+ * self::DETECTION_TYPE_EXTENDED. Otherwise, nothing is set.
878
+ *
879
+ * @deprecated since version 2.6.9
880
+ *
881
+ * @param string $type The type. Must be a self::DETECTION_TYPE_* constant. The default
882
+ * parameter is null which will default to self::DETECTION_TYPE_MOBILE.
883
+ */
884
+ public function setDetectionType($type = null)
885
+ {
886
+ if ($type === null) {
887
+ $type = self::DETECTION_TYPE_MOBILE;
888
+ }
889
+
890
+ if ($type !== self::DETECTION_TYPE_MOBILE && $type !== self::DETECTION_TYPE_EXTENDED) {
891
+ return;
892
+ }
893
+
894
+ $this->detectionType = $type;
895
+ }
896
+
897
+ public function getMatchingRegex()
898
+ {
899
+ return $this->matchingRegex;
900
+ }
901
+
902
+ public function getMatchesArray()
903
+ {
904
+ return $this->matchesArray;
905
+ }
906
+
907
+ /**
908
+ * Retrieve the list of known phone devices.
909
+ *
910
+ * @return array List of phone devices.
911
+ */
912
+ public static function getPhoneDevices()
913
+ {
914
+ return self::$phoneDevices;
915
+ }
916
+
917
+ /**
918
+ * Retrieve the list of known tablet devices.
919
+ *
920
+ * @return array List of tablet devices.
921
+ */
922
+ public static function getTabletDevices()
923
+ {
924
+ return self::$tabletDevices;
925
+ }
926
+
927
+ /**
928
+ * Alias for getBrowsers() method.
929
+ *
930
+ * @return array List of user agents.
931
+ */
932
+ public static function getUserAgents()
933
+ {
934
+ return self::getBrowsers();
935
+ }
936
+
937
+ /**
938
+ * Retrieve the list of known browsers. Specifically, the user agents.
939
+ *
940
+ * @return array List of browsers / user agents.
941
+ */
942
+ public static function getBrowsers()
943
+ {
944
+ return self::$browsers;
945
+ }
946
+
947
+ /**
948
+ * Retrieve the list of known utilities.
949
+ *
950
+ * @return array List of utilities.
951
+ */
952
+ public static function getUtilities()
953
+ {
954
+ return self::$utilities;
955
+ }
956
+
957
+ /**
958
+ * Method gets the mobile detection rules. This method is used for the magic methods $detect->is*().
959
+ *
960
+ * @deprecated since version 2.6.9
961
+ *
962
+ * @return array All the rules (but not extended).
963
+ */
964
+ public static function getMobileDetectionRules()
965
+ {
966
+ static $rules;
967
+
968
+ if (!$rules) {
969
+ $rules = array_merge(
970
+ self::$phoneDevices,
971
+ self::$tabletDevices,
972
+ self::$operatingSystems,
973
+ self::$browsers
974
+ );
975
+ }
976
+
977
+ return $rules;
978
+
979
+ }
980
+
981
+ /**
982
+ * Method gets the mobile detection rules + utilities.
983
+ * The reason this is separate is because utilities rules
984
+ * don't necessary imply mobile. This method is used inside
985
+ * the new $detect->is('stuff') method.
986
+ *
987
+ * @deprecated since version 2.6.9
988
+ *
989
+ * @return array All the rules + extended.
990
+ */
991
+ public function getMobileDetectionRulesExtended()
992
+ {
993
+ static $rules;
994
+
995
+ if (!$rules) {
996
+ // Merge all rules together.
997
+ $rules = array_merge(
998
+ self::$phoneDevices,
999
+ self::$tabletDevices,
1000
+ self::$operatingSystems,
1001
+ self::$browsers,
1002
+ self::$utilities
1003
+ );
1004
+ }
1005
+
1006
+ return $rules;
1007
+ }
1008
+
1009
+ /**
1010
+ * Retrieve the current set of rules.
1011
+ *
1012
+ * @deprecated since version 2.6.9
1013
+ *
1014
+ * @return array
1015
+ */
1016
+ public function getRules()
1017
+ {
1018
+ if ($this->detectionType == self::DETECTION_TYPE_EXTENDED) {
1019
+ return self::getMobileDetectionRulesExtended();
1020
+ } else {
1021
+ return self::getMobileDetectionRules();
1022
+ }
1023
+ }
1024
+
1025
+ /**
1026
+ * Retrieve the list of mobile operating systems.
1027
+ *
1028
+ * @return array The list of mobile operating systems.
1029
+ */
1030
+ public static function getOperatingSystems()
1031
+ {
1032
+ return self::$operatingSystems;
1033
+ }
1034
+
1035
+ /**
1036
+ * Check the HTTP headers for signs of mobile.
1037
+ * This is the fastest mobile check possible; it's used
1038
+ * inside isMobile() method.
1039
+ *
1040
+ * @return bool
1041
+ */
1042
+ public function checkHttpHeadersForMobile()
1043
+ {
1044
+
1045
+ foreach ($this->getMobileHeaders() as $mobileHeader => $matchType) {
1046
+ if (isset($this->httpHeaders[$mobileHeader])) {
1047
+ if (is_array($matchType['matches'])) {
1048
+ foreach ($matchType['matches'] as $_match) {
1049
+ if (strpos($this->httpHeaders[$mobileHeader], $_match) !== false) {
1050
+ return true;
1051
+ }
1052
+ }
1053
+
1054
+ return false;
1055
+ } else {
1056
+ return true;
1057
+ }
1058
+ }
1059
+ }
1060
+
1061
+ return false;
1062
+
1063
+ }
1064
+
1065
+ /**
1066
+ * Magic overloading method.
1067
+ *
1068
+ * @method boolean is[...]()
1069
+ * @param string $name
1070
+ * @param array $arguments
1071
+ * @return mixed
1072
+ * @throws BadMethodCallException when the method doesn't exist and doesn't start with 'is'
1073
+ */
1074
+ public function __call($name, $arguments)
1075
+ {
1076
+ // make sure the name starts with 'is', otherwise
1077
+ if (substr($name, 0, 2) !== 'is') {
1078
+ throw new BadMethodCallException("No such method exists: $name");
1079
+ }
1080
+
1081
+ $this->setDetectionType(self::DETECTION_TYPE_MOBILE);
1082
+
1083
+ $key = substr($name, 2);
1084
+
1085
+ return $this->matchUAAgainstKey($key);
1086
+ }
1087
+
1088
+ /**
1089
+ * Find a detection rule that matches the current User-agent.
1090
+ *
1091
+ * @param null $userAgent deprecated
1092
+ * @return boolean
1093
+ */
1094
+ protected function matchDetectionRulesAgainstUA($userAgent = null)
1095
+ {
1096
+ // Begin general search.
1097
+ foreach ($this->getRules() as $_regex) {
1098
+ if (empty($_regex)) {
1099
+ continue;
1100
+ }
1101
+
1102
+ if ($this->match($_regex, $userAgent)) {
1103
+ return true;
1104
+ }
1105
+ }
1106
+
1107
+ return false;
1108
+ }
1109
+
1110
+ /**
1111
+ * Search for a certain key in the rules array.
1112
+ * If the key is found then try to match the corresponding
1113
+ * regex against the User-Agent.
1114
+ *
1115
+ * @param string $key
1116
+ *
1117
+ * @return boolean
1118
+ */
1119
+ protected function matchUAAgainstKey($key)
1120
+ {
1121
+ // Make the keys lowercase so we can match: isIphone(), isiPhone(), isiphone(), etc.
1122
+ $key = strtolower($key);
1123
+ if (false === isset($this->cache[$key])) {
1124
+
1125
+ // change the keys to lower case
1126
+ $_rules = array_change_key_case($this->getRules());
1127
+
1128
+ if (false === empty($_rules[$key])) {
1129
+ $this->cache[$key] = $this->match($_rules[$key]);
1130
+ }
1131
+
1132
+ if (false === isset($this->cache[$key])) {
1133
+ $this->cache[$key] = false;
1134
+ }
1135
+ }
1136
+
1137
+ return $this->cache[$key];
1138
+ }
1139
+
1140
+ /**
1141
+ * Check if the device is mobile.
1142
+ * Returns true if any type of mobile device detected, including special ones
1143
+ * @param null $userAgent deprecated
1144
+ * @param null $httpHeaders deprecated
1145
+ * @return bool
1146
+ */
1147
+ public function isMobile($userAgent = null, $httpHeaders = null)
1148
+ {
1149
+
1150
+ if ($httpHeaders) {
1151
+ $this->setHttpHeaders($httpHeaders);
1152
+ }
1153
+
1154
+ if ($userAgent) {
1155
+ $this->setUserAgent($userAgent);
1156
+ }
1157
+
1158
+ // Check specifically for cloudfront headers if the useragent === 'Amazon CloudFront'
1159
+ if ($this->getUserAgent() === 'Amazon CloudFront') {
1160
+ $cfHeaders = $this->getCfHeaders();
1161
+ if(array_key_exists('HTTP_CLOUDFRONT_IS_MOBILE_VIEWER', $cfHeaders) && $cfHeaders['HTTP_CLOUDFRONT_IS_MOBILE_VIEWER'] === 'true') {
1162
+ return true;
1163
+ }
1164
+ }
1165
+
1166
+ $this->setDetectionType(self::DETECTION_TYPE_MOBILE);
1167
+
1168
+ if ($this->checkHttpHeadersForMobile()) {
1169
+ return true;
1170
+ } else {
1171
+ return $this->matchDetectionRulesAgainstUA();
1172
+ }
1173
+
1174
+ }
1175
+
1176
+ /**
1177
+ * Check if the device is a tablet.
1178
+ * Return true if any type of tablet device is detected.
1179
+ *
1180
+ * @param string $userAgent deprecated
1181
+ * @param array $httpHeaders deprecated
1182
+ * @return bool
1183
+ */
1184
+ public function isTablet($userAgent = null, $httpHeaders = null)
1185
+ {
1186
+ // Check specifically for cloudfront headers if the useragent === 'Amazon CloudFront'
1187
+ if ($this->getUserAgent() === 'Amazon CloudFront') {
1188
+ $cfHeaders = $this->getCfHeaders();
1189
+ if(array_key_exists('HTTP_CLOUDFRONT_IS_TABLET_VIEWER', $cfHeaders) && $cfHeaders['HTTP_CLOUDFRONT_IS_TABLET_VIEWER'] === 'true') {
1190
+ return true;
1191
+ }
1192
+ }
1193
+
1194
+ $this->setDetectionType(self::DETECTION_TYPE_MOBILE);
1195
+
1196
+ foreach (self::$tabletDevices as $_regex) {
1197
+ if ($this->match($_regex, $userAgent)) {
1198
+ return true;
1199
+ }
1200
+ }
1201
+
1202
+ return false;
1203
+ }
1204
+
1205
+ /**
1206
+ * This method checks for a certain property in the
1207
+ * userAgent.
1208
+ * @todo: The httpHeaders part is not yet used.
1209
+ *
1210
+ * @param string $key
1211
+ * @param string $userAgent deprecated
1212
+ * @param string $httpHeaders deprecated
1213
+ * @return bool|int|null
1214
+ */
1215
+ public function is($key, $userAgent = null, $httpHeaders = null)
1216
+ {
1217
+ // Set the UA and HTTP headers only if needed (eg. batch mode).
1218
+ if ($httpHeaders) {
1219
+ $this->setHttpHeaders($httpHeaders);
1220
+ }
1221
+
1222
+ if ($userAgent) {
1223
+ $this->setUserAgent($userAgent);
1224
+ }
1225
+
1226
+ $this->setDetectionType(self::DETECTION_TYPE_EXTENDED);
1227
+
1228
+ return $this->matchUAAgainstKey($key);
1229
+ }
1230
+
1231
+ /**
1232
+ * Some detection rules are relative (not standard),
1233
+ * because of the diversity of devices, vendors and
1234
+ * their conventions in representing the User-Agent or
1235
+ * the HTTP headers.
1236
+ *
1237
+ * This method will be used to check custom regexes against
1238
+ * the User-Agent string.
1239
+ *
1240
+ * @param $regex
1241
+ * @param string $userAgent
1242
+ * @return bool
1243
+ *
1244
+ * @todo: search in the HTTP headers too.
1245
+ */
1246
+ public function match($regex, $userAgent = null)
1247
+ {
1248
+ $match = (bool) preg_match(sprintf('#%s#is', $regex), (false === empty($userAgent) ? $userAgent : $this->userAgent), $matches);
1249
+ // If positive match is found, store the results for debug.
1250
+ if ($match) {
1251
+ $this->matchingRegex = $regex;
1252
+ $this->matchesArray = $matches;
1253
+ }
1254
+
1255
+ return $match;
1256
+ }
1257
+
1258
+ /**
1259
+ * Get the properties array.
1260
+ *
1261
+ * @return array
1262
+ */
1263
+ public static function getProperties()
1264
+ {
1265
+ return self::$properties;
1266
+ }
1267
+
1268
+ /**
1269
+ * Prepare the version number.
1270
+ *
1271
+ * @todo Remove the error supression from str_replace() call.
1272
+ *
1273
+ * @param string $ver The string version, like "2.6.21.2152";
1274
+ *
1275
+ * @return float
1276
+ */
1277
+ public function prepareVersionNo($ver)
1278
+ {
1279
+ $ver = str_replace(array('_', ' ', '/'), '.', $ver);
1280
+ $arrVer = explode('.', $ver, 2);
1281
+
1282
+ if (isset($arrVer[1])) {
1283
+ $arrVer[1] = @str_replace('.', '', $arrVer[1]); // @todo: treat strings versions.
1284
+ }
1285
+
1286
+ return (float) implode('.', $arrVer);
1287
+ }
1288
+
1289
+ /**
1290
+ * Check the version of the given property in the User-Agent.
1291
+ * Will return a float number. (eg. 2_0 will return 2.0, 4.3.1 will return 4.31)
1292
+ *
1293
+ * @param string $propertyName The name of the property. See self::getProperties() array
1294
+ * keys for all possible properties.
1295
+ * @param string $type Either self::VERSION_TYPE_STRING to get a string value or
1296
+ * self::VERSION_TYPE_FLOAT indicating a float value. This parameter
1297
+ * is optional and defaults to self::VERSION_TYPE_STRING. Passing an
1298
+ * invalid parameter will default to the this type as well.
1299
+ *
1300
+ * @return string|float The version of the property we are trying to extract.
1301
+ */
1302
+ public function version($propertyName, $type = self::VERSION_TYPE_STRING)
1303
+ {
1304
+ if (empty($propertyName)) {
1305
+ return false;
1306
+ }
1307
+
1308
+ // set the $type to the default if we don't recognize the type
1309
+ if ($type !== self::VERSION_TYPE_STRING && $type !== self::VERSION_TYPE_FLOAT) {
1310
+ $type = self::VERSION_TYPE_STRING;
1311
+ }
1312
+
1313
+ $properties = self::getProperties();
1314
+
1315
+ // Check if the property exists in the properties array.
1316
+ if (true === isset($properties[$propertyName])) {
1317
+
1318
+ // Prepare the pattern to be matched.
1319
+ // Make sure we always deal with an array (string is converted).
1320
+ $properties[$propertyName] = (array) $properties[$propertyName];
1321
+
1322
+ foreach ($properties[$propertyName] as $propertyMatchString) {
1323
+
1324
+ $propertyPattern = str_replace('[VER]', self::VER, $propertyMatchString);
1325
+
1326
+ // Identify and extract the version.
1327
+ preg_match(sprintf('#%s#is', $propertyPattern), $this->userAgent, $match);
1328
+
1329
+ if (false === empty($match[1])) {
1330
+ $version = ($type == self::VERSION_TYPE_FLOAT ? $this->prepareVersionNo($match[1]) : $match[1]);
1331
+
1332
+ return $version;
1333
+ }
1334
+
1335
+ }
1336
+
1337
+ }
1338
+
1339
+ return false;
1340
+ }
1341
+
1342
+ /**
1343
+ * Retrieve the mobile grading, using self::MOBILE_GRADE_* constants.
1344
+ *
1345
+ * @return string One of the self::MOBILE_GRADE_* constants.
1346
+ */
1347
+ public function mobileGrade()
1348
+ {
1349
+ $isMobile = $this->isMobile();
1350
+
1351
+ if (
1352
+ // Apple iOS 4-7.0 – Tested on the original iPad (4.3 / 5.0), iPad 2 (4.3 / 5.1 / 6.1), iPad 3 (5.1 / 6.0), iPad Mini (6.1), iPad Retina (7.0), iPhone 3GS (4.3), iPhone 4 (4.3 / 5.1), iPhone 4S (5.1 / 6.0), iPhone 5 (6.0), and iPhone 5S (7.0)
1353
+ $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT) >= 4.3 ||
1354
+ $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT) >= 4.3 ||
1355
+ $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT) >= 4.3 ||
1356
+
1357
+ // Android 2.1-2.3 - Tested on the HTC Incredible (2.2), original Droid (2.2), HTC Aria (2.1), Google Nexus S (2.3). Functional on 1.5 & 1.6 but performance may be sluggish, tested on Google G1 (1.5)
1358
+ // Android 3.1 (Honeycomb) - Tested on the Samsung Galaxy Tab 10.1 and Motorola XOOM
1359
+ // Android 4.0 (ICS) - Tested on a Galaxy Nexus. Note: transition performance can be poor on upgraded devices
1360
+ // Android 4.1 (Jelly Bean) - Tested on a Galaxy Nexus and Galaxy 7
1361
+ ( $this->version('Android', self::VERSION_TYPE_FLOAT)>2.1 && $this->is('Webkit') ) ||
1362
+
1363
+ // Windows Phone 7.5-8 - Tested on the HTC Surround (7.5), HTC Trophy (7.5), LG-E900 (7.5), Nokia 800 (7.8), HTC Mazaa (7.8), Nokia Lumia 520 (8), Nokia Lumia 920 (8), HTC 8x (8)
1364
+ $this->version('Windows Phone OS', self::VERSION_TYPE_FLOAT) >= 7.5 ||
1365
+
1366
+ // Tested on the Torch 9800 (6) and Style 9670 (6), BlackBerry® Torch 9810 (7), BlackBerry Z10 (10)
1367
+ $this->is('BlackBerry') && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) >= 6.0 ||
1368
+ // Blackberry Playbook (1.0-2.0) - Tested on PlayBook
1369
+ $this->match('Playbook.*Tablet') ||
1370
+
1371
+ // Palm WebOS (1.4-3.0) - Tested on the Palm Pixi (1.4), Pre (1.4), Pre 2 (2.0), HP TouchPad (3.0)
1372
+ ( $this->version('webOS', self::VERSION_TYPE_FLOAT) >= 1.4 && $this->match('Palm|Pre|Pixi') ) ||
1373
+ // Palm WebOS 3.0 - Tested on HP TouchPad
1374
+ $this->match('hp.*TouchPad') ||
1375
+
1376
+ // Firefox Mobile 18 - Tested on Android 2.3 and 4.1 devices
1377
+ ( $this->is('Firefox') && $this->version('Firefox', self::VERSION_TYPE_FLOAT) >= 18 ) ||
1378
+
1379
+ // Chrome for Android - Tested on Android 4.0, 4.1 device
1380
+ ( $this->is('Chrome') && $this->is('AndroidOS') && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 4.0 ) ||
1381
+
1382
+ // Skyfire 4.1 - Tested on Android 2.3 device
1383
+ ( $this->is('Skyfire') && $this->version('Skyfire', self::VERSION_TYPE_FLOAT) >= 4.1 && $this->is('AndroidOS') && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 ) ||
1384
+
1385
+ // Opera Mobile 11.5-12: Tested on Android 2.3
1386
+ ( $this->is('Opera') && $this->version('Opera Mobi', self::VERSION_TYPE_FLOAT) >= 11.5 && $this->is('AndroidOS') ) ||
1387
+
1388
+ // Meego 1.2 - Tested on Nokia 950 and N9
1389
+ $this->is('MeeGoOS') ||
1390
+
1391
+ // Tizen (pre-release) - Tested on early hardware
1392
+ $this->is('Tizen') ||
1393
+
1394
+ // Samsung Bada 2.0 - Tested on a Samsung Wave 3, Dolphin browser
1395
+ // @todo: more tests here!
1396
+ $this->is('Dolfin') && $this->version('Bada', self::VERSION_TYPE_FLOAT) >= 2.0 ||
1397
+
1398
+ // UC Browser - Tested on Android 2.3 device
1399
+ ( ($this->is('UC Browser') || $this->is('Dolfin')) && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 ) ||
1400
+
1401
+ // Kindle 3 and Fire - Tested on the built-in WebKit browser for each
1402
+ ( $this->match('Kindle Fire') ||
1403
+ $this->is('Kindle') && $this->version('Kindle', self::VERSION_TYPE_FLOAT) >= 3.0 ) ||
1404
+
1405
+ // Nook Color 1.4.1 - Tested on original Nook Color, not Nook Tablet
1406
+ $this->is('AndroidOS') && $this->is('NookTablet') ||
1407
+
1408
+ // Chrome Desktop 16-24 - Tested on OS X 10.7 and Windows 7
1409
+ $this->version('Chrome', self::VERSION_TYPE_FLOAT) >= 16 && !$isMobile ||
1410
+
1411
+ // Safari Desktop 5-6 - Tested on OS X 10.7 and Windows 7
1412
+ $this->version('Safari', self::VERSION_TYPE_FLOAT) >= 5.0 && !$isMobile ||
1413
+
1414
+ // Firefox Desktop 10-18 - Tested on OS X 10.7 and Windows 7
1415
+ $this->version('Firefox', self::VERSION_TYPE_FLOAT) >= 10.0 && !$isMobile ||
1416
+
1417
+ // Internet Explorer 7-9 - Tested on Windows XP, Vista and 7
1418
+ $this->version('IE', self::VERSION_TYPE_FLOAT) >= 7.0 && !$isMobile ||
1419
+
1420
+ // Opera Desktop 10-12 - Tested on OS X 10.7 and Windows 7
1421
+ $this->version('Opera', self::VERSION_TYPE_FLOAT) >= 10 && !$isMobile
1422
+ ){
1423
+ return self::MOBILE_GRADE_A;
1424
+ }
1425
+
1426
+ if (
1427
+ $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT)<4.3 ||
1428
+ $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT)<4.3 ||
1429
+ $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT)<4.3 ||
1430
+
1431
+ // Blackberry 5.0: Tested on the Storm 2 9550, Bold 9770
1432
+ $this->is('Blackberry') && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) >= 5 && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT)<6 ||
1433
+
1434
+ //Opera Mini (5.0-6.5) - Tested on iOS 3.2/4.3 and Android 2.3
1435
+ ($this->version('Opera Mini', self::VERSION_TYPE_FLOAT) >= 5.0 && $this->version('Opera Mini', self::VERSION_TYPE_FLOAT) <= 7.0 &&
1436
+ ($this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 || $this->is('iOS')) ) ||
1437
+
1438
+ // Nokia Symbian^3 - Tested on Nokia N8 (Symbian^3), C7 (Symbian^3), also works on N97 (Symbian^1)
1439
+ $this->match('NokiaN8|NokiaC7|N97.*Series60|Symbian/3') ||
1440
+
1441
+ // @todo: report this (tested on Nokia N71)
1442
+ $this->version('Opera Mobi', self::VERSION_TYPE_FLOAT) >= 11 && $this->is('SymbianOS')
1443
+ ){
1444
+ return self::MOBILE_GRADE_B;
1445
+ }
1446
+
1447
+ if (
1448
+ // Blackberry 4.x - Tested on the Curve 8330
1449
+ $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) <= 5.0 ||
1450
+ // Windows Mobile - Tested on the HTC Leo (WinMo 5.2)
1451
+ $this->match('MSIEMobile|Windows CE.*Mobile') || $this->version('Windows Mobile', self::VERSION_TYPE_FLOAT) <= 5.2 ||
1452
+
1453
+ // Tested on original iPhone (3.1), iPhone 3 (3.2)
1454
+ $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT) <= 3.2 ||
1455
+ $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT) <= 3.2 ||
1456
+ $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT) <= 3.2 ||
1457
+
1458
+ // Internet Explorer 7 and older - Tested on Windows XP
1459
+ $this->version('IE', self::VERSION_TYPE_FLOAT) <= 7.0 && !$isMobile
1460
+ ){
1461
+ return self::MOBILE_GRADE_C;
1462
+ }
1463
+
1464
+ // All older smartphone platforms and featurephones - Any device that doesn't support media queries
1465
+ // will receive the basic, C grade experience.
1466
+ return self::MOBILE_GRADE_C;
1467
+ }
1468
+ }
classes/modInstaller.php CHANGED
@@ -72,7 +72,7 @@ class modInstallerGmp {
72
  if(mkdir(GMP_MODULES_DIR. $code)) {
73
  utilsGmp::copyDirectories($path, GMP_MODULES_DIR. $code);
74
  return true;
75
- } else
76
  errorsGmp::push(__('Can not create module directory. Try to set permission to '. GMP_MODULES_DIR. ' directory 755 or 777', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
77
  } else
78
  return true;
@@ -89,6 +89,7 @@ class modInstallerGmp {
89
  $locations['plugDir'] = dirname(WP_PLUGIN_DIR. DS. $locations['plugPath']);
90
  $locations['plugMainFile'] = WP_PLUGIN_DIR. DS. $locations['plugPath'];
91
  $locations['xmlPath'] = $locations['plugDir']. DS. 'install.xml';
 
92
  return $locations;
93
  }
94
  static private function _getModulesFromXml($xmlPath) {
@@ -109,6 +110,23 @@ class modInstallerGmp {
109
  errorsGmp::push(__('No XML file were found', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
110
  return false;
111
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  /**
113
  * Check whether modules is installed or not, if not and must be activated - install it
114
  * @param array $codes array with modules data to store in database
@@ -117,20 +135,20 @@ class modInstallerGmp {
117
  */
118
  static public function check($extPlugName = '') {
119
  $locations = self::_getPluginLocations();
120
- if($modules = self::_getModulesFromXml($locations['xmlPath'])) {
121
- foreach($modules as $m) {
122
- $modDataArr = utilsGmp::xmlNodeAttrsToArr($m);
123
- if(!empty($modDataArr)) {
124
- if(frameGmp::_()->moduleExists($modDataArr['code'])) { //If module Exists - just activate it
125
- self::activate($modDataArr);
126
- } else { // if not - install it
127
- if(!self::install($modDataArr, $locations['plugDir'])) {
128
- errorsGmp::push(sprintf(__('Install %s failed'), $modDataArr['code']), errorsGmp::MOD_INSTALL);
129
- }
130
- }
131
- }
132
- }
133
- } else
134
  errorsGmp::push(__('Error Activate module', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
135
  if(errorsGmp::haveErrors(errorsGmp::MOD_INSTALL)) {
136
  self::displayErrors();
@@ -153,19 +171,18 @@ class modInstallerGmp {
153
  */
154
  static public function deactivate() {
155
  $locations = self::_getPluginLocations();
156
- if($modules = self::_getModulesFromXml($locations['xmlPath'])) {
157
- foreach($modules as $m) {
158
- $modDataArr = utilsGmp::xmlNodeAttrsToArr($m);
159
- if(frameGmp::_()->moduleActive($modDataArr['code'])) { //If module is active - then deacivate it
160
- if(frameGmp::_()->getModule('options')->getModel('modules')->put(array(
161
- 'id' => frameGmp::_()->getModule($modDataArr['code'])->getID(),
162
- 'active' => 0,
163
- ))->error) {
164
- errorsGmp::push(__('Error Deactivation module', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
165
- }
166
- }
167
- }
168
- }
169
  if(errorsGmp::haveErrors(errorsGmp::MOD_INSTALL)) {
170
  self::displayErrors(false);
171
  return false;
@@ -173,27 +190,21 @@ class modInstallerGmp {
173
  return true;
174
  }
175
  static public function activate($modDataArr) {
176
- $locations = self::_getPluginLocations();
177
- if($modules = self::_getModulesFromXml($locations['xmlPath'])) {
178
- foreach($modules as $m) {
179
- $modDataArr = utilsGmp::xmlNodeAttrsToArr($m);
180
- if(!frameGmp::_()->moduleActive($modDataArr['code'])) { //If module is not active - then acivate it
181
- if(frameGmp::_()->getModule('options')->getModel('modules')->put(array(
182
- 'code' => $modDataArr['code'],
183
- 'active' => 1,
184
- ))->error) {
185
- errorsGmp::push(__('Error Activating module', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
186
- } else {
187
- $dbModData = frameGmp::_()->getModule('options')->getModel('modules')->get(array('code' => $modDataArr['code']));
188
- if(!empty($dbModData) && !empty($dbModData[0])) {
189
- $modDataArr['ex_plug_dir'] = $dbModData[0]['ex_plug_dir'];
190
- }
191
- self::_runModuleInstall($modDataArr, 'activate');
192
- }
193
- }
194
- }
195
- }
196
- }
197
  /**
198
  * Display all errors for module installer, must be used ONLY if You realy need it
199
  */
@@ -205,15 +216,14 @@ class modInstallerGmp {
205
  if($exit) exit();
206
  }
207
  static public function uninstall() {
208
- $locations = self::_getPluginLocations();
209
- if($modules = self::_getModulesFromXml($locations['xmlPath'])) {
210
- foreach($modules as $m) {
211
- $modDataArr = utilsGmp::xmlNodeAttrsToArr($m);
212
- self::_uninstallTables($modDataArr);
213
- frameGmp::_()->getModule('options')->getModel('modules')->delete(array('code' => $modDataArr['code']));
214
- utilsGmp::deleteDir(GMP_MODULES_DIR. $modDataArr['code']);
215
- }
216
- }
217
  }
218
  static protected function _uninstallTables($module) {
219
  if(is_dir(GMP_MODULES_DIR. $module['code']. DS. 'tables')) {
@@ -228,9 +238,9 @@ class modInstallerGmp {
228
  }
229
  }
230
  static public function _installTables($module, $action = 'install') {
231
- $modDir = empty($module['ex_plug_dir']) ?
232
- GMP_MODULES_DIR. $module['code']. DS :
233
- utilsGmp::getPluginDir($module['ex_plug_dir']). $module['code']. DS;
234
  if(is_dir($modDir. 'tables')) {
235
  $tableFiles = utilsGmp::getFilesList($modDir. 'tables');
236
  if(!empty($tableFiles)) {
@@ -243,4 +253,4 @@ class modInstallerGmp {
243
  }
244
  }
245
  }
246
- }
72
  if(mkdir(GMP_MODULES_DIR. $code)) {
73
  utilsGmp::copyDirectories($path, GMP_MODULES_DIR. $code);
74
  return true;
75
+ } else
76
  errorsGmp::push(__('Can not create module directory. Try to set permission to '. GMP_MODULES_DIR. ' directory 755 or 777', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
77
  } else
78
  return true;
89
  $locations['plugDir'] = dirname(WP_PLUGIN_DIR. DS. $locations['plugPath']);
90
  $locations['plugMainFile'] = WP_PLUGIN_DIR. DS. $locations['plugPath'];
91
  $locations['xmlPath'] = $locations['plugDir']. DS. 'install.xml';
92
+ $locations['extendModPath'] = $locations['plugDir']. DS. 'install.php';
93
  return $locations;
94
  }
95
  static private function _getModulesFromXml($xmlPath) {
110
  errorsGmp::push(__('No XML file were found', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
111
  return false;
112
  }
113
+ static private function _getExtendModules($locations) {
114
+ $modules = array();
115
+ $isExtendModPath = file_exists($locations['extendModPath']);
116
+ $modulesList = $isExtendModPath ? include $locations['extendModPath'] : self::_getModulesFromXml($locations['xmlPath']);
117
+ if(!empty($modulesList)) {
118
+ foreach($modulesList as $mod) {
119
+ $modData = $isExtendModPath ? $mod : utilsGmp::xmlNodeAttrsToArr($mod);
120
+ array_push($modules, $modData);
121
+ }
122
+ if(empty($modules))
123
+ errorsGmp::push(__('No modules were found in installation file', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
124
+ else
125
+ return $modules;
126
+ } else
127
+ errorsGmp::push(__('No installation file were found', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
128
+ return false;
129
+ }
130
  /**
131
  * Check whether modules is installed or not, if not and must be activated - install it
132
  * @param array $codes array with modules data to store in database
135
  */
136
  static public function check($extPlugName = '') {
137
  $locations = self::_getPluginLocations();
138
+ if($modules = self::_getExtendModules($locations)) {
139
+ foreach($modules as $m) {
140
+ if(!empty($m)) {
141
+ //If module Exists - just activate it, we can't check this using frameGmp::moduleExists because this will not work for multy-site WP
142
+ if(frameGmp::_()->getTable('modules')->exists($m['code'], 'code') /*frameGmp::_()->moduleExists($m['code'])*/) {
143
+ self::activate($m);
144
+ } else { // if not - install it
145
+ if(!self::install($m, $locations['plugDir'])) {
146
+ errorsGmp::push(sprintf(__('Install %s failed'), $m['code']), errorsGmp::MOD_INSTALL);
147
+ }
148
+ }
149
+ }
150
+ }
151
+ } else
152
  errorsGmp::push(__('Error Activate module', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
153
  if(errorsGmp::haveErrors(errorsGmp::MOD_INSTALL)) {
154
  self::displayErrors();
171
  */
172
  static public function deactivate() {
173
  $locations = self::_getPluginLocations();
174
+ if($modules = self::_getExtendModules($locations)) {
175
+ foreach($modules as $m) {
176
+ if(frameGmp::_()->moduleActive($m['code'])) { //If module is active - then deacivate it
177
+ if(frameGmp::_()->getModule('options')->getModel('modules')->put(array(
178
+ 'id' => frameGmp::_()->getModule($m['code'])->getID(),
179
+ 'active' => 0,
180
+ ))->error) {
181
+ errorsGmp::push(__('Error Deactivation module', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
182
+ }
183
+ }
184
+ }
185
+ }
 
186
  if(errorsGmp::haveErrors(errorsGmp::MOD_INSTALL)) {
187
  self::displayErrors(false);
188
  return false;
190
  return true;
191
  }
192
  static public function activate($modDataArr) {
193
+ if(!empty($modDataArr['code']) && !frameGmp::_()->moduleActive($modDataArr['code'])) { //If module is not active - then acivate it
194
+ if(frameGmp::_()->getModule('options')->getModel('modules')->put(array(
195
+ 'code' => $modDataArr['code'],
196
+ 'active' => 1,
197
+ ))->error) {
198
+ errorsGmp::push(__('Error Activating module', GMP_LANG_CODE), errorsGmp::MOD_INSTALL);
199
+ } else {
200
+ $dbModData = frameGmp::_()->getModule('options')->getModel('modules')->get(array('code' => $modDataArr['code']));
201
+ if(!empty($dbModData) && !empty($dbModData[0])) {
202
+ $modDataArr['ex_plug_dir'] = $dbModData[0]['ex_plug_dir'];
203
+ }
204
+ self::_runModuleInstall($modDataArr, 'activate');
205
+ }
206
+ }
207
+ }
 
 
 
 
 
 
208
  /**
209
  * Display all errors for module installer, must be used ONLY if You realy need it
210
  */
216
  if($exit) exit();
217
  }
218
  static public function uninstall() {
219
+ $locations = self::_getPluginLocations();
220
+ if($modules = self::_getExtendModules($locations)) {
221
+ foreach($modules as $m) {
222
+ self::_uninstallTables($m);
223
+ frameGmp::_()->getModule('options')->getModel('modules')->delete(array('code' => $m['code']));
224
+ utilsGmp::deleteDir(GMP_MODULES_DIR. $m['code']);
225
+ }
226
+ }
 
227
  }
228
  static protected function _uninstallTables($module) {
229
  if(is_dir(GMP_MODULES_DIR. $module['code']. DS. 'tables')) {
238
  }
239
  }
240
  static public function _installTables($module, $action = 'install') {
241
+ $modDir = empty($module['ex_plug_dir']) ?
242
+ GMP_MODULES_DIR. $module['code']. DS :
243
+ utilsGmp::getPluginDir($module['ex_plug_dir']). $module['code']. DS;
244
  if(is_dir($modDir. 'tables')) {
245
  $tableFiles = utilsGmp::getFilesList($modDir. 'tables');
246
  if(!empty($tableFiles)) {
253
  }
254
  }
255
  }
256
+ }
classes/table.php CHANGED
@@ -274,7 +274,7 @@ abstract class tableGmp {
274
  $fields = $this->_getQueryString($data, ',', true);
275
 
276
  if(empty($fields)) {
277
- $this->_addError(__('Nothig to update', GMP_LANG_CODE));
278
  return false;
279
  }
280
 
274
  $fields = $this->_getQueryString($data, ',', true);
275
 
276
  if(empty($fields)) {
277
+ $this->_addError(__('Nothing to update', GMP_LANG_CODE));
278
  return false;
279
  }
280
 
classes/tables/marker.php CHANGED
@@ -7,8 +7,8 @@ class tableMarkerGmp extends tableGmp{
7
  $this->_addField('id', 'int', 'int', '11', __('Marker ID', GMP_LANG_CODE))
8
  ->_addField('title', 'varchar', 'varchar', '255', __('Marker name', GMP_LANG_CODE))
9
  ->_addField('description', 'text', 'text', '', __('Description Of Marker', GMP_LANG_CODE))
10
- ->_addField('coord_x', 'varchar', 'varchar', '50', __('X coordinate if marker(lng)', GMP_LANG_CODE))
11
- ->_addField('coord_y', 'varchar', 'varchar', '50', __('Y coordinate of marker(lat)', GMP_LANG_CODE))
12
  ->_addField('icon', 'varchar', 'varchar', '255', __('Path of icon file', GMP_LANG_CODE))
13
  ->_addField('map_id', 'int', 'int', '11', __('Map Id', GMP_LANG_CODE))
14
  ->_addField('address', 'text', 'text', '', __('Marker Address', GMP_LANG_CODE))
@@ -17,6 +17,9 @@ class tableMarkerGmp extends tableGmp{
17
  ->_addField('params','text','text','', __('Params', GMP_LANG_CODE))
18
  ->_addField('sort_order','int','int','0', __('Sort Order', GMP_LANG_CODE))
19
  ->_addField('create_date','datetime','datetime','', __('Creation date', GMP_LANG_CODE))
 
 
 
20
  ->_addField('user_id','int','int','11', __('User who created marker', GMP_LANG_CODE));
21
  }
22
  }
7
  $this->_addField('id', 'int', 'int', '11', __('Marker ID', GMP_LANG_CODE))
8
  ->_addField('title', 'varchar', 'varchar', '255', __('Marker name', GMP_LANG_CODE))
9
  ->_addField('description', 'text', 'text', '', __('Description Of Marker', GMP_LANG_CODE))
10
+ ->_addField('coord_x', 'varchar', 'varchar', '50', __('X coordinate of marker (lng)', GMP_LANG_CODE))
11
+ ->_addField('coord_y', 'varchar', 'varchar', '50', __('Y coordinate of marker (lat)', GMP_LANG_CODE))
12
  ->_addField('icon', 'varchar', 'varchar', '255', __('Path of icon file', GMP_LANG_CODE))
13
  ->_addField('map_id', 'int', 'int', '11', __('Map Id', GMP_LANG_CODE))
14
  ->_addField('address', 'text', 'text', '', __('Marker Address', GMP_LANG_CODE))
17
  ->_addField('params','text','text','', __('Params', GMP_LANG_CODE))
18
  ->_addField('sort_order','int','int','0', __('Sort Order', GMP_LANG_CODE))
19
  ->_addField('create_date','datetime','datetime','', __('Creation date', GMP_LANG_CODE))
20
+ ->_addField('period_from', 'datetime', 'datetime', null, __('Period date from', GMP_LANG_CODE))
21
+ ->_addField('period_to', 'datetime', 'datetime', null, __('Period date to', GMP_LANG_CODE))
22
+ ->_addField('hash', 'varchar', '32', __('Import Kml Layer unique index', GMP_LANG_CODE))
23
  ->_addField('user_id','int','int','11', __('User who created marker', GMP_LANG_CODE));
24
  }
25
  }
classes/tables/marker_groups_relation.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class tableMarker_groups_relationGmp extends tableGmp{
3
+ public function __construct() {
4
+
5
+ $this->_table = '@__marker_groups_relation';
6
+ $this->_id = 'id';
7
+ $this->_alias = 'gmp_mrgrr';
8
+ $this->_addField('id', 'int', 'int', '11', '')
9
+ ->_addField('marker_id', 'int', 'int', '11', '')
10
+ ->_addField('groups_id', 'int', 'int', '11', '');
11
+ }
12
+ }
13
+
classes/utils.php CHANGED
@@ -1,5 +1,9 @@
1
  <?php
 
 
2
  class utilsGmp {
 
 
3
  static public function jsonEncode($arr) {
4
  return (is_array($arr) || is_object($arr)) ? json_encode_utf_normal($arr) : json_encode_utf_normal(array());
5
  }
@@ -316,16 +320,21 @@ class utilsGmp {
316
  * Check if device is mobile
317
  * @return bool true if user are watching this site from mobile device
318
  */
319
- static public function isMobile() {
320
- return mobileDetect::_()->isMobile();
321
- }
322
- /**
323
- * Check if device is tablet
324
- * @return bool true if user are watching this site from tablet device
325
- */
326
- static public function isTablet() {
327
- return mobileDetect::_()->isTablet();
328
- }
 
 
 
 
 
329
  static public function getUploadsDir() {
330
  $uploadDir = wp_upload_dir();
331
  return $uploadDir['basedir'];
@@ -354,14 +363,16 @@ class utilsGmp {
354
  add_action('activated_plugin', array(frameGmp::_(), 'savePluginActivationErrors'));
355
  }
356
  if (function_exists('is_multisite') && is_multisite()) {
357
- $orig_id = $wpdb->blogid;
358
  $blog_id = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
359
  foreach ($blog_id as $id) {
360
  if (switch_to_blog($id)) {
361
  installerGmp::init();
 
362
  }
363
  }
364
- switch_to_blog($orig_id);
 
365
  return;
366
  } else {
367
  installerGmp::init();
@@ -376,14 +387,16 @@ class utilsGmp {
376
  static public function deletePlugin() {
377
  global $wpdb;
378
  if (function_exists('is_multisite') && is_multisite()) {
379
- $orig_id = $wpdb->blogid;
380
  $blog_id = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
381
  foreach ($blog_id as $id) {
382
  if (switch_to_blog($id)) {
383
  installerGmp::delete();
 
384
  }
385
  }
386
- switch_to_blog($orig_id);
 
387
  return;
388
  } else {
389
  installerGmp::delete();
@@ -392,14 +405,16 @@ class utilsGmp {
392
  static public function deactivatePlugin() {
393
  global $wpdb;
394
  if (function_exists('is_multisite') && is_multisite()) {
395
- $orig_id = $wpdb->blogid;
396
  $blog_id = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
397
  foreach ($blog_id as $id) {
398
  if (switch_to_blog($id)) {
399
  installerGmp::deactivate();
 
400
  }
401
  }
402
- switch_to_blog($orig_id);
 
403
  return;
404
  } else {
405
  installerGmp::deactivate();
1
  <?php
2
+ importClassGmp('mobileDetectGmp');
3
+
4
  class utilsGmp {
5
+ static public $isMobile = null;
6
+
7
  static public function jsonEncode($arr) {
8
  return (is_array($arr) || is_object($arr)) ? json_encode_utf_normal($arr) : json_encode_utf_normal(array());
9
  }
320
  * Check if device is mobile
321
  * @return bool true if user are watching this site from mobile device
322
  */
323
+ static public function isMobile() {
324
+ if(self::$isMobile === null) {
325
+ $mobileDetect = new mobileDetectGmp();
326
+ self::$isMobile = $mobileDetect->isMobile();
327
+ }
328
+ return self::$isMobile;
329
+ }
330
+ /**
331
+ * Check if device is tablet
332
+ * @return bool true if user are watching this site from tablet device
333
+ */
334
+ static public function isTablet() {
335
+ $mobileDetect = new mobileDetectGmp();
336
+ return $mobileDetect->isTablet();
337
+ }
338
  static public function getUploadsDir() {
339
  $uploadDir = wp_upload_dir();
340
  return $uploadDir['basedir'];
363
  add_action('activated_plugin', array(frameGmp::_(), 'savePluginActivationErrors'));
364
  }
365
  if (function_exists('is_multisite') && is_multisite()) {
366
+ // $orig_id = $wpdb->blogid;
367
  $blog_id = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
368
  foreach ($blog_id as $id) {
369
  if (switch_to_blog($id)) {
370
  installerGmp::init();
371
+ restore_current_blog();
372
  }
373
  }
374
+ // restore_current_blog();
375
+ // switch_to_blog($orig_id);
376
  return;
377
  } else {
378
  installerGmp::init();
387
  static public function deletePlugin() {
388
  global $wpdb;
389
  if (function_exists('is_multisite') && is_multisite()) {
390
+ // $orig_id = $wpdb->blogid;
391
  $blog_id = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
392
  foreach ($blog_id as $id) {
393
  if (switch_to_blog($id)) {
394
  installerGmp::delete();
395
+ restore_current_blog();
396
  }
397
  }
398
+ // restore_current_blog();
399
+ // switch_to_blog($orig_id);
400
  return;
401
  } else {
402
  installerGmp::delete();
405
  static public function deactivatePlugin() {
406
  global $wpdb;
407
  if (function_exists('is_multisite') && is_multisite()) {
408
+ // $orig_id = $wpdb->blogid;
409
  $blog_id = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
410
  foreach ($blog_id as $id) {
411
  if (switch_to_blog($id)) {
412
  installerGmp::deactivate();
413
+ restore_current_blog();
414
  }
415
  }
416
+ // restore_current_blog();
417
+ // switch_to_blog($orig_id);
418
  return;
419
  } else {
420
  installerGmp::deactivate();
config.php CHANGED
@@ -13,7 +13,7 @@
13
  define('GMP_CLASSES_DIR', GMP_DIR. 'classes'. DS);
14
  define('GMP_TABLES_DIR', GMP_CLASSES_DIR. 'tables'. DS);
15
  define('GMP_HELPERS_DIR', GMP_CLASSES_DIR. 'helpers'. DS);
16
- define('GMP_LANG_DIR', GMP_DIR. 'lang'. DS);
17
  define('GMP_IMG_DIR', GMP_DIR. 'img'. DS);
18
  define('GMP_TEMPLATES_DIR', GMP_DIR. 'templates'. DS);
19
  define('GMP_MODULES_DIR', GMP_DIR. 'modules'. DS);
@@ -48,7 +48,7 @@
48
  define('GMP_EOL', "\n");
49
 
50
  define('GMP_PLUGIN_INSTALLED', true);
51
- define('GMP_VERSION_PLUGIN', '1.9.1'); //GMP_VERSION is pre-defined constant for PHP GMP module http://php.net/manual/en/book.gmp.php
52
  define('GMP_USER', 'user');
53
 
54
  define('GMP_CLASS_PREFIX', 'gmpc');
@@ -72,7 +72,7 @@
72
  */
73
  define('GMP_CODE', 'gmp');
74
 
75
- define('GMP_LANG_CODE', 'gmp_lng');
76
  /**
77
  * Plugin name
78
  */
13
  define('GMP_CLASSES_DIR', GMP_DIR. 'classes'. DS);
14
  define('GMP_TABLES_DIR', GMP_CLASSES_DIR. 'tables'. DS);
15
  define('GMP_HELPERS_DIR', GMP_CLASSES_DIR. 'helpers'. DS);
16
+ define('GMP_LANG_DIR', GMP_DIR. 'languages'. DS);
17
  define('GMP_IMG_DIR', GMP_DIR. 'img'. DS);
18
  define('GMP_TEMPLATES_DIR', GMP_DIR. 'templates'. DS);
19
  define('GMP_MODULES_DIR', GMP_DIR. 'modules'. DS);
48
  define('GMP_EOL', "\n");
49
 
50
  define('GMP_PLUGIN_INSTALLED', true);
51
+ define('GMP_VERSION_PLUGIN', '1.9.29'); //GMP_VERSION is pre-defined constant for PHP GMP module http://php.net/manual/en/book.gmp.php
52
  define('GMP_USER', 'user');
53
 
54
  define('GMP_CLASS_PREFIX', 'gmpc');
72
  */
73
  define('GMP_CODE', 'gmp');
74
 
75
+ define('GMP_LANG_CODE', 'google-maps-easy');
76
  /**
77
  * Plugin name
78
  */
css/jqtree.css ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ul.jqtree-tree {
2
+ list-style: none outside;
3
+ margin-left: 0;
4
+ margin-bottom: 0;
5
+ padding: 0; }
6
+ ul.jqtree-tree ul.jqtree_common {
7
+ list-style: none outside;
8
+ margin-left: 12px;
9
+ margin-right: 0;
10
+ margin-bottom: 0;
11
+ padding: 0;
12
+ display: block; }
13
+ ul.jqtree-tree li.jqtree-closed > ul.jqtree_common {
14
+ display: none; }
15
+ ul.jqtree-tree li.jqtree_common {
16
+ clear: both;
17
+ list-style-type: none; }
18
+ ul.jqtree-tree .jqtree-toggler {
19
+ border-bottom: none;
20
+ color: #333;
21
+ text-decoration: none;
22
+ vertical-align: middle; }
23
+ ul.jqtree-tree .jqtree-toggler:hover {
24
+ color: #000;
25
+ text-decoration: none; }
26
+ ul.jqtree-tree .jqtree-toggler.jqtree-closed {
27
+ background-position: 0 0; }
28
+ ul.jqtree-tree .jqtree-toggler.jqtree-toggler-left {
29
+ margin-right: 0.5em; }
30
+ ul.jqtree-tree .jqtree-toggler.jqtree-toggler-right {
31
+ margin-left: 0.5em; }
32
+ ul.jqtree-tree .jqtree-element {
33
+ cursor: pointer;
34
+ position: relative; }
35
+ ul.jqtree-tree .jqtree-title {
36
+ color: #1C4257;
37
+ vertical-align: middle;
38
+ margin-left: 1.5em; }
39
+ ul.jqtree-tree .jqtree-title.jqtree-title-folder {
40
+ margin-left: 0; }
41
+ ul.jqtree-tree li.jqtree-folder {
42
+ margin-bottom: 4px; }
43
+ ul.jqtree-tree li.jqtree-folder.jqtree-closed {
44
+ margin-bottom: 1px; }
45
+ ul.jqtree-tree li.jqtree-ghost {
46
+ position: relative;
47
+ z-index: 10;
48
+ margin-right: 10px;
49
+ /* todo: add classes to span? */ }
50
+ ul.jqtree-tree li.jqtree-ghost span {
51
+ display: block; }
52
+ ul.jqtree-tree li.jqtree-ghost span.jqtree-circle {
53
+ border: solid 2px #0000ff;
54
+ -webkit-border-radius: 100px;
55
+ -moz-border-radius: 100px;
56
+ border-radius: 100px;
57
+ height: 8px;
58
+ width: 8px;
59
+ position: absolute;
60
+ top: -4px;
61
+ left: -6px;
62
+ -webkit-box-sizing: border-box;
63
+ -moz-box-sizing: border-box;
64
+ box-sizing: border-box; }
65
+ ul.jqtree-tree li.jqtree-ghost span.jqtree-line {
66
+ background-color: #0000ff;
67
+ height: 2px;
68
+ padding: 0;
69
+ position: absolute;
70
+ top: -1px;
71
+ left: 2px;
72
+ width: 100%; }
73
+ ul.jqtree-tree li.jqtree-ghost.jqtree-inside {
74
+ margin-left: 48px; }
75
+ ul.jqtree-tree span.jqtree-border {
76
+ position: absolute;
77
+ display: block;
78
+ left: -2px;
79
+ top: 0;
80
+ border: solid 2px #0000ff;
81
+ border-radius: 6px;
82
+ margin: 0;
83
+ box-sizing: content-box; }
84
+ ul.jqtree-tree li.jqtree-selected > .jqtree-element,
85
+ ul.jqtree-tree li.jqtree-selected > .jqtree-element:hover {
86
+ background-color: #97BDD6;
87
+ background: -webkit-gradient(linear, left top, left bottom, from(#BEE0F5), to(#89AFCA));
88
+ background: -moz-linear-gradient(top, #BEE0F5, #89AFCA);
89
+ background: -ms-linear-gradient(top, #BEE0F5, #89AFCA);
90
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); }
91
+ ul.jqtree-tree .jqtree-moving > .jqtree-element .jqtree-title {
92
+ outline: dashed 1px #0000ff; }
93
+
94
+ ul.jqtree-tree.jqtree-rtl {
95
+ direction: rtl; }
96
+ ul.jqtree-tree.jqtree-rtl ul.jqtree_common {
97
+ margin-left: 0;
98
+ margin-right: 12px; }
99
+ ul.jqtree-tree.jqtree-rtl .jqtree-toggler {
100
+ margin-left: 0.5em;
101
+ margin-right: 0; }
102
+ ul.jqtree-tree.jqtree-rtl .jqtree-title {
103
+ margin-left: 0;
104
+ margin-right: 1.5em; }
105
+ ul.jqtree-tree.jqtree-rtl .jqtree-title.jqtree-title-folder {
106
+ margin-right: 0; }
107
+ ul.jqtree-tree.jqtree-rtl li.jqtree-ghost {
108
+ margin-right: 0;
109
+ margin-left: 10px; }
110
+ ul.jqtree-tree.jqtree-rtl li.jqtree-ghost span.jqtree-circle {
111
+ right: -6px; }
112
+ ul.jqtree-tree.jqtree-rtl li.jqtree-ghost span.jqtree-line {
113
+ right: 2px; }
114
+ ul.jqtree-tree.jqtree-rtl li.jqtree-ghost.jqtree-inside {
115
+ margin-left: 0;
116
+ margin-right: 48px; }
117
+ ul.jqtree-tree.jqtree-rtl span.jqtree-border {
118
+ right: -2px; }
119
+
120
+ span.jqtree-dragging {
121
+ color: #fff;
122
+ background: #000;
123
+ opacity: 0.6;
124
+ cursor: pointer;
125
+ padding: 2px 8px; }
css/jquery-ui.theme.min.css CHANGED
@@ -50,7 +50,7 @@ table, th {
50
  font-size: 13px !important;
51
  }
52
  .ui-dialog .ui-icon {
53
- background: transparent !important;
54
  text-indent: inherit;
55
  font: normal normal normal 14px/1 FontAwesome;
56
  color: black !important;
@@ -238,5 +238,5 @@ thead .ui-jqgrid-labels th[id$='_cb'] .s-ico {
238
  content: "\f002";
239
  }
240
  .ui-dialog-titlebar-close::before { /*disallow other close btns style be here*/
241
- content: "" !important;
242
  }
50
  font-size: 13px !important;
51
  }
52
  .ui-dialog .ui-icon {
53
+ /*background: transparent !important;*/
54
  text-indent: inherit;
55
  font: normal normal normal 14px/1 FontAwesome;
56
  color: black !important;
238
  content: "\f002";
239
  }
240
  .ui-dialog-titlebar-close::before { /*disallow other close btns style be here*/
241
+ content: "x" !important;
242
  }
css/supsystic-ui.css CHANGED
@@ -805,4 +805,7 @@ html[dir="rtl"] .supsystic-plugin .supsystic-content .supsystic-navigation {
805
  html[dir="rtl"] .supsystic-plugin .supsystic-content .supsystic-container {
806
  margin-right: 75px;
807
  margin-left: 0;
 
 
 
808
  }
805
  html[dir="rtl"] .supsystic-plugin .supsystic-content .supsystic-container {
806
  margin-right: 75px;
807
  margin-left: 0;
808
+ }
809
+ .ui-button .ui-button-text{
810
+ display: none!important;
811
  }
gmp.php CHANGED
@@ -3,10 +3,13 @@
3
  * Plugin Name: Google Maps Easy
4
  * Plugin URI: http://supsystic.com/plugins/google-maps-plugin/
5
  * Description: The easiest way to create Google Map with markers or locations. Display any data on the map: text, images, videos. Custom map marker icons
6
- * Version: 1.9.1
7
  * Author: supsystic.com
8
  * Author URI: http://supsystic.com
 
 
9
  **/
 
10
  /**
11
  * Base config constants and functions
12
  */
@@ -53,3 +56,5 @@
53
  frameGmp::_()->parseRoute();
54
  frameGmp::_()->init();
55
  frameGmp::_()->exec();
 
 
3
  * Plugin Name: Google Maps Easy
4
  * Plugin URI: http://supsystic.com/plugins/google-maps-plugin/
5
  * Description: The easiest way to create Google Map with markers or locations. Display any data on the map: text, images, videos. Custom map marker icons
6
+ * Version: 1.9.29
7
  * Author: supsystic.com
8
  * Author URI: http://supsystic.com
9
+ * Text Domain: google-maps-easy
10
+ * Domain Path: /languages
11
  **/
12
+
13
  /**
14
  * Base config constants and functions
15
  */
56
  frameGmp::_()->parseRoute();
57
  frameGmp::_()->init();
58
  frameGmp::_()->exec();
59
+
60
+ //var_dump(frameGmp::_()->getActivationErrors()); exit();
js/admin.options.js CHANGED
@@ -104,14 +104,17 @@ function gmpResetCopyTextCodeFields(selector) {
104
  });
105
  area.find('input.gmpCopyTextCode:not(.gmpStaticWidth)').each(function(){
106
  cloneWidthElement.html( str_replace(jQuery(this).val(), '<', 'P') );
107
- if(jQuery(this).hasClass('gmpMapPhpShortCodeShell')) {
108
- jQuery(this).width( cloneWidthElement.width() - 20 ); // Make input more compact
109
- } else {
110
- jQuery(this).width( cloneWidthElement.width() );
111
- }
112
  });
113
  cloneWidthElement.remove();
114
  }
 
 
 
 
 
 
 
115
  }
116
  function tooltipsterize(shell) {
117
  var tooltipsterSettings = {
@@ -249,6 +252,7 @@ function gmpInitStickyItem() {
249
  wasSticking = true;
250
  element.trigger('startSticky');
251
  } else if(!isNaN(prevScrollMinPos) && currentScrollTop <= prevScrollMinPos) { // Stop sticking
 
252
  element.removeClass('supsystic-sticky-active').data('scrollMinPos', 0).css({
253
  'top': 0
254
  });
104
  });
105
  area.find('input.gmpCopyTextCode:not(.gmpStaticWidth)').each(function(){
106
  cloneWidthElement.html( str_replace(jQuery(this).val(), '<', 'P') );
107
+ jQuery(this).width( cloneWidthElement.width() );
 
 
 
 
108
  });
109
  cloneWidthElement.remove();
110
  }
111
+ if(area.find('.gmpMapShortCodeShell').size()) {
112
+ area.find('.gmpMapShortCodeShell').attr('readonly', 'readonly').click(function(){
113
+ this.setSelectionRange(0, this.value.length);
114
+ }).focus(function(){
115
+ this.setSelectionRange(0, this.value.length);
116
+ });
117
+ }
118
  }
119
  function tooltipsterize(shell) {
120
  var tooltipsterSettings = {
252
  wasSticking = true;
253
  element.trigger('startSticky');
254
  } else if(!isNaN(prevScrollMinPos) && currentScrollTop <= prevScrollMinPos) { // Stop sticking
255
+ // because of this action some map tabs (shapes and heatmap) are jump up during scroll.
256
  element.removeClass('supsystic-sticky-active').data('scrollMinPos', 0).css({
257
  'top': 0
258
  });
js/common.js CHANGED
@@ -606,5 +606,10 @@ function gmpStrToMs(strDate) {
606
  }
607
  return res;
608
  }
 
 
 
 
 
609
  // Simulates PHP's date function
610
  Date.prototype.format=function(e){var t="";var n=Date.replaceChars;for(var r=0;r<e.length;r++){var i=e.charAt(r);if(r-1>=0&&e.charAt(r-1)=="\\"){t+=i}else if(n[i]){t+=n[i].call(this)}else if(i!="\\"){t+=i}}return t};Date.replaceChars={shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longMonths:["January","February","March","April","May","June","July","August","September","October","November","December"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longDays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],d:function(){return(this.getDate()<10?"0":"")+this.getDate()},D:function(){return Date.replaceChars.shortDays[this.getDay()]},j:function(){return this.getDate()},l:function(){return Date.replaceChars.longDays[this.getDay()]},N:function(){return this.getDay()+1},S:function(){return this.getDate()%10==1&&this.getDate()!=11?"st":this.getDate()%10==2&&this.getDate()!=12?"nd":this.getDate()%10==3&&this.getDate()!=13?"rd":"th"},w:function(){return this.getDay()},z:function(){var e=new Date(this.getFullYear(),0,1);return Math.ceil((this-e)/864e5)},W:function(){var e=new Date(this.getFullYear(),0,1);return Math.ceil(((this-e)/864e5+e.getDay()+1)/7)},F:function(){return Date.replaceChars.longMonths[this.getMonth()]},m:function(){return(this.getMonth()<9?"0":"")+(this.getMonth()+1)},M:function(){return Date.replaceChars.shortMonths[this.getMonth()]},n:function(){return this.getMonth()+1},t:function(){var e=new Date;return(new Date(e.getFullYear(),e.getMonth(),0)).getDate()},L:function(){var e=this.getFullYear();return e%400==0||e%100!=0&&e%4==0},o:function(){var e=new Date(this.valueOf());e.setDate(e.getDate()-(this.getDay()+6)%7+3);return e.getFullYear()},Y:function(){return this.getFullYear()},y:function(){return(""+this.getFullYear()).substr(2)},a:function(){return this.getHours()<12?"am":"pm"},A:function(){return this.getHours()<12?"AM":"PM"},B:function(){return Math.floor(((this.getUTCHours()+1)%24+this.getUTCMinutes()/60+this.getUTCSeconds()/3600)*1e3/24)},g:function(){return this.getHours()%12||12},G:function(){return this.getHours()},h:function(){return((this.getHours()%12||12)<10?"0":"")+(this.getHours()%12||12)},H:function(){return(this.getHours()<10?"0":"")+this.getHours()},i:function(){return(this.getMinutes()<10?"0":"")+this.getMinutes()},s:function(){return(this.getSeconds()<10?"0":"")+this.getSeconds()},u:function(){var e=this.getMilliseconds();return(e<10?"00":e<100?"0":"")+e},e:function(){return"Not Yet Supported"},I:function(){var e=null;for(var t=0;t<12;++t){var n=new Date(this.getFullYear(),t,1);var r=n.getTimezoneOffset();if(e===null)e=r;else if(r<e){e=r;break}else if(r>e)break}return this.getTimezoneOffset()==e|0},O:function(){return(-this.getTimezoneOffset()<0?"-":"+")+(Math.abs(this.getTimezoneOffset()/60)<10?"0":"")+Math.abs(this.getTimezoneOffset()/60)+"00"},P:function(){return(-this.getTimezoneOffset()<0?"-":"+")+(Math.abs(this.getTimezoneOffset()/60)<10?"0":"")+Math.abs(this.getTimezoneOffset()/60)+":00"},T:function(){var e=this.getMonth();this.setMonth(0);var t=this.toTimeString().replace(/^.+ \(?([^\)]+)\)?$/,"$1");this.setMonth(e);return t},Z:function(){return-this.getTimezoneOffset()*60},c:function(){return this.format("Y-m-d\\TH:i:sP")},r:function(){return this.toString()},U:function(){return this.getTime()/1e3}}
606
  }
607
  return res;
608
  }
609
+ function twoArraysContainSameValue (arr1, arr2) {
610
+ return arr2.some(function (v) {
611
+ return arr1.indexOf(v) >= 0;
612
+ });
613
+ }
614
  // Simulates PHP's date function
615
  Date.prototype.format=function(e){var t="";var n=Date.replaceChars;for(var r=0;r<e.length;r++){var i=e.charAt(r);if(r-1>=0&&e.charAt(r-1)=="\\"){t+=i}else if(n[i]){t+=n[i].call(this)}else if(i!="\\"){t+=i}}return t};Date.replaceChars={shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longMonths:["January","February","March","April","May","June","July","August","September","October","November","December"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longDays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],d:function(){return(this.getDate()<10?"0":"")+this.getDate()},D:function(){return Date.replaceChars.shortDays[this.getDay()]},j:function(){return this.getDate()},l:function(){return Date.replaceChars.longDays[this.getDay()]},N:function(){return this.getDay()+1},S:function(){return this.getDate()%10==1&&this.getDate()!=11?"st":this.getDate()%10==2&&this.getDate()!=12?"nd":this.getDate()%10==3&&this.getDate()!=13?"rd":"th"},w:function(){return this.getDay()},z:function(){var e=new Date(this.getFullYear(),0,1);return Math.ceil((this-e)/864e5)},W:function(){var e=new Date(this.getFullYear(),0,1);return Math.ceil(((this-e)/864e5+e.getDay()+1)/7)},F:function(){return Date.replaceChars.longMonths[this.getMonth()]},m:function(){return(this.getMonth()<9?"0":"")+(this.getMonth()+1)},M:function(){return Date.replaceChars.shortMonths[this.getMonth()]},n:function(){return this.getMonth()+1},t:function(){var e=new Date;return(new Date(e.getFullYear(),e.getMonth(),0)).getDate()},L:function(){var e=this.getFullYear();return e%400==0||e%100!=0&&e%4==0},o:function(){var e=new Date(this.valueOf());e.setDate(e.getDate()-(this.getDay()+6)%7+3);return e.getFullYear()},Y:function(){return this.getFullYear()},y:function(){return(""+this.getFullYear()).substr(2)},a:function(){return this.getHours()<12?"am":"pm"},A:function(){return this.getHours()<12?"AM":"PM"},B:function(){return Math.floor(((this.getUTCHours()+1)%24+this.getUTCMinutes()/60+this.getUTCSeconds()/3600)*1e3/24)},g:function(){return this.getHours()%12||12},G:function(){return this.getHours()},h:function(){return((this.getHours()%12||12)<10?"0":"")+(this.getHours()%12||12)},H:function(){return(this.getHours()<10?"0":"")+this.getHours()},i:function(){return(this.getMinutes()<10?"0":"")+this.getMinutes()},s:function(){return(this.getSeconds()<10?"0":"")+this.getSeconds()},u:function(){var e=this.getMilliseconds();return(e<10?"00":e<100?"0":"")+e},e:function(){return"Not Yet Supported"},I:function(){var e=null;for(var t=0;t<12;++t){var n=new Date(this.getFullYear(),t,1);var r=n.getTimezoneOffset();if(e===null)e=r;else if(r<e){e=r;break}else if(r>e)break}return this.getTimezoneOffset()==e|0},O:function(){return(-this.getTimezoneOffset()<0?"-":"+")+(Math.abs(this.getTimezoneOffset()/60)<10?"0":"")+Math.abs(this.getTimezoneOffset()/60)+"00"},P:function(){return(-this.getTimezoneOffset()<0?"-":"+")+(Math.abs(this.getTimezoneOffset()/60)<10?"0":"")+Math.abs(this.getTimezoneOffset()/60)+":00"},T:function(){var e=this.getMonth();this.setMonth(0);var t=this.toTimeString().replace(/^.+ \(?([^\)]+)\)?$/,"$1");this.setMonth(e);return t},Z:function(){return-this.getTimezoneOffset()*60},c:function(){return this.format("Y-m-d\\TH:i:sP")},r:function(){return this.toString()},U:function(){return this.getTime()/1e3}}
js/core.js CHANGED
@@ -1,6 +1,6 @@
1
  if(typeof(GMP_DATA) == 'undefined')
2
  var GMP_DATA = {};
3
- if(isNumber(GMP_DATA.animationSpeed))
4
  GMP_DATA.animationSpeed = parseInt(GMP_DATA.animationSpeed);
5
  else if(jQuery.inArray(GMP_DATA.animationSpeed, ['fast', 'slow']) == -1)
6
  GMP_DATA.animationSpeed = 'fast';
@@ -37,7 +37,7 @@ jQuery.fn.sendFormGmp = function(params) {
37
  form = jQuery('#'+ fid);
38
  else
39
  form = jQuery(this);
40
-
41
  /* This method can be used not only from form data sending, it can be used just to send some data and fill in response msg or errors*/
42
  var sentFromForm = (jQuery(form).tagName() == 'FORM');
43
  var data = new Array();
@@ -45,7 +45,7 @@ jQuery.fn.sendFormGmp = function(params) {
45
  data = params.data;
46
  else if(sentFromForm)
47
  data = jQuery(form).serialize();
48
-
49
  if(params.appendData) {
50
  var dataIsString = typeof(data) == 'string';
51
  var addStrData = [];
@@ -58,7 +58,7 @@ jQuery.fn.sendFormGmp = function(params) {
58
  } else {
59
  addStrData.push(i+ '='+ params.appendData[i]);
60
  }
61
-
62
  } else
63
  data[i] = params.appendData[i];
64
  }
@@ -85,7 +85,7 @@ jQuery.fn.sendFormGmp = function(params) {
85
  jQuery(msgEl).removeClass('gmpSuccessMsg')
86
  .removeClass('gmpErrorMsg')
87
  .showLoaderGmp();
88
- }
89
  if(params.btn) {
90
  jQuery(params.btn).attr('disabled', 'disabled');
91
  // Font awesome usage
@@ -103,7 +103,7 @@ jQuery.fn.sendFormGmp = function(params) {
103
  url = GMP_DATA.ajaxurl;
104
  else
105
  url = ajaxurl;
106
-
107
  jQuery('.gmpErrorForField').hide(GMP_DATA.animationSpeed);
108
  var dataType = params.dataType ? params.dataType : 'json';
109
  // Set plugin orientation
@@ -114,7 +114,7 @@ jQuery.fn.sendFormGmp = function(params) {
114
  data['pl'] = GMP_DATA.GMP_CODE;
115
  data['reqType'] = 'ajax';
116
  }
117
-
118
  jQuery.ajax({
119
  url: url,
120
  data: data,
@@ -342,10 +342,11 @@ function toeShowDialogCustomized(element, options) {
342
  **/
343
  function toeSliderMove(event, ui) {
344
  var id = jQuery(event.target).attr('id');
 
345
  if(ui.value == 1) {
346
- jQuery('#toeSliderDisplay_'+ id).html( ui.value + " meter" );
347
  } else {
348
- jQuery('#toeSliderDisplay_'+ id).html( ui.value + " meters" );
349
  }
350
 
351
  jQuery('#toeSliderInput_'+ id).val( ui.value ).change();
@@ -366,14 +367,19 @@ function paramGmp(param) {
366
  }
367
  /* TinyMCE Editor */
368
  function gmpGetTxtEditorVal(id) {
369
- if(typeof(tinyMCE) !== 'undefined' && tinyMCE.get( id ) && !jQuery('#'+ id).is(':visible'))
370
- return tinyMCE.get( id ).getContent();
371
- else
372
- return jQuery('#'+ id).val();
 
373
  }
374
  function gmpSetTxtEditorVal(id, content) {
375
- if(typeof(tinyMCE) !== 'undefined' && tinyMCE && tinyMCE.get( id ) && !jQuery('#'+ id).is(':visible'))
 
 
376
  tinyMCE.get( id ).setContent(content);
377
- else
378
- jQuery('#'+ id).val( content );
379
- }
 
 
1
  if(typeof(GMP_DATA) == 'undefined')
2
  var GMP_DATA = {};
3
+ if(isNumber(GMP_DATA.animationSpeed))
4
  GMP_DATA.animationSpeed = parseInt(GMP_DATA.animationSpeed);
5
  else if(jQuery.inArray(GMP_DATA.animationSpeed, ['fast', 'slow']) == -1)
6
  GMP_DATA.animationSpeed = 'fast';
37
  form = jQuery('#'+ fid);
38
  else
39
  form = jQuery(this);
40
+
41
  /* This method can be used not only from form data sending, it can be used just to send some data and fill in response msg or errors*/
42
  var sentFromForm = (jQuery(form).tagName() == 'FORM');
43
  var data = new Array();
45
  data = params.data;
46
  else if(sentFromForm)
47
  data = jQuery(form).serialize();
48
+
49
  if(params.appendData) {
50
  var dataIsString = typeof(data) == 'string';
51
  var addStrData = [];
58
  } else {
59
  addStrData.push(i+ '='+ params.appendData[i]);
60
  }
61
+
62
  } else
63
  data[i] = params.appendData[i];
64
  }
85
  jQuery(msgEl).removeClass('gmpSuccessMsg')
86
  .removeClass('gmpErrorMsg')
87
  .showLoaderGmp();
88
+ }
89
  if(params.btn) {
90
  jQuery(params.btn).attr('disabled', 'disabled');
91
  // Font awesome usage
103
  url = GMP_DATA.ajaxurl;
104
  else
105
  url = ajaxurl;
106
+
107
  jQuery('.gmpErrorForField').hide(GMP_DATA.animationSpeed);
108
  var dataType = params.dataType ? params.dataType : 'json';
109
  // Set plugin orientation
114
  data['pl'] = GMP_DATA.GMP_CODE;
115
  data['reqType'] = 'ajax';
116
  }
117
+
118
  jQuery.ajax({
119
  url: url,
120
  data: data,
342
  **/
343
  function toeSliderMove(event, ui) {
344
  var id = jQuery(event.target).attr('id');
345
+ var unit = jQuery(event.target).parent().find('[data-unit]').attr('data-unit');
346
  if(ui.value == 1) {
347
+ jQuery('#toeSliderDisplay_'+ id).html( ui.value + ' ' + unit );
348
  } else {
349
+ jQuery('#toeSliderDisplay_'+ id).html( ui.value + ' ' + unit + 's' );
350
  }
351
 
352
  jQuery('#toeSliderInput_'+ id).val( ui.value ).change();
367
  }
368
  /* TinyMCE Editor */
369
  function gmpGetTxtEditorVal(id) {
370
+ var elem = jQuery('#'+ id)
371
+ , content = typeof(tinyMCE) !== 'undefined' && tinyMCE.get( id ) && !elem.is(':visible')
372
+ ? tinyMCE.get( id ).getContent()
373
+ : elem.val();
374
+ return content;
375
  }
376
  function gmpSetTxtEditorVal(id, content) {
377
+ var elem = jQuery('#'+ id);
378
+
379
+ if(typeof(tinyMCE) !== 'undefined' && tinyMCE && tinyMCE.get( id ) && !elem.is(':visible')) {
380
  tinyMCE.get( id ).setContent(content);
381
+ } else {
382
+ elem.val( content );
383
+ }
384
+
385
+ }
js/jquery.print.js CHANGED
@@ -8,12 +8,12 @@
8
  // A nice closure for our definitions
9
  function getjQueryObject(string) {
10
  // Make string a vaild jQuery thing
11
- var jqObj = $("");
12
  try {
13
- jqObj = $(string)
14
  .clone();
15
  } catch (e) {
16
- jqObj = $("<span />")
17
  .html(string);
18
  }
19
  return jqObj;
@@ -52,11 +52,11 @@
52
  }
53
 
54
  function printContentInIFrame(content, options) {
55
- var $iframe = $(options.iframe + "");
56
  var iframeCount = $iframe.length;
57
  if (iframeCount === 0) {
58
  // Create a new iFrame if none is given
59
- $iframe = $('<iframe height="0" width="0" border="0" wmode="Opaque"/>')
60
  .prependTo('body')
61
  .css({
62
  "position": "absolute",
@@ -117,15 +117,15 @@
117
  }
118
  if (isNode(self)) {
119
  // If `this` is a HTML element, i.e. for
120
- // $(selector).print()
121
- $this = $(self);
122
  if (arguments.length > 0) {
123
  options = arguments[0];
124
  }
125
  } else {
126
  if (arguments.length > 0) {
127
  // $.print(selector,options)
128
- $this = $(arguments[0]);
129
  if (isNode($this[0])) {
130
  if (arguments.length > 1) {
131
  options = arguments[1];
@@ -133,11 +133,11 @@
133
  } else {
134
  // $.print(options)
135
  options = arguments[0];
136
- $this = $("html");
137
  }
138
  } else {
139
  // $.print()
140
- $this = $("html");
141
  }
142
  }
143
  // Default options
@@ -157,22 +157,22 @@
157
  };
158
  // Merge with user-options
159
  options = $.extend({}, defaults, (options || {}));
160
- var $styles = $("");
161
  if (options.globalStyles) {
162
  // Apply the stlyes from the current sheet to the printed page
163
- $styles = $("style, link, meta, title");
164
  } else if (options.mediaPrint) {
165
  // Apply the media-print stylesheet
166
- $styles = $("link[media=print]");
167
  }
168
  if (options.stylesheet) {
169
  // Add a custom stylesheet if given
170
- $styles = $.merge($styles, $('<link rel="stylesheet" href="' + options.stylesheet + '">'));
171
  }
172
  // Create a copy of the element to print
173
  var copy = $this.clone();
174
  // Wrap it in a span to get the HTML markup string
175
- copy = $("<span/>")
176
  .append(copy);
177
  // Remove unwanted elements
178
  copy.find(options.noPrintSelector)
@@ -181,9 +181,9 @@
181
  copy.append($styles.clone());
182
  // Update title
183
  if (options.title) {
184
- var title = $("title", copy);
185
  if (title.length === 0) {
186
- title = $("<title />");
187
  copy.append(title);
188
  }
189
  title.text(options.title);
@@ -197,7 +197,7 @@
197
  // http://stackoverflow.com/a/26707753
198
  copy.find("input")
199
  .each(function () {
200
- var $field = $(this);
201
  if ($field.is("[type='radio']") || $field.is("[type='checkbox']")) {
202
  if ($field.prop("checked")) {
203
  $field.attr("checked", "checked");
@@ -207,12 +207,12 @@
207
  }
208
  });
209
  copy.find("select").each(function () {
210
- var $field = $(this);
211
  $field.find(":selected").attr("selected", "selected");
212
  });
213
  copy.find("textarea").each(function () {
214
  // Fix for https://github.com/DoersGuild/jQuery.print/issues/18#issuecomment-96451589
215
- var $field = $(this);
216
  $field.text($field.val());
217
  });
218
  }
8
  // A nice closure for our definitions
9
  function getjQueryObject(string) {
10
  // Make string a vaild jQuery thing
11
+ var jqObj = jQuery("");
12
  try {
13
+ jqObj = jQuery(string)
14
  .clone();
15
  } catch (e) {
16
+ jqObj = jQuery("<span />")
17
  .html(string);
18
  }
19
  return jqObj;
52
  }
53
 
54
  function printContentInIFrame(content, options) {
55
+ var $iframe = jQuery(options.iframe + "");
56
  var iframeCount = $iframe.length;
57
  if (iframeCount === 0) {
58
  // Create a new iFrame if none is given
59
+ $iframe = jQuery('<iframe height="0" width="0" border="0" wmode="Opaque"/>')
60
  .prependTo('body')
61
  .css({
62
  "position": "absolute",
117
  }
118
  if (isNode(self)) {
119
  // If `this` is a HTML element, i.e. for
120
+ // jQuery(selector).print()
121
+ $this = jQuery(self);
122
  if (arguments.length > 0) {
123
  options = arguments[0];
124
  }
125
  } else {
126
  if (arguments.length > 0) {
127
  // $.print(selector,options)
128
+ $this = jQuery(arguments[0]);
129
  if (isNode($this[0])) {
130
  if (arguments.length > 1) {
131
  options = arguments[1];
133
  } else {
134
  // $.print(options)
135
  options = arguments[0];
136
+ $this = jQuery("html");
137
  }
138
  } else {
139
  // $.print()
140
+ $this = jQuery("html");
141
  }
142
  }
143
  // Default options
157
  };
158
  // Merge with user-options
159
  options = $.extend({}, defaults, (options || {}));
160
+ var $styles = jQuery("");
161
  if (options.globalStyles) {
162
  // Apply the stlyes from the current sheet to the printed page
163
+ $styles = jQuery("style, link, meta, title");
164
  } else if (options.mediaPrint) {
165
  // Apply the media-print stylesheet
166
+ $styles = jQuery("link[media=print]");
167
  }
168
  if (options.stylesheet) {
169
  // Add a custom stylesheet if given
170
+ $styles = $.merge($styles, jQuery('<link rel="stylesheet" href="' + options.stylesheet + '">'));
171
  }
172
  // Create a copy of the element to print
173
  var copy = $this.clone();
174
  // Wrap it in a span to get the HTML markup string
175
+ copy = jQuery("<span/>")
176
  .append(copy);
177
  // Remove unwanted elements
178
  copy.find(options.noPrintSelector)
181
  copy.append($styles.clone());
182
  // Update title
183
  if (options.title) {
184
+ var title = jQuery("title", copy);
185
  if (title.length === 0) {
186
+ title = jQuery("<title />");
187
  copy.append(title);
188
  }
189
  title.text(options.title);
197
  // http://stackoverflow.com/a/26707753
198
  copy.find("input")
199
  .each(function () {
200
+ var $field = jQuery(this);
201
  if ($field.is("[type='radio']") || $field.is("[type='checkbox']")) {
202
  if ($field.prop("checked")) {
203
  $field.attr("checked", "checked");
207
  }
208
  });
209
  copy.find("select").each(function () {
210
+ var $field = jQuery(this);
211
  $field.find(":selected").attr("selected", "selected");
212
  });
213
  copy.find("textarea").each(function () {
214
  // Fix for https://github.com/DoersGuild/jQuery.print/issues/18#issuecomment-96451589
215
+ var $field = jQuery(this);
216
  $field.text($field.val());
217
  });
218
  }
js/tree.jquery.js ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * JqTree 1.4.7
3
+ *
4
+ * Copyright 2018 Marco Braak
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ *
18
+ */!function(e){var t={};function o(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,o),r.l=!0,r.exports}o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)o.d(n,r,function(t){return e[t]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=21)}([function(e,t,o){"use strict";var n;t.__esModule=!0,function(e){e[e.Before=1]="Before",e[e.After=2]="After",e[e.Inside=3]="Inside",e[e.None=4]="None"}(n=t.Position||(t.Position={})),t.position_names={before:n.Before,after:n.After,inside:n.Inside,none:n.None},t.getPositionName=function(e){for(var o in t.position_names)if(t.position_names.hasOwnProperty(o)&&t.position_names[o]===e)return o;return""},t.getPosition=function(e){return t.position_names[e]};var r=function(){function e(t,o,n){void 0===o&&(o=!1),void 0===n&&(n=e),this.name="",this.setData(t),this.children=[],this.parent=null,o&&(this.id_mapping={},this.tree=this,this.node_class=n)}return e.prototype.setData=function(e){var t=this,o=function(e){null!=e&&(t.name=e)};if(e)if("object"!=typeof e)o(e);else for(var n in e)if(e.hasOwnProperty(n)){var r=e[n];"label"===n?o(r):"children"!==n&&(this[n]=r)}},e.prototype.loadFromData=function(e){this.removeChildren();for(var t=0,o=e;t<o.length;t++){var n=o[t],r=new this.tree.node_class(n);this.addChild(r),"object"==typeof n&&n.children&&r.loadFromData(n.children)}},e.prototype.addChild=function(e){this.children.push(e),e._setParent(this)},e.prototype.addChildAtPosition=function(e,t){this.children.splice(t,0,e),e._setParent(this)},e.prototype.removeChild=function(e){e.removeChildren(),this._removeChild(e)},e.prototype.getChildIndex=function(e){return jQuery.inArray(e,this.children)},e.prototype.hasChildren=function(){return 0!==this.children.length},e.prototype.isFolder=function(){return this.hasChildren()||this.load_on_demand},e.prototype.iterate=function(e){var t=function(o,n){if(o.children)for(var r=0,i=o.children;r<i.length;r++){var s=i[r];e(s,n)&&s.hasChildren()&&t(s,n+1)}};t(this,0)},e.prototype.moveNode=function(e,t,o){e.parent&&!e.isParentOf(t)&&(e.parent._removeChild(e),o===n.After?t.parent&&t.parent.addChildAtPosition(e,t.parent.getChildIndex(t)+1):o===n.Before?t.parent&&t.parent.addChildAtPosition(e,t.parent.getChildIndex(t)):o===n.Inside&&t.addChildAtPosition(e,0))},e.prototype.getData=function(e){function t(e){return e.map(function(e){var o={};for(var n in e)if(-1===["parent","children","element","tree"].indexOf(n)&&Object.prototype.hasOwnProperty.call(e,n)){var r=e[n];o[n]=r}return e.hasChildren()&&(o.children=t(e.children)),o})}return void 0===e&&(e=!1),t(e?[this]:this.children)},e.prototype.getNodeByName=function(e){return this.getNodeByCallback(function(t){return t.name===e})},e.prototype.getNodeByCallback=function(e){var t=null;return this.iterate(function(o){return!e(o)||(t=o,!1)}),t},e.prototype.addAfter=function(e){if(this.parent){var t=new this.tree.node_class(e),o=this.parent.getChildIndex(this);return this.parent.addChildAtPosition(t,o+1),"object"==typeof e&&e.children&&e.children.length&&t.loadFromData(e.children),t}return null},e.prototype.addBefore=function(e){if(this.parent){var t=new this.tree.node_class(e),o=this.parent.getChildIndex(this);return this.parent.addChildAtPosition(t,o),"object"==typeof e&&e.children&&e.children.length&&t.loadFromData(e.children),t}return null},e.prototype.addParent=function(e){if(this.parent){var t=new this.tree.node_class(e);t._setParent(this.tree);for(var o=this.parent,n=0,r=o.children;n<r.length;n++){var i=r[n];t.addChild(i)}return o.children=[],o.addChild(t),t}return null},e.prototype.remove=function(){this.parent&&(this.parent.removeChild(this),this.parent=null)},e.prototype.append=function(e){var t=new this.tree.node_class(e);return this.addChild(t),"object"==typeof e&&e.children&&e.children.length&&t.loadFromData(e.children),t},e.prototype.prepend=function(e){var t=new this.tree.node_class(e);return this.addChildAtPosition(t,0),"object"==typeof e&&e.children&&e.children.length&&t.loadFromData(e.children),t},e.prototype.isParentOf=function(e){for(var t=e.parent;t;){if(t===this)return!0;t=t.parent}return!1},e.prototype.getLevel=function(){for(var e=0,t=this;t.parent;)e+=1,t=t.parent;return e},e.prototype.getNodeById=function(e){return this.id_mapping[e]},e.prototype.addNodeToIndex=function(e){null!=e.id&&(this.id_mapping[e.id]=e)},e.prototype.removeNodeFromIndex=function(e){null!=e.id&&delete this.id_mapping[e.id]},e.prototype.removeChildren=function(){var e=this;this.iterate(function(t){return e.tree.removeNodeFromIndex(t),!0}),this.children=[]},e.prototype.getPreviousSibling=function(){if(this.parent){var e=this.parent.getChildIndex(this)-1;return e>=0?this.parent.children[e]:null}return null},e.prototype.getNextSibling=function(){if(this.parent){var e=this.parent.getChildIndex(this)+1;return e<this.parent.children.length?this.parent.children[e]:null}return null},e.prototype.getNodesByProperty=function(e,t){return this.filter(function(o){return o[e]===t})},e.prototype.filter=function(e){var t=[];return this.iterate(function(o){return e(o)&&t.push(o),!0}),t},e.prototype.getNextNode=function(e){if(void 0===e&&(e=!0),e&&this.hasChildren()&&this.is_open)return this.children[0];if(this.parent){var t=this.getNextSibling();return t||this.parent.getNextNode(!1)}return null},e.prototype.getPreviousNode=function(){if(this.parent){var e=this.getPreviousSibling();return e?e.hasChildren()&&e.is_open?e.getLastChild():e:this.getParent()}return null},e.prototype.getParent=function(){return this.parent&&this.parent.parent?this.parent:null},e.prototype.getLastChild=function(){if(this.hasChildren()){var e=this.children[this.children.length-1];return e.hasChildren()&&e.is_open?e.getLastChild():e}return null},e.prototype.initFromData=function(e){var t,o=this,n=function(e){for(var t=0,n=e;t<n.length;t++){var r=n[t],i=new o.tree.node_class("");i.initFromData(r),o.addChild(i)}};t=e,o.setData(t),t.children&&n(t.children)},e.prototype._setParent=function(e){this.parent=e,this.tree=e.tree,this.tree.addNodeToIndex(this)},e.prototype._removeChild=function(e){this.children.splice(this.getChildIndex(e),1),this.tree.removeNodeFromIndex(e)},e}();t.Node=r},function(e,t,o){"use strict";t.__esModule=!0,t.isInt=function(e){return"number"==typeof e&&e%1==0},t.isFunction=function(e){return"function"==typeof e},t.html_escape=function(e){return(""+e).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;").replace(/\//g,"&#x2F;")},t.getBoolString=function(e){return e?"true":"false"}},function(e,t,o){"use strict";t.__esModule=!0;var n=function(){function e(e,t){this.$el=jQuery(e);var o=this.constructor.defaults;this.options=jQuery.extend({},o,t)}return e.register=function(t,o){var n=function(){return"simple_widget_"+o};function r(t,o){var n=jQuery.data(t,o);return n&&n instanceof e?n:null}jQuery.fn[o]=function(o){for(var i=[],s=1;s<arguments.length;s++)i[s-1]=arguments[s];if(void 0===o||"object"==typeof o)return function(e,o){for(var i=n(),s=0,a=e.get();s<a.length;s++){var l=a[s];if(!r(l,i)){var d=new t(l,o);jQuery.data(l,i)||jQuery.data(l,i,d),d._init()}}return e}(this,o);if("string"==typeof o&&"_"!==o[0]){var a=o;return"destroy"===a?function(e){for(var t=n(),o=0,i=e.get();o<i.length;o++){var s=i[o],a=r(s,t);a&&a.destroy(),jQuery.removeData(s,t)}}(this):"get_widget_class"===a?t:function(t,o,r){for(var i=null,s=0,a=t.get();s<a.length;s++){var l=a[s],d=jQuery.data(l,n());if(d&&d instanceof e){var h=d[o];h&&"function"==typeof h&&(i=h.apply(d,r))}}return i}(this,a,i)}}},e.prototype.destroy=function(){this._deinit()},e.prototype._init=function(){},e.prototype._deinit=function(){},e.defaults={},e}();t.default=n},function(e,t){e.exports=jQuery},function(e,t,o){"use strict";var n,r=this&&this.__extends||(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])},function(e,t){function o(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)});t.__esModule=!0;var i=o(0),s=function(){function e(e,t){this.init(e,t)}return e.prototype.init=function(e,t){this.node=e,this.tree_widget=t,e.element||(e.element=this.tree_widget.element.get(0)),this.$element=jQuery(e.element)},e.prototype.addDropHint=function(e){return this.mustShowBorderDropHint(e)?new l(this.$element,this.tree_widget._getScrollLeft()):new d(this.node,this.$element,e)},e.prototype.select=function(e){var t=this.getLi();t.addClass("jqtree-selected"),t.attr("aria-selected","true");var o=this.getSpan();o.attr("tabindex",this.tree_widget.options.tabIndex),e&&o.focus()},e.prototype.deselect=function(){var e=this.getLi();e.removeClass("jqtree-selected"),e.attr("aria-selected","false");var t=this.getSpan();t.removeAttr("tabindex"),t.blur()},e.prototype.getUl=function(){return this.$element.children("ul:first")},e.prototype.getSpan=function(){return this.$element.children(".jqtree-element").find("span.jqtree-title")},e.prototype.getLi=function(){return this.$element},e.prototype.mustShowBorderDropHint=function(e){return e===i.Position.Inside},e}();t.NodeElement=s;var a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.open=function(e,t,o){var n=this;if(void 0===t&&(t=!0),void 0===o&&(o="fast"),!this.node.is_open){this.node.is_open=!0;var r=this.getButton();r.removeClass("jqtree-closed"),r.html("");var i=r.get(0);if(i){var s=this.tree_widget.renderer.opened_icon_element.cloneNode(!1);i.appendChild(s)}var a=function(){n.getLi().removeClass("jqtree-closed"),n.getSpan().attr("aria-expanded","true"),e&&e(n.node),n.tree_widget._triggerEvent("tree.open",{node:n.node})};t?this.getUl().slideDown(o,a):(this.getUl().show(),a())}},t.prototype.close=function(e,t){var o=this;if(void 0===e&&(e=!0),void 0===t&&(t="fast"),this.node.is_open){this.node.is_open=!1;var n=this.getButton();n.addClass("jqtree-closed"),n.html("");var r=n.get(0);if(r){var i=this.tree_widget.renderer.closed_icon_element.cloneNode(!1);r.appendChild(i)}var s=function(){o.getLi().addClass("jqtree-closed"),o.getSpan().attr("aria-expanded","false"),o.tree_widget._triggerEvent("tree.close",{node:o.node})};e?this.getUl().slideUp(t,s):(this.getUl().hide(),s())}},t.prototype.mustShowBorderDropHint=function(e){return!this.node.is_open&&e===i.Position.Inside},t.prototype.getButton=function(){return this.$element.children(".jqtree-element").find("a.jqtree-toggler")},t}(s);t.FolderElement=a;var l=function(){function e(e,t){var o=e.children(".jqtree-element"),n=e.width()||0,r=Math.max(n+t-4,0),i=o.outerHeight()||0,s=Math.max(i-4,0);this.$hint=jQuery('<span class="jqtree-border"></span>'),o.append(this.$hint),this.$hint.css({width:r,height:s})}return e.prototype.remove=function(){this.$hint.remove()},e}();t.BorderDropHint=l;var d=function(){function e(e,t,o){this.$element=t,this.node=e,this.$ghost=jQuery('<li class="jqtree_common jqtree-ghost"><span class="jqtree_common jqtree-circle"></span>\n <span class="jqtree_common jqtree-line"></span></li>'),o===i.Position.After?this.moveAfter():o===i.Position.Before?this.moveBefore():o===i.Position.Inside&&(e.isFolder()&&e.is_open?this.moveInsideOpenFolder():this.moveInside())}return e.prototype.remove=function(){this.$ghost.remove()},e.prototype.moveAfter=function(){this.$element.after(this.$ghost)},e.prototype.moveBefore=function(){this.$element.before(this.$ghost)},e.prototype.moveInsideOpenFolder=function(){jQuery(this.node.children[0].element).before(this.$ghost)},e.prototype.moveInside=function(){this.$element.after(this.$ghost),this.$ghost.addClass("jqtree-inside")},e}()},function(e,t,o){"use strict";t.__esModule=!0;var n=function(){function e(e){this.tree_widget=e,this.clear()}return e.prototype.getSelectedNode=function(){var e=this.getSelectedNodes();return!!e.length&&e[0]},e.prototype.getSelectedNodes=function(){if(this.selected_single_node)return[this.selected_single_node];var e=[];for(var t in this.selected_nodes)if(this.selected_nodes.hasOwnProperty(t)){var o=this.tree_widget.getNodeById(t);o&&e.push(o)}return e},e.prototype.getSelectedNodesUnder=function(e){if(this.selected_single_node)return e.isParentOf(this.selected_single_node)?[this.selected_single_node]:[];var t=[];for(var o in this.selected_nodes)if(this.selected_nodes.hasOwnProperty(o)){var n=this.tree_widget.getNodeById(o);n&&e.isParentOf(n)&&t.push(n)}return t},e.prototype.isNodeSelected=function(e){return!!e&&(null!=e.id?!!this.selected_nodes[e.id]:!!this.selected_single_node&&this.selected_single_node.element===e.element)},e.prototype.clear=function(){this.selected_nodes={},this.selected_single_node=null},e.prototype.removeFromSelection=function(e,t){var o=this;void 0===t&&(t=!1),null==e.id?this.selected_single_node&&e.element===this.selected_single_node.element&&(this.selected_single_node=null):(delete this.selected_nodes[e.id],t&&e.iterate(function(){return delete o.selected_nodes[e.id],!0}))},e.prototype.addToSelection=function(e){null!=e.id?this.selected_nodes[e.id]=!0:this.selected_single_node=e},e}();t.default=n},function(e,t,o){"use strict";t.__esModule=!0;var n=function(){function e(e){this.tree_widget=e,this.previous_top=-1,this.is_initialized=!1}return e.prototype.checkScrolling=function(){this.ensureInit(),this.checkVerticalScrolling(),this.checkHorizontalScrolling()},e.prototype.scrollToY=function(e){if(this.ensureInit(),this.$scroll_parent)this.$scroll_parent[0].scrollTop=e;else{var t=this.tree_widget.$el.offset(),o=t?t.top:0;jQuery(document).scrollTop(e+o)}},e.prototype.isScrolledIntoView=function(e){var t,o,n,r;this.ensureInit();var i,s=e.height()||0;this.$scroll_parent?(r=0,o=this.$scroll_parent.height()||0,t=(n=((i=e.offset())?i.top:0)-this.scroll_parent_top)+s):(o=(r=jQuery(window).scrollTop()||0)+(jQuery(window).height()||0),t=(n=(i=e.offset())?i.top:0)+s);return t<=o&&n>=r},e.prototype.getScrollLeft=function(){return this.$scroll_parent&&this.$scroll_parent.scrollLeft()||0},e.prototype.initScrollParent=function(){var e=this,t=function(){e.scroll_parent_top=0,e.$scroll_parent=null};"fixed"===this.tree_widget.$el.css("position")&&t();var o=function(){var t=["overflow","overflow-y"],o=function(e){for(var o=0,n=t;o<n.length;o++){var r=n[o],i=e.css(r);if("auto"===i||"scroll"===i)return!0}return!1};if(o(e.tree_widget.$el))return e.tree_widget.$el;for(var n=0,r=e.tree_widget.$el.parents().get();n<r.length;n++){var i=r[n],s=jQuery(i);if(o(s))return s}return null}();if(o&&o.length&&"HTML"!==o[0].tagName){this.$scroll_parent=o;var n=this.$scroll_parent.offset();this.scroll_parent_top=n?n.top:0}else t();this.is_initialized=!0},e.prototype.ensureInit=function(){this.is_initialized||this.initScrollParent()},e.prototype.handleVerticalScrollingWithScrollParent=function(e){var t=this.$scroll_parent&&this.$scroll_parent[0];t&&(this.scroll_parent_top+t.offsetHeight-e.bottom<20?(t.scrollTop+=20,this.tree_widget.refreshHitAreas(),this.previous_top=-1):e.top-this.scroll_parent_top<20&&(t.scrollTop-=20,this.tree_widget.refreshHitAreas(),this.previous_top=-1))},e.prototype.handleVerticalScrollingWithDocument=function(e){var t=jQuery(document).scrollTop()||0;e.top-t<20?jQuery(document).scrollTop(t-20):(jQuery(window).height()||0)-(e.bottom-t)<20&&jQuery(document).scrollTop(t+20)},e.prototype.checkVerticalScrolling=function(){var e=this.tree_widget.dnd_handler&&this.tree_widget.dnd_handler.hovered_area;e&&e.top!==this.previous_top&&(this.previous_top=e.top,this.$scroll_parent?this.handleVerticalScrollingWithScrollParent(e):this.handleVerticalScrollingWithDocument(e))},e.prototype.checkHorizontalScrolling=function(){var e=this.tree_widget.dnd_handler&&this.tree_widget.dnd_handler.position_info;e&&(this.$scroll_parent?this.handleHorizontalScrollingWithParent(e):this.handleHorizontalScrollingWithDocument(e))},e.prototype.handleHorizontalScrollingWithParent=function(e){var t=this.$scroll_parent,o=t&&t.offset();if(t&&o){var n=t[0],r=n.scrollLeft+n.clientWidth<n.scrollWidth,i=n.scrollLeft>0,s=o.left+n.clientWidth,a=o.left,l=e.page_x>s-20,d=e.page_x<a+20;l&&r?n.scrollLeft=Math.min(n.scrollLeft+20,n.scrollWidth):d&&i&&(n.scrollLeft=Math.max(n.scrollLeft-20,0))}},e.prototype.handleHorizontalScrollingWithDocument=function(e){var t=jQuery(document),o=t.scrollLeft()||0,n=jQuery(window).width()||0,r=o>0,i=e.page_x>n-20,s=e.page_x-o<20;i?t.scrollLeft(o+20):s&&r&&t.scrollLeft(Math.max(o-20,0))},e}();t.default=n},function(e,t,o){"use strict";t.__esModule=!0;var n=o(1),r=function(){function e(e){this.tree_widget=e}return e.prototype.saveState=function(){var e=JSON.stringify(this.getState());this.tree_widget.options.onSetStateFromStorage?this.tree_widget.options.onSetStateFromStorage(e):this.supportsLocalStorage()&&localStorage.setItem(this.getKeyName(),e)},e.prototype.getStateFromStorage=function(){var e=this._loadFromStorage();return e?this._parseState(e):null},e.prototype.getState=function(){var e,t=this;return{open_nodes:(e=[],t.tree_widget.tree.iterate(function(t){return t.is_open&&t.id&&t.hasChildren()&&e.push(t.id),!0}),e),selected_node:t.tree_widget.getSelectedNodes().map(function(e){return e.id})}},e.prototype.setInitialState=function(e){if(e){var t=!1;return e.open_nodes&&(t=this._openInitialNodes(e.open_nodes)),e.selected_node&&(this._resetSelection(),this._selectInitialNodes(e.selected_node)),t}return!1},e.prototype.setInitialStateOnDemand=function(e,t){e?this._setInitialStateOnDemand(e.open_nodes,e.selected_node,t):t()},e.prototype.getNodeIdToBeSelected=function(){var e=this.getStateFromStorage();return e&&e.selected_node?e.selected_node[0]:null},e.prototype._parseState=function(e){var t=jQuery.parseJSON(e);return t&&t.selected_node&&n.isInt(t.selected_node)&&(t.selected_node=[t.selected_node]),t},e.prototype._loadFromStorage=function(){return this.tree_widget.options.onGetStateFromStorage?this.tree_widget.options.onGetStateFromStorage():this.supportsLocalStorage()?localStorage.getItem(this.getKeyName()):void 0},e.prototype._openInitialNodes=function(e){for(var t=!1,o=0,n=e;o<n.length;o++){var r=n[o],i=this.tree_widget.getNodeById(r);i&&(i.load_on_demand?t=!0:i.is_open=!0)}return t},e.prototype._selectInitialNodes=function(e){for(var t=0,o=0,n=e;o<n.length;o++){var r=n[o],i=this.tree_widget.getNodeById(r);i&&(t+=1,this.tree_widget.select_node_handler&&this.tree_widget.select_node_handler.addToSelection(i))}return 0!==t},e.prototype._resetSelection=function(){var e=this.tree_widget.select_node_handler;e&&e.getSelectedNodes().forEach(function(t){e.removeFromSelection(t)})},e.prototype._setInitialStateOnDemand=function(e,t,o){var n=this,r=0,i=e,s=function(){for(var e=[],s=0,l=i;s<l.length;s++){var d=l[s],h=n.tree_widget.getNodeById(d);h?h.is_loading||(h.load_on_demand?a(h):n.tree_widget._openNode(h,!1,null)):e.push(d)}i=e,n._selectInitialNodes(t)&&n.tree_widget._refreshElements(null),0===r&&o()},a=function(e){r+=1,n.tree_widget._openNode(e,!1,function(){r-=1,s()})};s()},e.prototype.getKeyName=function(){return"string"==typeof this.tree_widget.options.saveState?this.tree_widget.options.saveState:"tree"},e.prototype.supportsLocalStorage=function(){return null==this._supportsLocalStorage&&(this._supportsLocalStorage=function(){if(null==localStorage)return!1;try{var e="_storage_test";sessionStorage.setItem(e,"value"),sessionStorage.removeItem(e)}catch(e){return!1}return!0}()),this._supportsLocalStorage},e}();t.default=r},function(e,t,o){"use strict";var n,r=this&&this.__extends||(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])},function(e,t){function o(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)});t.__esModule=!0;var i=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.mouseDown=function(e){if(1===e.which){var o=t._handleMouseDown(t._getPositionInfo(e));return o&&e.preventDefault(),o}},t.mouseMove=function(e){return t._handleMouseMove(e,t._getPositionInfo(e))},t.mouseUp=function(e){return t._handleMouseUp(t._getPositionInfo(e))},t.touchStart=function(e){var o=e.originalEvent;if(!(o.touches.length>1)){var n=o.changedTouches[0];return t._handleMouseDown(t._getPositionInfo(n))}},t.touchMove=function(e){var o=e.originalEvent;if(!(o.touches.length>1)){var n=o.changedTouches[0];return t._handleMouseMove(e,t._getPositionInfo(n))}},t.touchEnd=function(e){var o=e.originalEvent;if(!(o.touches.length>1)){var n=o.changedTouches[0];return t._handleMouseUp(t._getPositionInfo(n))}},t}return r(t,e),t.prototype.setMouseDelay=function(e){this.mouse_delay=e},t.prototype._init=function(){this.$el.on("mousedown.mousewidget",this.mouseDown),this.$el.on("touchstart.mousewidget",this.touchStart),this.is_mouse_started=!1,this.mouse_delay=0,this._mouse_delay_timer=null,this._is_mouse_delay_met=!0,this.mouse_down_info=null},t.prototype._deinit=function(){this.$el.off("mousedown.mousewidget"),this.$el.off("touchstart.mousewidget");var e=jQuery(document);e.off("mousemove.mousewidget"),e.off("mouseup.mousewidget")},t.prototype._handleMouseDown=function(e){if(this.is_mouse_started&&this._handleMouseUp(e),this.mouse_down_info=e,this._mouseCapture(e))return this._handleStartMouse(),!0},t.prototype._handleStartMouse=function(){var e=jQuery(document);e.on("mousemove.mousewidget",this.mouseMove),e.on("touchmove.mousewidget",this.touchMove),e.on("mouseup.mousewidget",this.mouseUp),e.on("touchend.mousewidget",this.touchEnd),this.mouse_delay&&this._startMouseDelayTimer()},t.prototype._startMouseDelayTimer=function(){var e=this;this._mouse_delay_timer&&clearTimeout(this._mouse_delay_timer),this._mouse_delay_timer=setTimeout(function(){e._is_mouse_delay_met=!0},this.mouse_delay),this._is_mouse_delay_met=!1},t.prototype._handleMouseMove=function(e,t){return this.is_mouse_started?(this._mouseDrag(t),e.preventDefault()):!(!this.mouse_delay||this._is_mouse_delay_met)||(this.mouse_down_info&&(this.is_mouse_started=!1!==this._mouseStart(this.mouse_down_info)),this.is_mouse_started?this._mouseDrag(t):this._handleMouseUp(t),!this.is_mouse_started)},t.prototype._getPositionInfo=function(e){return{page_x:e.pageX,page_y:e.pageY,target:e.target,original_event:e}},t.prototype._handleMouseUp=function(e){var t=jQuery(document);t.off("mousemove.mousewidget"),t.off("touchmove.mousewidget"),t.off("mouseup.mousewidget"),t.off("touchend.mousewidget"),this.is_mouse_started&&(this.is_mouse_started=!1,this._mouseStop(e))},t}(o(2).default);t.default=i},function(e,t,o){"use strict";t.__esModule=!0;var n=function(){function e(t){var o=this;this.handleKeyDown=function(t){if(!o.canHandleKeyboard())return!0;switch(t.which){case e.DOWN:return o.moveDown();case e.UP:return o.moveUp();case e.RIGHT:return o.moveRight();case e.LEFT:return o.moveLeft();default:return!0}},this.tree_widget=t,t.options.keyboardSupport&&jQuery(document).on("keydown.jqtree",this.handleKeyDown)}return e.prototype.deinit=function(){jQuery(document).off("keydown.jqtree")},e.prototype.moveDown=function(){var e=this.tree_widget.getSelectedNode();return!!e&&this.selectNode(e.getNextNode())},e.prototype.moveUp=function(){var e=this.tree_widget.getSelectedNode();return!!e&&this.selectNode(e.getPreviousNode())},e.prototype.moveRight=function(){var e=this.tree_widget.getSelectedNode();return!e||(!e.isFolder()||(e.is_open?this.selectNode(e.getNextNode()):(this.tree_widget.openNode(e),!1)))},e.prototype.moveLeft=function(){var e=this.tree_widget.getSelectedNode();return!e||(e.isFolder()&&e.is_open?(this.tree_widget.closeNode(e),!1):this.selectNode(e.getParent()))},e.prototype.selectNode=function(e){return!e||(this.tree_widget.selectNode(e),this.tree_widget.scroll_handler&&!this.tree_widget.scroll_handler.isScrolledIntoView(jQuery(e.element).find(".jqtree-element"))&&this.tree_widget.scrollToNode(e),!1)},e.prototype.canHandleKeyboard=function(){return this.tree_widget.options.keyboardSupport&&this.isFocusOnTree()&&null!=this.tree_widget.getSelectedNode()},e.prototype.isFocusOnTree=function(){var e=document.activeElement;return e&&"SPAN"===e.tagName&&this.tree_widget._containsElement(e)},e.LEFT=37,e.UP=38,e.RIGHT=39,e.DOWN=40,e}();t.default=n},function(e,t,o){"use strict";t.__esModule=!0;var n=o(1),r=function(){function e(e){this.tree_widget=e,this.opened_icon_element=this.createButtonElement(e.options.openedIcon),this.closed_icon_element=this.createButtonElement(e.options.closedIcon)}return e.prototype.render=function(e){e&&e.parent?this.renderFromNode(e):this.renderFromRoot()},e.prototype.renderFromRoot=function(){var e=this.tree_widget.element;e.empty(),this.createDomElements(e[0],this.tree_widget.tree.children,!0,1)},e.prototype.renderFromNode=function(e){var t=jQuery(e.element),o=this.createLi(e,e.getLevel());this.attachNodeData(e,o),t.after(o),t.remove(),e.children&&this.createDomElements(o,e.children,!1,e.getLevel()+1)},e.prototype.createDomElements=function(e,t,o,n){var r=this.createUl(o);e.appendChild(r);for(var i=0,s=t;i<s.length;i++){var a=s[i],l=this.createLi(a,n);r.appendChild(l),this.attachNodeData(a,l),a.hasChildren()&&this.createDomElements(l,a.children,!1,n+1)}},e.prototype.attachNodeData=function(e,t){e.element=t,jQuery(t).data("node",e)},e.prototype.createUl=function(e){var t,o;e?(t="jqtree-tree",o="tree",this.tree_widget.options.rtl&&(t+=" jqtree-rtl")):(t="",o="group");var n=document.createElement("ul");return n.className="jqtree_common "+t,n.setAttribute("role",o),n},e.prototype.createLi=function(e,t){var o=Boolean(this.tree_widget.select_node_handler&&this.tree_widget.select_node_handler.isNodeSelected(e)),n=e.isFolder()?this.createFolderLi(e,t,o):this.createNodeLi(e,t,o);return this.tree_widget.options.onCreateLi&&this.tree_widget.options.onCreateLi(e,jQuery(n),o),n},e.prototype.createFolderLi=function(e,t,o){var n=this.getButtonClasses(e),r=this.getFolderClasses(e,o),i=e.is_open?this.opened_icon_element:this.closed_icon_element,s=document.createElement("li");s.className="jqtree_common "+r,s.setAttribute("role","presentation");var a=document.createElement("div");a.className="jqtree-element jqtree_common",a.setAttribute("role","presentation"),s.appendChild(a);var l=document.createElement("a");return l.className=n,l.appendChild(i.cloneNode(!0)),l.setAttribute("role","presentation"),l.setAttribute("aria-hidden","true"),this.tree_widget.options.buttonLeft&&a.appendChild(l),a.appendChild(this.createTitleSpan(e.name,t,o,e.is_open,!0)),this.tree_widget.options.buttonLeft||a.appendChild(l),s},e.prototype.createNodeLi=function(e,t,o){var n=["jqtree_common"];o&&n.push("jqtree-selected");var r=n.join(" "),i=document.createElement("li");i.className=r,i.setAttribute("role","presentation");var s=document.createElement("div");return s.className="jqtree-element jqtree_common",s.setAttribute("role","presentation"),i.appendChild(s),s.appendChild(this.createTitleSpan(e.name,t,o,e.is_open,!1)),i},e.prototype.createTitleSpan=function(e,t,o,r,i){var s=document.createElement("span"),a="jqtree-title jqtree_common";return i&&(a+=" jqtree-title-folder"),s.className=a,s.setAttribute("role","treeitem"),s.setAttribute("aria-level",""+t),s.setAttribute("aria-selected",n.getBoolString(o)),s.setAttribute("aria-expanded",n.getBoolString(r)),o&&s.setAttribute("tabindex",this.tree_widget.options.tabIndex),s.innerHTML=this.escapeIfNecessary(e),s},e.prototype.getButtonClasses=function(e){var t=["jqtree-toggler","jqtree_common"];return e.is_open||t.push("jqtree-closed"),this.tree_widget.options.buttonLeft?t.push("jqtree-toggler-left"):t.push("jqtree-toggler-right"),t.join(" ")},e.prototype.getFolderClasses=function(e,t){var o=["jqtree-folder"];return e.is_open||o.push("jqtree-closed"),t&&o.push("jqtree-selected"),e.is_loading&&o.push("jqtree-loading"),o.join(" ")},e.prototype.escapeIfNecessary=function(e){return this.tree_widget.options.autoEscape?n.html_escape(e):e},e.prototype.createButtonElement=function(e){if("string"==typeof e){var t=document.createElement("div");return t.innerHTML=e,document.createTextNode(t.innerHTML)}return jQuery(e)[0]},e}();t.default=r},function(e,t,o){"use strict";var n,r=this&&this.__extends||(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])},function(e,t){function o(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)});t.__esModule=!0;var i=o(3),s=o(0),a=o(1),l=function(){function e(e){this.tree_widget=e,this.hovered_area=null,this.hit_areas=[],this.is_dragging=!1,this.current_item=null,this.position_info=null}return e.prototype.mouseCapture=function(e){var t=i(e.target);if(!this.mustCaptureElement(t))return null;if(this.tree_widget.options.onIsMoveHandle&&!this.tree_widget.options.onIsMoveHandle(t))return null;var o=this.tree_widget._getNodeElement(t);return o&&this.tree_widget.options.onCanMove&&(this.tree_widget.options.onCanMove(o.node)||(o=null)),this.current_item=o,null!=this.current_item},e.prototype.generateHitAreas=function(){if(this.current_item){var e=new d(this.tree_widget.tree,this.current_item.node,this.getTreeDimensions().bottom);this.hit_areas=e.generate()}else this.hit_areas=[]},e.prototype.mouseStart=function(e){if(this.current_item){this.refresh();var t=i(e.target).offset(),o=t?t.left:0,n=t?t.top:0,r=this.current_item.node,s=this.tree_widget.options.autoEscape?a.html_escape(r.name):r.name;return this.drag_element=new h(s,e.page_x-o,e.page_y-n,this.tree_widget.element),this.is_dragging=!0,this.position_info=e,this.current_item.$element.addClass("jqtree-moving"),!0}return!1},e.prototype.mouseDrag=function(e){if(this.current_item&&this.drag_element){this.drag_element.move(e.page_x,e.page_y),this.position_info=e;var t=this.findHoveredArea(e.page_x,e.page_y);return this.canMoveToArea(t)&&t?(t.node.isFolder()||this.stopOpenFolderTimer(),this.hovered_area!==t&&(this.hovered_area=t,this.mustOpenFolderTimer(t)?this.startOpenFolderTimer(t.node):this.stopOpenFolderTimer(),this.updateDropHint())):(this.removeHover(),this.removeDropHint(),this.stopOpenFolderTimer()),t||this.tree_widget.options.onDragMove&&this.tree_widget.options.onDragMove(this.current_item.node,e.original_event),!0}return!1},e.prototype.mouseStop=function(e){this.moveItem(e),this.clear(),this.removeHover(),this.removeDropHint(),this.removeHitAreas();var t=this.current_item;return this.current_item&&(this.current_item.$element.removeClass("jqtree-moving"),this.current_item=null),this.is_dragging=!1,this.position_info=null,!this.hovered_area&&t&&this.tree_widget.options.onDragStop&&this.tree_widget.options.onDragStop(t.node,e.original_event),!1},e.prototype.refresh=function(){this.removeHitAreas(),this.current_item&&(this.generateHitAreas(),this.current_item=this.tree_widget._getNodeElementForNode(this.current_item.node),this.is_dragging&&this.current_item.$element.addClass("jqtree-moving"))},e.prototype.mustCaptureElement=function(e){return!e.is("input,select,textarea")},e.prototype.canMoveToArea=function(e){if(e&&this.current_item){if(this.tree_widget.options.onCanMoveTo){var t=s.getPositionName(e.position);return this.tree_widget.options.onCanMoveTo(this.current_item.node,e.node,t)}return!0}return!1},e.prototype.removeHitAreas=function(){this.hit_areas=[]},e.prototype.clear=function(){this.drag_element&&(this.drag_element.remove(),this.drag_element=null)},e.prototype.removeDropHint=function(){this.previous_ghost&&this.previous_ghost.remove()},e.prototype.removeHover=function(){this.hovered_area=null},e.prototype.findHoveredArea=function(e,t){var o=this.getTreeDimensions();if(e<o.left||t<o.top||e>o.right||t>o.bottom)return null;for(var n=0,r=this.hit_areas.length;n<r;){var i=n+r>>1,s=this.hit_areas[i];if(t<s.top)r=i;else{if(!(t>s.bottom))return s;n=i+1}}return null},e.prototype.mustOpenFolderTimer=function(e){var t=e.node;return t.isFolder()&&!t.is_open&&e.position===s.Position.Inside},e.prototype.updateDropHint=function(){if(this.hovered_area){this.removeDropHint();var e=this.tree_widget._getNodeElementForNode(this.hovered_area.node);this.previous_ghost=e.addDropHint(this.hovered_area.position)}},e.prototype.startOpenFolderTimer=function(e){var t=this;this.stopOpenFolderTimer(),this.open_folder_timer=setTimeout(function(){t.tree_widget._openNode(e,t.tree_widget.options.slide,function(){t.refresh(),t.updateDropHint()})},this.tree_widget.options.openFolderDelay)},e.prototype.stopOpenFolderTimer=function(){this.open_folder_timer&&(clearTimeout(this.open_folder_timer),this.open_folder_timer=null)},e.prototype.moveItem=function(e){var t=this;if(this.current_item&&this.hovered_area&&this.hovered_area.position!==s.Position.None&&this.canMoveToArea(this.hovered_area)){var o=this.current_item.node,n=this.hovered_area.node,r=this.hovered_area.position,i=o.parent;r===s.Position.Inside&&(this.hovered_area.node.is_open=!0);var a=function(){t.tree_widget.tree.moveNode(o,n,r),t.tree_widget.element.empty(),t.tree_widget._refreshElements(null)};this.tree_widget._triggerEvent("tree.move",{move_info:{moved_node:o,target_node:n,position:s.getPositionName(r),previous_parent:i,do_move:a,original_event:e.original_event}}).isDefaultPrevented()||a()}},e.prototype.getTreeDimensions=function(){var e=this.tree_widget.element.offset();if(e){var t=this.tree_widget.element,o=t.width()||0,n=t.height()||0,r=e.left+this.tree_widget._getScrollLeft();return{left:r,top:e.top,right:r+o,bottom:e.top+n+16}}return{left:0,top:0,right:0,bottom:0}},e}();t.DragAndDropHandler=l;var d=function(e){function t(t,o,n){var r=e.call(this,t)||this;return r.current_node=o,r.tree_bottom=n,r}return r(t,e),t.prototype.generate=function(){return this.positions=[],this.last_top=0,this.iterate(),this.generateHitAreas(this.positions)},t.prototype.generateHitAreas=function(e){for(var t=-1,o=[],n=[],r=0,i=e;r<i.length;r++){var s=i[r];s.top!==t&&o.length&&(o.length&&this.generateHitAreasForGroup(n,o,t,s.top),t=s.top,o=[]),o.push(s)}return this.generateHitAreasForGroup(n,o,t,this.tree_bottom),n},t.prototype.handleOpenFolder=function(e,t){return e!==this.current_node&&(e.children[0]!==this.current_node&&this.addPosition(e,s.Position.Inside,this.getTop(t)),!0)},t.prototype.handleClosedFolder=function(e,t,o){var n=this.getTop(o);e===this.current_node?this.addPosition(e,s.Position.None,n):(this.addPosition(e,s.Position.Inside,n),t!==this.current_node&&this.addPosition(e,s.Position.After,n))},t.prototype.handleFirstNode=function(e){e!==this.current_node&&this.addPosition(e,s.Position.Before,this.getTop(i(e.element)))},t.prototype.handleAfterOpenFolder=function(e,t){e===this.current_node||t===this.current_node?this.addPosition(e,s.Position.None,this.last_top):this.addPosition(e,s.Position.After,this.last_top)},t.prototype.handleNode=function(e,t,o){var n=this.getTop(o);e===this.current_node?this.addPosition(e,s.Position.None,n):this.addPosition(e,s.Position.Inside,n),t===this.current_node||e===this.current_node?this.addPosition(e,s.Position.None,n):this.addPosition(e,s.Position.After,n)},t.prototype.getTop=function(e){var t=e.offset();return t?t.top:0},t.prototype.addPosition=function(e,t,o){var n={top:o,bottom:0,node:e,position:t};this.positions.push(n),this.last_top=o},t.prototype.generateHitAreasForGroup=function(e,t,o,n){for(var r=Math.min(t.length,4),i=Math.round((n-o)/r),s=o,a=0;a<r;){var l=t[a];e.push({top:s,bottom:s+i,node:l.node,position:l.position}),s+=i,a+=1}},t}(function(){function e(e){this.tree=e}return e.prototype.iterate=function(){var e=this,t=!0,o=function(n,r){var s=(n.is_open||!n.element)&&n.hasChildren(),a=null;if(n.element){if(!(a=i(n.element)).is(":visible"))return;t&&(e.handleFirstNode(n),t=!1),n.hasChildren()?n.is_open?e.handleOpenFolder(n,a)||(s=!1):e.handleClosedFolder(n,r,a):e.handleNode(n,r,a)}if(s){var l=n.children.length;n.children.forEach(function(e,t){o(n.children[t],t===l-1?null:n.children[t+1])}),n.is_open&&a&&e.handleAfterOpenFolder(n,r)}};o(this.tree,null)},e}());t.HitAreasGenerator=d;var h=function(){function e(e,t,o,n){this.offset_x=t,this.offset_y=o,this.$element=i('<span class="jqtree-title jqtree-dragging">'+e+"</span>"),this.$element.css("position","absolute"),n.append(this.$element)}return e.prototype.move=function(e,t){this.$element.offset({left:e-this.offset_x,top:t-this.offset_y})},e.prototype.remove=function(){this.$element.remove()},e}()},function(e,t,o){"use strict";t.__esModule=!0;t.default="1.4.7"},function(e,t,o){"use strict";var n,r=this&&this.__extends||(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])},function(e,t){function o(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)});t.__esModule=!0;var i=o(12),s=o(3),a=o(11),l=o(10),d=o(9),h=o(8),u=o(7),p=o(6),c=o(5),_=o(2),f=o(0),g=o(1),m=o(4),v=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._handleClick=function(e){var o=t._getClickTarget(e.target);if(o)if("button"===o.type)t.toggle(o.node,t.options.slide),e.preventDefault(),e.stopPropagation();else if("label"===o.type){var n=o.node;t._triggerEvent("tree.click",{node:n,click_event:e}).isDefaultPrevented()||t._selectNode(n,!0)}},t._handleDblclick=function(e){var o=t._getClickTarget(e.target);o&&"label"===o.type&&t._triggerEvent("tree.dblclick",{node:o.node,click_event:e})},t._handleContextmenu=function(e){var o=s(e.target).closest("ul.jqtree-tree .jqtree-element");if(o.length){var n=t._getNode(o);if(n)return e.preventDefault(),e.stopPropagation(),t._triggerEvent("tree.contextmenu",{node:n,click_event:e}),!1}return null},t}return r(t,e),t.prototype.toggle=function(e,t){var o=null==t?this.options.slide:t;return e.is_open?this.closeNode(e,o):this.openNode(e,o),this.element},t.prototype.getTree=function(){return this.tree},t.prototype.selectNode=function(e){return this._selectNode(e,!1),this.element},t.prototype.getSelectedNode=function(){return!!this.select_node_handler&&this.select_node_handler.getSelectedNode()},t.prototype.toJson=function(){return JSON.stringify(this.tree.getData())},t.prototype.loadData=function(e,t){return this._loadData(e,t),this.element},t.prototype.loadDataFromUrl=function(e,t,o){return"string"==typeof e?this._loadDataFromUrl(e,t,o):this._loadDataFromUrl(null,e,t),this.element},t.prototype.reload=function(e){return this._loadDataFromUrl(null,null,e),this.element},t.prototype.getNodeById=function(e){return this.tree.getNodeById(e)},t.prototype.getNodeByName=function(e){return this.tree.getNodeByName(e)},t.prototype.getNodesByProperty=function(e,t){return this.tree.getNodesByProperty(e,t)},t.prototype.getNodeByHtmlElement=function(e){return this._getNode(s(e))},t.prototype.getNodeByCallback=function(e){return this.tree.getNodeByCallback(e)},t.prototype.openNode=function(e,t,o){var n=this,r=function(){var e,r;return g.isFunction(t)?(e=t,r=null):(r=t,e=o),null==r&&(r=n.options.slide),[r,e]}(),i=r[0],s=r[1];return e&&this._openNode(e,i,s),this.element},t.prototype.closeNode=function(e,t){var o=null==t?this.options.slide:t;return e.isFolder()&&(new m.FolderElement(e,this).close(o,this.options.animationSpeed),this._saveState()),this.element},t.prototype.isDragging=function(){return!!this.dnd_handler&&this.dnd_handler.is_dragging},t.prototype.refreshHitAreas=function(){return this.dnd_handler&&this.dnd_handler.refresh(),this.element},t.prototype.addNodeAfter=function(e,t){var o=t.addAfter(e);return o&&this._refreshElements(t.parent),o},t.prototype.addNodeBefore=function(e,t){var o=t.addBefore(e);return o&&this._refreshElements(t.parent),o},t.prototype.addParentNode=function(e,t){var o=t.addParent(e);return o&&this._refreshElements(o.parent),o},t.prototype.removeNode=function(e){return e.parent&&this.select_node_handler&&(this.select_node_handler.removeFromSelection(e,!0),e.remove(),this._refreshElements(e.parent)),this.element},t.prototype.appendNode=function(e,t){var o=t||this.tree,n=o.append(e);return this._refreshElements(o),n},t.prototype.prependNode=function(e,t){var o=t||this.tree,n=o.prepend(e);return this._refreshElements(o),n},t.prototype.updateNode=function(e,t){var o=t.id&&t.id!==e.id;return o&&this.tree.removeNodeFromIndex(e),e.setData(t),o&&this.tree.addNodeToIndex(e),"object"==typeof t&&t.children&&(e.removeChildren(),t.children.length&&e.loadFromData(t.children)),this._refreshElements(e),this._selectCurrentNode(),this.element},t.prototype.moveNode=function(e,t,o){var n=f.getPosition(o);return this.tree.moveNode(e,t,n),this._refreshElements(null),this.element},t.prototype.getStateFromStorage=function(){if(this.save_state_handler)return this.save_state_handler.getStateFromStorage()},t.prototype.addToSelection=function(e,t){return void 0===t&&(t=!0),e&&this.select_node_handler&&(this.select_node_handler.addToSelection(e),this._getNodeElementForNode(e).select(t),this._saveState()),this.element},t.prototype.getSelectedNodes=function(){return this.select_node_handler?this.select_node_handler.getSelectedNodes():[]},t.prototype.isNodeSelected=function(e){return!!this.select_node_handler&&this.select_node_handler.isNodeSelected(e)},t.prototype.removeFromSelection=function(e){return this.select_node_handler&&(this.select_node_handler.removeFromSelection(e),this._getNodeElementForNode(e).deselect(),this._saveState()),this.element},t.prototype.scrollToNode=function(e){if(this.scroll_handler){var t=s(e.element).offset(),o=t?t.top:0,n=this.$el.offset(),r=o-(n?n.top:0);this.scroll_handler.scrollToY(r)}return this.element},t.prototype.getState=function(){if(this.save_state_handler)return this.save_state_handler.getState()},t.prototype.setState=function(e){return this.save_state_handler&&(this.save_state_handler.setInitialState(e),this._refreshElements(null)),this.element},t.prototype.setOption=function(e,t){return this.options[e]=t,this.element},t.prototype.moveDown=function(){return this.key_handler&&this.key_handler.moveDown(),this.element},t.prototype.moveUp=function(){return this.key_handler&&this.key_handler.moveUp(),this.element},t.prototype.getVersion=function(){return i.default},t.prototype.testGenerateHitAreas=function(e){return this.dnd_handler?(this.dnd_handler.current_item=this._getNodeElementForNode(e),this.dnd_handler.generateHitAreas(),this.dnd_handler.hit_areas):[]},t.prototype._triggerEvent=function(e,t){var o=s.Event(e);return s.extend(o,t),this.element.trigger(o),o},t.prototype._openNode=function(e,t,o){var n=this;void 0===t&&(t=!0);var r=function(e,t,o){new m.FolderElement(e,n).open(o,t,n.options.animationSpeed)};if(e.isFolder())if(e.load_on_demand)this._loadFolderOnDemand(e,t,o);else{for(var i=e.parent;i;)i.parent&&r(i,!1,null),i=i.parent;r(e,t,o),this._saveState()}},t.prototype._refreshElements=function(e){this.renderer.render(e),this._triggerEvent("tree.refresh")},t.prototype._getNodeElementForNode=function(e){return e.isFolder()?new m.FolderElement(e,this):new m.NodeElement(e,this)},t.prototype._getNodeElement=function(e){var t=this._getNode(e);return t?this._getNodeElementForNode(t):null},t.prototype._containsElement=function(e){var t=this._getNode(s(e));return null!=t&&t.tree===this.tree},t.prototype._getScrollLeft=function(){return this.scroll_handler&&this.scroll_handler.getScrollLeft()||0},t.prototype._init=function(){e.prototype._init.call(this),this.element=this.$el,this.mouse_delay=300,this.is_initialized=!1,this.options.rtl=this._getRtlOption(),null===this.options.closedIcon&&(this.options.closedIcon=this._getDefaultClosedIcon()),this.renderer=new l.default(this),null!=u.default?this.save_state_handler=new u.default(this):this.options.saveState=!1,null!=c.default&&(this.select_node_handler=new c.default(this)),null!=a.DragAndDropHandler?this.dnd_handler=new a.DragAndDropHandler(this):this.options.dragAndDrop=!1,null!=p.default&&(this.scroll_handler=new p.default(this)),null!=d.default&&null!=c.default&&(this.key_handler=new d.default(this)),this._initData(),this.element.click(this._handleClick),this.element.dblclick(this._handleDblclick),this.options.useContextMenu&&this.element.on("contextmenu",this._handleContextmenu)},t.prototype._deinit=function(){this.element.empty(),this.element.off(),this.key_handler&&this.key_handler.deinit(),this.tree=new f.Node({},!0),e.prototype._deinit.call(this)},t.prototype._mouseCapture=function(e){return!(!this.options.dragAndDrop||!this.dnd_handler)&&this.dnd_handler.mouseCapture(e)},t.prototype._mouseStart=function(e){return!(!this.options.dragAndDrop||!this.dnd_handler)&&this.dnd_handler.mouseStart(e)},t.prototype._mouseDrag=function(e){if(this.options.dragAndDrop&&this.dnd_handler){var t=this.dnd_handler.mouseDrag(e);return this.scroll_handler&&this.scroll_handler.checkScrolling(),t}return!1},t.prototype._mouseStop=function(e){return!(!this.options.dragAndDrop||!this.dnd_handler)&&this.dnd_handler.mouseStop(e)},t.prototype._initData=function(){this.options.data?this._loadData(this.options.data,null):this._getDataUrlInfo(null)?this._loadDataFromUrl(null,null,null):this._loadData([],null)},t.prototype._getDataUrlInfo=function(e){var t,o=this,n=this.options.dataUrl||this.element.data("url"),r=function(t){if(e&&e.id){var n={node:e.id};t.data=n}else{var r=o._getNodeIdToBeSelected();if(r){n={selected_node:r};t.data=n}}};return"function"==typeof n?n(e):"string"==typeof n?(r(t={url:n}),t):"object"==typeof n?(r(n),n):n},t.prototype._getNodeIdToBeSelected=function(){return this.options.saveState&&this.save_state_handler?this.save_state_handler.getNodeIdToBeSelected():null},t.prototype._initTree=function(e){var t=this,o=function(){t.is_initialized||(t.is_initialized=!0,t._triggerEvent("tree.init"))};this.tree=new this.options.nodeClass(null,!0,this.options.nodeClass),this.select_node_handler&&this.select_node_handler.clear(),this.tree.loadFromData(e);var n=this._setInitialState();this._refreshElements(null),n?this._setInitialStateOnDemand(o):o()},t.prototype._setInitialState=function(){var e=this,t=function(){if(e.options.saveState&&e.save_state_handler){var t=e.save_state_handler.getStateFromStorage();return t?[!0,e.save_state_handler.setInitialState(t)]:[!1,!1]}return[!1,!1]}(),o=t[0],n=t[1];return o||(n=function(){if(!1===e.options.autoOpen)return!1;var t=e._getAutoOpenMaxLevel(),o=!1;return e.tree.iterate(function(e,n){return e.load_on_demand?(o=!0,!1):!!e.hasChildren()&&(e.is_open=!0,n!==t)}),o}()),n},t.prototype._setInitialStateOnDemand=function(e){var t,o,n,r=this;(function(){if(r.options.saveState&&r.save_state_handler){var t=r.save_state_handler.getStateFromStorage();return!!t&&(r.save_state_handler.setInitialStateOnDemand(t,e),!0)}return!1})()||(t=r._getAutoOpenMaxLevel(),o=0,(n=function(){r.tree.iterate(function(e,i){return e.load_on_demand?(e.is_loading||function(e){o+=1,r._openNode(e,!1,function(){o-=1,n()})}(e),!1):(r._openNode(e,!1,null),i!==t)}),0===o&&e()})())},t.prototype._getAutoOpenMaxLevel=function(){return!0===this.options.autoOpen?-1:parseInt(this.options.autoOpen,10)},t.prototype._getClickTarget=function(e){var t=s(e),o=t.closest(".jqtree-toggler");if(o.length){if(n=this._getNode(o))return{type:"button",node:n}}else{var n,r=t.closest(".jqtree-element");if(r.length)if(n=this._getNode(r))return{type:"label",node:n}}return null},t.prototype._getNode=function(e){var t=e.closest("li.jqtree_common");return 0===t.length?null:t.data("node")},t.prototype._saveState=function(){this.options.saveState&&this.save_state_handler&&this.save_state_handler.saveState()},t.prototype._selectCurrentNode=function(){var e=this.getSelectedNode();if(e){var t=this._getNodeElementForNode(e);t&&t.select(!0)}},t.prototype._deselectCurrentNode=function(){var e=this.getSelectedNode();e&&this.removeFromSelection(e)},t.prototype._getDefaultClosedIcon=function(){return this.options.rtl?"&#x25c0;":"&#x25ba;"},t.prototype._getRtlOption=function(){if(null!=this.options.rtl)return this.options.rtl;var e=this.element.data("rtl");return null!=e&&!1!==e},t.prototype._notifyLoading=function(e,t,o){this.options.onLoading&&this.options.onLoading(e,t,o)},t.prototype._selectNode=function(e,t){var o=this;if(void 0===t&&(t=!1),this.select_node_handler){var n=function(){o.options.saveState&&o.save_state_handler&&o.save_state_handler.saveState()};if(!e)return this._deselectCurrentNode(),void n();if(o.options.onCanSelectNode?o.options.selectable&&o.options.onCanSelectNode(e):o.options.selectable){if(this.select_node_handler.isNodeSelected(e))t&&(this._deselectCurrentNode(),this._triggerEvent("tree.select",{node:null,previous_node:e}));else{var r=this.getSelectedNode();this._deselectCurrentNode(),this.addToSelection(e),this._triggerEvent("tree.select",{node:e,deselected_node:r}),(i=e.parent)&&i.parent&&!i.is_open&&o.openNode(i,!1)}var i;n()}}},t.prototype._loadData=function(e,t){e&&(this._triggerEvent("tree.load_data",{tree_data:e}),t?(this._deselectNodes(t),this._loadSubtree(e,t)):this._initTree(e),this.isDragging()&&this.dnd_handler&&this.dnd_handler.refresh())},t.prototype._deselectNodes=function(e){if(this.select_node_handler)for(var t=0,o=this.select_node_handler.getSelectedNodesUnder(e);t<o.length;t++){var n=o[t];this.select_node_handler.removeFromSelection(n)}},t.prototype._loadSubtree=function(e,t){t.loadFromData(e),t.load_on_demand=!1,t.is_loading=!1,this._refreshElements(t)},t.prototype._loadDataFromUrl=function(e,t,o){var n,r=this,i=null,a=e,l=function(){i&&(i.removeClass("jqtree-loading"),r._notifyLoading(!1,t,i))},d=function(e){l(),r._loadData(e,t),o&&"function"==typeof o&&o()},h=function(e){var t=function(e){return r.options.dataFilter?r.options.dataFilter(e):e}(function(e){return e instanceof Array||"object"==typeof e?e:null!=e?s.parseJSON(e):[]}(e));d(t)},u=function(e){l(),r.options.onLoadFailed&&r.options.onLoadFailed(e)};return e||(a=this._getDataUrlInfo(t)),(i=t?s(t.element):r.element).addClass("jqtree-loading"),r._notifyLoading(!0,t,i),a?a instanceof Array?void d(a):(n="string"==typeof a?{url:a}:(a.method||(a.method="get"),a),void s.ajax(s.extend({},n,{method:null!=a.method?a.method.toUpperCase():"GET",cache:!1,dataType:"json",success:h,error:u}))):void l()},t.prototype._loadFolderOnDemand=function(e,t,o){var n=this;void 0===t&&(t=!0),e.is_loading=!0,this._loadDataFromUrl(null,e,function(){n._openNode(e,t,o)})},t.defaults={animationSpeed:"fast",autoOpen:!1,saveState:!1,dragAndDrop:!1,selectable:!0,useContextMenu:!0,onCanSelectNode:null,onSetStateFromStorage:null,onGetStateFromStorage:null,onCreateLi:null,onIsMoveHandle:null,onCanMove:null,onCanMoveTo:null,onLoadFailed:null,autoEscape:!0,dataUrl:null,closedIcon:null,openedIcon:"&#x25bc;",slide:!0,nodeClass:f.Node,dataFilter:null,keyboardSupport:!0,openFolderDelay:500,rtl:!1,onDragMove:null,onDragStop:null,buttonLeft:!0,onLoading:null,tabIndex:0},t}(h.default);_.default.register(v,"tree")},,,,,,,,function(e,t,o){e.exports=o(13)}]);
js/wp.tabs.js CHANGED
@@ -2,7 +2,7 @@
2
  var methods = {
3
  init : function( options ) {
4
  return this.each(function(){
5
- var $this = $(this);
6
  this._options = options || {};
7
  if (!$this.hasClass('gmpWpTabs')) {
8
  $this.addClass('gmpWpTabs');
@@ -37,7 +37,7 @@
37
  }
38
  , activate: function(selector) {
39
  return this.each(function(){
40
- var $this = $(this);
41
  if($this.find(selector).size()) {
42
  var navigations = $this.find('.nav-tab-wrapper:first').find('a.nav-tab:not(.notTab)');
43
  if(!this._firstInit) {
@@ -49,6 +49,12 @@
49
  ? $this.find('.gmpTabContent[data-tabs-for="'+ this._options.uniqId + '"]')
50
  : $this.find('.gmpTabContent');
51
  allTabsContent.hide();
 
 
 
 
 
 
52
  $this.find(selector).show();
53
  navigations.removeClass('nav-tab-active');
54
  $this.find('[href="'+ selector+ '"]').addClass('nav-tab-active');
2
  var methods = {
3
  init : function( options ) {
4
  return this.each(function(){
5
+ var $this = jQuery(this);
6
  this._options = options || {};
7
  if (!$this.hasClass('gmpWpTabs')) {
8
  $this.addClass('gmpWpTabs');
37
  }
38
  , activate: function(selector) {
39
  return this.each(function(){
40
+ var $this = jQuery(this);
41
  if($this.find(selector).size()) {
42
  var navigations = $this.find('.nav-tab-wrapper:first').find('a.nav-tab:not(.notTab)');
43
  if(!this._firstInit) {
49
  ? $this.find('.gmpTabContent[data-tabs-for="'+ this._options.uniqId + '"]')
50
  : $this.find('.gmpTabContent');
51
  allTabsContent.hide();
52
+ if($this.find('.nav-tab-active').attr('href') != selector) {
53
+ gmpUnshiftButtons({
54
+ gmpShapeAddPointByClickBtn: 'gmpAddByClickActivated',
55
+ gmpHeatmapAddPointBtn: 'gmpAddActivated'
56
+ });
57
+ }
58
  $this.find(selector).show();
59
  navigations.removeClass('nav-tab-active');
60
  $this.find('[href="'+ selector+ '"]').addClass('nav-tab-active');
lang/gmp_lng-bg_BG.mo DELETED
Binary file
lang/gmp_lng-da_DK.mo DELETED
Binary file
lang/gmp_lng-da_DK.po DELETED
@@ -1,2089 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2015-12-10 19:04+0300\n"
5
- "PO-Revision-Date: 2017-12-15 13:20+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: da_DK\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.9\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
-
16
- #: classes/controller.php:198 classes/controller.php:206
17
- #: doc/google-maps-easy-pro/kml/controller.php:9
18
- #: doc/google-maps-easy-pro/license/controller.php:6
19
- #: modules/adminmenu/controller.php:29 modules/gmap/controller.php:40
20
- #: modules/gmap/controller.php:57 modules/marker/controller.php:8
21
- #: modules/marker/controller.php:46 modules/marker/controller.php:61
22
- #: modules/marker/controller.php:101 modules/marker_groups/controller.php:58
23
- #: modules/options/controller.php:6
24
- msgid "Done"
25
- msgstr "Færdig"
26
-
27
- #: classes/field.php:131
28
- msgid "Select"
29
- msgstr "Vælg"
30
-
31
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
32
- msgid "N/A"
33
- msgstr "Ikke til rådighed"
34
-
35
- #: classes/field.php:277
36
- msgid "Add Checkbox"
37
- msgstr "Tilføj afkrydsningsfelt"
38
-
39
- #: classes/field.php:282 classes/field.php:287
40
- msgid "Add Item"
41
- msgstr "Tilføj element"
42
-
43
- #: classes/field.php:293
44
- msgid "Add Radio Button"
45
- msgstr "Tilføj rund knap"
46
-
47
- #: classes/field.php:311
48
- msgid "Dimensions"
49
- msgstr "Dimensioner"
50
-
51
- #: classes/field.php:314
52
- msgid "width"
53
- msgstr "bredde"
54
-
55
- #: classes/field.php:316
56
- msgid "height"
57
- msgstr "højde"
58
-
59
- #: classes/field.php:323
60
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
61
- msgstr "Klik for at sætte feltene &quot;id&quot; og 'klasse'"
62
-
63
- #: classes/field.php:324
64
- msgid "Attributes"
65
- msgstr "Attributter"
66
-
67
- #: classes/field.php:402
68
- msgid "There are no configuration options for this module"
69
- msgstr "Der er ingen indstillingsmuligheder for dette modul"
70
-
71
- #: classes/fieldAdapter.php:93
72
- msgid "Apply To"
73
- msgstr "Anvend til"
74
-
75
- #: classes/fieldAdapter.php:95
76
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:52
77
- #: modules/gmap/views/tpl/gmapEditMap.php:863
78
- msgid "Address"
79
- msgstr "Adresse"
80
-
81
- #: classes/fieldAdapter.php:96
82
- msgid "Destination"
83
- msgstr "Bestemmelsessted"
84
-
85
- #: classes/fieldAdapter.php:97
86
- msgid "Country"
87
- msgstr "Land"
88
-
89
- #: classes/fieldAdapter.php:100
90
- msgid "Categories"
91
- msgstr "Kategorier"
92
-
93
- #: classes/fieldAdapter.php:101
94
- msgid "You have no categories"
95
- msgstr "Du har ingen kategorier"
96
-
97
- #: classes/fieldAdapter.php:102
98
- msgid "Brands"
99
- msgstr "Mærker"
100
-
101
- #: classes/fieldAdapter.php:103
102
- msgid "You have no brands"
103
- msgstr "Du har ingen mærker"
104
-
105
- #: classes/fieldAdapter.php:105
106
- msgid "Tax Rate"
107
- msgstr "Skatteprocent"
108
-
109
- #: classes/fieldAdapter.php:106
110
- msgid "Absolute"
111
- msgstr "Absolut"
112
-
113
- #: classes/fieldAdapter.php:134
114
- msgid "Not selected"
115
- msgstr "Ikke valgt"
116
-
117
- #: classes/fieldAdapter.php:184
118
- msgid "class"
119
- msgstr "klasse"
120
-
121
- #: classes/fieldAdapter.php:186
122
- msgid "id"
123
- msgstr "id"
124
-
125
- #: classes/frame.php:136
126
- msgid "You have no permissions to view this page"
127
- msgstr "Du har ikke rettigheder til at se denne side"
128
-
129
- #: classes/html.php:207
130
- msgid "Upload"
131
- msgstr "Upload"
132
-
133
- #: classes/html.php:611
134
- msgid "ON"
135
- msgstr "Tændt"
136
-
137
- #: classes/html.php:612
138
- msgid "OFF"
139
- msgstr "Sluttet"
140
-
141
- #: classes/html.php:636
142
- #, php-format
143
- msgid "Select %s"
144
- msgstr "Vælg %s"
145
-
146
- #: classes/modInstaller.php:34
147
- #, php-format
148
- msgid "Move files for %s failed"
149
- msgstr "Flytning af filer til %s mislykkedes"
150
-
151
- #: classes/modInstaller.php:37
152
- #, php-format
153
- msgid "%s is not plugin module"
154
- msgstr "%s er ikke et plugin modul"
155
-
156
- #: classes/modInstaller.php:76
157
- msgid "Can not create module directory. Try to set permission to "
158
- msgstr "Kan ikke oprette modul mappe. Forsøg at sætte tilladelse til"
159
-
160
- #: classes/modInstaller.php:103
161
- msgid "No modules were found in XML file"
162
- msgstr "Ingen moduler blev fundet i XML filen"
163
-
164
- #: classes/modInstaller.php:107
165
- msgid "Invalid XML file"
166
- msgstr "Ugyldig XML fil"
167
-
168
- #: classes/modInstaller.php:109
169
- msgid "No XML file were found"
170
- msgstr "Ingen XML fil blev ikke fundet"
171
-
172
- #: classes/modInstaller.php:128
173
- #, php-format
174
- msgid "Install %s failed"
175
- msgstr "Installation %s mislykkedes"
176
-
177
- #: classes/modInstaller.php:134
178
- msgid "Error Activate module"
179
- msgstr "Fejl aktiverings modul"
180
-
181
- #: classes/modInstaller.php:164
182
- msgid "Error Deactivation module"
183
- msgstr "Fejl deaktiverings modul"
184
-
185
- #: classes/modInstaller.php:185
186
- msgid "Error Activating module"
187
- msgstr "Fejl aktivering modul"
188
-
189
- #: classes/model.php:174 classes/model.php:186
190
- msgid "Database error detected"
191
- msgstr "Database fejl opdages"
192
-
193
- #: classes/model.php:176 modules/gmap/models/gmap.php:116
194
- #: modules/icons/models/icons.php:148
195
- #: modules/marker_groups/models/marker_groups.php:47
196
- msgid "Invalid ID"
197
- msgstr "Ugyldigt ID"
198
-
199
- #: classes/model.php:209
200
- msgid "Empty or invalid ID"
201
- msgstr "Tom eller ugyldigt ID"
202
-
203
- #: classes/table.php:277
204
- msgid "Nothig to update"
205
- msgstr "Intet at opdatere"
206
-
207
- #: classes/table.php:293
208
- msgid "Database error. Please contact your developer."
209
- msgstr "Database fejl. Kontakt din webudvikler."
210
-
211
- #: classes/tables/marker.php:7 classes/tables/marker_groups.php:8
212
- msgid "Map ID"
213
- msgstr "Kort ID"
214
-
215
- #: classes/tables/marker.php:8 classes/tables/marker_groups.php:9
216
- msgid "File name"
217
- msgstr "Fil navn"
218
-
219
- #: classes/tables/marker.php:9 classes/tables/marker_groups.php:10
220
- msgid "Description Of Map"
221
- msgstr "Beskrivelse af Kort"
222
-
223
- #: classes/tables/marker.php:10
224
- msgid "X coordinate if marker(lng)"
225
- msgstr "X koordinat, hvis markør(lng)"
226
-
227
- #: classes/tables/marker.php:11
228
- msgid "Y coordinate of marker(lat)"
229
- msgstr "Y koordinat, hvis markør(lat)"
230
-
231
- #: classes/tables/marker.php:12
232
- msgid "Path of icon file"
233
- msgstr "Sti til ikon fil"
234
-
235
- #: classes/tables/marker.php:13
236
- msgid "Map Id"
237
- msgstr "Kort ID"
238
-
239
- #: classes/tables/marker.php:14
240
- msgid "Marker Address"
241
- msgstr "Markør Adresse"
242
-
243
- #: classes/tables/marker.php:15
244
- msgid "Id of Marker's group"
245
- msgstr "Id af Markør gruppe"
246
-
247
- #: classes/tables/marker.php:16
248
- msgid "Animation"
249
- msgstr "Animation"
250
-
251
- #: classes/tables/marker.php:17 classes/tables/modules.php:10
252
- #: classes/tables/options.php:11
253
- msgid "Params"
254
- msgstr "Parametre"
255
-
256
- #: classes/tables/marker.php:18 classes/tables/options.php:15
257
- msgid "Sort Order"
258
- msgstr "Sorterings rækkefølge"
259
-
260
- #: classes/tables/marker.php:19
261
- msgid "Creation date"
262
- msgstr "Oprettelses dato"
263
-
264
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8
265
- #: classes/tables/options.php:10
266
- msgid "Label"
267
- msgstr "Mærke"
268
-
269
- #: classes/tables/modules.php:8 classes/tables/options.php:13
270
- msgid "Type"
271
- msgstr "Type"
272
-
273
- #: classes/tables/modules.php:9
274
- msgid "Active"
275
- msgstr "Aktiv"
276
-
277
- #: classes/tables/modules.php:11
278
- msgid "Has Tab"
279
- msgstr "Har fane"
280
-
281
- #: classes/tables/modules.php:12 classes/tables/options.php:12
282
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:53
283
- msgid "Description"
284
- msgstr "Beskrivelse"
285
-
286
- #: classes/tables/modules.php:13 classes/tables/options.php:8
287
- #: classes/tables/usage.php:9
288
- msgid "Code"
289
- msgstr "Kode"
290
-
291
- #: classes/tables/modules.php:14
292
- msgid "External plugin directory"
293
- msgstr "Ekstern plugin mappe"
294
-
295
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7
296
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:114
297
- msgid "ID"
298
- msgstr "ID"
299
-
300
- #: classes/tables/options.php:9
301
- msgid "Value"
302
- msgstr "Værdi"
303
-
304
- #: classes/tables/options.php:14
305
- msgid "Category ID"
306
- msgstr "Kategori ID"
307
-
308
- #: classes/tables/options.php:16
309
- msgid "Value Type"
310
- msgstr "Værdi Type"
311
-
312
- #: classes/tables/options_categories.php:8
313
- msgid "Method"
314
- msgstr "Metode"
315
-
316
- #: classes/tables/usage.php:8
317
- msgid "Usage id"
318
- msgstr "Brug id"
319
-
320
- #: classes/tables/usage.php:10
321
- msgid "Visits Count"
322
- msgstr "Besøgs antal"
323
-
324
- #: classes/validator.php:30
325
- #, php-format
326
- msgid "Invalid length for %s, max length is %s"
327
- msgstr "Ugyldig længde for %s, max længde er %s"
328
-
329
- #: classes/validator.php:43
330
- #, php-format
331
- msgid "Invalid numeric value for %s"
332
- msgstr "Ugyldig numerisk værdi for %s"
333
-
334
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
335
- #, php-format
336
- msgid "Please enter %s"
337
- msgstr "Indtast venligst %s"
338
-
339
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
340
- #, php-format
341
- msgid "Please select %s"
342
- msgstr "Vælg venligst %s"
343
-
344
- #: classes/validator.php:85 classes/validator.php:101
345
- #, php-format
346
- msgid "Invalid %s"
347
- msgstr "Ugyldigt %s"
348
-
349
- #: classes/validator.php:88
350
- #, php-format
351
- msgid "%s is already registered"
352
- msgstr "%s er allerede registreret"
353
-
354
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
355
- msgid "Exit Full Screen"
356
- msgstr "Afslut fuld skærm"
357
-
358
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
359
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
360
- msgid "Open Full Screen"
361
- msgstr "Åbn fuld skærm"
362
-
363
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:50
364
- msgid "Search address..."
365
- msgstr "Søg adresse ..."
366
-
367
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:85
368
- msgid "Reset"
369
- msgstr "Nulstil"
370
-
371
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:98
372
- msgid "Find"
373
- msgstr "Find"
374
-
375
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:112
376
- msgid "Please, type a search address."
377
- msgstr "Skriv en søgning adresse."
378
-
379
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:118
380
- msgid "Search area have no markers, please try to modify search criterias."
381
- msgstr "Søgt område har ingen markører, du kan forsøge at ændre søgekriterier."
382
-
383
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
384
- msgid "Get Direction"
385
- msgstr "Få Retning"
386
-
387
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:24
388
- msgid "Type the address..."
389
- msgstr "Skriv adressen..."
390
-
391
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:33
392
- msgid "or"
393
- msgstr "eller"
394
-
395
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:50
396
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
397
- msgid "Go"
398
- msgstr "Gå"
399
-
400
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
401
- msgid "The Geolocation service failed."
402
- msgstr "Den Geoplacering tjeneste mislykkedes."
403
-
404
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
405
- msgid "Your browser does not support geolocation."
406
- msgstr "Din webbrowser understøtter ikke geolocation."
407
-
408
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
409
- msgid "Route could not be found. Please, try to select another address!"
410
- msgstr "Ruten kunne ikke findes, så prøv at vælge en anden adresse!"
411
-
412
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
413
- msgid "Please, select address from search list!"
414
- msgstr "Vælg adresse fra søgelisten!"
415
-
416
- #: doc/google-maps-easy-pro/kml/controller.php:16
417
- msgid "Security check failed"
418
- msgstr "Sikkerhedscheck mislykkedes"
419
-
420
- #: doc/google-maps-easy-pro/license/mod.php:30
421
- #, php-format
422
- msgid ""
423
- "Your license is expired. Once you extend your license - you will be able to "
424
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
425
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
426
- "click on 'Re-activate' button to re-activate your PRO version."
427
- msgstr ""
428
- "Din licens er udløbet. Når du udvide din licens - vil du være i stand til at "
429
- "opdatere PRO versionen. For at udvide til PRO versionen - følg <a href='%s' "
430
- "target='_blank'>dette link</a>, - gå til <a href='%s'>License</a> fanen og "
431
- "klik på 'Genaktiver' knappen for at genaktivere din PRO version."
432
-
433
- #: doc/google-maps-easy-pro/license/mod.php:38
434
- #, php-format
435
- msgid ""
436
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
437
- "target='_blank'>click here</a> to extend your license, then - go to <a "
438
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
439
- "your PRO version."
440
- msgstr ""
441
- "Din licens til PRO version af %s plugin - udløbet. Du kan <a href='%s' "
442
- "target='_blank'>klik her</a> for at forlænge din licens, så - gå til <a "
443
- "href='%s'>License</a> fanen og klik på 'Genaktiver'knappen for at "
444
- "genaktivere din PRO versionen."
445
-
446
- #: doc/google-maps-easy-pro/license/mod.php:51
447
- msgid "License"
448
- msgstr "Licens"
449
-
450
- #: doc/google-maps-easy-pro/license/mod.php:74
451
- msgid "Activate License"
452
- msgstr "Aktiver licens"
453
-
454
- #: doc/google-maps-easy-pro/license/mod.php:76
455
- msgid "Renew License"
456
- msgstr "Forny licens"
457
-
458
- #: doc/google-maps-easy-pro/license/models/license.php:54
459
- msgid "Please enter your License Key"
460
- msgstr "Indtast venligst dit licens nøgle"
461
-
462
- #: doc/google-maps-easy-pro/license/models/license.php:56
463
- msgid "Please enter your Email address"
464
- msgstr "Indtast venligst din e-mail adresse"
465
-
466
- #: doc/google-maps-easy-pro/license/models/license.php:131
467
- msgid ""
468
- "There was a problem with sending request to our autentification server. "
469
- "Please try latter."
470
- msgstr ""
471
- "Der var et problem med at sende anmodning til vores godkendelses server. "
472
- "Prøv venligst senere."
473
-
474
- #: doc/google-maps-easy-pro/license/models/license.php:154
475
- #, php-format
476
- msgid "License for plugin %s will expire today."
477
- msgstr "Licens til plugin'et %s udløber i dag."
478
-
479
- #: doc/google-maps-easy-pro/license/models/license.php:156
480
- #, php-format
481
- msgid "License for plugin %s will expire tomorrow."
482
- msgstr "Licens til plugin'et %s udløber i morgen."
483
-
484
- #: doc/google-maps-easy-pro/license/models/license.php:158
485
- #, php-format
486
- msgid "License for plugin %s will expire in %d days."
487
- msgstr "Licens til plugin'et %s udløber om %d dage."
488
-
489
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
490
- #, php-format
491
- msgid ""
492
- "Congratulations! PRO version of %s plugin is activated and working fine!"
493
- msgstr "Tillykke! PRO version af %s plugin'et er aktiveret og fungerer fint!"
494
-
495
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
496
- #, php-format
497
- msgid ""
498
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
499
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
500
- "activate' button to re-activate your PRO version."
501
- msgstr ""
502
- "Din licens til PRO version af %s plugin'et er udløbet. <a href='%s' "
503
- "target='_blank'>Klik her</a> for at forlænge din licens, og klik på "
504
- "'genaktivere' knappen for at genaktivere din PRO version."
505
-
506
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
507
- #, php-format
508
- msgid ""
509
- "Congratulations! You have successfully installed PRO version of %s plugin. "
510
- "Final step to finish Your PRO version setup - is to enter your Email and "
511
- "License Key on this page. This will activate Your copy of software on this "
512
- "site."
513
- msgstr ""
514
- "Tillykke! Du har installeret PRO version af %s plugin'et. Sidste trin til at "
515
- "afslutte PRO version opsætning, er at indtaste din e-mail og licens nøgle "
516
- "på denne side. Dette vil aktivere din kopi af softwaren på dette websted."
517
-
518
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
519
- #: modules/supsystic_promo/mod.php:183
520
- msgid "Email"
521
- msgstr "E-mail"
522
-
523
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
524
- #, php-format
525
- msgid ""
526
- "Your email address, used on checkout procedure on <a href='%s' "
527
- "target='_blank'>%s</a>"
528
- msgstr ""
529
- "Din e-mail-adresse, som blev brugt da du købte PRO-licensen på hjemmesiden "
530
- "<a href='%s' target='_blank'>%s</a>"
531
-
532
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
533
- msgid "License Key"
534
- msgstr "Licens nøgle"
535
-
536
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
537
- #, php-format
538
- msgid ""
539
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
540
- msgstr "Din licensnøgle fra din konto på <a href='%s' target='_blank'>%s</a>"
541
-
542
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
543
- msgid "Re-activate"
544
- msgstr "Genaktiver"
545
-
546
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
547
- msgid "Activate"
548
- msgstr "Aktivere"
549
-
550
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:14
551
- msgid "Uncategorized"
552
- msgstr "Ikke kategoriseret"
553
-
554
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:51
555
- #: modules/gmap/views/gmap.php:115
556
- msgid "Title"
557
- msgstr "Titel"
558
-
559
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:55
560
- msgid "Directions"
561
- msgstr "Kørselsvejledning"
562
-
563
- #: doc/google-maps-easy-pro/wpUpdater.php:68
564
- msgid ""
565
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
566
- "onclick='document.location.reload(); return false;'>Try again</a>"
567
- msgstr ""
568
- "En uventet HTTP-fejl opstod under anmodningen af API.</p> <p><a href='?' "
569
- "onclick='document.location.reload(); return false;'>Prøv igen</a>"
570
-
571
- #: doc/google-maps-easy-pro/wpUpdater.php:73
572
- msgid "An unknown error occurred"
573
- msgstr "Der opstod en ukendt fejl"
574
-
575
- #: modules/adminmenu/controller.php:7
576
- msgid "Your name field is required."
577
- msgstr "Dit navne felt er påkrævet."
578
-
579
- #: modules/adminmenu/controller.php:8
580
- msgid "Your website field is required."
581
- msgstr "Din hjemmeside felt er påkrævet."
582
-
583
- #: modules/adminmenu/controller.php:9
584
- msgid "Your e-mail field is required."
585
- msgstr "Din e-mail felt er påkrævet."
586
-
587
- #: modules/adminmenu/controller.php:10
588
- msgid "Subject field is required."
589
- msgstr "Emne felt er påkrævet."
590
-
591
- #: modules/adminmenu/controller.php:11
592
- msgid "You must select a valid category."
593
- msgstr "Du skal vælge en gyldig kategori."
594
-
595
- #: modules/adminmenu/controller.php:12
596
- msgid "Message field is required."
597
- msgstr "Besked felt er påkrævet."
598
-
599
- #: modules/adminmenu/mod.php:13
600
- #, php-format
601
- msgid ""
602
- "Cool WordPress plugins from supsystic.com developers. I tried %s - and this "
603
- "was what I need! #supsystic.com"
604
- msgstr ""
605
- "Cool WordPress plugins fra supsystic.com udviklere. Jeg prøvede %s - og det "
606
- "var, hvad jeg har brug for! #supsystic.com"
607
-
608
- #: modules/adminmenu/mod.php:14 modules/options/mod.php:13
609
- msgid "Settings"
610
- msgstr "Indstillinger"
611
-
612
- #: modules/adminmenu/mod.php:15
613
- msgid "More plugins for your WordPress site here!"
614
- msgstr "Flere plugins til din WordPress webside her!"
615
-
616
- #: modules/adminmenu/mod.php:16 modules/adminmenu/mod.php:17
617
- #: modules/adminmenu/mod.php:18
618
- msgid "Spread the word!"
619
- msgstr "Spred ordet!"
620
-
621
- #: modules/csv/controller.php:45
622
- #, php-format
623
- msgid "Maps from %s - %s"
624
- msgstr "Kort fra %s - %s"
625
-
626
- #: modules/csv/controller.php:48
627
- msgid "You have no maps for now."
628
- msgstr "Du har ingen kort endnu."
629
-
630
- #: modules/csv/controller.php:87
631
- #, php-format
632
- msgid "Markers from %s"
633
- msgstr "Markør fra %s"
634
-
635
- #: modules/csv/controller.php:90
636
- msgid "You have no markers for now."
637
- msgstr "Du har ingen markører endnu."
638
-
639
- #: modules/csv/controller.php:124
640
- msgid "Missing File"
641
- msgstr "Manglende fil"
642
-
643
- #: modules/csv/controller.php:126
644
- #, php-format
645
- msgid "File uploaded with error code %s"
646
- msgstr "Fil uploadet med fejlkode %s"
647
-
648
- #: modules/csv/controller.php:208
649
- msgid ""
650
- "File should contain more then 1 row, at least 1 row should be for headers"
651
- msgstr ""
652
- "Filen bør indeholde mere end en række, mindst 1 række skal være for "
653
- "overskrifter"
654
-
655
- #: modules/csv/controller.php:210
656
- msgid "Empty data in file"
657
- msgstr "Ingen data i filen"
658
-
659
- #: modules/csv/mod.php:11
660
- msgid "Maps Import / Export"
661
- msgstr "Kort Import / Export"
662
-
663
- #: modules/csv/models/csv.php:133
664
- msgid "Can not detect import list type"
665
- msgstr "Kan ikke registrere import liste typen"
666
-
667
- #: modules/csv/models/csv.php:135
668
- msgid "Can not find fields names"
669
- msgstr "Kan ikke finde navne på felter "
670
-
671
- #: modules/csv/views/tpl/csvTabContent.php:9
672
- msgid "Maps"
673
- msgstr "Kort"
674
-
675
- #: modules/csv/views/tpl/csvTabContent.php:14
676
- #: modules/csv/views/tpl/csvTabContent.php:35
677
- msgid "Export"
678
- msgstr "Export"
679
-
680
- #: modules/csv/views/tpl/csvTabContent.php:19
681
- #: modules/csv/views/tpl/csvTabContent.php:40
682
- msgid "Import"
683
- msgstr "Import"
684
-
685
- #: modules/csv/views/tpl/csvTabContent.php:30 modules/gmap/views/gmap.php:117
686
- #: modules/gmap/views/tpl/gmapEditMap.php:17
687
- msgid "Markers"
688
- msgstr "Markør"
689
-
690
- #: modules/gmap/controller.php:23
691
- msgid "Map data not found"
692
- msgstr "Kort data blev ikke fundet"
693
-
694
- #: modules/gmap/mod.php:13
695
- msgid "Add Map"
696
- msgstr "Tilføj kort"
697
-
698
- #: modules/gmap/mod.php:16 modules/gmap/views/tpl/gmapEditMap.php:1044
699
- #: modules/marker_groups/mod.php:14
700
- msgid "Edit"
701
- msgstr "Rediger"
702
-
703
- #: modules/gmap/mod.php:19
704
- msgid "All Maps"
705
- msgstr "Alle kort"
706
-
707
- #: modules/gmap/mod.php:29
708
- msgid "No Map Found"
709
- msgstr "Ingen kort blev fundet"
710
-
711
- #: modules/gmap/mod.php:39
712
- msgid "Empty or Invalid Map ID"
713
- msgstr "Tom eller ugyldigt kort ID"
714
-
715
- #: modules/gmap/mod.php:58
716
- msgid "Top Center"
717
- msgstr "Øverst enter"
718
-
719
- #: modules/gmap/mod.php:59
720
- msgid "Top Left"
721
- msgstr "Øverst til venstre"
722
-
723
- #: modules/gmap/mod.php:60
724
- msgid "Top Right"
725
- msgstr "Øverst til højre"
726
-
727
- #: modules/gmap/mod.php:61
728
- msgid "Left Top"
729
- msgstr "Venstre øverst "
730
-
731
- #: modules/gmap/mod.php:62
732
- msgid "Right Top"
733
- msgstr "Højre øverst "
734
-
735
- #: modules/gmap/mod.php:63
736
- msgid "Left Center"
737
- msgstr "Venstre center"
738
-
739
- #: modules/gmap/mod.php:64
740
- msgid "Right Center"
741
- msgstr "Højre center"
742
-
743
- #: modules/gmap/mod.php:65
744
- msgid "Left Bottom"
745
- msgstr "Venstre bund"
746
-
747
- #: modules/gmap/mod.php:66
748
- msgid "Right Bottom"
749
- msgstr "Højre bund"
750
-
751
- #: modules/gmap/mod.php:67
752
- msgid "Bottom Center"
753
- msgstr "Center bund"
754
-
755
- #: modules/gmap/mod.php:68
756
- msgid "Bottom Left"
757
- msgstr "Venstre bund"
758
-
759
- #: modules/gmap/mod.php:69
760
- msgid "Bottom Right"
761
- msgstr "Højre bund"
762
-
763
- #: modules/gmap/mod.php:92
764
- msgid "Slider"
765
- msgstr "Slider"
766
-
767
- #: modules/gmap/mod.php:93
768
- msgid "Slider - Title and Img"
769
- msgstr "Slider - Title og Img"
770
-
771
- #: modules/gmap/mod.php:94 modules/gmap/mod.php:96
772
- msgid "Slider Vertical - Title and Img"
773
- msgstr "Slider Vertical - Title og Img"
774
-
775
- #: modules/gmap/mod.php:95
776
- msgid "Slider Vertical - Title and Description"
777
- msgstr "Slider Vertical - Titel og beskrivelse"
778
-
779
- #: modules/gmap/mod.php:97
780
- msgid "Slider Table"
781
- msgstr "Slider Table"
782
-
783
- #: modules/gmap/models/gmap.php:78
784
- msgid "Please enter Map Name"
785
- msgstr "Indtast venligst Kort navn"
786
-
787
- #: modules/gmap/models/gmap.php:107
788
- #: modules/marker_groups/models/marker_groups.php:80
789
- msgid "Empty Params"
790
- msgstr "Tomme parametre"
791
-
792
- #: modules/gmap/views/gmap.php:116
793
- msgid "Html options"
794
- msgstr "Html muligheder"
795
-
796
- #: modules/gmap/views/gmap.php:118
797
- msgid "Operations"
798
- msgstr "Operationer"
799
-
800
- #: modules/gmap/views/gmap.php:155 modules/gmap/views/gmap.php:161
801
- #: modules/gmap/views/tpl/gmapEditMap.php:104
802
- #: modules/gmap/views/tpl/gmapEditMap.php:132
803
- #: modules/gmap/views/tpl/gmapEditMap.php:398 modules/marker/mod.php:20
804
- msgid "None"
805
- msgstr "Ingen"
806
-
807
- #: modules/gmap/views/tpl/gmapAdmin.php:5
808
- #: modules/gmap/views/tpl/gmapAdmin.php:8
809
- #: modules/marker_groups/views/tpl/mgrAdmin.php:10
810
- #: modules/marker_groups/views/tpl/mgrAdmin.php:13
811
- msgid "Delete selected"
812
- msgstr "Slet valgte"
813
-
814
- #: modules/gmap/views/tpl/gmapAdmin.php:11
815
- #: modules/marker_groups/views/tpl/mgrAdmin.php:16
816
- msgid "Clear All"
817
- msgstr "Slet alt"
818
-
819
- #: modules/gmap/views/tpl/gmapAdmin.php:13
820
- #: modules/marker_groups/views/tpl/mgrAdmin.php:18
821
- msgid "Clear"
822
- msgstr "Slet"
823
-
824
- #: modules/gmap/views/tpl/gmapAdmin.php:16
825
- #: modules/gmap/views/tpl/gmapAdmin.php:17
826
- #: modules/marker_groups/views/tpl/mgrAdmin.php:21
827
- #: modules/marker_groups/views/tpl/mgrAdmin.php:22
828
- msgid "Search"
829
- msgstr "Søg"
830
-
831
- #: modules/gmap/views/tpl/gmapAdmin.php:26
832
- #, php-format
833
- msgid ""
834
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
835
- "a> your first Map!"
836
- msgstr ""
837
- "Du har ingen kort endnu. <a href='%s' style='font-style: italic;'>Opret</a> "
838
- "your first Map!"
839
-
840
- #: modules/gmap/views/tpl/gmapDrawMap.php:3
841
- msgid "Map not found"
842
- msgstr "Kort ikke fundet"
843
-
844
- #: modules/gmap/views/tpl/gmapEditMap.php:2
845
- #, php-format
846
- msgid ""
847
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
848
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
849
- msgstr ""
850
- "Denne indstilling er kun tilgængelig i <a target='_blank' href='%s'>PRO "
851
- "versionen</a>, du kan få det <a target='_blank' href='%s'>her.</a>"
852
-
853
- #: modules/gmap/views/tpl/gmapEditMap.php:13
854
- msgid "Map Properties"
855
- msgstr "Kort Egenskaber"
856
-
857
- #: modules/gmap/views/tpl/gmapEditMap.php:20
858
- msgid "Add New Marker"
859
- msgstr "Tilføj ny Markør"
860
-
861
- #: modules/gmap/views/tpl/gmapEditMap.php:31
862
- msgid "Map Name"
863
- msgstr "Kort navn"
864
-
865
- #: modules/gmap/views/tpl/gmapEditMap.php:33
866
- msgid "Your map name"
867
- msgstr "Dit kort navn"
868
-
869
- #: modules/gmap/views/tpl/gmapEditMap.php:45
870
- msgid "Map Width"
871
- msgstr "Kort Bredde"
872
-
873
- #: modules/gmap/views/tpl/gmapEditMap.php:47
874
- msgid "Your map width"
875
- msgstr "Dit kort bredde"
876
-
877
- #: modules/gmap/views/tpl/gmapEditMap.php:56
878
- #: modules/gmap/views/tpl/gmapEditMap.php:81
879
- #: modules/gmap/views/tpl/gmapEditMap.php:697
880
- #: modules/gmap/views/tpl/gmapEditMap.php:740
881
- msgid "Pixels"
882
- msgstr "Pixels"
883
-
884
- #: modules/gmap/views/tpl/gmapEditMap.php:59
885
- #: modules/gmap/views/tpl/gmapEditMap.php:84
886
- #: modules/gmap/views/tpl/gmapEditMap.php:703
887
- #: modules/gmap/views/tpl/gmapEditMap.php:746
888
- msgid "Px"
889
- msgstr "Px"
890
-
891
- #: modules/gmap/views/tpl/gmapEditMap.php:63
892
- msgid "Percents"
893
- msgstr "Procenter"
894
-
895
- #: modules/gmap/views/tpl/gmapEditMap.php:70
896
- msgid "Map Height"
897
- msgstr "Kort højde"
898
-
899
- #: modules/gmap/views/tpl/gmapEditMap.php:72
900
- msgid "Your map height"
901
- msgstr "Dit kort højde"
902
-
903
- #: modules/gmap/views/tpl/gmapEditMap.php:97
904
- msgid "Map type control"
905
- msgstr "Kort typen kontrol"
906
-
907
- #: modules/gmap/views/tpl/gmapEditMap.php:99
908
- msgid ""
909
- "Control view for map type - you can see it in right upper corner by default"
910
- msgstr ""
911
- "Kontrol visning for kort type - du kan se det i øverste højre hjørne som "
912
- "standard"
913
-
914
- #: modules/gmap/views/tpl/gmapEditMap.php:104
915
- msgid "Dropdown Menu"
916
- msgstr "Rul ned menu"
917
-
918
- #: modules/gmap/views/tpl/gmapEditMap.php:104
919
- msgid "Horizontal Bar"
920
- msgstr "Vandret Bar"
921
-
922
- #: modules/gmap/views/tpl/gmapEditMap.php:110
923
- msgid "Change type control position on map"
924
- msgstr "Skift type kontrolsted på kortet"
925
-
926
- #: modules/gmap/views/tpl/gmapEditMap.php:117
927
- #: modules/gmap/views/tpl/gmapEditMap.php:145
928
- #: modules/gmap/views/tpl/gmapEditMap.php:177
929
- #: modules/gmap/views/tpl/gmapEditMap.php:308
930
- #: modules/gmap/views/tpl/gmapEditMap.php:325
931
- #: modules/gmap/views/tpl/gmapEditMap.php:342
932
- #: modules/gmap/views/tpl/gmapEditMap.php:371
933
- #: modules/gmap/views/tpl/gmapEditMap.php:459
934
- #: modules/gmap/views/tpl/gmapEditMap.php:529
935
- #: modules/gmap/views/tpl/gmapEditMap.php:555
936
- #: modules/gmap/views/tpl/gmapEditMap.php:581
937
- #: modules/gmap/views/tpl/gmapEditMap.php:644
938
- #: modules/gmap/views/tpl/gmapEditMap.php:661
939
- #: modules/options/views/tpl/optionsSettingsTabContent.php:69
940
- msgid "PRO option"
941
- msgstr "PRO indstilling"
942
-
943
- #: modules/gmap/views/tpl/gmapEditMap.php:125
944
- msgid "Zoom control"
945
- msgstr "Zoom kontrol"
946
-
947
- #: modules/gmap/views/tpl/gmapEditMap.php:127
948
- msgid ""
949
- "Zoom control type on your map. Note, to view Zoom control on the map the "
950
- "Custom Map Controls option must be disabled."
951
- msgstr ""
952
- "Zoom kontrol type på dit kort. Bemærk, for at se zoom kontrol på kortet skal "
953
- "'Brugerdefineret Kort Controls'-muligheden være deaktiveret."
954
-
955
- #: modules/gmap/views/tpl/gmapEditMap.php:132
956
- #: modules/gmap/views/tpl/gmapEditMap.php:407
957
- msgid "Default"
958
- msgstr "Standard"
959
-
960
- #: modules/gmap/views/tpl/gmapEditMap.php:138
961
- msgid "Change zoom control position on map"
962
- msgstr "Skift zoom kontrol position på kortet"
963
-
964
- #: modules/gmap/views/tpl/gmapEditMap.php:148
965
- msgid "Notice"
966
- msgstr "Varsel"
967
-
968
- #: modules/gmap/views/tpl/gmapEditMap.php:150
969
- msgid ""
970
- "Standard Zoom control will not displaying for this map, because the Custom "
971
- "Map Controls option enabled now."
972
- msgstr ""
973
- "Standard Zoom kontrol vil ikke vise for dette kort, fordi Custom Map "
974
- "Controls indstillingen er aktiveret nu."
975
-
976
- #: modules/gmap/views/tpl/gmapEditMap.php:158
977
- msgid "Street view control"
978
- msgstr "Street view kontrol"
979
-
980
- #: modules/gmap/views/tpl/gmapEditMap.php:160
981
- msgid "Street view control usually is located on left upper corner of your map"
982
- msgstr ""
983
- "Street view kontrol normalt er placeret på venstre øverste hjørne af dit kort"
984
-
985
- #: modules/gmap/views/tpl/gmapEditMap.php:170
986
- msgid "Change street view control position on map"
987
- msgstr "Skift street view kontrolsted på kortet"
988
-
989
- #: modules/gmap/views/tpl/gmapEditMap.php:230
990
- msgid "Draggable"
991
- msgstr "Draggable"
992
-
993
- #: modules/gmap/views/tpl/gmapEditMap.php:232
994
- msgid "Enable or disable possibility to drag your map using mouse"
995
- msgstr ""
996
- "Aktivere eller deaktivere muligheden for at trække kortet ved hjælp af musen"
997
-
998
- #: modules/gmap/views/tpl/gmapEditMap.php:243
999
- msgid "Double click to zoom"
1000
- msgstr "Dobbeltklik for at zoome"
1001
-
1002
- #: modules/gmap/views/tpl/gmapEditMap.php:245
1003
- msgid ""
1004
- "By default double left click on map will zoom it in. But you can change this "
1005
- "here."
1006
- msgstr ""
1007
- "Som standard dobbelt venstre klik på kortet vil zoome det i. Men du kan "
1008
- "ændre dette her."
1009
-
1010
- #: modules/gmap/views/tpl/gmapEditMap.php:256
1011
- msgid "Mouse wheel to zoom"
1012
- msgstr "Musehjulet til at zoome"
1013
-
1014
- #: modules/gmap/views/tpl/gmapEditMap.php:258
1015
- msgid ""
1016
- "Sometimes you need to disable possibility to zoom your map using mouse "
1017
- "wheel. This can be required for example - if you need to use your wheel for "
1018
- "some other action, for example scroll your site even if mouse is over your "
1019
- "map."
1020
- msgstr ""
1021
- "Nogle gange er du nødt til at deaktivere muligheden for at zoome dit kort "
1022
- "med musehjulet. Dette kan være nødvendigt. Foreksempel - hvis du skal bruge "
1023
- "din hjul til en anden handling, for eksempel rulle dit websted, selvom musen "
1024
- "er over dit kort."
1025
-
1026
- #: modules/gmap/views/tpl/gmapEditMap.php:269
1027
- msgid "Google Map Theme"
1028
- msgstr "Google kort Theme"
1029
-
1030
- #: modules/gmap/views/tpl/gmapEditMap.php:271
1031
- msgid ""
1032
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
1033
- "Terrain - here. By default your map will have Road Map Google maps theme."
1034
- msgstr ""
1035
- "Du kan vælge din Google kort tema - Vejkort, Hybrid, Satellit eller Terræn - "
1036
- "her. Som standard din kort vil have kort vejkort Google tema."
1037
-
1038
- #: modules/gmap/views/tpl/gmapEditMap.php:275
1039
- msgid "Road Map"
1040
- msgstr "Vej Kort"
1041
-
1042
- #: modules/gmap/views/tpl/gmapEditMap.php:275
1043
- msgid "Hybrid"
1044
- msgstr "Hybrid"
1045
-
1046
- #: modules/gmap/views/tpl/gmapEditMap.php:275
1047
- msgid "Satellite"
1048
- msgstr "Satellit"
1049
-
1050
- #: modules/gmap/views/tpl/gmapEditMap.php:275
1051
- msgid "Terrain"
1052
- msgstr "Terræn"
1053
-
1054
- #: modules/gmap/views/tpl/gmapEditMap.php:283
1055
- msgid "Map Stylization"
1056
- msgstr "Kort stilisering"
1057
-
1058
- #: modules/gmap/views/tpl/gmapEditMap.php:285
1059
- msgid ""
1060
- "Make your map unique with our Map Themes, just try to change it here - and "
1061
- "you will see results on your Map Preview."
1062
- msgstr ""
1063
- "Gør dit kort unik med vores kort temaer, bare prøve at ændre det her - og du "
1064
- "vil se resultater på din Map Eksempel."
1065
-
1066
- #: modules/gmap/views/tpl/gmapEditMap.php:295
1067
- msgid "Get 300+ Themes with PRO"
1068
- msgstr "Få 300+ Themes med PRO"
1069
-
1070
- #: modules/gmap/views/tpl/gmapEditMap.php:303
1071
- msgid "Traffic Layer"
1072
- msgstr "Trafik lag"
1073
-
1074
- #: modules/gmap/views/tpl/gmapEditMap.php:305
1075
- msgid "Add real-time traffic information to your map."
1076
- msgstr "Tilføj real-time trafikinformation til dit kort."
1077
-
1078
- #: modules/gmap/views/tpl/gmapEditMap.php:320
1079
- msgid "Transit Layer"
1080
- msgstr "Transit Lag"
1081
-
1082
- #: modules/gmap/views/tpl/gmapEditMap.php:322
1083
- msgid ""
1084
- "Display the public transit network of a city on your map. When the Transit "
1085
- "Layer is enabled, and the map is centered on a city that supports transit "
1086
- "information, the map will display major transit lines as thick, colored "
1087
- "lines."
1088
- msgstr ""
1089
- "Vis offentlig transport vejnet af en by på kortet. Når Transit Lag er "
1090
- "aktiveret, og kortet er centreret om en by, der understøtter transit "
1091
- "oplysninger, vil kortet vise store transit linjer som tykke, farvede linjer."
1092
-
1093
- #: modules/gmap/views/tpl/gmapEditMap.php:337
1094
- msgid "Bicycling Layer"
1095
- msgstr "Cykel Lag"
1096
-
1097
- #: modules/gmap/views/tpl/gmapEditMap.php:339
1098
- msgid ""
1099
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1100
- "to bicycling usage on top of the given map.Dark green routes indicated "
1101
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1102
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1103
- "for bicycle usage."
1104
- msgstr ""
1105
- "Tilføj et lag af cykelstier, foreslog cykelruter og andre overlejringer "
1106
- "specifikke for cykling brug på toppen af de givne kort. Mørke grønne ruter "
1107
- "angivne dedikerede cykelruter. Lysegrønne ruter indikerer gader med "
1108
- "dedikerede 'cykelstier.' Stiplede ruter indikerer gader eller stier ellers "
1109
- "anbefales til brug cykel."
1110
-
1111
- #: modules/gmap/views/tpl/gmapEditMap.php:354
1112
- msgid "Marker Title color"
1113
- msgstr "Markør Titel farve"
1114
-
1115
- #: modules/gmap/views/tpl/gmapEditMap.php:356
1116
- msgid "You can set your markers title color here"
1117
- msgstr "Du kan indstille din markører titel farve her"
1118
-
1119
- #: modules/gmap/views/tpl/gmapEditMap.php:366
1120
- msgid "Markers List"
1121
- msgstr "Markør Liste"
1122
-
1123
- #: modules/gmap/views/tpl/gmapEditMap.php:368
1124
- msgid ""
1125
- "Display all map markers - as list bellow Your map. This will help your users "
1126
- "get more info about your markers and find required marker more faster."
1127
- msgstr ""
1128
- "Vis alle kort markører - som listen nedenfor dit kort. Dette vil hjælpe dine "
1129
- "brugere få mere info om dine markører og find ønskede markør mere hurtigere."
1130
-
1131
- #: modules/gmap/views/tpl/gmapEditMap.php:375
1132
- msgid "Select Markers List type"
1133
- msgstr "Vælg Markør List type"
1134
-
1135
- #: modules/gmap/views/tpl/gmapEditMap.php:381
1136
- msgid "Markers List Color"
1137
- msgstr "Markør Liste farver"
1138
-
1139
- #: modules/gmap/views/tpl/gmapEditMap.php:392
1140
- msgid "Markers Clusterization"
1141
- msgstr "Markør Clasterization"
1142
-
1143
- #: modules/gmap/views/tpl/gmapEditMap.php:394
1144
- msgid ""
1145
- "If you have many markers - you can have a problems with viewing them when "
1146
- "zoom out for example: they will just cover each-other. Marker clusterization "
1147
- "can solve this problem by grouping your markers in groups when they are too "
1148
- "close to each-other."
1149
- msgstr ""
1150
- "Hvis du har mange markører - du kan have en problemer med at se dem, når du "
1151
- "zoomer ud for eksempel: de vil bare dække hver-anden. Marker clasterization "
1152
- "kan løse dette problem ved at gruppere dine markører i grupper, når de er "
1153
- "for tæt på hinanden-andet."
1154
-
1155
- #: modules/gmap/views/tpl/gmapEditMap.php:398
1156
- msgid "Base Clusterization"
1157
- msgstr "Base Clasterization"
1158
-
1159
- #: modules/gmap/views/tpl/gmapEditMap.php:403
1160
- msgid "Cluster Icon"
1161
- msgstr "Claster Ikon"
1162
-
1163
- #: modules/gmap/views/tpl/gmapEditMap.php:406
1164
- #: modules/gmap/views/tpl/gmapEditMap.php:853
1165
- msgid "Upload Icon"
1166
- msgstr "Upload Ikon"
1167
-
1168
- #: modules/gmap/views/tpl/gmapEditMap.php:448
1169
- msgid "Custom Map Controls"
1170
- msgstr "Tilpasset Kort kontrol"
1171
-
1172
- #: modules/gmap/views/tpl/gmapEditMap.php:453
1173
- msgid "Add custom map controls to the map."
1174
- msgstr "Tilføj brugerdefinerede kort til at kontroller kortet."
1175
-
1176
- #: modules/gmap/views/tpl/gmapEditMap.php:469
1177
- msgid "Controls type"
1178
- msgstr "Kontrol type"
1179
-
1180
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1181
- msgid "Square"
1182
- msgstr "Firkant"
1183
-
1184
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1185
- msgid "Rounded edges"
1186
- msgstr "Afrundede kanter"
1187
-
1188
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1189
- msgid "Round"
1190
- msgstr "Rund"
1191
-
1192
- #: modules/gmap/views/tpl/gmapEditMap.php:478
1193
- msgid "Background color"
1194
- msgstr "Baggrundsfarve"
1195
-
1196
- #: modules/gmap/views/tpl/gmapEditMap.php:486
1197
- msgid "Text color"
1198
- msgstr "Tekst farve"
1199
-
1200
- #: modules/gmap/views/tpl/gmapEditMap.php:494
1201
- msgid "Controls position"
1202
- msgstr "Kontrol positioner"
1203
-
1204
- #: modules/gmap/views/tpl/gmapEditMap.php:504
1205
- msgid "Min Search Radius"
1206
- msgstr "Minimum søgning Radius"
1207
-
1208
- #: modules/gmap/views/tpl/gmapEditMap.php:512
1209
- msgid "Max Search Radius"
1210
- msgstr "Max søgning Radius"
1211
-
1212
- #: modules/gmap/views/tpl/gmapEditMap.php:524
1213
- msgid "Full Screen Button"
1214
- msgstr "Fuld skærm Knap"
1215
-
1216
- #: modules/gmap/views/tpl/gmapEditMap.php:526
1217
- msgid "Add a button on map to open it full screen."
1218
- msgstr "Tilføj en knap på kortet for at åbne den fuld skærm."
1219
-
1220
- #: modules/gmap/views/tpl/gmapEditMap.php:544
1221
- msgid "Directions Button"
1222
- msgstr "Kørselsvejledning knap"
1223
-
1224
- #: modules/gmap/views/tpl/gmapEditMap.php:549
1225
- msgid ""
1226
- "Add a button at marker description to get direction from the entered address "
1227
- "to the marker."
1228
- msgstr ""
1229
- "Tilføje en knap ved markering beskrivelse for at få retning fra den angivne "
1230
- "adresse til markøren."
1231
-
1232
- #: modules/gmap/views/tpl/gmapEditMap.php:570
1233
- msgid "Add KML layers"
1234
- msgstr "Tilføj KML lag"
1235
-
1236
- #: modules/gmap/views/tpl/gmapEditMap.php:575
1237
- msgid "Add KML files to display custom layers on the map."
1238
- msgstr "Tilføj KML-filer til at vise brugerdefinerede lag på kortet."
1239
-
1240
- #: modules/gmap/views/tpl/gmapEditMap.php:588
1241
- msgid "Enter KML file URL"
1242
- msgstr "Indtast KML fil URL"
1243
-
1244
- #: modules/gmap/views/tpl/gmapEditMap.php:600
1245
- msgid "X"
1246
- msgstr "X"
1247
-
1248
- #: modules/gmap/views/tpl/gmapEditMap.php:622
1249
- msgid "or Upload KML file"
1250
- msgstr "eller upload KML fil"
1251
-
1252
- #: modules/gmap/views/tpl/gmapEditMap.php:632
1253
- msgid "Add more files"
1254
- msgstr "Tilføj flere filer"
1255
-
1256
- #: modules/gmap/views/tpl/gmapEditMap.php:639
1257
- msgid "Hide POI"
1258
- msgstr "Skjul POI"
1259
-
1260
- #: modules/gmap/views/tpl/gmapEditMap.php:641
1261
- msgid ""
1262
- "Hide the Points Of Interest - landmark or other object, the marked points on "
1263
- "the map, for example: hotels, campsites, fuel stations etc."
1264
- msgstr ""
1265
- "Skjul seværdigheder - skelsættende eller en anden genstand, de markerede "
1266
- "punkter på kortet, for eksempel: hoteller, campingpladser, tankstationer mv"
1267
-
1268
- #: modules/gmap/views/tpl/gmapEditMap.php:656
1269
- msgid "Center on current user location"
1270
- msgstr "Center på aktuelle bruger placering"
1271
-
1272
- #: modules/gmap/views/tpl/gmapEditMap.php:658
1273
- msgid "On frontend map will be centered on current user location."
1274
- msgstr "På kortet vil være centreret om aktuelle bruger placering."
1275
-
1276
- #: modules/gmap/views/tpl/gmapEditMap.php:673
1277
- msgid "Markers Info Window Width"
1278
- msgstr "Markør Info window Bredde"
1279
-
1280
- #: modules/gmap/views/tpl/gmapEditMap.php:675
1281
- msgid "Width of markers info windows."
1282
- msgstr "Bredde af markører info vinduer."
1283
-
1284
- #: modules/gmap/views/tpl/gmapEditMap.php:692
1285
- #: modules/gmap/views/tpl/gmapEditMap.php:735
1286
- msgid "Auto"
1287
- msgstr "Auto"
1288
-
1289
- #: modules/gmap/views/tpl/gmapEditMap.php:716
1290
- msgid "Markers Info Window Height"
1291
- msgstr "Markør Info window Højde"
1292
-
1293
- #: modules/gmap/views/tpl/gmapEditMap.php:718
1294
- msgid "Height of markers info windows."
1295
- msgstr "Højde af markører info vinduer."
1296
-
1297
- #: modules/gmap/views/tpl/gmapEditMap.php:759
1298
- msgid "Markers Info Window Background"
1299
- msgstr "Markør Info window Baggrund"
1300
-
1301
- #: modules/gmap/views/tpl/gmapEditMap.php:761
1302
- msgid "Background color of markers info windows."
1303
- msgstr "Baggrundsfarve af markører info vinduer."
1304
-
1305
- #: modules/gmap/views/tpl/gmapEditMap.php:771
1306
- msgid "Min Zoom Level"
1307
- msgstr "Min. Zoom niveau"
1308
-
1309
- #: modules/gmap/views/tpl/gmapEditMap.php:773
1310
- msgid "Sets min zoom level for map."
1311
- msgstr "Angiv min. zoom-niveau for kortet."
1312
-
1313
- #: modules/gmap/views/tpl/gmapEditMap.php:785
1314
- msgid "Max Zoom Level"
1315
- msgstr "Max Zoom niveau"
1316
-
1317
- #: modules/gmap/views/tpl/gmapEditMap.php:787
1318
- msgid "Sets max zoom level for map."
1319
- msgstr "Angiv max zoom-niveau for kortet."
1320
-
1321
- #: modules/gmap/views/tpl/gmapEditMap.php:812
1322
- msgid "Marker Name"
1323
- msgstr "Markør Navn"
1324
-
1325
- #: modules/gmap/views/tpl/gmapEditMap.php:814
1326
- msgid "Your marker title"
1327
- msgstr "Din markør titel"
1328
-
1329
- #: modules/gmap/views/tpl/gmapEditMap.php:825
1330
- msgid "Marker Description"
1331
- msgstr "Markør Beskrivelse"
1332
-
1333
- #: modules/gmap/views/tpl/gmapEditMap.php:827
1334
- msgid ""
1335
- "Write here all text, that you want to appear in marker info-window PopUp"
1336
- msgstr "Skriv her alt tekst, som du vil have vist i markør info-vindue 'PopUp'"
1337
-
1338
- #: modules/gmap/views/tpl/gmapEditMap.php:843
1339
- msgid "Icon"
1340
- msgstr "Ikon"
1341
-
1342
- #: modules/gmap/views/tpl/gmapEditMap.php:845
1343
- msgid "Your marker Icon, that will appear on your map for this marker"
1344
- msgstr "Dit markør ikon, vil der vises på dit kort for denne markør"
1345
-
1346
- #: modules/gmap/views/tpl/gmapEditMap.php:852
1347
- msgid "Choose Icon"
1348
- msgstr "Vælg Ikon"
1349
-
1350
- #: modules/gmap/views/tpl/gmapEditMap.php:865
1351
- msgid "Search your location by address, just start typing here"
1352
- msgstr "Søg din placering efter adresse, bare ved at begynde at skrive her"
1353
-
1354
- #: modules/gmap/views/tpl/gmapEditMap.php:877
1355
- msgid "Latitude"
1356
- msgstr "Latitude"
1357
-
1358
- #: modules/gmap/views/tpl/gmapEditMap.php:879
1359
- msgid "Latitude for your marker"
1360
- msgstr "Latitude til din markør"
1361
-
1362
- #: modules/gmap/views/tpl/gmapEditMap.php:891
1363
- msgid "Longitude"
1364
- msgstr "Longitude"
1365
-
1366
- #: modules/gmap/views/tpl/gmapEditMap.php:893
1367
- msgid "Longitude for your marker"
1368
- msgstr "Longitude for din markør"
1369
-
1370
- #: modules/gmap/views/tpl/gmapEditMap.php:905
1371
- msgid "Show description by default"
1372
- msgstr "Vis beskrivelse som standard"
1373
-
1374
- #: modules/gmap/views/tpl/gmapEditMap.php:907
1375
- msgid "Open marker description when map load"
1376
- msgstr "Åben markør beskrivelse, når kortet er hentet"
1377
-
1378
- #: modules/gmap/views/tpl/gmapEditMap.php:917
1379
- msgid "Marker Link"
1380
- msgstr "Markør link"
1381
-
1382
- #: modules/gmap/views/tpl/gmapEditMap.php:919
1383
- msgid "Link for opening by click on the marker"
1384
- msgstr "Link til åbning ved at klikke på markør"
1385
-
1386
- #: modules/gmap/views/tpl/gmapEditMap.php:934
1387
- msgid "Open in new window"
1388
- msgstr "Åben i nyt vindue"
1389
-
1390
- #: modules/gmap/views/tpl/gmapEditMap.php:942
1391
- msgid "Show description by mouse hover"
1392
- msgstr "Vis beskrivelse ved at kører musen henover"
1393
-
1394
- #: modules/gmap/views/tpl/gmapEditMap.php:944
1395
- msgid "Open marker description by mouse hover"
1396
- msgstr "Åbn markør beskrivelse, kør musen henover"
1397
-
1398
- #: modules/gmap/views/tpl/gmapEditMap.php:954
1399
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:18
1400
- msgid "Marker Category"
1401
- msgstr "Markør Kategori"
1402
-
1403
- #: modules/gmap/views/tpl/gmapEditMap.php:956
1404
- msgid "Choose marker category"
1405
- msgstr "Vælg markør kategori"
1406
-
1407
- #: modules/gmap/views/tpl/gmapEditMap.php:986
1408
- msgid "Map shortcode"
1409
- msgstr "Kort 'shortcode'"
1410
-
1411
- #: modules/gmap/views/tpl/gmapEditMap.php:991
1412
- msgid "PHP code"
1413
- msgstr "PHP kode"
1414
-
1415
- #: modules/gmap/views/tpl/gmapEditMap.php:997
1416
- msgid "Shortcode will appear after you save map."
1417
- msgstr "'Shortcode' kommer frem efter du har gemt kortet."
1418
-
1419
- #: modules/gmap/views/tpl/gmapEditMap.php:1005
1420
- msgid "Save Map"
1421
- msgstr "Gem kort"
1422
-
1423
- #: modules/gmap/views/tpl/gmapEditMap.php:1011
1424
- msgid "Delete Map"
1425
- msgstr "Slet kort"
1426
-
1427
- #: modules/gmap/views/tpl/gmapEditMap.php:1020
1428
- msgid "Save Marker"
1429
- msgstr "Gem Markør"
1430
-
1431
- #: modules/gmap/views/tpl/gmapEditMap.php:1026
1432
- msgid "Delete Marker"
1433
- msgstr "Slet Markør"
1434
-
1435
- #: modules/gmap/views/tpl/gmapEditMap.php:1047
1436
- msgid "Delete"
1437
- msgstr "Slet"
1438
-
1439
- #: modules/gmap/views/tpl/gmapEditMap.php:1074
1440
- msgid "Show markers list with your map on frontend"
1441
- msgstr "Vis markører listen med dit kort"
1442
-
1443
- #: modules/gmap/views/tpl/gmapEditMap.php:1081
1444
- #: modules/gmap/views/tpl/gmapEditMap.php:1082
1445
- msgid "Apply"
1446
- msgstr "Anvend"
1447
-
1448
- #: modules/gmap/views/tpl/gmapEditMap.php:1081
1449
- msgid "Selected"
1450
- msgstr "Valgt"
1451
-
1452
- #: modules/gmap/views/tpl/gmapEditMap.php:1082
1453
- msgid "Available in PRO"
1454
- msgstr "Tilgængelig i PRO"
1455
-
1456
- #: modules/gmap/views/tpl/gmapListMarkers.php:20
1457
- #, php-format
1458
- msgid "and %s more"
1459
- msgstr "og %s mere"
1460
-
1461
- #: modules/gmap_widget/mod.php:18
1462
- msgid "Displays Most Viewed Products"
1463
- msgstr "Viser mest viste produkter"
1464
-
1465
- #: modules/gmap_widget/views/gmap_widget.php:15
1466
- msgid "You have no maps"
1467
- msgstr "Du har ingen kort"
1468
-
1469
- #: modules/gmap_widget/views/tpl/form.php:10
1470
- msgid "Select map"
1471
- msgstr "Vælg kort"
1472
-
1473
- #: modules/gmap_widget/views/tpl/form.php:18
1474
- msgid "Widget Map width"
1475
- msgstr "Widget Kort bredde"
1476
-
1477
- #: modules/gmap_widget/views/tpl/form.php:25
1478
- msgid "Widget Map height"
1479
- msgstr "Widget Kort højde"
1480
-
1481
- #: modules/gmap_widget/views/tpl/form.php:32
1482
- msgid "Display as image"
1483
- msgstr "Vis som billede"
1484
-
1485
- #: modules/gmap_widget/views/tpl/form.php:40
1486
- msgid ""
1487
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1488
- msgstr ""
1489
- "Kortet vil blive vist som billede på sidebaren, ved klik - vil blive åbnet i "
1490
- "pop-up"
1491
-
1492
- #: modules/gmap_widget/views/tpl/form.php:42
1493
- msgid "Image width (in px)"
1494
- msgstr "Billede bredde (i px)"
1495
-
1496
- #: modules/gmap_widget/views/tpl/form.php:49
1497
- msgid "Image height (in px)"
1498
- msgstr "illede højde (i px)"
1499
-
1500
- #: modules/icons/controller.php:20
1501
- msgid "Empty url"
1502
- msgstr "Tom url"
1503
-
1504
- #: modules/icons/models/icons.php:43
1505
- msgid "Icon no found"
1506
- msgstr "Ikon ikke fundet"
1507
-
1508
- #: modules/icons/models/icons.php:95
1509
- msgid "File not found"
1510
- msgstr "Fil ikke fundet"
1511
-
1512
- #: modules/icons/models/icons.php:100
1513
- msgid "Cannot get image"
1514
- msgstr "Kan ikke få billede"
1515
-
1516
- #: modules/icons/models/icons.php:111
1517
- msgid "cannot insert to table"
1518
- msgstr "kan ikke indsætte til tabel"
1519
-
1520
- #: modules/mail/mod.php:33
1521
- msgid "Can not send email - problem with send server"
1522
- msgstr "Kan ikke sende e-mail - problemer med send-serveren"
1523
-
1524
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
1525
- msgid "Marker Not Found"
1526
- msgstr "Markør ikke fundet"
1527
-
1528
- #: modules/marker/controller.php:48
1529
- msgid "Cannot remove marker"
1530
- msgstr "Kan ikke fjerne markør"
1531
-
1532
- #: modules/marker/controller.php:63
1533
- msgid "Cannot remove markers"
1534
- msgstr "Kan ikke fjerne markører"
1535
-
1536
- #: modules/marker/controller.php:144
1537
- msgid "Empty or invalid marker ID"
1538
- msgstr "Tom eller ugyldig markør ID"
1539
-
1540
- #: modules/marker/mod.php:21
1541
- msgid "Drop"
1542
- msgstr "Tab"
1543
-
1544
- #: modules/marker/mod.php:22
1545
- msgid "Bounce"
1546
- msgstr "Hop"
1547
-
1548
- #: modules/marker/models/marker.php:49
1549
- msgid "Please enter marker name"
1550
- msgstr "Indtast markør navn"
1551
-
1552
- #: modules/marker/models/marker.php:192
1553
- msgid "Address is empty or not match"
1554
- msgstr "Adresse er tom eller ikke matcher"
1555
-
1556
- #: modules/marker/models/marker.php:248
1557
- msgid "Invalid Marker ID"
1558
- msgstr "Ugyldigt Markør ID"
1559
-
1560
- #: modules/marker_groups/controller.php:31
1561
- msgid "Marker Category data not found"
1562
- msgstr "Markør Kategori data ikke fundet"
1563
-
1564
- #: modules/marker_groups/mod.php:8
1565
- msgid "Marker Categories"
1566
- msgstr "Markør kategorier"
1567
-
1568
- #: modules/marker_groups/mod.php:11
1569
- msgid "Add New"
1570
- msgstr "Tilføj ny"
1571
-
1572
- #: modules/marker_groups/mod.php:24
1573
- msgid "No Marker Category Found"
1574
- msgstr "Ingen Markør Kategori fundet"
1575
-
1576
- #: modules/marker_groups/models/marker_groups.php:56
1577
- msgid "Please enter Marker Category"
1578
- msgstr "Indtast venligst Markør Kategori"
1579
-
1580
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5
1581
- #: modules/marker_groups/views/tpl/mgrAdmin.php:7
1582
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:11
1583
- msgid "Add Category"
1584
- msgstr "Tilføj kategori"
1585
-
1586
- #: modules/marker_groups/views/tpl/mgrAdmin.php:31
1587
- #, php-format
1588
- msgid ""
1589
- "You have no Marker Categories for now. <a href='%s' style='font-style: "
1590
- "italic;'>Create</a> your first Marker Category!"
1591
- msgstr ""
1592
- "Du har ingen Markør Kategorier endun. <a href='%s' style='font-style: "
1593
- "italic;'>opret</a> dit første Markør Kategori!"
1594
-
1595
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:28
1596
- #: modules/options/views/tpl/optionsSettingsTabContent.php:6
1597
- msgid "Save"
1598
- msgstr "Gem"
1599
-
1600
- #: modules/options/mod.php:94
1601
- msgid "General"
1602
- msgstr "Generel"
1603
-
1604
- #: modules/options/mod.php:96
1605
- msgid "Send usage statistics"
1606
- msgstr "Send brugsstatistikker"
1607
-
1608
- #: modules/options/mod.php:96
1609
- msgid ""
1610
- "Send information about what plugin options you prefer to use, this will help "
1611
- "us make our solution better for You."
1612
- msgstr ""
1613
- "Send oplysninger om, hvad plugin muligheder du foretrækker at bruge, vil det "
1614
- "hjælpe os med at gøre vores løsning bedre for dig."
1615
-
1616
- #: modules/options/mod.php:97
1617
- msgid "Enable promo link"
1618
- msgstr "Aktivér promo link"
1619
-
1620
- #: modules/options/mod.php:97
1621
- msgid ""
1622
- "We are trying to make our plugin better for you, and you can help us with "
1623
- "this. Just check this option - and small promotion link will be added in the "
1624
- "bottom of your Google Maps. This is easy for you - but very helpful for us!"
1625
- msgstr ""
1626
- "Vi forsøger at gøre vores plugin bedre for dig, og du kan hjælpe os med "
1627
- "dette. Bare klik denne mulighed af - og små promotion link vil blive "
1628
- "tilføjet i bunden af dine Google Maps. Dette er nemt for dig - men meget "
1629
- "nyttigt for os!"
1630
-
1631
- #: modules/options/models/modules.php:35
1632
- msgid "Module Updated"
1633
- msgstr "Modul Opdateret"
1634
-
1635
- #: modules/options/models/modules.php:50
1636
- msgid "Module Update Failed"
1637
- msgstr "Modul Opdatering mislykkedes"
1638
-
1639
- #: modules/options/models/modules.php:53
1640
- msgid "Error module ID"
1641
- msgstr "Fejl modul ID"
1642
-
1643
- #: modules/options/models/options.php:64
1644
- msgid "Empty data to save option"
1645
- msgstr "Tomme data til gemme indstilling"
1646
-
1647
- #: modules/options/views/tpl/optionsAdminMain.php:18
1648
- msgid "Main page Go here!!!!"
1649
- msgstr "Forside Gå her !!!!"
1650
-
1651
- #: modules/options/views/tpl/optionsAdminPage.php:31
1652
- msgid "Improve Free version"
1653
- msgstr "Forbedre gratis version"
1654
-
1655
- #: modules/options/views/tpl/optionsAdminPage.php:33
1656
- #, php-format
1657
- msgid ""
1658
- "Please be advised that this option is available only in <a target='_blank' "
1659
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1660
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1661
- "PopUps!"
1662
- msgstr ""
1663
- "Bemærk, at denne indstilling er kun tilgængelig i <a target='_blank' "
1664
- "href='%s'>PRO versionen</a>. Du kan <a target='_blank' href='%s' "
1665
- "class='button'>Få PRO</a> i dag og få dette og andre PRO løsning til dine "
1666
- "popups!"
1667
-
1668
- #: modules/options/views/tpl/optionsSettingsTabContent.php:3
1669
- msgid "Save all options"
1670
- msgstr "Gem alt"
1671
-
1672
- #: modules/options/views/tpl/optionsSettingsTabContent.php:61
1673
- #, php-format
1674
- msgid "Turned On %s"
1675
- msgstr "Tænd %s"
1676
-
1677
- #: modules/options/views/tpl/optionsSettingsTabContent.php:62
1678
- #, php-format
1679
- msgid "Turned Off %s"
1680
- msgstr "Sluk %s"
1681
-
1682
- #: modules/supsystic_promo/controller.php:7
1683
- msgid "Information was saved. Thank you!"
1684
- msgstr "Information blev gemt. Tak!"
1685
-
1686
- #: modules/supsystic_promo/controller.php:23
1687
- msgid ""
1688
- "Please don't send contact requests so often - wait for response for your "
1689
- "previous requests."
1690
- msgstr ""
1691
- "Send venligst ikke kontaktanmodninger så ofte - vent på respons for dine "
1692
- "tidligere anmodninger."
1693
-
1694
- #: modules/supsystic_promo/controller.php:45
1695
- msgid "Please enter valid email address"
1696
- msgstr "Indtast venligst gyldig e-mailadresse"
1697
-
1698
- #: modules/supsystic_promo/mod.php:34
1699
- #, php-format
1700
- msgid ""
1701
- "<h3>Hey, I noticed you just use %s over a week - that's awesome!</"
1702
- "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
1703
- "WordPress? Just to help us spread the word and boost our motivation.</p>"
1704
- msgstr ""
1705
- "<H3>Hey, jeg bemærket, at du bare bruge %s over en uge - det er fantastisk</"
1706
- "h3><p> Kan du gøre mig en stor tjeneste og give det en 5-stjernet rating på "
1707
- "WordPress!? Blot for at hjælpe os med at sprede ordet og øge vores "
1708
- "motivation. </p>"
1709
-
1710
- #: modules/supsystic_promo/mod.php:35 modules/supsystic_promo/mod.php:41
1711
- msgid "Ok, you deserve it"
1712
- msgstr "Ok, du fortjener det"
1713
-
1714
- #: modules/supsystic_promo/mod.php:36 modules/supsystic_promo/mod.php:42
1715
- msgid "Nope, maybe later"
1716
- msgstr "Nej, måske senere"
1717
-
1718
- #: modules/supsystic_promo/mod.php:37
1719
- msgid "I already did"
1720
- msgstr "det har jeg allerede gjort"
1721
-
1722
- #: modules/supsystic_promo/mod.php:38
1723
- #, php-format
1724
- msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
1725
- msgstr "<H3> Mere end elleve dage med vores %s plugin - Tillykke !</h3>"
1726
-
1727
- #: modules/supsystic_promo/mod.php:39
1728
- msgid ""
1729
- "<p>On behalf of the entire <a href='https://supsystic.com/' "
1730
- "target='_blank'>supsystic.com</a> company I would like to thank you for been "
1731
- "with us, and I really hope that our software helped you.</p>"
1732
- msgstr ""
1733
- "<p>På vegne af hele <a href='https://supsystic.com/' "
1734
- "target='_blank'>supsystic.com</a> firma, jeg vil gerne takke Dem for været "
1735
- "med os, og jeg virkelig håber, at vores software hjulpet dig. </ p>"
1736
-
1737
- #: modules/supsystic_promo/mod.php:40
1738
- msgid ""
1739
- "<p>And today, if you want, - you can help us. This is really simple - you "
1740
- "can just add small promo link to our site under your maps. This is small "
1741
- "step for you, but a big help for us! Sure, if you don't want - just skip "
1742
- "this and continue enjoy our software!</p>"
1743
- msgstr ""
1744
- "<p>Og i dag, hvis du vil, - du kan hjælpe os. Dette er virkelig simpelt - du "
1745
- "kan bare tilføje små promo link til vores hjemmeside under dine kort. Dette "
1746
- "er lille skridt for dig, men en stor hjælp for os! Sikker på, hvis du ikke "
1747
- "vil - bare springe dette og fortsætte nyde vores software </p>"
1748
-
1749
- #: modules/supsystic_promo/mod.php:43
1750
- msgid "Skip"
1751
- msgstr "Spring over"
1752
-
1753
- #: modules/supsystic_promo/mod.php:87
1754
- msgid "Overview"
1755
- msgstr "Oversigt"
1756
-
1757
- #: modules/supsystic_promo/mod.php:113
1758
- msgid "Welcome to Supsystic Secure"
1759
- msgstr "Velkommen til Supsystic Secure"
1760
-
1761
- #: modules/supsystic_promo/mod.php:182
1762
- msgid "Name"
1763
- msgstr "Navn"
1764
-
1765
- #: modules/supsystic_promo/mod.php:184
1766
- msgid "Website"
1767
- msgstr "Webside"
1768
-
1769
- #: modules/supsystic_promo/mod.php:185
1770
- msgid "Subject"
1771
- msgstr "Emne"
1772
-
1773
- #: modules/supsystic_promo/mod.php:186
1774
- msgid "Topic"
1775
- msgstr "Emne"
1776
-
1777
- #: modules/supsystic_promo/mod.php:187
1778
- msgid "Plugin options"
1779
- msgstr "Plugin muligheder"
1780
-
1781
- #: modules/supsystic_promo/mod.php:188
1782
- msgid "Report a bug"
1783
- msgstr "Rapporter en fejl"
1784
-
1785
- #: modules/supsystic_promo/mod.php:189
1786
- msgid "Require a new functionallity"
1787
- msgstr "Kræv en ny funktionalitet"
1788
-
1789
- #: modules/supsystic_promo/mod.php:190
1790
- msgid "Other"
1791
- msgstr "Anden"
1792
-
1793
- #: modules/supsystic_promo/mod.php:192
1794
- msgid "Message"
1795
- msgstr "Besked"
1796
-
1797
- #: modules/supsystic_promo/mod.php:192
1798
- msgid "Hello Supsystic Team!"
1799
- msgstr "Hej Supsystic Team!"
1800
-
1801
- #: modules/supsystic_promo/views/supsystic_promo.php:32
1802
- msgid "How to use Google Maps Easy Widget?"
1803
- msgstr "Hvordan bruger jeg Google Maps Easy Widget?"
1804
-
1805
- #: modules/supsystic_promo/views/supsystic_promo.php:33
1806
- msgid ""
1807
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
1808
- "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
1809
- "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
1810
- "map for widget and configure the settings - Widget Map width and height.<br /"
1811
- ">5. Click 'Save'."
1812
- msgstr ""
1813
- "1. Gå til Udseende -> Widgets i WordPress navigationsmenu <br /> 2.. Find "
1814
- "Google Maps Easy på listen over tilgængelige widgets. <br /> 3. Træk Google "
1815
- "Maps Nem widget til widget område, som du har brug for. <br /> 4. Vælg "
1816
- "kortet for widget og konfigurere indstillinger -. Widget Kort bredde og "
1817
- "højde <br /> 5. Klik på 'Gem'."
1818
-
1819
- #: modules/supsystic_promo/views/supsystic_promo.php:34
1820
- msgid "How to add map into the site content?"
1821
- msgstr "Hvordan tilføjer man kortet ind på webstedets indhold?"
1822
-
1823
- #: modules/supsystic_promo/views/supsystic_promo.php:35
1824
- msgid ""
1825
- "You can add a map in the site content via shortcode or php code. Learn more "
1826
- "about how to do this <a href='http://supsystic.com/add-map-into-site-"
1827
- "content/'>here</a>."
1828
- msgstr ""
1829
- "Du kan tilføje et kort i indholdet websted via shortcode eller php kode. Lær "
1830
- "mere om hvordan du gør dette <a href='http://supsystic.com/add-map-into-site-"
1831
- "content/'>her</a>."
1832
-
1833
- #: modules/supsystic_promo/views/supsystic_promo.php:36
1834
- msgid "How to add map in popup window?"
1835
- msgstr "Hvordan tilføjer man et pop-up vindue på kortet?"
1836
-
1837
- #: modules/supsystic_promo/views/supsystic_promo.php:37
1838
- msgid ""
1839
- "You can add a map in popup window by inserting map shortcode in any popup "
1840
- "text field. Learn more about how to do this <a href='http://supsystic.com/"
1841
- "add-map-in-popup-window/'>here</a>."
1842
- msgstr ""
1843
- "Du kan tilføje et kort i pop-up-vinduet ved at indsætte kortet shortcode i "
1844
- "en hvilken som helst popup tekstfeltet. Lær mere om hvordan du gør dette <a "
1845
- "href='http://supsystic.com/add-map-in-popup-window/'>her</a>."
1846
-
1847
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1848
- msgid "How to zoom and center the initial map on markers ?"
1849
- msgstr "Hvordan zoome og centrere indledende kortet på markører?"
1850
-
1851
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1852
- msgid ""
1853
- "There is a few different ways to zoom and centralize map. The easiest one is "
1854
- "to drag your map using mouse - 'Draggable' option must be enabled, or with "
1855
- "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
1856
- "zoom-and-center-the-initial-map-on-markers/'>Read more..</a>"
1857
- msgstr ""
1858
- "Der er et par forskellige måder at zoome og centralisere kort. Den nemmeste "
1859
- "er at trække dit kort ved hjælp af musen - 'Draggable' valgmulighed skal "
1860
- "være aktiveret, eller med pan controller hjælp i live preview. <a "
1861
- "href='http://supsystic.com/how-to-zoom-and-center-the-initial-map-on-"
1862
- "markers/'> Læs mere .. </a>"
1863
-
1864
- #: modules/supsystic_promo/views/supsystic_promo.php:40
1865
- msgid "How to get PRO version of plugin for FREE?"
1866
- msgstr "Hvordan får man PRO versionen af plugin GRATIS?"
1867
-
1868
- #: modules/supsystic_promo/views/supsystic_promo.php:40
1869
- #, php-format
1870
- msgid ""
1871
- "You have an incredible opportunity to get PRO version for free. Make "
1872
- "Translation of plugin! It will be amazing if you take advantage of this "
1873
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
1874
- "version of any plugin for FREE'</a>"
1875
- msgstr ""
1876
- "Du har en fantastisk mulighed for at få PRO version gratis. Lav oversættelse "
1877
- "af plugin'et! Det vil være fantastisk, hvis du benytter dig af dette tilbud! "
1878
- "Mere info kan du finde her <a target='_blank' href='%s'>'Få PRO versionen "
1879
- "plugin'et gratis'</a>"
1880
-
1881
- #: modules/supsystic_promo/views/supsystic_promo.php:41
1882
- msgid "Translation"
1883
- msgstr "Oversættelse"
1884
-
1885
- #: modules/supsystic_promo/views/supsystic_promo.php:41
1886
- #, php-format
1887
- msgid ""
1888
- "All available languages are provided with the Supsystic Google Maps plugin. "
1889
- "If your language isn't available, your plugin will be in English by default."
1890
- "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
1891
- "b><br />Translate or update a translation Google Maps WordPress plugin in "
1892
- "your language and get a Premium license for FREE. <a target='_blank' "
1893
- "href='%s'>Contact us</a>."
1894
- msgstr ""
1895
- "Alle tilgængelige sprog er forsynet med Supsystic Google Maps plugin. Hvis "
1896
- "dit sprog ikke er tilgængeligt, vil dit plugin være på engelsk som standard."
1897
- "<br /><b>Tilgængelige oversættelser:. Engelsk, polsk, tysk, spansk, russisk "
1898
- "</b><br /> Oversæt eller opdatere en oversættelse Google Maps WordPress "
1899
- "plugin på dit sprog og få en Premium licens gratis. <a target='_blank' "
1900
- "href='%s'> Kontakt os </a>."
1901
-
1902
- #: modules/supsystic_promo/views/supsystic_promo.php:57
1903
- #, php-format
1904
- msgid ""
1905
- "There were some problem while trying to retrive our news, but you can always "
1906
- "check all list <a target='_blank' href='%s'>here</a>."
1907
- msgstr ""
1908
- "Der var nogle problemer under forsøget på at hente dine nyheder, men du kan "
1909
- "altid kontrollere alle liste <a target='_blank' href='%s'>her</a>."
1910
-
1911
- #: modules/supsystic_promo/views/supsystic_promo.php:67
1912
- #: modules/supsystic_promo/views/supsystic_promo.php:68
1913
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1914
- #: modules/supsystic_promo/views/supsystic_promo.php:75
1915
- #: modules/supsystic_promo/views/supsystic_promo.php:76
1916
- msgid "Yes"
1917
- msgstr "Ja"
1918
-
1919
- #: modules/supsystic_promo/views/supsystic_promo.php:67
1920
- #: modules/supsystic_promo/views/supsystic_promo.php:68
1921
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1922
- #: modules/supsystic_promo/views/supsystic_promo.php:75
1923
- #: modules/supsystic_promo/views/supsystic_promo.php:76
1924
- msgid "No"
1925
- msgstr "Nej"
1926
-
1927
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
1928
- #: modules/supsystic_promo/views/tpl/welcomePage.php:78
1929
- msgid "Version"
1930
- msgstr "Version"
1931
-
1932
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1933
- msgid "PRO"
1934
- msgstr "PRO"
1935
-
1936
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
1937
- msgid "Support"
1938
- msgstr "Support"
1939
-
1940
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
1941
- msgid "Add your"
1942
- msgstr "Tilføj din"
1943
-
1944
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1945
- msgid "FAQ and Documentation"
1946
- msgstr "FAQ og dokumentation"
1947
-
1948
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1949
- msgid "Check all FAQs"
1950
- msgstr "Tjek alle ofte stillede spørgsmål"
1951
-
1952
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1953
- #: modules/supsystic_promo/views/tpl/welcomePage.php:102
1954
- msgid "Video tutorial"
1955
- msgstr "Video tutorial"
1956
-
1957
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1958
- msgid "PRO Features"
1959
- msgstr "PRO funktioner"
1960
-
1961
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
1962
- msgid "Server Settings"
1963
- msgstr "Server indstillinger"
1964
-
1965
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
1966
- msgid "News"
1967
- msgstr "Nyheder"
1968
-
1969
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
1970
- msgid "All news and info"
1971
- msgstr "Alle nyheder og info"
1972
-
1973
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
1974
- msgid "Contact form"
1975
- msgstr "Kontaktformular"
1976
-
1977
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1978
- msgid "Send email"
1979
- msgstr "Send e-mail"
1980
-
1981
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
1982
- msgid ""
1983
- "Your email was send, we will try to respond to you as soon as possible. "
1984
- "Thank you for support!"
1985
- msgstr ""
1986
- "Din e-mail blev sendt, vil vi forsøge at svare dig så hurtigt som muligt. "
1987
- "Tak for støtte!"
1988
-
1989
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
1990
- msgid "Welcome to"
1991
- msgstr "Velkommen til"
1992
-
1993
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
1994
- #, php-format
1995
- msgid "This is first start up of the %s plugin."
1996
- msgstr "Dette er første opstart af %s plugin'et."
1997
-
1998
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
1999
- msgid ""
2000
- "If you are newbie - check all features on that page, if you are guru - "
2001
- "please correct us."
2002
- msgstr ""
2003
- "Hvis du er nybegynder - tjek alle funktioner på denne side, hvis du er guru "
2004
- "- du må rette os."
2005
-
2006
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
2007
- msgid "Please, post url"
2008
- msgstr "Venligst, post URL link"
2009
-
2010
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
2011
- msgid "What to do next? Check below section"
2012
- msgstr "Hvad skal gøre næste? Tjek nedenstående afsnit"
2013
-
2014
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
2015
- msgid "Boost us"
2016
- msgstr "Boost os"
2017
-
2018
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
2019
- #, php-format
2020
- msgid ""
2021
- "It's amazing when you boost development with your feedback and ratings. So "
2022
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
2023
- "help us."
2024
- msgstr ""
2025
- "Det er forbløffende, når du sætte gang i udviklingen med din feedback og "
2026
- "ratings. Så vi skaber særlige <a target='_blank' href='%s'>boost side </a> "
2027
- "til at hjælpe dig til at hjælpe os."
2028
-
2029
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
2030
- msgid "Documentation"
2031
- msgstr "Dokumentation"
2032
-
2033
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
2034
- #, php-format
2035
- msgid ""
2036
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
2037
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
2038
- msgstr ""
2039
- "Tjek <a target='_blank' href='%s'>dokumentation</a>> og FAQ sektion. Hvis "
2040
- "du ikke kan løse dine problemer - <a target='_blank' href='%s'>kontakte os</"
2041
- "a>."
2042
-
2043
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
2044
- msgid "Full Features List"
2045
- msgstr "Fuld funktioner Liste"
2046
-
2047
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
2048
- msgid "There are so many features, so we can't post it here. Like"
2049
- msgstr ""
2050
- "Der er så mange funktioner, så vi kan ikke skrive det her. Synes godt om"
2051
-
2052
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
2053
- msgid "Capcha for admin login"
2054
- msgstr "Captcha for admin login"
2055
-
2056
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
2057
- msgid "htaccess admin protect"
2058
- msgstr "htaccess admin beskytte"
2059
-
2060
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
2061
- msgid "Hide directory files listing"
2062
- msgstr "Skjul mappe filer noteringer"
2063
-
2064
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
2065
- msgid "Check files and directories write permissions"
2066
- msgstr "Tjek filer og biblioteker skriverettigheder"
2067
-
2068
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
2069
- #, php-format
2070
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
2071
- msgstr "Tjek komplette features lister <a target='_blank' href='%s'>her</a>."
2072
-
2073
- msgid "Google Map"
2074
- msgstr "Google Map"
2075
-
2076
- msgid "Marker Title font size"
2077
- msgstr "Markør-tittel skriftstørrelse"
2078
-
2079
- msgid "You can set your markers title font size here"
2080
- msgstr "Du kan sette din markør-tittels skriftstørrelse her"
2081
-
2082
- msgid "Marker Description font size"
2083
- msgstr "Markør-beskrivelse skriftstørrelse"
2084
-
2085
- msgid "You can set your markers description font size here"
2086
- msgstr "Du kan sette din markør-beskrivelses skriftstørrelse her"
2087
-
2088
- msgid "Undefined"
2089
- msgstr "Udefinert"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-de_DE.mo DELETED
Binary file
lang/gmp_lng-de_DE.po DELETED
@@ -1,2557 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2017-07-10 12:24+0300\n"
5
- "PO-Revision-Date: 2018-02-15 15:46+0200\n"
6
- "Last-Translator: Cristina <info@kurzreise-barcelona.de>\n"
7
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language: en\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.5\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
- "X-Poedit-SearchPathExcluded-0: js\n"
17
- "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
18
-
19
- #: classes/controller.php:198 classes/controller.php:206
20
- #: doc/google-maps-easy-pro/frontend_actions/controller.php:15
21
- #: doc/google-maps-easy-pro/frontend_actions/controller.php:38
22
- #: doc/google-maps-easy-pro/heatmap/controller.php:9
23
- #: doc/google-maps-easy-pro/heatmap/controller.php:39
24
- #: doc/google-maps-easy-pro/kml/controller.php:11
25
- #: doc/google-maps-easy-pro/license/controller.php:6
26
- #: doc/google-maps-easy-pro/shape/controller.php:8
27
- #: doc/google-maps-easy-pro/shape/controller.php:46
28
- #: doc/google-maps-easy-pro/shape/controller.php:61
29
- #: modules/adminmenu/controller.php:29 modules/gmap/controller.php:52
30
- #: modules/gmap/controller.php:69 modules/gmap/controller.php:77
31
- #: modules/marker/controller.php:8 modules/marker/controller.php:46
32
- #: modules/marker/controller.php:61 modules/marker/controller.php:101
33
- #: modules/marker_groups/controller.php:68 modules/options/controller.php:6
34
- msgid "Done"
35
- msgstr "Erledigt"
36
-
37
- #: classes/field.php:131
38
- msgid "Select"
39
- msgstr "Auswählen"
40
-
41
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
42
- msgid "N/A"
43
- msgstr "N/A"
44
-
45
- #: classes/field.php:277
46
- msgid "Add Checkbox"
47
- msgstr "Checkbox hinzufügen"
48
-
49
- #: classes/field.php:282 classes/field.php:287
50
- msgid "Add Item"
51
- msgstr "Objekt hinzufügen"
52
-
53
- #: classes/field.php:293
54
- msgid "Add Radio Button"
55
- msgstr "Radio-Schaltfläche hinzufügen"
56
-
57
- #: classes/field.php:311
58
- msgid "Dimensions"
59
- msgstr "Dimensionen"
60
-
61
- #: classes/field.php:314
62
- msgid "width"
63
- msgstr "Breite"
64
-
65
- #: classes/field.php:316
66
- msgid "height"
67
- msgstr "Höhe"
68
-
69
- #: classes/field.php:323
70
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
71
- msgstr "Klicken, um die Felder &quot;id&quot; und &quot;class&quot; zu setzen"
72
-
73
- #: classes/field.php:324
74
- msgid "Attributes"
75
- msgstr "Eigenschaften"
76
-
77
- #: classes/field.php:402
78
- msgid "There are no configuration options for this module"
79
- msgstr "Es gibt keine Konfigurationsoptionen für dieses Modul"
80
-
81
- #: classes/fieldAdapter.php:93
82
- msgid "Apply To"
83
- msgstr "Anwenden für"
84
-
85
- #: classes/fieldAdapter.php:95
86
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:31
87
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:54
88
- #: modules/gmap/views/tpl/gmapEditMap.php:1135
89
- #: modules/gmap/views/tpl/gmapEditMap.php:1413
90
- msgid "Address"
91
- msgstr "Addresse"
92
-
93
- #: classes/fieldAdapter.php:96
94
- msgid "Destination"
95
- msgstr "Zielort"
96
-
97
- #: classes/fieldAdapter.php:97
98
- msgid "Country"
99
- msgstr "Land"
100
-
101
- #: classes/fieldAdapter.php:100
102
- msgid "Categories"
103
- msgstr "Kategorien"
104
-
105
- #: classes/fieldAdapter.php:101
106
- msgid "You have no categories"
107
- msgstr "Sie haben keine Kategorien"
108
-
109
- #: classes/fieldAdapter.php:102
110
- msgid "Brands"
111
- msgstr "Firmennamen"
112
-
113
- #: classes/fieldAdapter.php:103
114
- msgid "You have no brands"
115
- msgstr "Sie haben keine Firmennamen"
116
-
117
- #: classes/fieldAdapter.php:105
118
- msgid "Tax Rate"
119
- msgstr "Steuersatz"
120
-
121
- #: classes/fieldAdapter.php:106
122
- msgid "Absolute"
123
- msgstr "Absolut"
124
-
125
- #: classes/fieldAdapter.php:134
126
- msgid "Not selected"
127
- msgstr "Nicht ausgewählt"
128
-
129
- #: classes/fieldAdapter.php:184
130
- msgid "class"
131
- msgstr "klasse"
132
-
133
- #: classes/fieldAdapter.php:186
134
- msgid "id"
135
- msgstr "id"
136
-
137
- #: classes/frame.php:136
138
- msgid "You have no permissions to view this page"
139
- msgstr "Sie sind nicht zur Ansicht dieser Seite nicht berechtigt"
140
-
141
- #: classes/html.php:207 modules/gmap/views/tpl/gmapEditMap.php:1266
142
- msgid "Upload"
143
- msgstr "Upload"
144
-
145
- #: classes/html.php:627
146
- msgid "ON"
147
- msgstr "AN"
148
-
149
- #: classes/html.php:628
150
- msgid "OFF"
151
- msgstr "AUS"
152
-
153
- #: classes/html.php:652
154
- #, php-format
155
- msgid "Select %s"
156
- msgstr "%s auswählen"
157
-
158
- #: classes/modInstaller.php:34
159
- #, php-format
160
- msgid "Move files for %s failed"
161
- msgstr "Fehler beim Verschieben der Dateien auf %s"
162
-
163
- #: classes/modInstaller.php:37
164
- #, php-format
165
- msgid "%s is not plugin module"
166
- msgstr "%s ist kein Plugin-Modul"
167
-
168
- #: classes/modInstaller.php:76
169
- msgid "Can not create module directory. Try to set permission to "
170
- msgstr "Das Verzeichnis-Modul konnte nicht angelegt werden. Bitte die folgende Berechtigung setzen"
171
-
172
- #: classes/modInstaller.php:103
173
- msgid "No modules were found in XML file"
174
- msgstr "In der XML-Datei wurden keine Module gefunden"
175
-
176
- #: classes/modInstaller.php:107
177
- msgid "Invalid XML file"
178
- msgstr "Ungültige XML-Datei"
179
-
180
- #: classes/modInstaller.php:109
181
- msgid "No XML file were found"
182
- msgstr "Es wurden keine XML-Dateien gefunden"
183
-
184
- #: classes/modInstaller.php:128
185
- #, php-format
186
- msgid "Install %s failed"
187
- msgstr "Installierung von %s fehlgeschlagen"
188
-
189
- #: classes/modInstaller.php:134
190
- msgid "Error Activate module"
191
- msgstr "Fehler Modul Aktivierung"
192
-
193
- #: classes/modInstaller.php:164
194
- msgid "Error Deactivation module"
195
- msgstr "Fehler bei der Deaktivierung des Moduls"
196
-
197
- #: classes/modInstaller.php:185
198
- msgid "Error Activating module"
199
- msgstr "Fehler bei der Aktivierung des Moduls"
200
-
201
- #: classes/model.php:174 classes/model.php:186
202
- msgid "Database error detected"
203
- msgstr "Datenbankfehler gefunden"
204
-
205
- #: classes/model.php:176 modules/gmap/models/gmap.php:182
206
- #: modules/icons/models/icons.php:148
207
- #: modules/marker_groups/models/marker_groups.php:49
208
- msgid "Invalid ID"
209
- msgstr "Ungültige ID"
210
-
211
- #: classes/model.php:209
212
- msgid "Empty or invalid ID"
213
- msgstr "Leere oder ungültige ID"
214
-
215
- #: classes/table.php:277
216
- msgid "Nothig to update"
217
- msgstr "Es gibt nichts zu aktualisieren"
218
-
219
- #: classes/table.php:293
220
- msgid "Database error. Please contact your developer."
221
- msgstr "Datenbankfehler. Kontaktieren Sie bitte Ihren Entwickler."
222
-
223
- #: classes/tables/heatmaps.php:7
224
- msgid "Heatmap ID"
225
- msgstr "Hitzekarte ID"
226
-
227
- #: classes/tables/heatmaps.php:8 classes/tables/marker.php:13
228
- #: classes/tables/shapes.php:12
229
- msgid "Map Id"
230
- msgstr "Karten-ID"
231
-
232
- #: classes/tables/heatmaps.php:9
233
- msgid "Heatmap coordinates list"
234
- msgstr "Hitzekarte Koordinatenliste"
235
-
236
- #: classes/tables/heatmaps.php:10 classes/tables/marker.php:17
237
- #: classes/tables/modules.php:10 classes/tables/options.php:11
238
- #: classes/tables/shapes.php:15
239
- msgid "Params"
240
- msgstr "Parameter"
241
-
242
- #: classes/tables/heatmaps.php:11 classes/tables/marker.php:19
243
- #: classes/tables/shapes.php:13
244
- msgid "Creation date"
245
- msgstr "Erstellungsdatum"
246
-
247
- #: classes/tables/marker.php:7
248
- msgid "Marker ID"
249
- msgstr "Marker ID"
250
-
251
- #: classes/tables/marker.php:8
252
- msgid "Marker name"
253
- msgstr "Marker Name"
254
-
255
- #: classes/tables/marker.php:9
256
- msgid "Description Of Marker"
257
- msgstr "Beschreibung des Markes"
258
-
259
- #: classes/tables/marker.php:10
260
- msgid "X coordinate if marker(lng)"
261
- msgstr "X-Koordinate falls Markerierung vorhanden (lng)"
262
-
263
- #: classes/tables/marker.php:11
264
- msgid "Y coordinate of marker(lat)"
265
- msgstr "Y-Koordinate falls Markerierung vorhanden (lat)"
266
-
267
- #: classes/tables/marker.php:12
268
- msgid "Path of icon file"
269
- msgstr "Pfad der Icon-Datei"
270
-
271
- #: classes/tables/marker.php:14
272
- msgid "Marker Address"
273
- msgstr "Marker Adresse"
274
-
275
- #: classes/tables/marker.php:15
276
- msgid "Id of Marker's group"
277
- msgstr "ID der Marker-Gruppe"
278
-
279
- #: classes/tables/marker.php:16 classes/tables/shapes.php:14
280
- msgid "Animation"
281
- msgstr "Animation"
282
-
283
- #: classes/tables/marker.php:18 classes/tables/options.php:15
284
- #: classes/tables/shapes.php:16
285
- msgid "Sort Order"
286
- msgstr "Sortierung"
287
-
288
- #: classes/tables/marker.php:20
289
- msgid "User who created marker"
290
- msgstr "Benutzer erstellte Marker"
291
-
292
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8
293
- #: classes/tables/options.php:10
294
- msgid "Label"
295
- msgstr "Beschriftung"
296
-
297
- #: classes/tables/modules.php:8 classes/tables/options.php:13
298
- msgid "Type"
299
- msgstr "Typ"
300
-
301
- #: classes/tables/modules.php:9
302
- msgid "Active"
303
- msgstr "Aktiv"
304
-
305
- #: classes/tables/modules.php:11
306
- msgid "Has Tab"
307
- msgstr "Reiter vorhanden"
308
-
309
- #: classes/tables/modules.php:12 classes/tables/options.php:12
310
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:55
311
- msgid "Description"
312
- msgstr "Beschreibung"
313
-
314
- #: classes/tables/modules.php:13 classes/tables/options.php:8
315
- #: classes/tables/usage.php:9
316
- msgid "Code"
317
- msgstr "Code"
318
-
319
- #: classes/tables/modules.php:14
320
- msgid "External plugin directory"
321
- msgstr "Externes Plugin-Verzeichnis"
322
-
323
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7
324
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:226
325
- msgid "ID"
326
- msgstr "ID"
327
-
328
- #: classes/tables/options.php:9
329
- msgid "Value"
330
- msgstr "Wert"
331
-
332
- #: classes/tables/options.php:14
333
- msgid "Category ID"
334
- msgstr "Kategorien-ID"
335
-
336
- #: classes/tables/options.php:16
337
- msgid "Value Type"
338
- msgstr "Werte-Typ"
339
-
340
- #: classes/tables/options_categories.php:8
341
- msgid "Method"
342
- msgstr "Methode"
343
-
344
- #: classes/tables/shapes.php:7
345
- msgid "Shape ID"
346
- msgstr "Form ID"
347
-
348
- #: classes/tables/shapes.php:8
349
- msgid "Shape name"
350
- msgstr "Form Name"
351
-
352
- #: classes/tables/shapes.php:9
353
- msgid "Description of Shape"
354
- msgstr "Beschreibung der Form"
355
-
356
- #: classes/tables/shapes.php:10
357
- msgid "Shape coordinates list"
358
- msgstr "Form Koordinatenliste"
359
-
360
- #: classes/tables/shapes.php:11
361
- msgid "Shape type"
362
- msgstr "Form Typ"
363
-
364
- #: classes/tables/usage.php:8
365
- msgid "Usage id"
366
- msgstr "Nutzungs-ID"
367
-
368
- #: classes/tables/usage.php:10
369
- msgid "Visits Count"
370
- msgstr "Besucherzähler"
371
-
372
- #: classes/validator.php:30
373
- #, php-format
374
- msgid "Invalid length for %s, max length is %s"
375
- msgstr "Ungültige Länge für %s, maximale Länge ist %s"
376
-
377
- #: classes/validator.php:43
378
- #, php-format
379
- msgid "Invalid numeric value for %s"
380
- msgstr "Ungültiger Zahlenwert für %s"
381
-
382
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
383
- #, php-format
384
- msgid "Please enter %s"
385
- msgstr "Bitte %s eingeben"
386
-
387
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
388
- #, php-format
389
- msgid "Please select %s"
390
- msgstr "Bitte %s auswählen"
391
-
392
- #: classes/validator.php:85 classes/validator.php:101
393
- #, php-format
394
- msgid "Invalid %s"
395
- msgstr "Ungültige %s"
396
-
397
- #: classes/validator.php:88
398
- #, php-format
399
- msgid "%s is already registered"
400
- msgstr "%s ist schon registriert"
401
-
402
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
403
- msgid "Exit Full Screen"
404
- msgstr "Vollbild verlassen"
405
-
406
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
407
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
408
- msgid "Open Full Screen"
409
- msgstr "Vollbild öffnen"
410
-
411
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/printInfoWndBtn.php:8
412
- msgid "Print"
413
- msgstr "Drucken"
414
-
415
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:54
416
- msgid "Search address..."
417
- msgstr "Adresse suchen..."
418
-
419
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:81
420
- msgid "Reset"
421
- msgstr "Zurücksetzen"
422
-
423
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:94
424
- msgid "Find"
425
- msgstr "Finden"
426
-
427
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:105
428
- msgid "Search area have no markers, please try to modify search criterias."
429
- msgstr "Das Suchfeld hat keine Marker, bitte ändern Sie Ihre Suchkriterien."
430
-
431
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
432
- msgid "Get Direction"
433
- msgstr "Routenplaner"
434
-
435
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:23
436
- msgid "Type the address..."
437
- msgstr "Adresse eingeben... "
438
-
439
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:32
440
- msgid "or"
441
- msgstr "oder"
442
-
443
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:35
444
- msgid "Get current user position"
445
- msgstr "Hole aktuelle Benutzer Position"
446
-
447
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:45
448
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
449
- msgid "Go"
450
- msgstr "Dahin"
451
-
452
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
453
- msgid "The Geolocation service failed."
454
- msgstr "Der Ortungsdienst ist fehlgeschlagen"
455
-
456
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
457
- msgid "Your browser does not support geolocation."
458
- msgstr "Ihr Browser unterstützt keine Ortung"
459
-
460
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
461
- msgid "Route could not be found. Please, try to select another address!"
462
- msgstr "Die Route konnte nicht gefunden werden. Bitte versuchen Sie eine andere Adresse zu wählen!"
463
-
464
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
465
- msgid "Please, select address from search list!"
466
- msgstr "Bitte wählen Sie eine Adresse aus der Suchliste!"
467
-
468
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsPanel.php:4
469
- msgid "List of Direction's Steps will be here..."
470
- msgstr "Liste der Wegweiser finden Sie dann hier ..."
471
-
472
- #: doc/google-maps-easy-pro/frontend_actions/controller.php:49
473
- msgid "Adding markers from the frontend is disabled for the Current Map"
474
- msgstr "Das hinzufügen von Marker ist im Frontend für diese Karte deaktiviert"
475
-
476
- #: doc/google-maps-easy-pro/frontend_actions/mod.php:24
477
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:9
478
- msgid "Empty or Invalid Map ID. Please, check your Marker Form Shortcode."
479
- msgstr "Leere oder fehlende Karten-ID. Prüfe die Marker"
480
-
481
- #: doc/google-maps-easy-pro/frontend_actions/models/frontend_actions.php:33
482
- #, php-format
483
- msgid "You have exceeded the limit on adding markers from current IP address. Please try again after %s minutes."
484
- msgstr "Die Anzahl der hinzugefügten Markierungen für die IP-Adresse wurde überschritten. Bitte versuchen Sie es nach %s Minuten erneut."
485
-
486
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:16
487
- msgid "Marker Form will be displayed only for logged in users."
488
- msgstr "Markerforrmular ist nur für angemeldete Benutzer"
489
-
490
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:17
491
- msgid "Log In"
492
- msgstr "angemeldet"
493
-
494
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:44
495
- msgid "Marker's Form is not displayed, because the option 'Add markers on frontend' is disabled for the Current Map"
496
- msgstr "Markerforrmular ist nicht aktiviert (inzufügen von Markierungen im Frontend' nicht aktiviert)."
497
-
498
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:20
499
- msgid "You need to use marker form on page with map"
500
- msgstr "Markerformular benötigt Karte auch der Seite"
501
-
502
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:23
503
- msgid "Marker Form"
504
- msgstr "Markerformular"
505
-
506
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:24
507
- msgid "Use this form to add markers to your map"
508
- msgstr "Nutze dieses Formular, um deinen Marker hinzuzufügen"
509
-
510
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:27
511
- #: modules/gmap/views/tpl/gmapEditMap.php:1084
512
- msgid "Marker Name"
513
- msgstr "Name des Markers"
514
-
515
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:37
516
- #: modules/gmap/views/tpl/gmapEditMap.php:1097
517
- msgid "Marker Description"
518
- msgstr "Beschreibung des Markers"
519
-
520
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:46
521
- #: modules/gmap/views/tpl/gmapEditMap.php:759
522
- #: modules/gmap/views/tpl/gmapEditMap.php:1124
523
- msgid "Choose Icon"
524
- msgstr "Icon auswählen"
525
-
526
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:53
527
- #: modules/gmap/views/tpl/gmapEditMap.php:1587
528
- msgid "Save Marker"
529
- msgstr "Marker speichern"
530
-
531
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:78
532
- msgid "Choose the marker"
533
- msgstr "Wähle den Marker"
534
-
535
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:87
536
- #: modules/gmap/views/tpl/gmapEditMap.php:1593
537
- msgid "Delete Marker"
538
- msgstr "Marker löschen"
539
-
540
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:89
541
- msgid "You need to choose the marker"
542
- msgstr "Es wird eine Markierung benötigt"
543
-
544
- #: doc/google-maps-easy-pro/heatmap/controller.php:28
545
- msgid "Empty or invalid Heatmap ID"
546
- msgstr "fehlende oder ungültige Wärmebild ID"
547
-
548
- #: doc/google-maps-easy-pro/heatmap/controller.php:35
549
- msgid "Heatmap Not Found"
550
- msgstr "Wärmebild nicht gefunden"
551
-
552
- #: doc/google-maps-easy-pro/heatmap/controller.php:41
553
- msgid "Cannot remove Heatmap"
554
- msgstr "Wärmebild kann nicht gelöscht werden"
555
-
556
- #: doc/google-maps-easy-pro/kml/controller.php:18
557
- msgid "Security check failed"
558
- msgstr "Sicherheitscheck fehlgeschlagen"
559
-
560
- #: doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:6
561
- msgid "KML Layers Filter"
562
- msgstr "KML Ebenenfilter"
563
-
564
- #: doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:16
565
- msgid "KML data loading"
566
- msgstr "KML Daten laden"
567
-
568
- #: doc/google-maps-easy-pro/license/mod.php:30
569
- #, php-format
570
- msgid "Your license is expired. Once you extend your license - you will be able to Update PRO version. To extend PRO version license - follow <a href='%s' target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate your PRO version."
571
- msgstr "Ihre Lizenz ist abgelaufen. Sobald Sie Ihre Lizenz verlängern, können Sie auf die PRO Version updaten. Um die Lizenz der PRO Version zu verlängern - folgen Sie <a href='%s' target='_blank'>diesem Link</a>, - gehen Sie dann auf den Reiter <a href='%s'>Lizenz</a> und klicken Sie auf die Schaltfläche 'Re-activate' , um Ihre PRO Version erneut zu aktivieren."
572
-
573
- #: doc/google-maps-easy-pro/license/mod.php:40
574
- #, php-format
575
- msgid "Your license for PRO version of %s plugin - expired. You can <a href='%s' target='_blank'>click here</a> to extend your license, then - go to <a href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate your PRO version."
576
- msgstr "Ihre Lizenz für die PRO Version des Plugins %s ist abgelaufen. Sie können <a href='%s' target='_blank'>hier klicken</a>, um Ihre Lizenz zu verlängern, und dann auf den Reiter <a href='%s'>Lizenz</a>gehen und dort auf die Schaltfläche 'Re-activate' klicken, um Ihre PRO Version erneut zu aktivieren."
577
-
578
- #: doc/google-maps-easy-pro/license/mod.php:66
579
- msgid "License"
580
- msgstr "Lizenz"
581
-
582
- #: doc/google-maps-easy-pro/license/mod.php:89
583
- msgid "Activate License"
584
- msgstr "Lizenz aktivieren"
585
-
586
- #: doc/google-maps-easy-pro/license/mod.php:91
587
- msgid "Renew License"
588
- msgstr "Lizenz erneuern"
589
-
590
- #: doc/google-maps-easy-pro/license/models/license.php:54
591
- msgid "Please enter your License Key"
592
- msgstr "Bitte geben Sie Ihren Lizenzschlüssel ein"
593
-
594
- #: doc/google-maps-easy-pro/license/models/license.php:56
595
- msgid "Please enter your Email address"
596
- msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein"
597
-
598
- #: doc/google-maps-easy-pro/license/models/license.php:138
599
- msgid "There was a problem with sending request to our autentification server. Please try latter."
600
- msgstr "Es ist ein Problem beim Versenden an unseren Authentifizierungsrserver aufgetreten. Bitte versuchen Sie es später nochmal."
601
-
602
- #: doc/google-maps-easy-pro/license/models/license.php:178
603
- #, php-format
604
- msgid "License for plugin %s will expire today."
605
- msgstr "Die Lizenz für das Plugin %s läuft heute ab."
606
-
607
- #: doc/google-maps-easy-pro/license/models/license.php:180
608
- #, php-format
609
- msgid "License for plugin %s will expire tomorrow."
610
- msgstr "Die Lizenz für das Plugin %s läuft morgen ab."
611
-
612
- #: doc/google-maps-easy-pro/license/models/license.php:182
613
- #, php-format
614
- msgid "License for plugin %s will expire in %d days."
615
- msgstr "Die Lizenz für das Plugin %s läuft in %d Tagen ab."
616
-
617
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
618
- #, php-format
619
- msgid "Congratulations! PRO version of %s plugin is activated and working fine!"
620
- msgstr "Herzlichen Glückwunsch! Die PRO Version des Plugins %s wurde aktiviert und funktioniert korrekt!"
621
-
622
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
623
- #, php-format
624
- msgid "Your license for PRO version of %s plugin - expired. You can <a href='%s' target='_blank'>click here</a> to extend your license, then - click on 'Re-activate' button to re-activate your PRO version."
625
- msgstr "Ihre Lizenz für die PRO Version des Plugins %s ist abgelaufen. Sie können <a href='%s' target='_blank'>hier klicken</a>, um Ihre Lizenz zu verlängern, dann auf die Schaltfläche 'Re-activate' klicken, um Ihre PRO Version erneut zu aktivieren."
626
-
627
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
628
- #, php-format
629
- msgid "Congratulations! You have successfully installed PRO version of %s plugin. Final step to finish Your PRO version setup - is to enter your Email and License Key on this page. This will activate Your copy of software on this site."
630
- msgstr "Herzlichen Glückwunsch! Sie habe die PRO Version des Plugins %s erfolgreich aktiviert. Der letzte Schritt für die Einrichtung Ihrer PRO Version besteht darin, Ihre E-Mail-Adresse und Ihren Lizenzschlüssel auf dieser Seite einzutragen. Damit aktivieren Sie Ihre Softwarekopie für diese Webseite."
631
-
632
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
633
- #: modules/supsystic_promo/mod.php:215
634
- msgid "Email"
635
- msgstr "E-Mail"
636
-
637
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
638
- #, php-format
639
- msgid "Your email address, used on checkout procedure on <a href='%s' target='_blank'>%s</a>"
640
- msgstr "Die von Ihnen benutzte E-Mail-Adresse beim Bezahlvorgang für <a href='%s' target='_blank'>%s</a>"
641
-
642
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
643
- msgid "License Key"
644
- msgstr "Lizenzschlüssel"
645
-
646
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
647
- #, php-format
648
- msgid "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
649
- msgstr "Ihr Lizenzschlüssel von Ihrem Account auf <a href='%s' target='_blank'>%s</a>"
650
-
651
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
652
- msgid "Re-activate"
653
- msgstr "Erneut aktivieren"
654
-
655
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
656
- msgid "Activate"
657
- msgstr "Aktivieren"
658
-
659
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:15
660
- msgid "Uncategorized"
661
- msgstr "Nicht kategorisiert"
662
-
663
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:53
664
- #: modules/gmap/views/gmap.php:227
665
- msgid "Title"
666
- msgstr "Titel"
667
-
668
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:57
669
- msgid "Directions"
670
- msgstr "Richtungen"
671
-
672
- #: doc/google-maps-easy-pro/shape/controller.php:42
673
- #: doc/google-maps-easy-pro/shape/controller.php:57
674
- msgid "Figure Not Found"
675
- msgstr "Form nicht gefunden"
676
-
677
- #: doc/google-maps-easy-pro/shape/controller.php:48
678
- #: doc/google-maps-easy-pro/shape/controller.php:63
679
- msgid "Cannot remove figure"
680
- msgstr "Form kann nicht gelöscht werden"
681
-
682
- #: doc/google-maps-easy-pro/shape/controller.php:99
683
- msgid "Empty or invalid figure ID"
684
- msgstr "fehlende oder ungültige Form ID"
685
-
686
- #: doc/google-maps-easy-pro/shape/models/shape.php:43
687
- msgid "Please enter figure name"
688
- msgstr "Bitte den Form Namen eintragen"
689
-
690
- #: doc/google-maps-easy-pro/shape/models/shape.php:104
691
- #: modules/marker/models/marker.php:207
692
- msgid "Address is empty or not match"
693
- msgstr "Die Adresse ist leer oder stimmt nicht überein"
694
-
695
- #: doc/google-maps-easy-pro/shape/models/shape.php:158
696
- msgid "Invalid Figure ID"
697
- msgstr "Ungültige Form ID"
698
-
699
- #: doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
700
- #: modules/gmap/mod.php:22 modules/marker/views/tpl/markerListOperations.php:1
701
- #: modules/marker_groups/mod.php:14
702
- msgid "Edit"
703
- msgstr "Bearbeiten"
704
-
705
- #: doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
706
- #: modules/marker/views/tpl/markerListOperations.php:1
707
- msgid "Delete"
708
- msgstr "Löschen"
709
-
710
- #: doc/google-maps-easy-pro/wpUpdater.php:68
711
- msgid "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' onclick='document.location.reload(); return false;'>Try again</a>"
712
- msgstr "Ein unerwarteter HTTP-Fehler ist bei der API-Anfrage aufgetreten.</p> <p><a href='?' onclick='document.location.reload(); return false;'>Nochmal versuchen</a>"
713
-
714
- #: doc/google-maps-easy-pro/wpUpdater.php:73
715
- msgid "An unknown error occurred"
716
- msgstr "Es ist ein unbekannter Fehler aufgetreten"
717
-
718
- #: modules/adminmenu/controller.php:7
719
- msgid "Your name field is required."
720
- msgstr "Das Fekd Ihr Name wird benötigt"
721
-
722
- #: modules/adminmenu/controller.php:8
723
- msgid "Your website field is required."
724
- msgstr "Das Feld Ihre Webseite wird benötigt"
725
-
726
- #: modules/adminmenu/controller.php:9
727
- msgid "Your e-mail field is required."
728
- msgstr "Das Feld Ihre E-Mail-Adresse wird benötigt"
729
-
730
- #: modules/adminmenu/controller.php:10
731
- msgid "Subject field is required."
732
- msgstr "Das Feld Betreff wird benötigt"
733
-
734
- #: modules/adminmenu/controller.php:11
735
- msgid "You must select a valid category."
736
- msgstr "Sie müssen eine gültige Kategorie auswählen"
737
-
738
- #: modules/adminmenu/controller.php:12
739
- msgid "Message field is required."
740
- msgstr "Das Feld Nachricht wird benötigt"
741
-
742
- #: modules/adminmenu/mod.php:13
743
- #, php-format
744
- msgid "Cool WordPress plugins from supsystic.com developers. I tried %s - and this was what I need! #supsystic.com"
745
- msgstr "Coole Wordpress-Plugins der Entwickler von supsystic.com. Ich hab %s getestet - und das ist genau was ich brauche! #supsystic.com"
746
-
747
- #: modules/adminmenu/mod.php:14 modules/options/mod.php:13
748
- msgid "Settings"
749
- msgstr "Einstellungen"
750
-
751
- #: modules/adminmenu/mod.php:15
752
- msgid "More plugins for your WordPress site here!"
753
- msgstr "Weitere Plugins für Ihre Wordpress Seite hier!"
754
-
755
- #: modules/adminmenu/mod.php:16 modules/adminmenu/mod.php:17
756
- #: modules/adminmenu/mod.php:18
757
- msgid "Spread the word!"
758
- msgstr "Geben Sie es weiter!"
759
-
760
- #: modules/csv/controller.php:45
761
- #, php-format
762
- msgid "Maps from %s - %s"
763
- msgstr "Karten von %s - %s"
764
-
765
- #: modules/csv/controller.php:48
766
- msgid "You have no maps for now."
767
- msgstr "Sie haben noch keine Karten."
768
-
769
- #: modules/csv/controller.php:98
770
- #, php-format
771
- msgid "Markers from %s"
772
- msgstr "Marker von %s"
773
-
774
- #: modules/csv/controller.php:101
775
- msgid "You have no markers for now."
776
- msgstr "Sie haben noch keine Marker."
777
-
778
- #: modules/csv/controller.php:135
779
- msgid "Missing File"
780
- msgstr "Datei fehlt"
781
-
782
- #: modules/csv/controller.php:137
783
- #, php-format
784
- msgid "File uploaded with error code %s"
785
- msgstr "Datei hochgeladen mit Fehlercode %s"
786
-
787
- #: modules/csv/controller.php:219
788
- msgid "File should contain more then 1 row, at least 1 row should be for headers"
789
- msgstr "Die Datei sollte mehr als eine einzige Reihe enthalten, mindestens eine Reihe sollte für Überschriften reserviert sein"
790
-
791
- #: modules/csv/controller.php:221
792
- msgid "Empty data in file"
793
- msgstr "Die Datei enthält keine Daten"
794
-
795
- #: modules/csv/mod.php:11
796
- msgid "Maps Import / Export"
797
- msgstr "Karten Import/Export"
798
-
799
- #: modules/csv/models/csv.php:133
800
- msgid "Can not detect import list type"
801
- msgstr "Das Format der Importliste kann nicht ermittelt werden"
802
-
803
- #: modules/csv/models/csv.php:135
804
- msgid "Can not find fields names"
805
- msgstr "Die Namen der Felder können nicht ermittelt werden"
806
-
807
- #: modules/csv/views/tpl/csvTabContent.php:9
808
- msgid "Maps"
809
- msgstr "Karten"
810
-
811
- #: modules/csv/views/tpl/csvTabContent.php:14
812
- #: modules/csv/views/tpl/csvTabContent.php:35
813
- msgid "Export"
814
- msgstr "Export"
815
-
816
- #: modules/csv/views/tpl/csvTabContent.php:19
817
- #: modules/csv/views/tpl/csvTabContent.php:40
818
- msgid "Import"
819
- msgstr "Import"
820
-
821
- #: modules/csv/views/tpl/csvTabContent.php:30 modules/gmap/views/gmap.php:229
822
- #: modules/gmap/views/tpl/gmapEditMap.php:25
823
- msgid "Markers"
824
- msgstr "Marker"
825
-
826
- #: modules/gmap/controller.php:23
827
- msgid "Map data not found"
828
- msgstr "Kartendaten nicht gefunden"
829
-
830
- #: modules/gmap/mod.php:19
831
- msgid "Add Map"
832
- msgstr "Karte hinzufügen"
833
-
834
- #: modules/gmap/mod.php:25
835
- msgid "All Maps"
836
- msgstr "Alle Karten"
837
-
838
- #: modules/gmap/mod.php:35
839
- msgid "No Map Found"
840
- msgstr "Keine Karte gefunden"
841
-
842
- #: modules/gmap/mod.php:98
843
- msgid "Empty or Invalid Map ID"
844
- msgstr "Leere oder ungültige Karten ID"
845
-
846
- #: modules/gmap/mod.php:98
847
- msgid "Please, check your Map Shortcode."
848
- msgstr "Bitte prüfe deinen Karten Shortcode"
849
-
850
- #: modules/gmap/mod.php:118
851
- msgid "Top Center"
852
- msgstr "Oben mittig"
853
-
854
- #: modules/gmap/mod.php:119
855
- msgid "Top Left"
856
- msgstr "Oben links"
857
-
858
- #: modules/gmap/mod.php:120
859
- msgid "Top Right"
860
- msgstr "Open rechts"
861
-
862
- #: modules/gmap/mod.php:121
863
- msgid "Left Top"
864
- msgstr "Links oben"
865
-
866
- #: modules/gmap/mod.php:122
867
- msgid "Right Top"
868
- msgstr "Rechts oben"
869
-
870
- #: modules/gmap/mod.php:123
871
- msgid "Left Center"
872
- msgstr "Links mittig"
873
-
874
- #: modules/gmap/mod.php:124
875
- msgid "Right Center"
876
- msgstr "Rechts mittig"
877
-
878
- #: modules/gmap/mod.php:125
879
- msgid "Left Bottom"
880
- msgstr "Links unten"
881
-
882
- #: modules/gmap/mod.php:126
883
- msgid "Right Bottom"
884
- msgstr "Rechts unten"
885
-
886
- #: modules/gmap/mod.php:127
887
- msgid "Bottom Center"
888
- msgstr "Unten mittig"
889
-
890
- #: modules/gmap/mod.php:128
891
- msgid "Bottom Left"
892
- msgstr "Unten links"
893
-
894
- #: modules/gmap/mod.php:129
895
- msgid "Bottom Right"
896
- msgstr "Unten rechts"
897
-
898
- #: modules/gmap/mod.php:155
899
- msgid "Slider"
900
- msgstr "Slider"
901
-
902
- #: modules/gmap/mod.php:156
903
- msgid "Slider - Title and Img"
904
- msgstr "Slider - Titel und Bild"
905
-
906
- #: modules/gmap/mod.php:157 modules/gmap/mod.php:159
907
- msgid "Slider Vertical - Title and Img"
908
- msgstr "Slider senkrecht - Titel und Bild"
909
-
910
- #: modules/gmap/mod.php:158
911
- msgid "Slider Vertical - Title and Description"
912
- msgstr "Slider senkrecht - Titel und Beschreibung"
913
-
914
- #: modules/gmap/mod.php:160
915
- msgid "Slider Table"
916
- msgstr "Slider Tabelle"
917
-
918
- #: modules/gmap/mod.php:186
919
- msgid "Google Map"
920
- msgstr ""
921
-
922
- #: modules/gmap/models/gmap.php:90
923
- msgid "Please enter Map Name"
924
- msgstr "Bitte geben Sie den Kartennamen ein"
925
-
926
- #: modules/gmap/models/gmap.php:119
927
- #: modules/marker_groups/models/marker_groups.php:104
928
- msgid "Empty Params"
929
- msgstr "Leere Parameter"
930
-
931
- #: modules/gmap/models/gmap.php:128 modules/gmap/models/gmap.php:226
932
- msgid "Invalid Map ID"
933
- msgstr "Ungültige Karten ID"
934
-
935
- #: modules/gmap/views/gmap.php:80
936
- #, php-format
937
- msgid "Map with ID %d not found"
938
- msgstr "Karte mit der ID %d nicht gefunden"
939
-
940
- #: modules/gmap/views/gmap.php:81
941
- msgid "Map not found"
942
- msgstr "Karte nicht gefunden"
943
-
944
- #: modules/gmap/views/gmap.php:228
945
- msgid "Html options"
946
- msgstr "Html Optionen"
947
-
948
- #: modules/gmap/views/gmap.php:230
949
- msgid "Operations"
950
- msgstr "Vorgänge"
951
-
952
- #: modules/gmap/views/gmap.php:262 modules/gmap/views/gmap.php:263
953
- #: modules/gmap/views/tpl/gmapEditMap.php:142
954
- #: modules/gmap/views/tpl/gmapEditMap.php:170
955
- #: modules/gmap/views/tpl/gmapEditMap.php:375 modules/marker/mod.php:20
956
- msgid "None"
957
- msgstr "Keine"
958
-
959
- #: modules/gmap/views/gmap.php:343
960
- msgid "Error inside google maps plugin."
961
- msgstr "Fehler im Google Maps Plugin"
962
-
963
- #: modules/gmap/views/gmap.php:347
964
- msgid "You need to reactivate your Google Maps Easy plugin."
965
- msgstr "Sie benötigen das aktive Standard Plugin 'Google Maps Easy'"
966
-
967
- #: modules/gmap/views/tpl/gmapAdmin.php:5
968
- #: modules/gmap/views/tpl/gmapAdmin.php:6
969
- #: modules/marker_groups/views/tpl/mgrAdmin.php:21
970
- #: modules/marker_groups/views/tpl/mgrAdmin.php:22
971
- msgid "Search"
972
- msgstr "Suchen"
973
-
974
- #: modules/gmap/views/tpl/gmapAdmin.php:8
975
- #: modules/gmap/views/tpl/gmapAdmin.php:11
976
- msgid "Clone selected"
977
- msgstr "Dupliziere ausgewähltes"
978
-
979
- #: modules/gmap/views/tpl/gmapAdmin.php:14
980
- #: modules/gmap/views/tpl/gmapAdmin.php:17
981
- #: modules/marker_groups/views/tpl/mgrAdmin.php:10
982
- #: modules/marker_groups/views/tpl/mgrAdmin.php:13
983
- msgid "Delete selected"
984
- msgstr "Auswahl löschen"
985
-
986
- #: modules/gmap/views/tpl/gmapAdmin.php:33
987
- #, php-format
988
- msgid "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</a> your first Map!"
989
- msgstr "Sie haben noch keine Karten. <a href='%s' style='font-style: italic;'>Erstellen</a> Sie Ihre erste Karte!"
990
-
991
- #: modules/gmap/views/tpl/gmapEditMap.php:4
992
- #, php-format
993
- msgid "This option is available in <a target='_blank' href='%s'>PRO version</a> only, you can get it <a target='_blank' href='%s'>here.</a>"
994
- msgstr "Diese Option ist nur in der <a target='_blank' href='%s'>PRO Version</a>verfügbar, Sie bekommen diese Version <a target='_blank' href='%s'>hier.</a>"
995
-
996
- #: modules/gmap/views/tpl/gmapEditMap.php:13
997
- msgid "Insert to Contact Form"
998
- msgstr "In Kontakt Formular einfügen"
999
-
1000
- #: modules/gmap/views/tpl/gmapEditMap.php:14
1001
- #: modules/gmap/views/tpl/gmapEditMap.php:1719
1002
- msgid "Enable for Membership"
1003
- msgstr "aktiviere Mitglieder"
1004
-
1005
- #: modules/gmap/views/tpl/gmapEditMap.php:19
1006
- msgid "Map"
1007
- msgstr "Karte"
1008
-
1009
- #: modules/gmap/views/tpl/gmapEditMap.php:27
1010
- #: modules/gmap/views/tpl/gmapEditMap.php:36
1011
- msgid "New"
1012
- msgstr "Neu"
1013
-
1014
- #: modules/gmap/views/tpl/gmapEditMap.php:34
1015
- #: modules/supsystic_promo/mod.php:264
1016
- msgid "Figures"
1017
- msgstr "Formen"
1018
-
1019
- #: modules/gmap/views/tpl/gmapEditMap.php:43
1020
- msgid "Heatmap Layer"
1021
- msgstr "Wärmebild"
1022
-
1023
- #: modules/gmap/views/tpl/gmapEditMap.php:53
1024
- msgid "Map Name"
1025
- msgstr "Kartenname"
1026
-
1027
- #: modules/gmap/views/tpl/gmapEditMap.php:55
1028
- msgid "Your map name"
1029
- msgstr "Ihr Kartenname"
1030
-
1031
- #: modules/gmap/views/tpl/gmapEditMap.php:67
1032
- msgid "Map Width"
1033
- msgstr "Kartenbreite"
1034
-
1035
- #: modules/gmap/views/tpl/gmapEditMap.php:69
1036
- msgid "Your map width"
1037
- msgstr "Ihre Kartenbreite"
1038
-
1039
- #: modules/gmap/views/tpl/gmapEditMap.php:78
1040
- #: modules/gmap/views/tpl/gmapEditMap.php:110
1041
- #: modules/gmap/views/tpl/gmapEditMap.php:875
1042
- #: modules/gmap/views/tpl/gmapEditMap.php:915
1043
- #: modules/gmap/views/tpl/gmapEditMap.php:969
1044
- #: modules/gmap/views/tpl/gmapEditMap.php:991
1045
- msgid "Pixels"
1046
- msgstr "Pixel"
1047
-
1048
- #: modules/gmap/views/tpl/gmapEditMap.php:81
1049
- #: modules/gmap/views/tpl/gmapEditMap.php:113
1050
- #: modules/gmap/views/tpl/gmapEditMap.php:881
1051
- #: modules/gmap/views/tpl/gmapEditMap.php:921
1052
- #: modules/gmap/views/tpl/gmapEditMap.php:973
1053
- #: modules/gmap/views/tpl/gmapEditMap.php:995
1054
- msgid "Px"
1055
- msgstr "Px"
1056
-
1057
- #: modules/gmap/views/tpl/gmapEditMap.php:85
1058
- msgid "Percents"
1059
- msgstr "Prozent"
1060
-
1061
- #: modules/gmap/views/tpl/gmapEditMap.php:92
1062
- msgid "Map Height"
1063
- msgstr "Kartenhöhe"
1064
-
1065
- #: modules/gmap/views/tpl/gmapEditMap.php:94
1066
- msgid ""
1067
- "Your map height.\n"
1068
- "\t\t\t\t\t\t\t\t\t<br /><br />If Adapt map to screen height option is checked - map height will be recalculated on frontend and can be equals to:\n"
1069
- "\t\t\t\t\t\t\t\t\t<ul>\n"
1070
- "\t\t\t\t\t\t\t\t\t<li>1) your device screen height - height from top of page to top of map (if screen height > height from top of page to top of map)</li>\n"
1071
- "\t\t\t\t\t\t\t\t\t<li>2) your device screen height (in other cases)</li>\n"
1072
- "\t\t\t\t\t\t\t\t\t</ul>\n"
1073
- "\t\t\t\t\t\t\t\t\tRecalculation will be done for maps in page content and widgets except of maps which displaying in Google Maps Easy widget popup (Display as image mode)."
1074
- msgstr ""
1075
-
1076
- #: modules/gmap/views/tpl/gmapEditMap.php:121
1077
- msgid "Adapt map to screen height"
1078
- msgstr "Bildschirmhöhe der Karte anpassen"
1079
-
1080
- #: modules/gmap/views/tpl/gmapEditMap.php:135
1081
- msgid "Map type control"
1082
- msgstr "Steuerfeld Kartentyp"
1083
-
1084
- #: modules/gmap/views/tpl/gmapEditMap.php:137
1085
- msgid "Control view for map type - you can see it in right upper corner by default"
1086
- msgstr "Steuerfeld Kartentyp - Sie sehen sie standardmäßig in der Ecke oben rechts"
1087
-
1088
- #: modules/gmap/views/tpl/gmapEditMap.php:142
1089
- msgid "Dropdown Menu"
1090
- msgstr "Ausklappbares Menü"
1091
-
1092
- #: modules/gmap/views/tpl/gmapEditMap.php:142
1093
- msgid "Horizontal Bar"
1094
- msgstr "Horizontaler Balken"
1095
-
1096
- #: modules/gmap/views/tpl/gmapEditMap.php:148
1097
- msgid "Change type control position on map"
1098
- msgstr "Position der Steuerfelder für den Kartentyp auf der Karte ändern"
1099
-
1100
- #: modules/gmap/views/tpl/gmapEditMap.php:155
1101
- #: modules/gmap/views/tpl/gmapEditMap.php:183
1102
- #: modules/gmap/views/tpl/gmapEditMap.php:215
1103
- #: modules/gmap/views/tpl/gmapEditMap.php:443
1104
- #: modules/gmap/views/tpl/gmapEditMap.php:469
1105
- #: modules/gmap/views/tpl/gmapEditMap.php:486
1106
- #: modules/gmap/views/tpl/gmapEditMap.php:503
1107
- #: modules/gmap/views/tpl/gmapEditMap.php:527
1108
- #: modules/gmap/views/tpl/gmapEditMap.php:589
1109
- #: modules/gmap/views/tpl/gmapEditMap.php:668
1110
- #: modules/gmap/views/tpl/gmapEditMap.php:685
1111
- #: modules/gmap/views/tpl/gmapEditMap.php:702
1112
- #: modules/gmap/views/tpl/gmapEditMap.php:745
1113
- #: modules/gmap/views/tpl/gmapEditMap.php:784
1114
- #: modules/gmap/views/tpl/gmapEditMap.php:1014
1115
- #: modules/gmap/views/tpl/gmapEditMap.php:1057
1116
- #: modules/options/views/tpl/optionsSettingsTabContent.php:69
1117
- msgid "PRO option"
1118
- msgstr "PRO Option"
1119
-
1120
- #: modules/gmap/views/tpl/gmapEditMap.php:163
1121
- msgid "Zoom control"
1122
- msgstr "Zoomsteuerung"
1123
-
1124
- #: modules/gmap/views/tpl/gmapEditMap.php:165
1125
- msgid "Zoom control type on your map. Note, to view Zoom control on the map the Custom Map Controls option must be disabled."
1126
- msgstr "Art derZoomsteuerung auf Ihrer Karte. Anmerkung: Um die Zoomsteuerung auf der Karte zu sehen, muss die Steuerfunktion für die Schaltflächen auf personalisierten Karten deaktiviert sein."
1127
-
1128
- #: modules/gmap/views/tpl/gmapEditMap.php:170
1129
- #: modules/gmap/views/tpl/gmapEditMap.php:429
1130
- msgid "Default"
1131
- msgstr "Standard"
1132
-
1133
- #: modules/gmap/views/tpl/gmapEditMap.php:176
1134
- msgid "Change zoom control position on map"
1135
- msgstr "Position der Zoomsteuerung auf der Karte ändern"
1136
-
1137
- #: modules/gmap/views/tpl/gmapEditMap.php:186
1138
- msgid "Notice"
1139
- msgstr "Anmerkung"
1140
-
1141
- #: modules/gmap/views/tpl/gmapEditMap.php:188
1142
- msgid "Standard Zoom control will not displaying for this map, because the Custom Map Controls option enabled now."
1143
- msgstr "Das Standard-Steuerfeld für dieZoomsteuerung wird auf dieser Karte nicht angezeigt, weil die Option für personalisierten Steuerfelder aktiv ist"
1144
-
1145
- #: modules/gmap/views/tpl/gmapEditMap.php:196
1146
- msgid "Street view control"
1147
- msgstr "Streeview-Steuerung"
1148
-
1149
- #: modules/gmap/views/tpl/gmapEditMap.php:198
1150
- msgid "Street view control usually is located on left upper corner of your map"
1151
- msgstr "Die Streeview-Steuerung befindet sich üblicherweise in der oberen linken Ecke auf Ihrer Karte"
1152
-
1153
- #: modules/gmap/views/tpl/gmapEditMap.php:208
1154
- msgid "Change street view control position on map"
1155
- msgstr "Streetview Position auf der Karte ändern"
1156
-
1157
- #: modules/gmap/views/tpl/gmapEditMap.php:268
1158
- msgid "Draggable"
1159
- msgstr "Ziehbar"
1160
-
1161
- #: modules/gmap/views/tpl/gmapEditMap.php:270
1162
- msgid "Enable or disable possibility to drag your map using mouse"
1163
- msgstr "Möglichkeit zum Ziehen der Karte mit der Maus aktivieren oder deaktivieren"
1164
-
1165
- #: modules/gmap/views/tpl/gmapEditMap.php:281
1166
- msgid "Double click to zoom"
1167
- msgstr "Doppelklick zum Zoomen"
1168
-
1169
- #: modules/gmap/views/tpl/gmapEditMap.php:283
1170
- msgid "By default double left click on map will zoom it in. But you can change this here."
1171
- msgstr "Standardmäßig wird ein Doppelklick mit der linken Maustaste die Karte heranzoomen. Sie können dies aber hier ändern."
1172
-
1173
- #: modules/gmap/views/tpl/gmapEditMap.php:294
1174
- msgid "Mouse wheel to zoom"
1175
- msgstr "Mit dem Mausrad zoomen"
1176
-
1177
- #: modules/gmap/views/tpl/gmapEditMap.php:296
1178
- msgid "Sometimes you need to disable possibility to zoom your map using mouse wheel. This can be required for example - if you need to use your wheel for some other action, for example scroll your site even if mouse is over your map."
1179
- msgstr "Manchmal müssen Sie die Zoomfähigkeit des Mausrads unterbinden. Das ist der Fall, wenn Sie das Mausrad für eine andere Aktion nutzen wollen, beispielsweise für das Scrollen auf der Seite auch wenn sich die Maus noch auf der Karte befindet."
1180
-
1181
- #: modules/gmap/views/tpl/gmapEditMap.php:307
1182
- msgid "Min Zoom Level"
1183
- msgstr "Minimaler Zoomfaktor"
1184
-
1185
- #: modules/gmap/views/tpl/gmapEditMap.php:309
1186
- msgid "Sets min zoom level for map."
1187
- msgstr "Setzt den minimalen Zoomfaktor für die Karte"
1188
-
1189
- #: modules/gmap/views/tpl/gmapEditMap.php:321
1190
- msgid "Max Zoom Level"
1191
- msgstr "Maximaler Zoomfaktor"
1192
-
1193
- #: modules/gmap/views/tpl/gmapEditMap.php:323
1194
- msgid "Sets max zoom level for map."
1195
- msgstr "Setzt den maximalen Zoomfaktor für die Karte"
1196
-
1197
- #: modules/gmap/views/tpl/gmapEditMap.php:335
1198
- msgid "Google Map Theme"
1199
- msgstr "Google Map Theme"
1200
-
1201
- #: modules/gmap/views/tpl/gmapEditMap.php:337
1202
- msgid "You can select your Google Map theme - Road Map, Hybrid, Satellite or Terrain - here. By default your map will have Road Map Google maps theme."
1203
- msgstr "Sie können hier das Theme für die Google Karte auswählen - Straßenansicht, Hybirdansicht, Satellitenansicht oder Relievansicht. Standardmäßig ist die Strassenansicht aktiv."
1204
-
1205
- #: modules/gmap/views/tpl/gmapEditMap.php:341
1206
- msgid "Road Map"
1207
- msgstr "Straßenkarte"
1208
-
1209
- #: modules/gmap/views/tpl/gmapEditMap.php:341
1210
- msgid "Hybrid"
1211
- msgstr "Hybridansicht"
1212
-
1213
- #: modules/gmap/views/tpl/gmapEditMap.php:341
1214
- msgid "Satellite"
1215
- msgstr "Satellitenansicht"
1216
-
1217
- #: modules/gmap/views/tpl/gmapEditMap.php:341
1218
- msgid "Terrain"
1219
- msgstr "Gelände"
1220
-
1221
- #: modules/gmap/views/tpl/gmapEditMap.php:349
1222
- msgid "Map Stylization"
1223
- msgstr "Kartengestaltung"
1224
-
1225
- #: modules/gmap/views/tpl/gmapEditMap.php:351
1226
- msgid "Make your map unique with our Map Themes, just try to change it here - and you will see results on your Map Preview."
1227
- msgstr "Machen Sie Ihre Karte einzigartig mit unsere Karten Themes, versuchen Sie es einfach hier - Sie sehen das Ergebnis in der Kartenvorschau."
1228
-
1229
- #: modules/gmap/views/tpl/gmapEditMap.php:361
1230
- msgid "Get 300+ Themes with PRO"
1231
- msgstr "Über 300 Themes mit PRO bekommen"
1232
-
1233
- #: modules/gmap/views/tpl/gmapEditMap.php:369
1234
- msgid "Markers Clusterization"
1235
- msgstr "Marker gruppieren"
1236
-
1237
- #: modules/gmap/views/tpl/gmapEditMap.php:371
1238
- msgid "If you have many markers - you can have a problems with viewing them when zoom out for example: they will just cover each-other. Marker clusterization can solve this problem by grouping your markers in groups when they are too close to each-other."
1239
- msgstr "Wenn Sie viele Marker haben - kann es Probleme mit der Ansicht beim Herauszoomen geben, beispielsweise die Überlappung von Markern. Die Markergruppierung löst dieses Problem, wenn sich diese zu nahe zueinander befinden."
1240
-
1241
- #: modules/gmap/views/tpl/gmapEditMap.php:375
1242
- msgid "Base Clusterization"
1243
- msgstr "Basisgruppierung"
1244
-
1245
- #: modules/gmap/views/tpl/gmapEditMap.php:387
1246
- msgid "/gmap/img/m1.png"
1247
- msgstr ""
1248
-
1249
- #: modules/gmap/views/tpl/gmapEditMap.php:404
1250
- #: modules/gmap/views/tpl/gmapEditMap.php:760
1251
- #: modules/gmap/views/tpl/gmapEditMap.php:1125
1252
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:71
1253
- msgid "Upload Icon"
1254
- msgstr "Icon hochladen"
1255
-
1256
- #: modules/gmap/views/tpl/gmapEditMap.php:405
1257
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:72
1258
- msgid "Default Icon"
1259
- msgstr "Standard Icon"
1260
-
1261
- #: modules/gmap/views/tpl/gmapEditMap.php:409
1262
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:46
1263
- msgid "Cluster Icon"
1264
- msgstr "Basisgruppierung Icon"
1265
-
1266
- #: modules/gmap/views/tpl/gmapEditMap.php:419
1267
- msgid "Cluster Area Size"
1268
- msgstr "Gruppenbereichsgröße"
1269
-
1270
- #: modules/gmap/views/tpl/gmapEditMap.php:421
1271
- msgid "Sets the grid size of cluster. The higher the size - the more area of capture the markers to the cluster."
1272
- msgstr "Setzen der Gruppenbereichsgröße. Je höher der Wert ist, desto mehr Markers werden gruppiert."
1273
-
1274
- #: modules/gmap/views/tpl/gmapEditMap.php:438
1275
- msgid "Markers List"
1276
- msgstr "Markerliste"
1277
-
1278
- #: modules/gmap/views/tpl/gmapEditMap.php:440
1279
- msgid "Display all map markers - as list bellow Your map. This will help your users get more info about your markers and find required marker more faster."
1280
- msgstr "Alle Kartenmarker zeigen - als Liste unter Ihrer Karte. Dies wird Ihren Nutzern helfen, mehr Informationen über Ihre Marker zu bekommen und die gewünschten Marker schneller zu finden."
1281
-
1282
- #: modules/gmap/views/tpl/gmapEditMap.php:447
1283
- msgid "Select Markers List type"
1284
- msgstr "Markerlistentyp auswählen"
1285
-
1286
- #: modules/gmap/views/tpl/gmapEditMap.php:453
1287
- msgid "Markers List Color"
1288
- msgstr "Farbe der Markerliste"
1289
-
1290
- #: modules/gmap/views/tpl/gmapEditMap.php:464
1291
- msgid "Traffic Layer"
1292
- msgstr "Verkehrslage"
1293
-
1294
- #: modules/gmap/views/tpl/gmapEditMap.php:466
1295
- msgid "Add real-time traffic information to your map."
1296
- msgstr "Fügen Sie Echtzeit-Verkerhsinformationen in Ihre Karte ein"
1297
-
1298
- #: modules/gmap/views/tpl/gmapEditMap.php:481
1299
- msgid "Transit Layer"
1300
- msgstr "Öffentliche Verkehrsmittel"
1301
-
1302
- #: modules/gmap/views/tpl/gmapEditMap.php:483
1303
- msgid "Display the public transit network of a city on your map. When the Transit Layer is enabled, and the map is centered on a city that supports transit information, the map will display major transit lines as thick, colored lines."
1304
- msgstr "Zeige Sie das öffentliche Verkehrsnetz einer Stadt auf Ihrer Karte. Wenn die Ebene öffentlich Verkehrsmittel aktiviert ist, und die Karte über einer Stadt zentriert ist die Informationen über öffentliche Verkehrsmittel anbietet zentriert ist, wird die Karte die wichtigsten öffentliche Verkehrsmittel als dicke farbige Linien anzeigen."
1305
-
1306
- #: modules/gmap/views/tpl/gmapEditMap.php:498
1307
- msgid "Bicycling Layer"
1308
- msgstr "Fahrrad Ebene"
1309
-
1310
- #: modules/gmap/views/tpl/gmapEditMap.php:500
1311
- msgid "Add a layer of bike paths, suggested bike routes and other overlays specific to bicycling usage on top of the given map.Dark green routes indicated dedicated bicycle routes. Light green routes indicate streets with dedicated 'bike lanes.' Dashed routes indicate streets or paths otherwise recommended for bicycle usage."
1312
- msgstr "Fügen Sie eine Ebene mit Radwegen, empfohlenen Fahrradrouten oder andere spezifische Ebenen bezüglich Fahrradnutzung für eine bestimmte Karte ein. Dunkelgrüne Routen zeigen die Fahrradrouten an. Hellgrüne Routen zeigen Straßen mit Radwegen an. Gepunktete Routen zeigen Strassen oder Wege an, die für die Radnutzung empfohlen sind."
1313
-
1314
- #: modules/gmap/views/tpl/gmapEditMap.php:518
1315
- msgid "Add KML layers"
1316
- msgstr "KML-Ebene hinzufügen"
1317
-
1318
- #: modules/gmap/views/tpl/gmapEditMap.php:520
1319
- msgid ""
1320
- "Add KML files to display custom layers on the map. Additional options:\n"
1321
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Enable KML layers filter</b> - add form to map for dynamically enable / disable KML layers and sublayers."
1322
- msgstr ""
1323
- "Einfügen der KML-Datei in einer eigenen Ebene der Karte. Zusätzliche Optionen:\n"
1324
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br /><b>\t\n"
1325
- "aktivieren des KML-Ebene Filters</b> - aktivieren und hinzufügen eines dynamischen Formular / deaktiviere KML Ebenen und Unterebenen."
1326
-
1327
- #: modules/gmap/views/tpl/gmapEditMap.php:536
1328
- msgid "Enable KML layers filter"
1329
- msgstr "aktivieren des KML-Ebene Filters"
1330
-
1331
- #: modules/gmap/views/tpl/gmapEditMap.php:541
1332
- msgid "Enter KML file URL"
1333
- msgstr "URL für die KML Datei eingeben"
1334
-
1335
- #: modules/gmap/views/tpl/gmapEditMap.php:544
1336
- msgid "Hide Sublayers at KML filter"
1337
- msgstr "deaktiviere Unterebenen vom KML Filter"
1338
-
1339
- #: modules/gmap/views/tpl/gmapEditMap.php:547
1340
- msgid "Remove KML field"
1341
- msgstr "entferne KML Feld"
1342
-
1343
- #: modules/gmap/views/tpl/gmapEditMap.php:563
1344
- msgid "or Upload KML file"
1345
- msgstr "oder KML Datei hochladen"
1346
-
1347
- #: modules/gmap/views/tpl/gmapEditMap.php:568
1348
- msgid "Add more files"
1349
- msgstr "Weitere Dateien hinzufügen"
1350
-
1351
- #: modules/gmap/views/tpl/gmapEditMap.php:578
1352
- msgid "Custom Map Controls"
1353
- msgstr "personalisierte Steuerfelder"
1354
-
1355
- #: modules/gmap/views/tpl/gmapEditMap.php:583
1356
- msgid "Add custom map controls to the map."
1357
- msgstr "Fügen Sie personalisierte Steuerfelder für Ihre Karte hinzu"
1358
-
1359
- #: modules/gmap/views/tpl/gmapEditMap.php:599
1360
- msgid "Controls type"
1361
- msgstr "Steuerfelder Typ"
1362
-
1363
- #: modules/gmap/views/tpl/gmapEditMap.php:602
1364
- msgid "Square"
1365
- msgstr "Viereck"
1366
-
1367
- #: modules/gmap/views/tpl/gmapEditMap.php:602
1368
- msgid "Rounded edges"
1369
- msgstr "Abgerundete Ecken"
1370
-
1371
- #: modules/gmap/views/tpl/gmapEditMap.php:602
1372
- msgid "Round"
1373
- msgstr "Rund"
1374
-
1375
- #: modules/gmap/views/tpl/gmapEditMap.php:608
1376
- msgid "Background color"
1377
- msgstr "Hintergrundfarbe"
1378
-
1379
- #: modules/gmap/views/tpl/gmapEditMap.php:616
1380
- msgid "Text color"
1381
- msgstr "Textfarbe"
1382
-
1383
- #: modules/gmap/views/tpl/gmapEditMap.php:624
1384
- msgid "Controls position"
1385
- msgstr "Position der Steuerfelder"
1386
-
1387
- #: modules/gmap/views/tpl/gmapEditMap.php:634
1388
- msgid "Min Search Radius (in meters):"
1389
- msgstr "Min Suchradius (in metern)"
1390
-
1391
- #: modules/gmap/views/tpl/gmapEditMap.php:642
1392
- msgid "Max Search Radius (in meters):"
1393
- msgstr "Max Suchradius (in metern)"
1394
-
1395
- #: modules/gmap/views/tpl/gmapEditMap.php:650
1396
- msgid "Search Country"
1397
- msgstr "Suche Land"
1398
-
1399
- #: modules/gmap/views/tpl/gmapEditMap.php:663
1400
- msgid "Full Screen Button"
1401
- msgstr "Vollbild-Schaltfläche"
1402
-
1403
- #: modules/gmap/views/tpl/gmapEditMap.php:665
1404
- msgid "Add a button on map to open it full screen."
1405
- msgstr "Fügen Sie einen Schaltfläche hinzu, um zum Vollbild zu wechseln"
1406
-
1407
- #: modules/gmap/views/tpl/gmapEditMap.php:680
1408
- msgid "Hide POI"
1409
- msgstr "POI ausblenden"
1410
-
1411
- #: modules/gmap/views/tpl/gmapEditMap.php:682
1412
- msgid "Hide the Points Of Interest - landmark or other object, the marked points on the map, for example: hotels, campsites, fuel stations etc."
1413
- msgstr "Blenden Sie die Points of Interest aus - Orientierungspunkte, Wegpunkte oder andere Kartenobjekte wie Hotels, Campingplätze, Tankstellen, usw. "
1414
-
1415
- #: modules/gmap/views/tpl/gmapEditMap.php:697
1416
- msgid "Hide Countries"
1417
- msgstr "deaktiviere Länder"
1418
-
1419
- #: modules/gmap/views/tpl/gmapEditMap.php:699
1420
- msgid "Hide all administrative data about countries: names, borders ets."
1421
- msgstr "deaktiviere Länderdaten (Namen, Grenzen, usw.)"
1422
-
1423
- #: modules/gmap/views/tpl/gmapEditMap.php:714
1424
- msgid "Hide Tooltips of Markers"
1425
- msgstr "deaktiviere Tooltips für Marker"
1426
-
1427
- #: modules/gmap/views/tpl/gmapEditMap.php:716
1428
- msgid "Hide the tooltips, which displayed by mouse hover on markers' icons."
1429
- msgstr "deaktiviere Tooltips, wenn sich der Mauszeiger über den Marker bewegt."
1430
-
1431
- #: modules/gmap/views/tpl/gmapEditMap.php:727
1432
- msgid "Center on current opened marker"
1433
- msgstr "Zentriere auf aktuell geöffnete Marker"
1434
-
1435
- #: modules/gmap/views/tpl/gmapEditMap.php:729
1436
- msgid "On frontend the map will be centered on current marker with opened info window."
1437
- msgstr "Die Karte im 'Frontend' wird zentriert, sobald sich das Info-Fenster öffnet des ausgewählten Markes."
1438
-
1439
- #: modules/gmap/views/tpl/gmapEditMap.php:740
1440
- msgid "Center on current user location"
1441
- msgstr "Auf aktuellen Standort zentrieren"
1442
-
1443
- #: modules/gmap/views/tpl/gmapEditMap.php:742
1444
- msgid "On frontend map will be centered on current user location."
1445
- msgstr "Die Frontansicht der Karte wird auf die aktuelle Position des Nutzers zentriert."
1446
-
1447
- #: modules/gmap/views/tpl/gmapEditMap.php:771
1448
- msgid "Add markers on frontend"
1449
- msgstr "Marker hinzufügen über das 'Frontend' aktivieren"
1450
-
1451
- #: modules/gmap/views/tpl/gmapEditMap.php:773
1452
- msgid ""
1453
- "You can add markers at the current map with the frontend using the form, which can be displayed using the shortcode (it placed below preview map). Additional options that affect the operation of the form:\n"
1454
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Logged In Users Only</b> - form will be displayed only for logged in users.\n"
1455
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Disable WP Editor</b> - disable / enable WP Editor for the Marker Description field of the form.\n"
1456
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Delete markers</b> - disable / enable interface for deleting markers on frontend. Each user can delete only his own markers.\n"
1457
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Use limits for marker's adding</b> - allows you to limit the number of markers, which user can add from one IP address at the current map for a certain amount of time.\n"
1458
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Max marker's count</b> - the maximum number of markers, which can be added over certain amount of time.\n"
1459
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br /><b>For allotted time (minutes)</b> - the number of minutes, during which you can add the maximum number of markers.\n"
1460
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br />For example, during three minutes you can add only two markers at the map. If you try to add a third marker - the form will not be saved and you will see the notice with amount of time you must wait. After the right amount of time will pass - you can add next two markers, etc.\n"
1461
- "\t\t\t\t\t\t\t\t\t\t\t<br /><br />Important! If map and form for add markers at this map are placed on one page - this page will be overload after marker adding."
1462
- msgstr ""
1463
-
1464
- #: modules/gmap/views/tpl/gmapEditMap.php:798
1465
- msgid "Logged In Users Only"
1466
- msgstr "Nur für angemeldete Benutzer"
1467
-
1468
- #: modules/gmap/views/tpl/gmapEditMap.php:805
1469
- msgid "Disable WP Editor"
1470
- msgstr "deaktiveren 'WP Editor'"
1471
-
1472
- #: modules/gmap/views/tpl/gmapEditMap.php:812
1473
- msgid "Delete markers"
1474
- msgstr "Marker löschen"
1475
-
1476
- #: modules/gmap/views/tpl/gmapEditMap.php:819
1477
- msgid "Use limits for marker's adding"
1478
- msgstr "Einschränkungen für Marker bearbeitung"
1479
-
1480
- #: modules/gmap/views/tpl/gmapEditMap.php:824
1481
- msgid "Max marker's count"
1482
- msgstr "Anzahl max. Markers"
1483
-
1484
- #: modules/gmap/views/tpl/gmapEditMap.php:832
1485
- msgid "For allotted time (minutes)"
1486
- msgstr "zugeteilte Zeit (minuten)"
1487
-
1488
- #: modules/gmap/views/tpl/gmapEditMap.php:845
1489
- msgid "Info Window"
1490
- msgstr "Info-Fenster"
1491
-
1492
- #: modules/gmap/views/tpl/gmapEditMap.php:847
1493
- msgid "Parameters of markers / shapes info-window PopUp"
1494
- msgstr "Info-Fenster Parameter von Marker und Formen"
1495
-
1496
- #: modules/gmap/views/tpl/gmapEditMap.php:854
1497
- msgid "Width"
1498
- msgstr "Breite"
1499
-
1500
- #: modules/gmap/views/tpl/gmapEditMap.php:856
1501
- msgid "Width of info window"
1502
- msgstr "Breite des Info-Fenster"
1503
-
1504
- #: modules/gmap/views/tpl/gmapEditMap.php:870
1505
- #: modules/gmap/views/tpl/gmapEditMap.php:910
1506
- msgid "Auto"
1507
- msgstr "Auto"
1508
-
1509
- #: modules/gmap/views/tpl/gmapEditMap.php:894
1510
- msgid "Height"
1511
- msgstr "Höhe"
1512
-
1513
- #: modules/gmap/views/tpl/gmapEditMap.php:896
1514
- msgid "Height of info window"
1515
- msgstr "Höhe des Info-Fenster"
1516
-
1517
- #: modules/gmap/views/tpl/gmapEditMap.php:934
1518
- msgid "Title Color"
1519
- msgstr "Titelfarbe"
1520
-
1521
- #: modules/gmap/views/tpl/gmapEditMap.php:936
1522
- msgid "You can set your info window title color here"
1523
- msgstr "Farbe des Titels im Info-Fenster ändern"
1524
-
1525
- #: modules/gmap/views/tpl/gmapEditMap.php:946
1526
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:35
1527
- msgid "Background Color"
1528
- msgstr "Hintergrundfarbe"
1529
-
1530
- #: modules/gmap/views/tpl/gmapEditMap.php:948
1531
- msgid "You can set your info window background color here"
1532
- msgstr "Schriftgröße des Titels im Info-Fenster ändern"
1533
-
1534
- #: modules/gmap/views/tpl/gmapEditMap.php:958
1535
- msgid "Title Font Size"
1536
- msgstr "Schriftgröße des Titels"
1537
-
1538
- #: modules/gmap/views/tpl/gmapEditMap.php:960
1539
- msgid "You can set your info window title font size here"
1540
- msgstr "Schriftgröße des Titels im Info-Fenster ändern"
1541
-
1542
- #: modules/gmap/views/tpl/gmapEditMap.php:980
1543
- msgid "Description Font Size"
1544
- msgstr "Schriftgröße der Beschreibung"
1545
-
1546
- #: modules/gmap/views/tpl/gmapEditMap.php:982
1547
- msgid "You can set your info window description font size here"
1548
- msgstr "Schriftgröße der Beschreibung im Info-Fenster ändern"
1549
-
1550
- #: modules/gmap/views/tpl/gmapEditMap.php:1005
1551
- msgid "Directions Button"
1552
- msgstr "Routenplaner Schaltfläche"
1553
-
1554
- #: modules/gmap/views/tpl/gmapEditMap.php:1008
1555
- msgid "Add a button at marker info window to get direction from the entered address to the marker. If Show route data option is enabled - the total route time and distance will be shown by click on the route polyline."
1556
- msgstr "Hinzufügen einer Schaltfläche am Marker Info-Fenster, damit die Route der eingegebenen Adresse und dem Marker zu erhalten. Wenn die Option Routendaten aktiviert ist, steht die gesamte Wegzeit und Distanz durch Anklicken der angezeigten Route."
1557
-
1558
- #: modules/gmap/views/tpl/gmapEditMap.php:1027
1559
- msgid "Show alternate routes"
1560
- msgstr "Anzeigen von alternativ Routen"
1561
-
1562
- #: modules/gmap/views/tpl/gmapEditMap.php:1035
1563
- msgid "Show route data"
1564
- msgstr "Anzeigen der Routendaten"
1565
-
1566
- #: modules/gmap/views/tpl/gmapEditMap.php:1043
1567
- msgid "Show route steps"
1568
- msgstr "Routenschritte anzeigen"
1569
-
1570
- #: modules/gmap/views/tpl/gmapEditMap.php:1052
1571
- msgid "Print Button"
1572
- msgstr "Druck Schaltfläche"
1573
-
1574
- #: modules/gmap/views/tpl/gmapEditMap.php:1054
1575
- msgid "Add Print button to markers info window"
1576
- msgstr "aktivieren des Druck Schaltfläche im Info-Fenster"
1577
-
1578
- #: modules/gmap/views/tpl/gmapEditMap.php:1086
1579
- msgid "Your marker title"
1580
- msgstr "Titel Ihres Markers"
1581
-
1582
- #: modules/gmap/views/tpl/gmapEditMap.php:1099
1583
- msgid "Write here all text, that you want to appear in marker info-window PopUp"
1584
- msgstr "Schreiben Sie hier den Text, den Sie in das Pop-Up-Fenster der Markierung anzeigen wollen"
1585
-
1586
- #: modules/gmap/views/tpl/gmapEditMap.php:1115
1587
- msgid "Icon"
1588
- msgstr "Icon"
1589
-
1590
- #: modules/gmap/views/tpl/gmapEditMap.php:1117
1591
- msgid "Your marker Icon, that will appear on your map for this marker"
1592
- msgstr "Diese Markersymbol erscheint auf der Karte"
1593
-
1594
- #: modules/gmap/views/tpl/gmapEditMap.php:1137
1595
- msgid "Search your location by address, just start typing here"
1596
- msgstr "Suchen Sie Ihren Ort über die Adresse, einfach hier eintippen"
1597
-
1598
- #: modules/gmap/views/tpl/gmapEditMap.php:1149
1599
- #: modules/gmap/views/tpl/gmapEditMap.php:1422
1600
- msgid "Latitude"
1601
- msgstr "Breitengrad"
1602
-
1603
- #: modules/gmap/views/tpl/gmapEditMap.php:1151
1604
- msgid "Latitude for your marker"
1605
- msgstr "Breitengrad für Ihren Marker"
1606
-
1607
- #: modules/gmap/views/tpl/gmapEditMap.php:1163
1608
- #: modules/gmap/views/tpl/gmapEditMap.php:1431
1609
- msgid "Longitude"
1610
- msgstr "Längengrad"
1611
-
1612
- #: modules/gmap/views/tpl/gmapEditMap.php:1165
1613
- msgid "Longitude for your marker"
1614
- msgstr "Längengrad für Ihren Marker"
1615
-
1616
- #: modules/gmap/views/tpl/gmapEditMap.php:1177
1617
- msgid "Marker Category"
1618
- msgstr "Marker-Kategorie"
1619
-
1620
- #: modules/gmap/views/tpl/gmapEditMap.php:1179
1621
- msgid "Choose marker category"
1622
- msgstr "Kategorie für den Marker auswählen"
1623
-
1624
- #: modules/gmap/views/tpl/gmapEditMap.php:1193
1625
- msgid "Marker Link"
1626
- msgstr "Marker Link"
1627
-
1628
- #: modules/gmap/views/tpl/gmapEditMap.php:1195
1629
- msgid "Link for opening by click on the marker"
1630
- msgstr "Link zum Öffnen durch Klick auf den Marker"
1631
-
1632
- #: modules/gmap/views/tpl/gmapEditMap.php:1211
1633
- msgid "Open in new window"
1634
- msgstr "In einem neuen Fenster öffnen"
1635
-
1636
- #: modules/gmap/views/tpl/gmapEditMap.php:1219
1637
- msgid "Show description by default"
1638
- msgstr "Standardmäßig Beschreibung anzeigen"
1639
-
1640
- #: modules/gmap/views/tpl/gmapEditMap.php:1221
1641
- msgid "Open marker description when map load"
1642
- msgstr "Öffnen Sie die Markerbeschreibung beim Kartenaufruf"
1643
-
1644
- #: modules/gmap/views/tpl/gmapEditMap.php:1231
1645
- msgid "Show description by mouse hover"
1646
- msgstr "Beschreibung bei Überfahren mit der Maus zeigen"
1647
-
1648
- #: modules/gmap/views/tpl/gmapEditMap.php:1233
1649
- msgid "Open marker description by mouse hover"
1650
- msgstr "Markerbeschreibung bei Überfahren mit der Maus öffnen"
1651
-
1652
- #: modules/gmap/views/tpl/gmapEditMap.php:1243
1653
- msgid "Hide description on mouse leave"
1654
- msgstr "Markerbeschreibung deaktivieren wenn der Mauszeiger den Marker verlässt"
1655
-
1656
- #: modules/gmap/views/tpl/gmapEditMap.php:1245
1657
- msgid "Hide description when mouse leaves the marker area"
1658
- msgstr "Beschreibung deaktivieren wenn der Mauszeiger den Marker verlässt"
1659
-
1660
- #: modules/gmap/views/tpl/gmapEditMap.php:1255
1661
- msgid "Marker List Default Image"
1662
- msgstr "Standardbild der Markierungsliste"
1663
-
1664
- #: modules/gmap/views/tpl/gmapEditMap.php:1257
1665
- msgid "If there is no image tag in the marker description - this image will be used for displaying in the map's markers list"
1666
- msgstr "Ist in der Marker Beschreibung kein Bild vorhanden - wird diese Bild in der Markierungsliste dieser Karte angezeigt."
1667
-
1668
- #: modules/gmap/views/tpl/gmapEditMap.php:1300
1669
- msgid "Figure Name"
1670
- msgstr "Form Name"
1671
-
1672
- #: modules/gmap/views/tpl/gmapEditMap.php:1302
1673
- msgid "Your figure title"
1674
- msgstr "Dein Form Titel"
1675
-
1676
- #: modules/gmap/views/tpl/gmapEditMap.php:1313
1677
- msgid "Figure Type"
1678
- msgstr "Form Type"
1679
-
1680
- #: modules/gmap/views/tpl/gmapEditMap.php:1315
1681
- msgid ""
1682
- "Type of your figure:\n"
1683
- "\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Polyline</b> - a series of straight segments on the map.\n"
1684
- "\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Polygon</b> - area enclosed by a closed path (or loop), which is defined by a series of coordinates.\n"
1685
- "\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Circle</b> - circle shape,defined by center coordinates and radius."
1686
- msgstr ""
1687
- "Form Typen:\n"
1688
- "\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Polyline</b> - Polyline ist eine offene Form, die eine Anzahl von Positionen beinhaltet.\n"
1689
- "\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Polygon</b> - Poligon ist eine geschlossene Form die min. drei Positionen beinhaltet.\n"
1690
- "\t\t\t\t\t\t\t\t\t\t<br /><br /><b>Kreis</b> - die Kreisform wird durch mittiger Position und Radius definiert.\t"
1691
-
1692
- #: modules/gmap/views/tpl/gmapEditMap.php:1323
1693
- msgid "Polyline"
1694
- msgstr ""
1695
-
1696
- #: modules/gmap/views/tpl/gmapEditMap.php:1324
1697
- msgid "Polygon"
1698
- msgstr ""
1699
-
1700
- #: modules/gmap/views/tpl/gmapEditMap.php:1325
1701
- msgid "Circle"
1702
- msgstr "Kreis"
1703
-
1704
- #: modules/gmap/views/tpl/gmapEditMap.php:1334
1705
- msgid "Line Color"
1706
- msgstr "Linien Farbe"
1707
-
1708
- #: modules/gmap/views/tpl/gmapEditMap.php:1341
1709
- msgid "Line Opacity"
1710
- msgstr "Linien Deckkraft"
1711
-
1712
- #: modules/gmap/views/tpl/gmapEditMap.php:1352
1713
- msgid "Line Weight"
1714
- msgstr "Linien Breite"
1715
-
1716
- #: modules/gmap/views/tpl/gmapEditMap.php:1360
1717
- msgid "Fill Color"
1718
- msgstr "Füllfarbe"
1719
-
1720
- #: modules/gmap/views/tpl/gmapEditMap.php:1367
1721
- msgid "Fill Opacity"
1722
- msgstr "Fülldeckkraft"
1723
-
1724
- #: modules/gmap/views/tpl/gmapEditMap.php:1380
1725
- msgid "Fugure Description"
1726
- msgstr "Form Beschreibung"
1727
-
1728
- #: modules/gmap/views/tpl/gmapEditMap.php:1382
1729
- msgid "Write here all text, that you want to appear in shape info-window PopUp"
1730
- msgstr "Schreiben Sie hier den Text, den Sie in das Pop-Up-Fenster der Form anzeigen wollen"
1731
-
1732
- #: modules/gmap/views/tpl/gmapEditMap.php:1394
1733
- #: modules/gmap/views/tpl/gmapEditMap.php:1472
1734
- msgid "Points"
1735
- msgstr "Position"
1736
-
1737
- #: modules/gmap/views/tpl/gmapEditMap.php:1396
1738
- msgid "Figure's points list: you can search the point by address (just start typing in Address field), type the Latitude and Longitude of point in appropriate fields or activate Add by Click button, and then draw figure on the map by clicking on it. Important! You must deactivate Add by Click button after ending of the draw."
1739
- msgstr ""
1740
- "Positionsliste erstellen:\n"
1741
- "<br><br><b>über Adresse</b> - einfach im Adressfeld die gewünschte Adresse eintragen\n"
1742
- "<br><br><b>über Koordinaten</b> - Felder Breiten- und Längengrad befüllen.\n"
1743
- "<br><br><b>über Anklicken</b> - aktiveren der Schaltfläche &quot;hinzufügen&quot; und dann und dann die Position(en) auf der Karte anklicken. <br><b>Wichtig!</b> Nach Beendigung der Positionsangaben über anklicken, das Feld &quot;hinzufügen&quot; wieder deaktivieren."
1744
-
1745
- #: modules/gmap/views/tpl/gmapEditMap.php:1400
1746
- msgid "Add by Click"
1747
- msgstr "hinzufügen beim anklicken"
1748
-
1749
- #: modules/gmap/views/tpl/gmapEditMap.php:1403
1750
- msgid "Add New Point"
1751
- msgstr "hinzufügen neuer Position"
1752
-
1753
- #: modules/gmap/views/tpl/gmapEditMap.php:1440
1754
- #: modules/gmap/views/tpl/gmapEditMap.php:1496
1755
- msgid "Radius"
1756
- msgstr "Kreis"
1757
-
1758
- #: modules/gmap/views/tpl/gmapEditMap.php:1447
1759
- #: modules/gmap/views/tpl/gmapEditMap.php:1482
1760
- msgid "Remove Point"
1761
- msgstr "lösche Position"
1762
-
1763
- #: modules/gmap/views/tpl/gmapEditMap.php:1474
1764
- msgid "To add Heatmap Layer points you need to activate Add Points button and draw each point by click on map. To remove points you need to activate Remove Points button and delete necessary point by click on it or just click on Delete Heatmap Layer button to remove all Heatmap Layer points. Important! You must to deactivate Add by Click and Remove by Click buttons after ending of the add / remove points."
1765
- msgstr "Wärmebild Positionen erstellen: Schaltfläche &quot;hinzufügen&quot; aktivieren und jede Position durch anklicken auf der Karte setzen. Positionen können gelöscht werden wenn die Schaltfläche &quot;lösche&quot;aktiviert ist und auf der Karte die zu löschende Position angeklickt wird. <br><b>Wichtig!</b> Nach Beendigung der Positionen, das Feld &quot;hinzufügen&quot; wieder deaktivieren."
1766
-
1767
- #: modules/gmap/views/tpl/gmapEditMap.php:1479
1768
- msgid "Add Point"
1769
- msgstr "Position hinzufügen"
1770
-
1771
- #: modules/gmap/views/tpl/gmapEditMap.php:1487
1772
- msgid "Points Count"
1773
- msgstr "Anzahl der Punkte"
1774
-
1775
- #: modules/gmap/views/tpl/gmapEditMap.php:1498
1776
- msgid "Heatmap Layer points radius in pixels"
1777
- msgstr "Wärmebild Punkte/Radius ind Pixel"
1778
-
1779
- #: modules/gmap/views/tpl/gmapEditMap.php:1509
1780
- msgid "Opacity"
1781
- msgstr "Deckkraft"
1782
-
1783
- #: modules/gmap/views/tpl/gmapEditMap.php:1511
1784
- msgid "Heatmap Layer points opacity"
1785
- msgstr "Deckkraft der Wärmebildpositionen"
1786
-
1787
- #: modules/gmap/views/tpl/gmapEditMap.php:1544
1788
- msgid "Map shortcode"
1789
- msgstr "Karten Shortcode"
1790
-
1791
- #: modules/gmap/views/tpl/gmapEditMap.php:1549
1792
- msgid "PHP code"
1793
- msgstr "PHP Code"
1794
-
1795
- #: modules/gmap/views/tpl/gmapEditMap.php:1556
1796
- msgid "Marker Form shortcode"
1797
- msgstr "Marker Formen Shortcode"
1798
-
1799
- #: modules/gmap/views/tpl/gmapEditMap.php:1564
1800
- msgid "Shortcode will appear after you save map."
1801
- msgstr "Der Shortcode erscheint nachdem Sie Karte speichern."
1802
-
1803
- #: modules/gmap/views/tpl/gmapEditMap.php:1572
1804
- msgid "Save Map"
1805
- msgstr "Karte speichern"
1806
-
1807
- #: modules/gmap/views/tpl/gmapEditMap.php:1578
1808
- msgid "Delete Map"
1809
- msgstr "Karte löschen"
1810
-
1811
- #: modules/gmap/views/tpl/gmapEditMap.php:1602
1812
- msgid "Save Figure"
1813
- msgstr "Speichere Form"
1814
-
1815
- #: modules/gmap/views/tpl/gmapEditMap.php:1608
1816
- msgid "Delete Figure"
1817
- msgstr "Lösche Form"
1818
-
1819
- #: modules/gmap/views/tpl/gmapEditMap.php:1617
1820
- msgid "Save Heatmap Layer"
1821
- msgstr "Speichere Wärmebild"
1822
-
1823
- #: modules/gmap/views/tpl/gmapEditMap.php:1623
1824
- msgid "Delete Heatmap Layer"
1825
- msgstr "Lösche Wärmebild"
1826
-
1827
- #: modules/gmap/views/tpl/gmapEditMap.php:1629
1828
- msgid "Search by name"
1829
- msgstr "Suche nach Namen"
1830
-
1831
- #: modules/gmap/views/tpl/gmapEditMap.php:1680
1832
- msgid "Show markers list with your map on frontend"
1833
- msgstr "Markerliste mit Ihrer Karte im Frontend zeigen"
1834
-
1835
- #: modules/gmap/views/tpl/gmapEditMap.php:1687
1836
- #: modules/gmap/views/tpl/gmapEditMap.php:1688
1837
- msgid "Apply"
1838
- msgstr "Anwenden"
1839
-
1840
- #: modules/gmap/views/tpl/gmapEditMap.php:1687
1841
- msgid "Selected"
1842
- msgstr "Ausgewählt"
1843
-
1844
- #: modules/gmap/views/tpl/gmapEditMap.php:1688
1845
- msgid "Available in PRO"
1846
- msgstr "In PRO verfügbar"
1847
-
1848
- #: modules/gmap/views/tpl/gmapEditMap.php:1696
1849
- msgid "Select Contact Form"
1850
- msgstr "Wähle Kontakt Formular"
1851
-
1852
- #: modules/gmap/views/tpl/gmapEditMap.php:1725
1853
- #, php-format
1854
- msgid "You need to install <a target='_blank' href='%s'>Membership by Supsystic</a> to use this feature."
1855
- msgstr "Dieses Plugin <a target='_blank' href='%s'>Membership by Supsystic</a> wird benötigt um die Funktion zu nutzen zu können."
1856
-
1857
- #: modules/gmap/views/tpl/gmapEditMap.php:1728
1858
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1859
- #: modules/supsystic_promo/views/supsystic_promo.php:78
1860
- #: modules/supsystic_promo/views/supsystic_promo.php:80
1861
- #: modules/supsystic_promo/views/supsystic_promo.php:81
1862
- msgid "No"
1863
- msgstr "Nein"
1864
-
1865
- #: modules/gmap/views/tpl/gmapEditMap.php:1728
1866
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1867
- #: modules/supsystic_promo/views/supsystic_promo.php:78
1868
- #: modules/supsystic_promo/views/supsystic_promo.php:80
1869
- #: modules/supsystic_promo/views/supsystic_promo.php:81
1870
- msgid "Yes"
1871
- msgstr "Ja"
1872
-
1873
- #: modules/gmap/views/tpl/gmapListMarkers.php:22
1874
- #, php-format
1875
- msgid "and %s more"
1876
- msgstr "und mehr %s "
1877
-
1878
- #: modules/gmap_widget/mod.php:18
1879
- msgid "Displays Most Viewed Products"
1880
- msgstr "Zeigt die meistgesehenen Produkte"
1881
-
1882
- #: modules/gmap_widget/views/gmap_widget.php:19
1883
- msgid "You have no maps"
1884
- msgstr "Sie haben keine Karten"
1885
-
1886
- #: modules/gmap_widget/views/tpl/form.php:8
1887
- msgid "Select map"
1888
- msgstr "Karte auswählen"
1889
-
1890
- #: modules/gmap_widget/views/tpl/form.php:20
1891
- msgid "Widget Map width"
1892
- msgstr "Kartenwidget Breite"
1893
-
1894
- #: modules/gmap_widget/views/tpl/form.php:27
1895
- #, php-format
1896
- msgid "in % or px, for example, 100% or 200px"
1897
- msgstr "Eingabe in % oder px, z.B.: 100% oder 200px"
1898
-
1899
- #: modules/gmap_widget/views/tpl/form.php:32
1900
- msgid "Widget Map height"
1901
- msgstr "Kartenwidget Höhe"
1902
-
1903
- #: modules/gmap_widget/views/tpl/form.php:39
1904
- msgid "in px, for example, 200 or 400"
1905
- msgstr "Eingabe in px, z.B.: 200 oder 400"
1906
-
1907
- #: modules/gmap_widget/views/tpl/form.php:44
1908
- msgid "Map Center"
1909
- msgstr "Karten mitte"
1910
-
1911
- #: modules/gmap_widget/views/tpl/form.php:51
1912
- msgid "Set coords, separated by semicolons or marker id"
1913
- msgstr "Setze Koordinaten, getrennt mit Semikolons oder Marker ID"
1914
-
1915
- #: modules/gmap_widget/views/tpl/form.php:56
1916
- msgid "Map Zoom"
1917
- msgstr "Karten Zoom"
1918
-
1919
- #: modules/gmap_widget/views/tpl/form.php:63
1920
- msgid "Set zoom level from 1 to 21"
1921
- msgstr "Setze Zoomfaktor von 1 bis 21"
1922
-
1923
- #: modules/gmap_widget/views/tpl/form.php:68
1924
- msgid "Display as image"
1925
- msgstr "Als Bild zeigen"
1926
-
1927
- #: modules/gmap_widget/views/tpl/form.php:76
1928
- msgid "Map will be displayed as image at sidebar, on click - will be opened in popup"
1929
- msgstr "Karte wird als Bild in der Seitenleiste gezeigt, und öffnet sich bei Klick als Pop-Up"
1930
-
1931
- #: modules/gmap_widget/views/tpl/form.php:79
1932
- msgid "Image width (in px)"
1933
- msgstr "Bildbreite (in px)"
1934
-
1935
- #: modules/gmap_widget/views/tpl/form.php:86
1936
- msgid "Image height (in px)"
1937
- msgstr "Bildhöhe (in px)"
1938
-
1939
- #: modules/icons/controller.php:20
1940
- msgid "Empty url"
1941
- msgstr "Leere URL"
1942
-
1943
- #: modules/icons/models/icons.php:43
1944
- msgid "Icon no found"
1945
- msgstr "Icon nicht gefunden"
1946
-
1947
- #: modules/icons/models/icons.php:95
1948
- msgid "File not found"
1949
- msgstr "Datei nicht gefunden"
1950
-
1951
- #: modules/icons/models/icons.php:100
1952
- msgid "Cannot get image"
1953
- msgstr "Kann das Bild nicht finden"
1954
-
1955
- #: modules/icons/models/icons.php:111
1956
- msgid "cannot insert to table"
1957
- msgstr "Kann nicht als Tabelle eingefügt werden"
1958
-
1959
- #: modules/mail/mod.php:33
1960
- msgid "Can not send email - problem with send server"
1961
- msgstr "Kann keine E-Mail senden - Problem mit dem Versandserver"
1962
-
1963
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
1964
- msgid "Marker Not Found"
1965
- msgstr "Keine Marker gefunden"
1966
-
1967
- #: modules/marker/controller.php:48
1968
- msgid "Cannot remove marker"
1969
- msgstr "Marker kann nicht entfernt werden"
1970
-
1971
- #: modules/marker/controller.php:63
1972
- msgid "Cannot remove markers"
1973
- msgstr "Marker können nicht entfernt werden"
1974
-
1975
- #: modules/marker/controller.php:144
1976
- msgid "Empty or invalid marker ID"
1977
- msgstr "Leere oder ungültige Marker ID"
1978
-
1979
- #: modules/marker/mod.php:21
1980
- msgid "Drop"
1981
- msgstr "Hineinschieben"
1982
-
1983
- #: modules/marker/mod.php:22
1984
- msgid "Bounce"
1985
- msgstr "Hüpfen"
1986
-
1987
- #: modules/marker/models/marker.php:49
1988
- msgid "Please enter marker name"
1989
- msgstr "Bitte geben Sie einen Namen für den Marker ein"
1990
-
1991
- #: modules/marker/models/marker.php:263
1992
- msgid "Invalid Marker ID"
1993
- msgstr "Ungültige Marker ID"
1994
-
1995
- #: modules/marker_groups/controller.php:41
1996
- msgid "Marker Category data not found"
1997
- msgstr "Keine Marker Kategoriedaten gefunden"
1998
-
1999
- #: modules/marker_groups/mod.php:8
2000
- msgid "Marker Categories"
2001
- msgstr "Marker Kategorien"
2002
-
2003
- #: modules/marker_groups/mod.php:11
2004
- msgid "Add New"
2005
- msgstr "Neu hinzufügen"
2006
-
2007
- #: modules/marker_groups/mod.php:24
2008
- msgid "No Marker Category Found"
2009
- msgstr "Keine Marker Kategorie gefunden"
2010
-
2011
- #: modules/marker_groups/models/marker_groups.php:78
2012
- msgid "Please enter Marker Category"
2013
- msgstr "Bitte geben Sie eine Marker Kategorie ein"
2014
-
2015
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5
2016
- #: modules/marker_groups/views/tpl/mgrAdmin.php:7
2017
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:11
2018
- msgid "Add Category"
2019
- msgstr "Kategorie hinzufügen"
2020
-
2021
- #: modules/marker_groups/views/tpl/mgrAdmin.php:16
2022
- msgid "Clear All"
2023
- msgstr "Alle entfernen"
2024
-
2025
- #: modules/marker_groups/views/tpl/mgrAdmin.php:18
2026
- msgid "Clear"
2027
- msgstr "Entfernen"
2028
-
2029
- #: modules/marker_groups/views/tpl/mgrAdmin.php:31
2030
- #, php-format
2031
- msgid "You have no Marker Categories for now. <a href='%s' style='font-style: italic;'>Create</a> your first Marker Category!"
2032
- msgstr "Sie haben noch keine Marker Kategorien erstellt. <a href='%s' style='font-style: italic;'>Erstellen</a> Sie Ihre erste Marker Kategorie!"
2033
-
2034
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:15
2035
- #: modules/options/views/tpl/optionsSettingsTabContent.php:6
2036
- msgid "Save"
2037
- msgstr "Speichern"
2038
-
2039
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:22
2040
- msgid "Category Title"
2041
- msgstr "Kategorie Titel"
2042
-
2043
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:56
2044
- msgid "gmap/img/m1.png"
2045
- msgstr ""
2046
-
2047
- #: modules/options/mod.php:108
2048
- msgid "General"
2049
- msgstr "Allgemein"
2050
-
2051
- #: modules/options/mod.php:110
2052
- msgid "User API key"
2053
- msgstr "Benutzer API Schlüssel"
2054
-
2055
- #: modules/options/mod.php:110
2056
- msgid "You can use your own Google API key, check the <a href='//supsystic.com/google-maps-api-key/' target='_blank'>instruction</a> how to create it. To use plugin's default API key leave this field blank."
2057
- msgstr "Sie können den eigenen Google API-Schlüssel verwenden. Wie man den Schlüssel erstellt finden sie hier <a href='//supsystic.com/google-maps-api-key/' target='_blank'>anweisung</a>. <br>Für die Verwendung des Standard API-Schlüssels, lassen Sie das Feld leer."
2058
-
2059
- #: modules/options/mod.php:111
2060
- msgid "Send usage statistics"
2061
- msgstr "Nutzerstatistiken senden"
2062
-
2063
- #: modules/options/mod.php:111
2064
- msgid "Send information about what plugin options you prefer to use, this will help us make our solution better for You."
2065
- msgstr "Senden Sie Informationen über Ihre bevorzugten Plugin-Optionen. Damit helfen Sie uns, bessere Lösungen für Sie zu finden."
2066
-
2067
- #: modules/options/mod.php:112
2068
- msgid "Enable promo link"
2069
- msgstr "Werbelink aktivieren"
2070
-
2071
- #: modules/options/mod.php:112
2072
- msgid "We are trying to make our plugin better for you, and you can help us with this. Just check this option - and small promotion link will be added in the bottom of your Google Maps. This is easy for you - but very helpful for us!"
2073
- msgstr "Wir versuchen, unsere Plugins besser für Sie zu gestalten und Sie können uns dabei helfen. Klicken Sie einfach diese Optoin und ein kleiner Link mit Eigenwerbung wird unten an Ihre Google Maps angehänt. Das ist sehr einfach für Sie - und sehr hilfreich für uns!"
2074
-
2075
- #: modules/options/mod.php:113
2076
- msgid "User role can use plugin"
2077
- msgstr "Benutzerrolle darf das Plugin benutzen"
2078
-
2079
- #: modules/options/mod.php:113
2080
- msgid "User with next roles will have access to whole plugin from admin area."
2081
- msgstr "Benutzer mit diesen Rollen haben im Admin-Bereich Zugriff auf das Plugin"
2082
-
2083
- #: modules/options/models/modules.php:35
2084
- msgid "Module Updated"
2085
- msgstr "Modul Update"
2086
-
2087
- #: modules/options/models/modules.php:50
2088
- msgid "Module Update Failed"
2089
- msgstr "Update des Moduls fehlgeschlagen"
2090
-
2091
- #: modules/options/models/modules.php:53
2092
- msgid "Error module ID"
2093
- msgstr "Fehler bei der Modul-ID"
2094
-
2095
- #: modules/options/models/options.php:64
2096
- msgid "Empty data to save option"
2097
- msgstr "Option Daten leeren zum Speichern"
2098
-
2099
- #: modules/options/views/tpl/optionsAdminMain.php:18
2100
- msgid "Main page Go here!!!!"
2101
- msgstr "Hauptseite kommt hierhin!!!"
2102
-
2103
- #: modules/options/views/tpl/optionsAdminPage.php:31
2104
- msgid "Improve Free version"
2105
- msgstr "Kostenlose Version verbessern"
2106
-
2107
- #: modules/options/views/tpl/optionsAdminPage.php:33
2108
- #, php-format
2109
- msgid "Please be advised that this option is available only in <a target='_blank' href='%s'>PRO version</a>. You can <a target='_blank' href='%s' class='button'>Get PRO</a> today and get this and other PRO option for your PopUps!"
2110
- msgstr "Bitte beachten Sie, dass diese Optoin nur in der <a target='_blank' href='%s'>PRO Version</a> verfügbar ist. Sie können noch heute die <a target='_blank' href='%s' class='button'> PRO Version bekommen</a> und diese sowie andere PRO Optionen für Ihre Pop-Ups bekommen!"
2111
-
2112
- #: modules/options/views/tpl/optionsSettingsTabContent.php:3
2113
- msgid "Save all options"
2114
- msgstr "Alle Optionen speichern"
2115
-
2116
- #: modules/options/views/tpl/optionsSettingsTabContent.php:61
2117
- #, php-format
2118
- msgid "Turned On %s"
2119
- msgstr "%s eingeschaltet"
2120
-
2121
- #: modules/options/views/tpl/optionsSettingsTabContent.php:62
2122
- #, php-format
2123
- msgid "Turned Off %s"
2124
- msgstr "%s ausgeschaltet"
2125
-
2126
- #: modules/supsystic_promo/controller.php:7
2127
- msgid "Information was saved. Thank you!"
2128
- msgstr "Die Information wurde gespeichert. Vielen Dank!"
2129
-
2130
- #: modules/supsystic_promo/controller.php:23
2131
- msgid "Please don't send contact requests so often - wait for response for your previous requests."
2132
- msgstr "Bitte senden Sie uns nicht so viele Kontaktanfragen - warten Sie auf unsere Antwort auf Ihre früheren Fragen."
2133
-
2134
- #: modules/supsystic_promo/controller.php:45
2135
- msgid "Please enter valid email address"
2136
- msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein"
2137
-
2138
- #: modules/supsystic_promo/mod.php:32
2139
- #, php-format
2140
- msgid "Please, set your own Google API key in Google Maps Easy plugin <a href='%s'>Settings</a>! More info about Maps and API keys you can find <a href='%s' target='_blank'>here</a>."
2141
- msgstr "Setzten Sie Ihren eigenen Google API-Schlüssel für das Plugin Google Maps Easy <a href='%s'>Settings</a>! Weitere Informationen übern den API-Schlüssel finden Sie hier <a href='%s' target='_blank'>here</a>."
2142
-
2143
- #: modules/supsystic_promo/mod.php:56
2144
- #, php-format
2145
- msgid "<h3>Hey, I noticed you just use %s over a week - that's awesome!</h3><p>Could you please do me a BIG favor and give it a 5-star rating on WordPress? Just to help us spread the word and boost our motivation.</p>"
2146
- msgstr "<h3>Hallo, I habe bemerkt , dass Sie uns schon %s über eine Woche nutzen - das ist KLasse!</h3><p>Könnten Sie mir einen GROSSEN Gefallen tun und dem Plugin eine 5-Sterne-Bewertung auf Wordpress geben? Helfen Sie uns, die Nachricht über uns zu verbreiten und uns damit weiter zu motivieren.</p>"
2147
-
2148
- #: modules/supsystic_promo/mod.php:57 modules/supsystic_promo/mod.php:63
2149
- msgid "Ok, you deserve it"
2150
- msgstr "Ok, Ihr verdient es"
2151
-
2152
- #: modules/supsystic_promo/mod.php:58 modules/supsystic_promo/mod.php:64
2153
- msgid "Nope, maybe later"
2154
- msgstr "Nein, lieber später"
2155
-
2156
- #: modules/supsystic_promo/mod.php:59
2157
- msgid "I already did"
2158
- msgstr "Schon erledigt"
2159
-
2160
- #: modules/supsystic_promo/mod.php:60
2161
- #, php-format
2162
- msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
2163
- msgstr "<h3>Mehr als elf Tage mit unserem Plugin %s - Herzlichen Glückwunsch!</h3>"
2164
-
2165
- #: modules/supsystic_promo/mod.php:61
2166
- msgid "<p>On behalf of the entire <a href='https://supsystic.com/' target='_blank'>supsystic.com</a> company I would like to thank you for been with us, and I really hope that our software helped you.</p>"
2167
- msgstr "<p>Im Namen der gesamten <a href='https://supsystic.com/' target='_blank'>supsystic.com</a> Firma danke ich Ihnen, dass Sie bei uns Kunde waren und ich hoffe wirklich, dass unsere Software Ihnen ausgeholfen hat.</p>"
2168
-
2169
- #: modules/supsystic_promo/mod.php:62
2170
- msgid "<p>And today, if you want, - you can help us. This is really simple - you can just add small promo link to our site under your maps. This is small step for you, but a big help for us! Sure, if you don't want - just skip this and continue enjoy our software!</p>"
2171
- msgstr "<p>Und heute können Sie uns helfen, fall Sie es wünschen. Es ist ganz einfach - fügen Sie einen simplen Werbelink unter Ihre Karten ein. Dies ist ein kleiner Schritt für Sie, aber eine sehr grosse Hilfe für uns! Und klar, wenn Sie nicht wollen, überspringen Sie es einfach und geniessen Sie unsere Software!</p>"
2172
-
2173
- #: modules/supsystic_promo/mod.php:65
2174
- msgid "Skip"
2175
- msgstr "Überspringen"
2176
-
2177
- #: modules/supsystic_promo/mod.php:67
2178
- #, php-format
2179
- msgid "Check out <a href='%s' target='_blank' class='button button-primary' data-statistic-code='hide'>our other Plugins</a>! Years of experience in WordPress plugins developers made those list unbreakable!"
2180
- msgstr "Probiere unsere anderen Plugins <a href='%s' target='_blank' class='button button-primary' data-statistic-code='hide'> aus! Jahrelange Erfahrung mit Wordpress-Plugins macht diese Liste unentbehrlich. "
2181
-
2182
- #: modules/supsystic_promo/mod.php:116
2183
- msgid "Overview"
2184
- msgstr "Übersicht"
2185
-
2186
- #: modules/supsystic_promo/mod.php:119
2187
- msgid "Featured Plugins"
2188
- msgstr "Vorgestellte Plugins"
2189
-
2190
- #: modules/supsystic_promo/mod.php:145
2191
- msgid "Welcome to Supsystic Secure"
2192
- msgstr "Willkommen bei Sypsystic Secure"
2193
-
2194
- #: modules/supsystic_promo/mod.php:214
2195
- msgid "Name"
2196
- msgstr "Name"
2197
-
2198
- #: modules/supsystic_promo/mod.php:216
2199
- msgid "Website"
2200
- msgstr "Webseite"
2201
-
2202
- #: modules/supsystic_promo/mod.php:217
2203
- msgid "Subject"
2204
- msgstr "Betreff"
2205
-
2206
- #: modules/supsystic_promo/mod.php:218
2207
- msgid "Topic"
2208
- msgstr "Thema"
2209
-
2210
- #: modules/supsystic_promo/mod.php:219
2211
- msgid "Plugin options"
2212
- msgstr "Pluginoptionen"
2213
-
2214
- #: modules/supsystic_promo/mod.php:220
2215
- msgid "Report a bug"
2216
- msgstr "Einen Fehler melden"
2217
-
2218
- #: modules/supsystic_promo/mod.php:221
2219
- msgid "Require a new functionallity"
2220
- msgstr "Eine neue Funktion anfordern"
2221
-
2222
- #: modules/supsystic_promo/mod.php:222
2223
- msgid "Other"
2224
- msgstr "Andere"
2225
-
2226
- #: modules/supsystic_promo/mod.php:224
2227
- msgid "Message"
2228
- msgstr "Nachricht"
2229
-
2230
- #: modules/supsystic_promo/mod.php:224
2231
- msgid "Hello Supsystic Team!"
2232
- msgstr "Hallo Supsystic Team!"
2233
-
2234
- #: modules/supsystic_promo/mod.php:269
2235
- msgid "Heatmap"
2236
- msgstr "Wärmebild"
2237
-
2238
- #: modules/supsystic_promo/views/supsystic_promo.php:32
2239
- msgid "How to create Google Maps API Key?"
2240
- msgstr "Wie wird ein Google Maps API Schlüssel erstellt?"
2241
-
2242
- #: modules/supsystic_promo/views/supsystic_promo.php:33
2243
- msgid "Your map suddenly stopped working and you get the following error?<blockquote style='color: gray; font-style: italic;'>Oops! Something went wrong.This page didn't load Google Maps correctly. See the JavaScript console for technical details.</blockquote>Please check you browser console, if you'll see such error <blockquote style='color: gray; font-style: italic;'>This site has exceeded its daily quota for maps.</blockquote> - this <a href='//supsystic.com/google-maps-api-key/' target='_blank'>article</a> is written for you and required for reading."
2244
- msgstr "Die Karte arbeitet nicht korrekt und es kommt folgender Fehler? <Blockquote style = 'color: grau; font-style: italic;'> ups! Etwas lief schief. Die Seite hat Google Maps nicht korrekt geladen. Mehr Informationen finden Sie über die JavaScript-Konsole.</ Blockquote> Überprüfen Sie die Browser-Konsole, wenn Sie diesen Fehler bemerken. <Blockquote style = 'color: grau; font-style: italic;'> Die Webseite hat die tägliche Quote der Karten überschritten. Bitte lesen Sie unbedingt folgenden <a href='//supsystic.com/google-maps-api-key/' target='_blank'> Artikel </a>."
2245
-
2246
- #: modules/supsystic_promo/views/supsystic_promo.php:37
2247
- msgid "How to use Google Maps Easy Widget?"
2248
- msgstr "Wie nutzt man das Google Maps Easy Widget?"
2249
-
2250
- #: modules/supsystic_promo/views/supsystic_promo.php:38
2251
- msgid "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. Find the Google Maps Easy in the list of available widgets.<br />3. Drag the Google Maps Easy widget to widget area, which you need.<br />4. Choose the map for widget and configure the settings - Widget Map width and height.<br />5. Click 'Save'."
2252
- msgstr "1. Gehen Sie auf Ansicht -> Widgets im WordPress Navigationsmenü.<br />2Finden Sie die Liste der verfügbaren Widgets von Google Maps Easy.<br />3.Ziehen Sie das Google Maps Easy Widget in den Widget-Bereich, den Sie benötigen. <br/>4. Wählen Sie die Karte für das Widget und konfigurieren Sie die Einstellungen Widget Kartenbreite und Höhe.<br/>5.Klicken Sie auf 'Save'."
2253
-
2254
- #: modules/supsystic_promo/views/supsystic_promo.php:39
2255
- msgid "How to add map into the site content?"
2256
- msgstr "Wie fügt man eine Karte in den Seitencontent ein?"
2257
-
2258
- #: modules/supsystic_promo/views/supsystic_promo.php:40
2259
- msgid "You can add a map in the site content via shortcode or php code. Learn more about how to do this <a href='http://supsystic.com/add-map-into-site-content/'>here</a>."
2260
- msgstr "Sie können eine Karte in den Contentbereich der Seite über einen Shortcode oder ein PHP Codeschnipsel einfügen. Mehr darüber erfahren Sie <a href='http://supsystic.com/add-map-into-site-content/'>hier</a>."
2261
-
2262
- #: modules/supsystic_promo/views/supsystic_promo.php:41
2263
- msgid "How to add map in popup window?"
2264
- msgstr "Wie füge ich eine Karte in ein Pop-Up-Fenster ein?"
2265
-
2266
- #: modules/supsystic_promo/views/supsystic_promo.php:42
2267
- msgid "You can add a map in popup window by inserting map shortcode in any popup text field. Learn more about how to do this <a href='http://supsystic.com/add-map-in-popup-window/'>here</a>."
2268
- msgstr "Sie können eine Karte in ein Pop-Up-Fenster durch Einfügen eines Karten-Shortcodes in ein Pop-Up-Feld hinzufügen. Mehr darüber erfahren Sie <a href='http://supsystic.com/add-map-into-site-content/'>hier</a>."
2269
-
2270
- #: modules/supsystic_promo/views/supsystic_promo.php:43
2271
- msgid "How to zoom and center the initial map on markers ?"
2272
- msgstr "Wie zoomt und zentriert man die Anfangskarte auf die Marker?"
2273
-
2274
- #: modules/supsystic_promo/views/supsystic_promo.php:44
2275
- msgid "There is a few different ways to zoom and centralize map. The easiest one is to drag your map using mouse - 'Draggable' option must be enabled, or with pan controller help in live preview. <a href='http://supsystic.com/how-to-zoom-and-center-the-initial-map-on-markers/'>Read more..</a>"
2276
- msgstr "Es gibt unterschiedliche Arten, eine Karte heranzuzoomen und zu zentrieren. Die einfachste ist, die Karte mit der Maus zu ziehen - Dazu muss die Option 'Draggable' aktiviert sein, oder mit der Schaltfläche zum Schwenken in der Live-Voransicht. <a href='http://supsystic.com/how-to-zoom-and-center-the-initial-map-on-markers/'>Weiterlesen..</a>"
2277
-
2278
- #: modules/supsystic_promo/views/supsystic_promo.php:45
2279
- msgid "How to get PRO version of plugin for FREE?"
2280
- msgstr "Wie bekommt man die PRO Version dieses Plugins GRATIS?"
2281
-
2282
- #: modules/supsystic_promo/views/supsystic_promo.php:45
2283
- #, php-format
2284
- msgid "You have an incredible opportunity to get PRO version for free. Make Translation of plugin! It will be amazing if you take advantage of this offer! More info you can find here <a target='_blank' href='%s'>'Get PRO version of any plugin for FREE'</a>"
2285
- msgstr "Sie haben hier die unglaubliche Möglichkeit, die PRO Version umsonst zu bekommen. Fertigen Sie eine Übersetzung an! Es wird erstaunlich sein wenn Sie dieses Angebot nutzen! Sie finden nähere Informationen dazu hier <a target='_blank' href='%s'>'PRO Version für jedes Plugin KOSTENLOS'</a>"
2286
-
2287
- #: modules/supsystic_promo/views/supsystic_promo.php:46
2288
- msgid "Translation"
2289
- msgstr "Übersetzung"
2290
-
2291
- #: modules/supsystic_promo/views/supsystic_promo.php:46
2292
- #, php-format
2293
- msgid "All available languages are provided with the Supsystic Google Maps plugin. If your language isn't available, your plugin will be in English by default.<br /><b>Available Translations: English, Polish, German, Spanish, Russian</b><br />Translate or update a translation Google Maps WordPress plugin in your language and get a Premium license for FREE. <a target='_blank' href='%s'>Contact us</a>."
2294
- msgstr "Alle vorhandenen Sprachen werden mit dem Supsystic Google Maps Plugin geliefert. Falls Ihre Sprache nicht verfügbar ist, erscheint das Plugin standardmäßig auf Englisch<br /><b>Verfügbare Übersetzungen: Englisch, Polnisch, Deutsch, Spanisch, Russisch</b><br />Übersetzen oder aktualisieren Sie eine Übersetzung des Google Maps WordPress Plugins in Ihre Sprache und bekommen Sie eine Premium Lizenz KOSTENLOS<a target='_blank' href='%s'>Kontaktieren Sie uns</a>."
2295
-
2296
- #: modules/supsystic_promo/views/supsystic_promo.php:62
2297
- #, php-format
2298
- msgid "There were some problem while trying to retrive our news, but you can always check all list <a target='_blank' href='%s'>here</a>."
2299
- msgstr "Es gab Schwierigkeiten bei der Abfrage unsere News, aber Sie finden jederzeit die gesamte Liste <a target='_blank' href='%s'>hier</a>."
2300
-
2301
- #: modules/supsystic_promo/views/supsystic_promo.php:98
2302
- msgid "Popup Plugin"
2303
- msgstr ""
2304
-
2305
- #: modules/supsystic_promo/views/supsystic_promo.php:98
2306
- msgid "The Best WordPress PopUp option plugin to help you gain more subscribers, social followers or advertisement. Responsive pop-ups with friendly options."
2307
- msgstr ""
2308
-
2309
- #: modules/supsystic_promo/views/supsystic_promo.php:99
2310
- msgid "Photo Gallery Plugin"
2311
- msgstr ""
2312
-
2313
- #: modules/supsystic_promo/views/supsystic_promo.php:99
2314
- msgid "Photo Gallery Plugin with a great number of layouts will help you to create quality respectable portfolios and image galleries."
2315
- msgstr ""
2316
-
2317
- #: modules/supsystic_promo/views/supsystic_promo.php:100
2318
- msgid "Contact Form Plugin"
2319
- msgstr ""
2320
-
2321
- #: modules/supsystic_promo/views/supsystic_promo.php:100
2322
- msgid "One of the best plugin for creating Contact Forms on your WordPress site. Changeable fonts, backgrounds, an option for adding fields etc."
2323
- msgstr ""
2324
-
2325
- #: modules/supsystic_promo/views/supsystic_promo.php:101
2326
- msgid "Newsletter Plugin"
2327
- msgstr ""
2328
-
2329
- #: modules/supsystic_promo/views/supsystic_promo.php:101
2330
- msgid "Supsystic Newsletter plugin for automatic mailing of your letters. You will have no need to control it or send them manually. No coding, hard skills or long hours of customizing are required."
2331
- msgstr ""
2332
-
2333
- #: modules/supsystic_promo/views/supsystic_promo.php:102
2334
- msgid "Membership by Supsystic"
2335
- msgstr ""
2336
-
2337
- #: modules/supsystic_promo/views/supsystic_promo.php:102
2338
- msgid "Create online membership community with custom user profiles, roles, FrontEnd registration and login. Members Directory, activity, groups, messages."
2339
- msgstr ""
2340
-
2341
- #: modules/supsystic_promo/views/supsystic_promo.php:103
2342
- msgid "Data Tables Generator"
2343
- msgstr ""
2344
-
2345
- #: modules/supsystic_promo/views/supsystic_promo.php:103
2346
- msgid "Create and manage beautiful data tables with custom design. No HTML knowledge is required."
2347
- msgstr ""
2348
-
2349
- #: modules/supsystic_promo/views/supsystic_promo.php:104
2350
- msgid "Slider Plugin"
2351
- msgstr ""
2352
-
2353
- #: modules/supsystic_promo/views/supsystic_promo.php:104
2354
- msgid "Creating slideshows with Slider plugin is fast and easy. Simply select images from your WordPress Media Library, Flickr, Instagram or Facebook, set slide captions, links and SEO fields all from one page."
2355
- msgstr ""
2356
-
2357
- #: modules/supsystic_promo/views/supsystic_promo.php:105
2358
- msgid "Social Share Buttons"
2359
- msgstr ""
2360
-
2361
- #: modules/supsystic_promo/views/supsystic_promo.php:105
2362
- msgid "Social share buttons to increase social traffic and popularity. Social sharing to Facebook, Twitter and other social networks."
2363
- msgstr ""
2364
-
2365
- #: modules/supsystic_promo/views/supsystic_promo.php:106
2366
- msgid "Live Chat Plugin"
2367
- msgstr ""
2368
-
2369
- #: modules/supsystic_promo/views/supsystic_promo.php:106
2370
- msgid "Be closer to your visitors and customers with Live Chat Support by Supsystic. Help you visitors, support them in real-time with exceptional Live Chat WordPress plugin by Supsystic."
2371
- msgstr ""
2372
-
2373
- #: modules/supsystic_promo/views/supsystic_promo.php:107
2374
- msgid "Pricing Table"
2375
- msgstr ""
2376
-
2377
- #: modules/supsystic_promo/views/supsystic_promo.php:107
2378
- msgid "It's never been so easy to create and manage pricing and comparison tables with table builder. Any element of the table can be customise with mouse click."
2379
- msgstr ""
2380
-
2381
- #: modules/supsystic_promo/views/supsystic_promo.php:108
2382
- msgid "Coming Soon Plugin"
2383
- msgstr ""
2384
-
2385
- #: modules/supsystic_promo/views/supsystic_promo.php:108
2386
- msgid "Coming soon page with drag-and-drop builder or under construction | maintenance mode to notify visitors and collects emails."
2387
- msgstr ""
2388
-
2389
- #: modules/supsystic_promo/views/supsystic_promo.php:109
2390
- msgid "Backup Plugin"
2391
- msgstr ""
2392
-
2393
- #: modules/supsystic_promo/views/supsystic_promo.php:109
2394
- msgid "Backup and Restore WordPress Plugin by Supsystic provides quick and unhitched DropBox, FTP, Amazon S3, Google Drive backup for your WordPress website."
2395
- msgstr ""
2396
-
2397
- #: modules/supsystic_promo/views/supsystic_promo.php:110
2398
- msgid "Google Maps Easy"
2399
- msgstr ""
2400
-
2401
- #: modules/supsystic_promo/views/supsystic_promo.php:110
2402
- msgid "Display custom Google Maps. Set markers and locations with text, images, categories and links. Customize google map in a simple and intuitive way."
2403
- msgstr ""
2404
-
2405
- #: modules/supsystic_promo/views/supsystic_promo.php:111
2406
- msgid "Digital Publication Plugin"
2407
- msgstr ""
2408
-
2409
- #: modules/supsystic_promo/views/supsystic_promo.php:111
2410
- msgid "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, Portfolios. Convert images, posts, PDF to the page flip book."
2411
- msgstr ""
2412
-
2413
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
2414
- #: modules/supsystic_promo/views/tpl/welcomePage.php:78
2415
- msgid "Version"
2416
- msgstr "Version"
2417
-
2418
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
2419
- msgid "PRO"
2420
- msgstr "PRO"
2421
-
2422
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
2423
- msgid "Support"
2424
- msgstr "Support"
2425
-
2426
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
2427
- msgid "Add your"
2428
- msgstr "Ihre Hinzufügen"
2429
-
2430
- #: modules/supsystic_promo/views/tpl/adminPromoTabContent.php:5
2431
- msgid "Get it now!"
2432
- msgstr "Jetzt holen!"
2433
-
2434
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:3
2435
- msgid "Get plugins bundle today and save over 80%"
2436
- msgstr ""
2437
-
2438
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:6
2439
- msgid "Check It out"
2440
- msgstr ""
2441
-
2442
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:31
2443
- msgid "More info"
2444
- msgstr "Mehr Informationen"
2445
-
2446
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:34
2447
- msgid "Download"
2448
- msgstr ""
2449
-
2450
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
2451
- msgid "FAQ and Documentation"
2452
- msgstr "Häufige Fragen und Antworten und Dokumentation"
2453
-
2454
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
2455
- msgid "Check all FAQs"
2456
- msgstr "Checken Sie alle Häufigen Fragen und Antworten"
2457
-
2458
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22
2459
- #: modules/supsystic_promo/views/tpl/welcomePage.php:102
2460
- msgid "Video tutorial"
2461
- msgstr "Videoanleitung"
2462
-
2463
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
2464
- msgid "PRO Features"
2465
- msgstr "PRO Funktionen"
2466
-
2467
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
2468
- msgid "Server Settings"
2469
- msgstr "Servereinstellungen"
2470
-
2471
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
2472
- msgid "News"
2473
- msgstr "News"
2474
-
2475
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
2476
- msgid "All news and info"
2477
- msgstr "Alle Infos und News"
2478
-
2479
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
2480
- msgid "Contact form"
2481
- msgstr "Kontaktformular"
2482
-
2483
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
2484
- msgid "Send email"
2485
- msgstr "E-Mail senden"
2486
-
2487
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
2488
- msgid "Your email was send, we will try to respond to you as soon as possible. Thank you for support!"
2489
- msgstr "Ihre E-Mail wurde gesendet, wir versuchen, umgehend zu antworten. Vielen Dank für Ihre Unterstützung!"
2490
-
2491
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
2492
- msgid "Welcome to"
2493
- msgstr "Willkommen bei"
2494
-
2495
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
2496
- #, php-format
2497
- msgid "This is first start up of the %s plugin."
2498
- msgstr "Dieses ist der erste Start des Plugins %s"
2499
-
2500
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
2501
- msgid "If you are newbie - check all features on that page, if you are guru - please correct us."
2502
- msgstr "Wenn Sie hier neu sind, überprüfen Sie alle Eigenschaften auf der Seite, wenn Sie ein Guru sind - korrigieren Sie uns bitte."
2503
-
2504
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
2505
- msgid "Please, post url"
2506
- msgstr "Bitte URL posten"
2507
-
2508
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
2509
- msgid "What to do next? Check below section"
2510
- msgstr "Was nun? Checken Sie den folgenden Abschnitt"
2511
-
2512
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
2513
- msgid "Boost us"
2514
- msgstr "Fördern Sie uns"
2515
-
2516
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
2517
- #, php-format
2518
- msgid "It's amazing when you boost development with your feedback and ratings. So we create special <a target='_blank' href='%s'>boost page</a> to help you to help us."
2519
- msgstr "Es ist erstaunlich, wie Sie unsere Entwicklungsarbeit mit Ihrem Feedback und Ihrer Beurteilung anspornen können. Deshalb haben wir einen eigene <a target='_blank' href='%s'>Förderseite</a> eingerichtet, um Ihnen zu helfen, uns zu helfen."
2520
-
2521
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
2522
- msgid "Documentation"
2523
- msgstr "Dokumentation"
2524
-
2525
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
2526
- #, php-format
2527
- msgid "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
2528
- msgstr "Checken Sie die Rubrik für <a target='_blank' href='%s'>Dokumentation </a> und häufige Fragen und Antworten. Falls Sie keine Lösung für Ihr Problem finden - <a target='_blank' href='%s'>kontaktieren Sie uns</a>."
2529
-
2530
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
2531
- msgid "Full Features List"
2532
- msgstr "Gesamtliste aller Funktionen"
2533
-
2534
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
2535
- msgid "There are so many features, so we can't post it here. Like"
2536
- msgstr "Es gibt so viele Funktionen, die wir hier gar nicht erwähnen können. Wie"
2537
-
2538
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
2539
- msgid "Capcha for admin login"
2540
- msgstr "Captcha für die Admin-Anmeldung"
2541
-
2542
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
2543
- msgid "htaccess admin protect"
2544
- msgstr "htaccess Adminordner Schutz"
2545
-
2546
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
2547
- msgid "Hide directory files listing"
2548
- msgstr "Verzeichnisliste verbergen"
2549
-
2550
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
2551
- msgid "Check files and directories write permissions"
2552
- msgstr "Schreibrechte für Dateien und Verzeichnisse überprüfen"
2553
-
2554
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
2555
- #, php-format
2556
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
2557
- msgstr "Volle Funktionsliste <a target='_blank' href='%s'>hier</a> überprüfen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-es_ES.mo DELETED
Binary file
lang/gmp_lng-es_ES.po DELETED
@@ -1,2563 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2016-07-14 19:57+0300\n"
5
- "PO-Revision-Date: 2017-12-15 13:20+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language: es_ES\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.9\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
- "X-Poedit-SearchPathExcluded-0: doc/promo-google-maps-easy-pro\n"
18
- "X-Poedit-SearchPathExcluded-1: js\n"
19
-
20
- #: classes/controller.php:198 classes/controller.php:206
21
- #: doc/google-maps-easy-pro/heatmap/controller.php:9
22
- #: doc/google-maps-easy-pro/heatmap/controller.php:39
23
- #: doc/google-maps-easy-pro/kml/controller.php:9
24
- #: doc/google-maps-easy-pro/license/controller.php:6
25
- #: doc/google-maps-easy-pro/shape/controller.php:8
26
- #: doc/google-maps-easy-pro/shape/controller.php:46
27
- #: doc/google-maps-easy-pro/shape/controller.php:61
28
- #: modules/adminmenu/controller.php:29 modules/gmap/controller.php:47
29
- #: modules/gmap/controller.php:64 modules/marker/controller.php:8
30
- #: modules/marker/controller.php:46 modules/marker/controller.php:61
31
- #: modules/marker/controller.php:101 modules/marker_groups/controller.php:68
32
- #: modules/options/controller.php:6
33
- msgid "Done"
34
- msgstr "Hecho"
35
-
36
- #: classes/field.php:131
37
- msgid "Select"
38
- msgstr "Seleccionar"
39
-
40
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
41
- msgid "N/A"
42
- msgstr "N/A"
43
-
44
- #: classes/field.php:277
45
- msgid "Add Checkbox"
46
- msgstr "Añadir Casilla de Verificación"
47
-
48
- #: classes/field.php:282 classes/field.php:287
49
- msgid "Add Item"
50
- msgstr "Añadir objeto"
51
-
52
- #: classes/field.php:293
53
- msgid "Add Radio Button"
54
- msgstr "Añadir botón radial"
55
-
56
- #: classes/field.php:311
57
- msgid "Dimensions"
58
- msgstr "Dimensiones"
59
-
60
- #: classes/field.php:314
61
- msgid "width"
62
- msgstr "anchura"
63
-
64
- #: classes/field.php:316
65
- msgid "height"
66
- msgstr "altura"
67
-
68
- #: classes/field.php:323
69
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
70
- msgstr "Haz click para fijar el campo &quot;id&quot; y &quot;class&quot;"
71
-
72
- #: classes/field.php:324
73
- msgid "Attributes"
74
- msgstr "Atributos"
75
-
76
- #: classes/field.php:402
77
- msgid "There are no configuration options for this module"
78
- msgstr "No hay opciones de configuración para este módulo"
79
-
80
- #: classes/fieldAdapter.php:93
81
- msgid "Apply To"
82
- msgstr "Aplicar a"
83
-
84
- #: classes/fieldAdapter.php:95
85
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:54
86
- #: modules/gmap/views/tpl/gmapEditMap.php:967
87
- #: modules/gmap/views/tpl/gmapEditMap.php:1229
88
- msgid "Address"
89
- msgstr "Dirección"
90
-
91
- #: classes/fieldAdapter.php:96
92
- msgid "Destination"
93
- msgstr "Destino"
94
-
95
- #: classes/fieldAdapter.php:97
96
- msgid "Country"
97
- msgstr "País"
98
-
99
- #: classes/fieldAdapter.php:100
100
- msgid "Categories"
101
- msgstr "Categorías"
102
-
103
- #: classes/fieldAdapter.php:101
104
- msgid "You have no categories"
105
- msgstr "No tienes categorías"
106
-
107
- #: classes/fieldAdapter.php:102
108
- msgid "Brands"
109
- msgstr "Marcas"
110
-
111
- #: classes/fieldAdapter.php:103
112
- msgid "You have no brands"
113
- msgstr "No tienes Marcas"
114
-
115
- #: classes/fieldAdapter.php:105
116
- msgid "Tax Rate"
117
- msgstr "Tasa de Impuestos"
118
-
119
- #: classes/fieldAdapter.php:106
120
- msgid "Absolute"
121
- msgstr "Absoluto"
122
-
123
- #: classes/fieldAdapter.php:134
124
- msgid "Not selected"
125
- msgstr "Sin seleccionar"
126
-
127
- #: classes/fieldAdapter.php:184
128
- msgid "class"
129
- msgstr "clase"
130
-
131
- #: classes/fieldAdapter.php:186
132
- msgid "id"
133
- msgstr "id"
134
-
135
- #: classes/frame.php:136
136
- msgid "You have no permissions to view this page"
137
- msgstr "No tienes permisos para ver esta página"
138
-
139
- #: classes/html.php:207 modules/gmap/views/tpl/gmapEditMap.php:1086
140
- msgid "Upload"
141
- msgstr "Subir"
142
-
143
- #: classes/html.php:611
144
- msgid "ON"
145
- msgstr "Encender"
146
-
147
- #: classes/html.php:612
148
- msgid "OFF"
149
- msgstr "Apagar"
150
-
151
- #: classes/html.php:636
152
- #, php-format
153
- msgid "Select %s"
154
- msgstr "Seleciona %s"
155
-
156
- #: classes/modInstaller.php:34
157
- #, php-format
158
- msgid "Move files for %s failed"
159
- msgstr "Fallo al mover los archivos para %s"
160
-
161
- #: classes/modInstaller.php:37
162
- #, php-format
163
- msgid "%s is not plugin module"
164
- msgstr "%s no es un módulo del plugin"
165
-
166
- #: classes/modInstaller.php:76
167
- msgid "Can not create module directory. Try to set permission to "
168
- msgstr ""
169
- "No se ha podido crear un directorio de módulos. Prueba de cambiar los "
170
- "permisos a"
171
-
172
- #: classes/modInstaller.php:103
173
- msgid "No modules were found in XML file"
174
- msgstr "No se han encontrado módulos en el archivo XML"
175
-
176
- #: classes/modInstaller.php:107
177
- msgid "Invalid XML file"
178
- msgstr "Archivo XML inválido."
179
-
180
- #: classes/modInstaller.php:109
181
- msgid "No XML file were found"
182
- msgstr "No se ha encontrado un archivo XML"
183
-
184
- #: classes/modInstaller.php:128
185
- #, php-format
186
- msgid "Install %s failed"
187
- msgstr "La instalación de %s ha fallado"
188
-
189
- #: classes/modInstaller.php:134
190
- msgid "Error Activate module"
191
- msgstr "Error al activar el módulo"
192
-
193
- #: classes/modInstaller.php:164
194
- msgid "Error Deactivation module"
195
- msgstr "Error al desactivar el módulo"
196
-
197
- #: classes/modInstaller.php:185
198
- msgid "Error Activating module"
199
- msgstr "Error durante la activación del módulo"
200
-
201
- #: classes/model.php:174 classes/model.php:186
202
- msgid "Database error detected"
203
- msgstr "Se ha detectado un error de Base de Datos"
204
-
205
- #: classes/model.php:176 modules/gmap/models/gmap.php:127
206
- #: modules/icons/models/icons.php:148
207
- #: modules/marker_groups/models/marker_groups.php:49
208
- msgid "Invalid ID"
209
- msgstr "ID inválida"
210
-
211
- #: classes/model.php:209
212
- msgid "Empty or invalid ID"
213
- msgstr "ID inválida o vacía"
214
-
215
- #: classes/table.php:277
216
- msgid "Nothig to update"
217
- msgstr "Nada que actualizar"
218
-
219
- #: classes/table.php:293
220
- msgid "Database error. Please contact your developer."
221
- msgstr "Error de base de datos. Por favor, contacta con nuestro desarrollador."
222
-
223
- #: classes/tables/heatmaps.php:7
224
- msgid "Heatmap ID"
225
- msgstr ""
226
-
227
- #: classes/tables/heatmaps.php:8 classes/tables/marker.php:13
228
- #: classes/tables/shapes.php:12
229
- msgid "Map Id"
230
- msgstr "Id del Mapa"
231
-
232
- #: classes/tables/heatmaps.php:9
233
- msgid "Heatmap coordinates list"
234
- msgstr ""
235
-
236
- #: classes/tables/heatmaps.php:10 classes/tables/marker.php:17
237
- #: classes/tables/modules.php:10 classes/tables/options.php:11
238
- #: classes/tables/shapes.php:15
239
- msgid "Params"
240
- msgstr "Parámetros"
241
-
242
- #: classes/tables/heatmaps.php:11 classes/tables/marker.php:19
243
- #: classes/tables/shapes.php:13
244
- msgid "Creation date"
245
- msgstr "Fecha de creación"
246
-
247
- #: classes/tables/marker.php:7
248
- msgid "Marker ID"
249
- msgstr ""
250
-
251
- #: classes/tables/marker.php:8
252
- msgid "Marker name"
253
- msgstr ""
254
-
255
- #: classes/tables/marker.php:9
256
- msgid "Description Of Marker"
257
- msgstr ""
258
-
259
- #: classes/tables/marker.php:10
260
- msgid "X coordinate if marker(lng)"
261
- msgstr "Coordenada X si marcador(lon)"
262
-
263
- #: classes/tables/marker.php:11
264
- msgid "Y coordinate of marker(lat)"
265
- msgstr "Coordenada Y si marcador(lat)"
266
-
267
- #: classes/tables/marker.php:12
268
- msgid "Path of icon file"
269
- msgstr "Ruta del archivo de icono"
270
-
271
- #: classes/tables/marker.php:14
272
- msgid "Marker Address"
273
- msgstr "Dirección del Marcador"
274
-
275
- #: classes/tables/marker.php:15
276
- msgid "Id of Marker's group"
277
- msgstr "ID del Grupo de Marcadores"
278
-
279
- #: classes/tables/marker.php:16 classes/tables/shapes.php:14
280
- msgid "Animation"
281
- msgstr "Animación"
282
-
283
- #: classes/tables/marker.php:18 classes/tables/options.php:15
284
- #: classes/tables/shapes.php:16
285
- msgid "Sort Order"
286
- msgstr "Orden de clasificación"
287
-
288
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8
289
- #: classes/tables/options.php:10
290
- msgid "Label"
291
- msgstr "Etiqueta"
292
-
293
- #: classes/tables/modules.php:8 classes/tables/options.php:13
294
- msgid "Type"
295
- msgstr "TIpo"
296
-
297
- #: classes/tables/modules.php:9
298
- msgid "Active"
299
- msgstr "Activo"
300
-
301
- #: classes/tables/modules.php:11
302
- msgid "Has Tab"
303
- msgstr "TIene Pestaña"
304
-
305
- #: classes/tables/modules.php:12 classes/tables/options.php:12
306
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:55
307
- msgid "Description"
308
- msgstr "Descripción"
309
-
310
- #: classes/tables/modules.php:13 classes/tables/options.php:8
311
- #: classes/tables/usage.php:9
312
- msgid "Code"
313
- msgstr "Código"
314
-
315
- #: classes/tables/modules.php:14
316
- msgid "External plugin directory"
317
- msgstr "Directorio de plugins externo"
318
-
319
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7
320
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:117
321
- msgid "ID"
322
- msgstr "ID"
323
-
324
- #: classes/tables/options.php:9
325
- msgid "Value"
326
- msgstr "Valor"
327
-
328
- #: classes/tables/options.php:14
329
- msgid "Category ID"
330
- msgstr "ID Categoría"
331
-
332
- #: classes/tables/options.php:16
333
- msgid "Value Type"
334
- msgstr "Tipo de Valor"
335
-
336
- #: classes/tables/options_categories.php:8
337
- msgid "Method"
338
- msgstr "Método"
339
-
340
- #: classes/tables/shapes.php:7
341
- msgid "Shape ID"
342
- msgstr ""
343
-
344
- #: classes/tables/shapes.php:8
345
- msgid "Shape name"
346
- msgstr ""
347
-
348
- #: classes/tables/shapes.php:9
349
- msgid "Description of Shape"
350
- msgstr ""
351
-
352
- #: classes/tables/shapes.php:10
353
- msgid "Shape coordinates list"
354
- msgstr ""
355
-
356
- #: classes/tables/shapes.php:11
357
- msgid "Shape type"
358
- msgstr ""
359
-
360
- #: classes/tables/usage.php:8
361
- msgid "Usage id"
362
- msgstr "ID de uso"
363
-
364
- #: classes/tables/usage.php:10
365
- msgid "Visits Count"
366
- msgstr "Visitas totales"
367
-
368
- #: classes/validator.php:30
369
- #, php-format
370
- msgid "Invalid length for %s, max length is %s"
371
- msgstr "Longitud inválida para %s, la longitud máxima permitida es %s"
372
-
373
- #: classes/validator.php:43
374
- #, php-format
375
- msgid "Invalid numeric value for %s"
376
- msgstr "Valor numérico inválido para %s"
377
-
378
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
379
- #, php-format
380
- msgid "Please enter %s"
381
- msgstr "Por favor, introduce %s"
382
-
383
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
384
- #, php-format
385
- msgid "Please select %s"
386
- msgstr "Por favor, seleciona %s"
387
-
388
- #: classes/validator.php:85 classes/validator.php:101
389
- #, php-format
390
- msgid "Invalid %s"
391
- msgstr "%s inválido"
392
-
393
- #: classes/validator.php:88
394
- #, php-format
395
- msgid "%s is already registered"
396
- msgstr "%s ya está registrado"
397
-
398
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
399
- msgid "Exit Full Screen"
400
- msgstr ""
401
-
402
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
403
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
404
- msgid "Open Full Screen"
405
- msgstr ""
406
-
407
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/printInfoWndBtn.php:8
408
- msgid "Print"
409
- msgstr ""
410
-
411
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:49
412
- msgid "Search address..."
413
- msgstr ""
414
-
415
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:84
416
- msgid "Reset"
417
- msgstr "Resetear"
418
-
419
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:97
420
- msgid "Find"
421
- msgstr ""
422
-
423
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:111
424
- msgid "Please, type a search address."
425
- msgstr ""
426
-
427
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:117
428
- msgid "Search area have no markers, please try to modify search criterias."
429
- msgstr ""
430
-
431
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
432
- msgid "Get Direction"
433
- msgstr ""
434
-
435
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:23
436
- msgid "Type the address..."
437
- msgstr ""
438
-
439
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:32
440
- msgid "or"
441
- msgstr ""
442
-
443
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:35
444
- msgid "Get current user position"
445
- msgstr ""
446
-
447
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:45
448
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
449
- msgid "Go"
450
- msgstr "Ir"
451
-
452
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
453
- msgid "The Geolocation service failed."
454
- msgstr ""
455
-
456
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
457
- msgid "Your browser does not support geolocation."
458
- msgstr ""
459
-
460
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
461
- msgid "Route could not be found. Please, try to select another address!"
462
- msgstr ""
463
-
464
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
465
- msgid "Please, select address from search list!"
466
- msgstr ""
467
-
468
- #: doc/google-maps-easy-pro/heatmap/controller.php:28
469
- msgid "Empty or invalid Heatmap ID"
470
- msgstr ""
471
-
472
- #: doc/google-maps-easy-pro/heatmap/controller.php:35
473
- msgid "Heatmap Not Found"
474
- msgstr ""
475
-
476
- #: doc/google-maps-easy-pro/heatmap/controller.php:41
477
- msgid "Cannot remove Heatmap"
478
- msgstr ""
479
-
480
- #: doc/google-maps-easy-pro/kml/controller.php:16
481
- msgid "Security check failed"
482
- msgstr ""
483
-
484
- #: doc/google-maps-easy-pro/license/mod.php:30
485
- #, php-format
486
- msgid ""
487
- "Your license is expired. Once you extend your license - you will be able to "
488
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
489
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
490
- "click on 'Re-activate' button to re-activate your PRO version."
491
- msgstr ""
492
- "Tu licencia ha expirado. Podrás actualizar la versión PRO una vez que "
493
- "extiendas tu licencia. Para extender tu licencia PRO haz click en <a "
494
- "href='%s' target='_blank'>este enlace</a>, después, ve a la pestaña <a "
495
- "href='%s'>Licencia</a> y haz click en el botón 'Reactivar' para reactivar tu "
496
- "versión PRO."
497
-
498
- #: doc/google-maps-easy-pro/license/mod.php:38
499
- #, php-format
500
- msgid ""
501
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
502
- "target='_blank'>click here</a> to extend your license, then - go to <a "
503
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
504
- "your PRO version."
505
- msgstr ""
506
- "Tu licencia PRO del plugin %s ha expirado. Entra en <a href='%s' "
507
- "target='_blank'>este enlace</a>, después, ve a la pestaña <a "
508
- "href='%s'>Licencia</a> y haz click en el botón 'Reactivar' para reactivar tu "
509
- "versión PRO."
510
-
511
- #: doc/google-maps-easy-pro/license/mod.php:51
512
- msgid "License"
513
- msgstr "Licencia"
514
-
515
- #: doc/google-maps-easy-pro/license/mod.php:74
516
- msgid "Activate License"
517
- msgstr ""
518
-
519
- #: doc/google-maps-easy-pro/license/mod.php:76
520
- msgid "Renew License"
521
- msgstr ""
522
-
523
- #: doc/google-maps-easy-pro/license/models/license.php:54
524
- msgid "Please enter your License Key"
525
- msgstr "Por favor, introduzca su código del icencia"
526
-
527
- #: doc/google-maps-easy-pro/license/models/license.php:56
528
- msgid "Please enter your Email address"
529
- msgstr "Por favor, introduzca su dirección de correo electrónico."
530
-
531
- #: doc/google-maps-easy-pro/license/models/license.php:138
532
- msgid ""
533
- "There was a problem with sending request to our autentification server. "
534
- "Please try latter."
535
- msgstr ""
536
- "Ha habido un problema durante el envío de la petición a nuestro servidor de "
537
- "autenticación.Por favor vuelva a intentarlo mas adelante."
538
-
539
- #: doc/google-maps-easy-pro/license/models/license.php:178
540
- #, php-format
541
- msgid "License for plugin %s will expire today."
542
- msgstr "La licencia del plugin %s expirará hoy."
543
-
544
- #: doc/google-maps-easy-pro/license/models/license.php:180
545
- #, php-format
546
- msgid "License for plugin %s will expire tomorrow."
547
- msgstr "La licencia del plugin %s expirará mañana."
548
-
549
- #: doc/google-maps-easy-pro/license/models/license.php:182
550
- #, php-format
551
- msgid "License for plugin %s will expire in %d days."
552
- msgstr "La licencia del plugin %s expirará en %d días."
553
-
554
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
555
- #, php-format
556
- msgid ""
557
- "Congratulations! PRO version of %s plugin is activated and working fine!"
558
- msgstr ""
559
-
560
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
561
- #, php-format
562
- msgid ""
563
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
564
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
565
- "activate' button to re-activate your PRO version."
566
- msgstr ""
567
- "Tu licencia PRO del plugin %s ha expirado. Entra en <a href='%s' "
568
- "target='_blank'>este enlace</a>, después, haz click en el botón 'Reactivar' "
569
- "para reactivar tu versión PRO."
570
-
571
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
572
- #, php-format
573
- msgid ""
574
- "Congratulations! You have successfully installed PRO version of %s plugin. "
575
- "Final step to finish Your PRO version setup - is to enter your Email and "
576
- "License Key on this page. This will activate Your copy of software on this "
577
- "site."
578
- msgstr ""
579
-
580
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
581
- #: modules/supsystic_promo/mod.php:186
582
- msgid "Email"
583
- msgstr "Email"
584
-
585
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
586
- #, php-format
587
- msgid ""
588
- "Your email address, used on checkout procedure on <a href='%s' "
589
- "target='_blank'>%s</a>"
590
- msgstr ""
591
- "Tu dirección de correo electrónico, utilizada en el procedimiento del pago "
592
- "en a href='%s' target='_blank'>%s</a>"
593
-
594
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
595
- msgid "License Key"
596
- msgstr "Clave de Licencia"
597
-
598
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
599
- #, php-format
600
- msgid ""
601
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
602
- msgstr ""
603
- "La Clave de Licencia de tu cuenta en <a href='%s' target='_blank'>%s</a>"
604
-
605
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
606
- msgid "Re-activate"
607
- msgstr "Reactivar"
608
-
609
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
610
- msgid "Activate"
611
- msgstr "Activar"
612
-
613
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:15
614
- msgid "Uncategorized"
615
- msgstr ""
616
-
617
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:53
618
- #: modules/gmap/views/gmap.php:118
619
- msgid "Title"
620
- msgstr "Título"
621
-
622
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:57
623
- msgid "Directions"
624
- msgstr ""
625
-
626
- #: doc/google-maps-easy-pro/shape/controller.php:42
627
- #: doc/google-maps-easy-pro/shape/controller.php:57
628
- msgid "Figure Not Found"
629
- msgstr ""
630
-
631
- #: doc/google-maps-easy-pro/shape/controller.php:48
632
- #: doc/google-maps-easy-pro/shape/controller.php:63
633
- msgid "Cannot remove figure"
634
- msgstr ""
635
-
636
- #: doc/google-maps-easy-pro/shape/controller.php:99
637
- msgid "Empty or invalid figure ID"
638
- msgstr ""
639
-
640
- #: doc/google-maps-easy-pro/shape/models/shape.php:43
641
- msgid "Please enter figure name"
642
- msgstr ""
643
-
644
- #: doc/google-maps-easy-pro/shape/models/shape.php:104
645
- #: modules/marker/models/marker.php:204
646
- msgid "Address is empty or not match"
647
- msgstr "La dirección está vacía o es incorrecta"
648
-
649
- #: doc/google-maps-easy-pro/shape/models/shape.php:158
650
- msgid "Invalid Figure ID"
651
- msgstr ""
652
-
653
- #: doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
654
- #: modules/gmap/mod.php:18 modules/marker/views/tpl/markerListOperations.php:1
655
- #: modules/marker_groups/mod.php:14
656
- msgid "Edit"
657
- msgstr "Editar"
658
-
659
- #: doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
660
- #: modules/marker/views/tpl/markerListOperations.php:1
661
- msgid "Delete"
662
- msgstr "Borrar"
663
-
664
- #: doc/google-maps-easy-pro/wpUpdater.php:68
665
- msgid ""
666
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
667
- "onclick='document.location.reload(); return false;'>Try again</a>"
668
- msgstr ""
669
- "Ha ocurrido un error HTTP inesperado durante la petición a la API.</p> <p><a "
670
- "href='?' onclick='document.location.reload(); return false;'>Volver a "
671
- "intentar</a>"
672
-
673
- #: doc/google-maps-easy-pro/wpUpdater.php:73
674
- msgid "An unknown error occurred"
675
- msgstr "Ha ocurrido un error inesperado"
676
-
677
- #: modules/adminmenu/controller.php:7
678
- msgid "Your name field is required."
679
- msgstr "El campo 'Tu nombre' es requerido."
680
-
681
- #: modules/adminmenu/controller.php:8
682
- msgid "Your website field is required."
683
- msgstr "El campo 'Tu Página Web' es requerido."
684
-
685
- #: modules/adminmenu/controller.php:9
686
- msgid "Your e-mail field is required."
687
- msgstr "El campo 'Tu email' es requerido."
688
-
689
- #: modules/adminmenu/controller.php:10
690
- msgid "Subject field is required."
691
- msgstr "El campo 'asunto' es requerido."
692
-
693
- #: modules/adminmenu/controller.php:11
694
- msgid "You must select a valid category."
695
- msgstr "Debes de seleccionar una categoría válida."
696
-
697
- #: modules/adminmenu/controller.php:12
698
- msgid "Message field is required."
699
- msgstr "El campo de Mensaje es requerido."
700
-
701
- #: modules/adminmenu/mod.php:13
702
- #, php-format
703
- msgid ""
704
- "Cool WordPress plugins from supsystic.com developers. I tried %s - and this "
705
- "was what I need! #supsystic.com"
706
- msgstr ""
707
-
708
- #: modules/adminmenu/mod.php:14 modules/options/mod.php:13
709
- msgid "Settings"
710
- msgstr "Ajustes"
711
-
712
- #: modules/adminmenu/mod.php:15
713
- msgid "More plugins for your WordPress site here!"
714
- msgstr ""
715
-
716
- #: modules/adminmenu/mod.php:16 modules/adminmenu/mod.php:17
717
- #: modules/adminmenu/mod.php:18
718
- msgid "Spread the word!"
719
- msgstr ""
720
-
721
- #: modules/csv/controller.php:45
722
- #, php-format
723
- msgid "Maps from %s - %s"
724
- msgstr ""
725
-
726
- #: modules/csv/controller.php:48
727
- msgid "You have no maps for now."
728
- msgstr ""
729
-
730
- #: modules/csv/controller.php:87
731
- #, php-format
732
- msgid "Markers from %s"
733
- msgstr ""
734
-
735
- #: modules/csv/controller.php:90
736
- msgid "You have no markers for now."
737
- msgstr ""
738
-
739
- #: modules/csv/controller.php:124
740
- msgid "Missing File"
741
- msgstr "Archivo no encontrado"
742
-
743
- #: modules/csv/controller.php:126
744
- #, php-format
745
- msgid "File uploaded with error code %s"
746
- msgstr "El archivo ha sido subido con el error %s"
747
-
748
- #: modules/csv/controller.php:208
749
- msgid ""
750
- "File should contain more then 1 row, at least 1 row should be for headers"
751
- msgstr ""
752
- "El archivo debe contener más de 1 fila, al menos 1 fila tiene que ser para "
753
- "la cabecera"
754
-
755
- #: modules/csv/controller.php:210
756
- msgid "Empty data in file"
757
- msgstr "Se han encontrado datos vacíos en el archivo"
758
-
759
- #: modules/csv/mod.php:11
760
- msgid "Maps Import / Export"
761
- msgstr "Mapas de Importación / Exportación"
762
-
763
- #: modules/csv/models/csv.php:133
764
- msgid "Can not detect import list type"
765
- msgstr "No se puede detectar el tipo de lista de importación"
766
-
767
- #: modules/csv/models/csv.php:135
768
- msgid "Can not find fields names"
769
- msgstr "No se encuentran los nombres de las celdas"
770
-
771
- #: modules/csv/views/tpl/csvTabContent.php:9
772
- msgid "Maps"
773
- msgstr "Mapas"
774
-
775
- #: modules/csv/views/tpl/csvTabContent.php:14
776
- #: modules/csv/views/tpl/csvTabContent.php:35
777
- msgid "Export"
778
- msgstr "Exportar"
779
-
780
- #: modules/csv/views/tpl/csvTabContent.php:19
781
- #: modules/csv/views/tpl/csvTabContent.php:40
782
- msgid "Import"
783
- msgstr "Importar"
784
-
785
- #: modules/csv/views/tpl/csvTabContent.php:30 modules/gmap/views/gmap.php:120
786
- #: modules/gmap/views/tpl/gmapEditMap.php:23
787
- msgid "Markers"
788
- msgstr "Marcadores"
789
-
790
- #: modules/gmap/controller.php:23
791
- msgid "Map data not found"
792
- msgstr "Datos del mapa no encontrados"
793
-
794
- #: modules/gmap/mod.php:15
795
- msgid "Add Map"
796
- msgstr "Añadir Mapa"
797
-
798
- #: modules/gmap/mod.php:21
799
- msgid "All Maps"
800
- msgstr "Todos los mapas"
801
-
802
- #: modules/gmap/mod.php:31
803
- msgid "No Map Found"
804
- msgstr "Mapa no encontrado"
805
-
806
- #: modules/gmap/mod.php:41
807
- msgid "Empty or Invalid Map ID"
808
- msgstr "ID de mapa inválido o vacío"
809
-
810
- #: modules/gmap/mod.php:60
811
- msgid "Top Center"
812
- msgstr "Superior-Centro"
813
-
814
- #: modules/gmap/mod.php:61
815
- msgid "Top Left"
816
- msgstr "Superior-Izquierda"
817
-
818
- #: modules/gmap/mod.php:62
819
- msgid "Top Right"
820
- msgstr "Superior-Derecha"
821
-
822
- #: modules/gmap/mod.php:63
823
- msgid "Left Top"
824
- msgstr "Izquierda-Arriba"
825
-
826
- #: modules/gmap/mod.php:64
827
- msgid "Right Top"
828
- msgstr "Derecha-Arriba"
829
-
830
- #: modules/gmap/mod.php:65
831
- msgid "Left Center"
832
- msgstr "Izquierda-Centro"
833
-
834
- #: modules/gmap/mod.php:66
835
- msgid "Right Center"
836
- msgstr "Derecha-Centro"
837
-
838
- #: modules/gmap/mod.php:67
839
- msgid "Left Bottom"
840
- msgstr "Izquierda-Inferior"
841
-
842
- #: modules/gmap/mod.php:68
843
- msgid "Right Bottom"
844
- msgstr "Derecha-Inferior"
845
-
846
- #: modules/gmap/mod.php:69
847
- msgid "Bottom Center"
848
- msgstr "Inferior-Centro"
849
-
850
- #: modules/gmap/mod.php:70
851
- msgid "Bottom Left"
852
- msgstr "Inferior-Izquierda"
853
-
854
- #: modules/gmap/mod.php:71
855
- msgid "Bottom Right"
856
- msgstr "Inferior-Derecha"
857
-
858
- #: modules/gmap/mod.php:94
859
- msgid "Slider"
860
- msgstr "Slider"
861
-
862
- #: modules/gmap/mod.php:95
863
- msgid "Slider - Title and Img"
864
- msgstr "Slider - Título e Imagen"
865
-
866
- #: modules/gmap/mod.php:96 modules/gmap/mod.php:98
867
- msgid "Slider Vertical - Title and Img"
868
- msgstr "Slider Vertical - Título e Imagen"
869
-
870
- #: modules/gmap/mod.php:97
871
- msgid "Slider Vertical - Title and Description"
872
- msgstr "Slider Vertical- Título y Descripción"
873
-
874
- #: modules/gmap/mod.php:99
875
- msgid "Slider Table"
876
- msgstr ""
877
-
878
- #: modules/gmap/mod.php:125
879
- msgid "Google Map"
880
- msgstr ""
881
-
882
- #: modules/gmap/models/gmap.php:89
883
- msgid "Please enter Map Name"
884
- msgstr "Por favor, introduzca un nombre del Mapa"
885
-
886
- #: modules/gmap/models/gmap.php:118
887
- #: modules/marker_groups/models/marker_groups.php:104
888
- msgid "Empty Params"
889
- msgstr "Parámetros vacíos"
890
-
891
- #: modules/gmap/views/gmap.php:119
892
- msgid "Html options"
893
- msgstr "Opciones Html"
894
-
895
- #: modules/gmap/views/gmap.php:121
896
- msgid "Operations"
897
- msgstr "Operaciones"
898
-
899
- #: modules/gmap/views/gmap.php:176 modules/gmap/views/gmap.php:182
900
- #: modules/gmap/views/tpl/gmapEditMap.php:124
901
- #: modules/gmap/views/tpl/gmapEditMap.php:152
902
- #: modules/gmap/views/tpl/gmapEditMap.php:357 modules/marker/mod.php:20
903
- msgid "None"
904
- msgstr "Ninguno"
905
-
906
- #: modules/gmap/views/tpl/gmapAdmin.php:5
907
- #: modules/gmap/views/tpl/gmapAdmin.php:8
908
- #: modules/marker_groups/views/tpl/mgrAdmin.php:10
909
- #: modules/marker_groups/views/tpl/mgrAdmin.php:13
910
- msgid "Delete selected"
911
- msgstr "Eliminar seleccionado"
912
-
913
- #: modules/gmap/views/tpl/gmapAdmin.php:11
914
- #: modules/marker_groups/views/tpl/mgrAdmin.php:16
915
- msgid "Clear All"
916
- msgstr "Limpiar Todo"
917
-
918
- #: modules/gmap/views/tpl/gmapAdmin.php:13
919
- #: modules/marker_groups/views/tpl/mgrAdmin.php:18
920
- msgid "Clear"
921
- msgstr "Limpiar"
922
-
923
- #: modules/gmap/views/tpl/gmapAdmin.php:16
924
- #: modules/gmap/views/tpl/gmapAdmin.php:17
925
- #: modules/marker_groups/views/tpl/mgrAdmin.php:21
926
- #: modules/marker_groups/views/tpl/mgrAdmin.php:22
927
- msgid "Search"
928
- msgstr "Buscar"
929
-
930
- #: modules/gmap/views/tpl/gmapAdmin.php:26
931
- #, php-format
932
- msgid ""
933
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
934
- "a> your first Map!"
935
- msgstr ""
936
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Crea</a> "
937
- "tu primer Mapa!"
938
-
939
- #: modules/gmap/views/tpl/gmapDrawMap.php:3
940
- msgid "Map not found"
941
- msgstr "Mapa no encontrado"
942
-
943
- #: modules/gmap/views/tpl/gmapEditMap.php:4
944
- #, php-format
945
- msgid ""
946
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
947
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
948
- msgstr ""
949
- "Esta opción solo está disponible en <a target='_blank' href='%s'>la versión "
950
- "PRO</a>, puedes conseguirla <a target='_blank' href='%s'>aquí.</a>"
951
-
952
- #: modules/gmap/views/tpl/gmapEditMap.php:17
953
- msgid "Map"
954
- msgstr ""
955
-
956
- #: modules/gmap/views/tpl/gmapEditMap.php:25
957
- #: modules/gmap/views/tpl/gmapEditMap.php:34
958
- msgid "New"
959
- msgstr ""
960
-
961
- #: modules/gmap/views/tpl/gmapEditMap.php:32
962
- #: modules/supsystic_promo/mod.php:235
963
- msgid "Figures"
964
- msgstr ""
965
-
966
- #: modules/gmap/views/tpl/gmapEditMap.php:41
967
- msgid "Heatmap Layer"
968
- msgstr ""
969
-
970
- #: modules/gmap/views/tpl/gmapEditMap.php:51
971
- msgid "Map Name"
972
- msgstr "Nombre del Mapa"
973
-
974
- #: modules/gmap/views/tpl/gmapEditMap.php:53
975
- msgid "Your map name"
976
- msgstr "EL nombre de tu mapa"
977
-
978
- #: modules/gmap/views/tpl/gmapEditMap.php:65
979
- msgid "Map Width"
980
- msgstr "Anchura del Mapa"
981
-
982
- #: modules/gmap/views/tpl/gmapEditMap.php:67
983
- msgid "Your map width"
984
- msgstr "Anchura de tu mapa"
985
-
986
- #: modules/gmap/views/tpl/gmapEditMap.php:76
987
- #: modules/gmap/views/tpl/gmapEditMap.php:101
988
- #: modules/gmap/views/tpl/gmapEditMap.php:726
989
- #: modules/gmap/views/tpl/gmapEditMap.php:766
990
- #: modules/gmap/views/tpl/gmapEditMap.php:820
991
- #: modules/gmap/views/tpl/gmapEditMap.php:842
992
- msgid "Pixels"
993
- msgstr "Píxeles"
994
-
995
- #: modules/gmap/views/tpl/gmapEditMap.php:79
996
- #: modules/gmap/views/tpl/gmapEditMap.php:104
997
- #: modules/gmap/views/tpl/gmapEditMap.php:732
998
- #: modules/gmap/views/tpl/gmapEditMap.php:772
999
- #: modules/gmap/views/tpl/gmapEditMap.php:824
1000
- #: modules/gmap/views/tpl/gmapEditMap.php:846
1001
- msgid "Px"
1002
- msgstr "Px"
1003
-
1004
- #: modules/gmap/views/tpl/gmapEditMap.php:83
1005
- msgid "Percents"
1006
- msgstr "Porcentajes"
1007
-
1008
- #: modules/gmap/views/tpl/gmapEditMap.php:90
1009
- msgid "Map Height"
1010
- msgstr "Altura del Mapa"
1011
-
1012
- #: modules/gmap/views/tpl/gmapEditMap.php:92
1013
- msgid "Your map height"
1014
- msgstr "Altura de tu mapa"
1015
-
1016
- #: modules/gmap/views/tpl/gmapEditMap.php:117
1017
- msgid "Map type control"
1018
- msgstr "Tipo de control de mapa"
1019
-
1020
- #: modules/gmap/views/tpl/gmapEditMap.php:119
1021
- msgid ""
1022
- "Control view for map type - you can see it in right upper corner by default"
1023
- msgstr ""
1024
- "Control de vista del tipo de mapa -Por defecto, puedes verla en la esquina "
1025
- "superior derecha."
1026
-
1027
- #: modules/gmap/views/tpl/gmapEditMap.php:124
1028
- msgid "Dropdown Menu"
1029
- msgstr "Menú Desplegable"
1030
-
1031
- #: modules/gmap/views/tpl/gmapEditMap.php:124
1032
- msgid "Horizontal Bar"
1033
- msgstr "Barra Horizontal"
1034
-
1035
- #: modules/gmap/views/tpl/gmapEditMap.php:130
1036
- msgid "Change type control position on map"
1037
- msgstr "Cambia el tipo de control"
1038
-
1039
- #: modules/gmap/views/tpl/gmapEditMap.php:137
1040
- #: modules/gmap/views/tpl/gmapEditMap.php:165
1041
- #: modules/gmap/views/tpl/gmapEditMap.php:197
1042
- #: modules/gmap/views/tpl/gmapEditMap.php:412
1043
- #: modules/gmap/views/tpl/gmapEditMap.php:438
1044
- #: modules/gmap/views/tpl/gmapEditMap.php:455
1045
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1046
- #: modules/gmap/views/tpl/gmapEditMap.php:495
1047
- #: modules/gmap/views/tpl/gmapEditMap.php:553
1048
- #: modules/gmap/views/tpl/gmapEditMap.php:623
1049
- #: modules/gmap/views/tpl/gmapEditMap.php:640
1050
- #: modules/gmap/views/tpl/gmapEditMap.php:670
1051
- #: modules/gmap/views/tpl/gmapEditMap.php:865
1052
- #: modules/gmap/views/tpl/gmapEditMap.php:890
1053
- #: modules/options/views/tpl/optionsSettingsTabContent.php:69
1054
- msgid "PRO option"
1055
- msgstr "Opción PRO"
1056
-
1057
- #: modules/gmap/views/tpl/gmapEditMap.php:145
1058
- msgid "Zoom control"
1059
- msgstr "Control de Zoom"
1060
-
1061
- #: modules/gmap/views/tpl/gmapEditMap.php:147
1062
- msgid ""
1063
- "Zoom control type on your map. Note, to view Zoom control on the map the "
1064
- "Custom Map Controls option must be disabled."
1065
- msgstr ""
1066
-
1067
- #: modules/gmap/views/tpl/gmapEditMap.php:152
1068
- #: modules/gmap/views/tpl/gmapEditMap.php:366
1069
- msgid "Default"
1070
- msgstr "Por defecto"
1071
-
1072
- #: modules/gmap/views/tpl/gmapEditMap.php:158
1073
- msgid "Change zoom control position on map"
1074
- msgstr "Cambia la posición del control de zoom en el mapa"
1075
-
1076
- #: modules/gmap/views/tpl/gmapEditMap.php:168
1077
- msgid "Notice"
1078
- msgstr ""
1079
-
1080
- #: modules/gmap/views/tpl/gmapEditMap.php:170
1081
- msgid ""
1082
- "Standard Zoom control will not displaying for this map, because the Custom "
1083
- "Map Controls option enabled now."
1084
- msgstr ""
1085
-
1086
- #: modules/gmap/views/tpl/gmapEditMap.php:178
1087
- msgid "Street view control"
1088
- msgstr "Control de Street View"
1089
-
1090
- #: modules/gmap/views/tpl/gmapEditMap.php:180
1091
- msgid "Street view control usually is located on left upper corner of your map"
1092
- msgstr ""
1093
- "El control de Street View normalmente se encuentra en la esquina superior "
1094
- "izquierda del mapa."
1095
-
1096
- #: modules/gmap/views/tpl/gmapEditMap.php:190
1097
- msgid "Change street view control position on map"
1098
- msgstr "Cambia la posición del Control de Street View en el mapa"
1099
-
1100
- #: modules/gmap/views/tpl/gmapEditMap.php:250
1101
- msgid "Draggable"
1102
- msgstr "Arrastrable"
1103
-
1104
- #: modules/gmap/views/tpl/gmapEditMap.php:252
1105
- msgid "Enable or disable possibility to drag your map using mouse"
1106
- msgstr "Activa o desactiva la posibilidad de arrastrar tu mapa usando el ratón"
1107
-
1108
- #: modules/gmap/views/tpl/gmapEditMap.php:263
1109
- msgid "Double click to zoom"
1110
- msgstr "Doble click para hacer zoom"
1111
-
1112
- #: modules/gmap/views/tpl/gmapEditMap.php:265
1113
- msgid ""
1114
- "By default double left click on map will zoom it in. But you can change this "
1115
- "here."
1116
- msgstr ""
1117
- "Por defecto, hacer doble click izquierdo en el mapa hará zoom en el. Pero "
1118
- "puedes cambiar esto aquí."
1119
-
1120
- #: modules/gmap/views/tpl/gmapEditMap.php:276
1121
- msgid "Mouse wheel to zoom"
1122
- msgstr "Rueda del ratón para hacer zoom"
1123
-
1124
- #: modules/gmap/views/tpl/gmapEditMap.php:278
1125
- msgid ""
1126
- "Sometimes you need to disable possibility to zoom your map using mouse "
1127
- "wheel. This can be required for example - if you need to use your wheel for "
1128
- "some other action, for example scroll your site even if mouse is over your "
1129
- "map."
1130
- msgstr ""
1131
- "A veces necesitarás desactivar la posibilidad de hacer zoom en tu mapa "
1132
- "usando la rueda del ratón. Eso puede ser necesario para, por ejemplo, si "
1133
- "necesitas la rueda del ratón para otra acción, por ejemplo desplazarte por "
1134
- "la página aún si el ratón está posicionado en el mapa."
1135
-
1136
- #: modules/gmap/views/tpl/gmapEditMap.php:289
1137
- msgid "Min Zoom Level"
1138
- msgstr ""
1139
-
1140
- #: modules/gmap/views/tpl/gmapEditMap.php:291
1141
- msgid "Sets min zoom level for map."
1142
- msgstr ""
1143
-
1144
- #: modules/gmap/views/tpl/gmapEditMap.php:303
1145
- msgid "Max Zoom Level"
1146
- msgstr ""
1147
-
1148
- #: modules/gmap/views/tpl/gmapEditMap.php:305
1149
- msgid "Sets max zoom level for map."
1150
- msgstr ""
1151
-
1152
- #: modules/gmap/views/tpl/gmapEditMap.php:317
1153
- msgid "Google Map Theme"
1154
- msgstr "Tema de Google Map"
1155
-
1156
- #: modules/gmap/views/tpl/gmapEditMap.php:319
1157
- msgid ""
1158
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
1159
- "Terrain - here. By default your map will have Road Map Google maps theme."
1160
- msgstr ""
1161
- "Puedes elegir tu tema de Google Map. - Mapa de carreteras, Híbrida, Satélite "
1162
- "o Terreno - aquí. Por defecto tu mapa tendrá el tema de mapa de carreteras "
1163
- "de Google."
1164
-
1165
- #: modules/gmap/views/tpl/gmapEditMap.php:323
1166
- msgid "Road Map"
1167
- msgstr "Mapa de carreteras"
1168
-
1169
- #: modules/gmap/views/tpl/gmapEditMap.php:323
1170
- msgid "Hybrid"
1171
- msgstr "Híbrido"
1172
-
1173
- #: modules/gmap/views/tpl/gmapEditMap.php:323
1174
- msgid "Satellite"
1175
- msgstr "Satélite"
1176
-
1177
- #: modules/gmap/views/tpl/gmapEditMap.php:323
1178
- msgid "Terrain"
1179
- msgstr "Terreno"
1180
-
1181
- #: modules/gmap/views/tpl/gmapEditMap.php:331
1182
- msgid "Map Stylization"
1183
- msgstr "Estilo del mapa"
1184
-
1185
- #: modules/gmap/views/tpl/gmapEditMap.php:333
1186
- msgid ""
1187
- "Make your map unique with our Map Themes, just try to change it here - and "
1188
- "you will see results on your Map Preview."
1189
- msgstr ""
1190
- "Haz tu mapa único con nuestros temas de Mapa, simplemente intenta cambiarlos "
1191
- "aquí y verás los resultados en la vista previa del Mapa."
1192
-
1193
- #: modules/gmap/views/tpl/gmapEditMap.php:343
1194
- msgid "Get 300+ Themes with PRO"
1195
- msgstr "Consigue mas de 300 Temas con la versión PRO"
1196
-
1197
- #: modules/gmap/views/tpl/gmapEditMap.php:351
1198
- msgid "Markers Clusterization"
1199
- msgstr "Clasterización de marcadores"
1200
-
1201
- #: modules/gmap/views/tpl/gmapEditMap.php:353
1202
- msgid ""
1203
- "If you have many markers - you can have a problems with viewing them when "
1204
- "zoom out for example: they will just cover each-other. Marker clusterization "
1205
- "can solve this problem by grouping your markers in groups when they are too "
1206
- "close to each-other."
1207
- msgstr ""
1208
- "Si tienes demasiados marcadores, puedes tener problemas en el momento de "
1209
- "verlos cuando reduces el zoom, por ejemplo: se solapan el uno al otro. La "
1210
- "clasterización de marcadores puede resolver este problema agrupando tus "
1211
- "marcadores en grupos cuando estén demasiado cerca el uno del otro."
1212
-
1213
- #: modules/gmap/views/tpl/gmapEditMap.php:357
1214
- msgid "Base Clusterization"
1215
- msgstr "Clasterización de Base"
1216
-
1217
- #: modules/gmap/views/tpl/gmapEditMap.php:362
1218
- msgid "Claster Icon"
1219
- msgstr ""
1220
-
1221
- #: modules/gmap/views/tpl/gmapEditMap.php:365
1222
- #: modules/gmap/views/tpl/gmapEditMap.php:685
1223
- #: modules/gmap/views/tpl/gmapEditMap.php:957
1224
- msgid "Upload Icon"
1225
- msgstr ""
1226
-
1227
- #: modules/gmap/views/tpl/gmapEditMap.php:378
1228
- msgid "/gmap/img/m1.png"
1229
- msgstr ""
1230
-
1231
- #: modules/gmap/views/tpl/gmapEditMap.php:407
1232
- msgid "Markers List"
1233
- msgstr "Lista de marcadores"
1234
-
1235
- #: modules/gmap/views/tpl/gmapEditMap.php:409
1236
- msgid ""
1237
- "Display all map markers - as list bellow Your map. This will help your users "
1238
- "get more info about your markers and find required marker more faster."
1239
- msgstr ""
1240
- "Muestra todos los marcadores del mapa como una lista debajo de tu mapa. Ésto "
1241
- "ayudará a tus usuarios a conseguir más información sobre tus marcadores y "
1242
- "encontrar los marcadores requeridos mas rápido."
1243
-
1244
- #: modules/gmap/views/tpl/gmapEditMap.php:416
1245
- msgid "Select Markers List type"
1246
- msgstr "Selecciona la lista de marcadores"
1247
-
1248
- #: modules/gmap/views/tpl/gmapEditMap.php:422
1249
- msgid "Markers List Color"
1250
- msgstr ""
1251
-
1252
- #: modules/gmap/views/tpl/gmapEditMap.php:433
1253
- msgid "Traffic Layer"
1254
- msgstr "Capa de tráfico"
1255
-
1256
- #: modules/gmap/views/tpl/gmapEditMap.php:435
1257
- msgid "Add real-time traffic information to your map."
1258
- msgstr "Añade información dle tráfico en tiempo real de tu mapa."
1259
-
1260
- #: modules/gmap/views/tpl/gmapEditMap.php:450
1261
- msgid "Transit Layer"
1262
- msgstr "Capa de tránsito"
1263
-
1264
- #: modules/gmap/views/tpl/gmapEditMap.php:452
1265
- msgid ""
1266
- "Display the public transit network of a city on your map. When the Transit "
1267
- "Layer is enabled, and the map is centered on a city that supports transit "
1268
- "information, the map will display major transit lines as thick, colored "
1269
- "lines."
1270
- msgstr ""
1271
- "Muestra la red de tránsito de tu ciudad en tu mapa. Cuando la capa de "
1272
- "tránsito está activada y el mapa está centrado en una ciudad que soporte la "
1273
- "información de tráfico, el mapa mostrará las líneas de tránsito mas grandes "
1274
- "cómo líneas gruesas coloreadas."
1275
-
1276
- #: modules/gmap/views/tpl/gmapEditMap.php:467
1277
- msgid "Bicycling Layer"
1278
- msgstr "Capa de ciclismo"
1279
-
1280
- #: modules/gmap/views/tpl/gmapEditMap.php:469
1281
- msgid ""
1282
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1283
- "to bicycling usage on top of the given map.Dark green routes indicated "
1284
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1285
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1286
- "for bicycle usage."
1287
- msgstr ""
1288
- "Añade la capa de caminos de bici, rutas sugeridas y otras superposiciones "
1289
- "específicas para el uso del a bici en la parte superior del mapa. Las rutas "
1290
- "en verde oscuro indican las rutas de bicis dedicadas. Las rutas de color "
1291
- "verde claro indican calles con ´'líneas' de bici dedicadas. Las rutas "
1292
- "discontínuas indican calles o caminos de otra manera recomentadas para el "
1293
- "uso de bici."
1294
-
1295
- #: modules/gmap/views/tpl/gmapEditMap.php:487
1296
- msgid "Add KML layers"
1297
- msgstr ""
1298
-
1299
- #: modules/gmap/views/tpl/gmapEditMap.php:489
1300
- msgid "Add KML files to display custom layers on the map."
1301
- msgstr ""
1302
-
1303
- #: modules/gmap/views/tpl/gmapEditMap.php:502
1304
- msgid "Enter KML file URL"
1305
- msgstr ""
1306
-
1307
- #: modules/gmap/views/tpl/gmapEditMap.php:504
1308
- msgid "Remove KML field"
1309
- msgstr ""
1310
-
1311
- #: modules/gmap/views/tpl/gmapEditMap.php:522
1312
- msgid "or Upload KML file"
1313
- msgstr ""
1314
-
1315
- #: modules/gmap/views/tpl/gmapEditMap.php:532
1316
- msgid "Add more files"
1317
- msgstr ""
1318
-
1319
- #: modules/gmap/views/tpl/gmapEditMap.php:542
1320
- msgid "Custom Map Controls"
1321
- msgstr ""
1322
-
1323
- #: modules/gmap/views/tpl/gmapEditMap.php:547
1324
- msgid "Add custom map controls to the map."
1325
- msgstr ""
1326
-
1327
- #: modules/gmap/views/tpl/gmapEditMap.php:563
1328
- msgid "Controls type"
1329
- msgstr ""
1330
-
1331
- #: modules/gmap/views/tpl/gmapEditMap.php:566
1332
- msgid "Square"
1333
- msgstr ""
1334
-
1335
- #: modules/gmap/views/tpl/gmapEditMap.php:566
1336
- msgid "Rounded edges"
1337
- msgstr ""
1338
-
1339
- #: modules/gmap/views/tpl/gmapEditMap.php:566
1340
- msgid "Round"
1341
- msgstr ""
1342
-
1343
- #: modules/gmap/views/tpl/gmapEditMap.php:572
1344
- msgid "Background color"
1345
- msgstr ""
1346
-
1347
- #: modules/gmap/views/tpl/gmapEditMap.php:580
1348
- msgid "Text color"
1349
- msgstr ""
1350
-
1351
- #: modules/gmap/views/tpl/gmapEditMap.php:588
1352
- msgid "Controls position"
1353
- msgstr ""
1354
-
1355
- #: modules/gmap/views/tpl/gmapEditMap.php:598
1356
- msgid "Min Search Radius"
1357
- msgstr ""
1358
-
1359
- #: modules/gmap/views/tpl/gmapEditMap.php:606
1360
- msgid "Max Search Radius"
1361
- msgstr ""
1362
-
1363
- #: modules/gmap/views/tpl/gmapEditMap.php:618
1364
- msgid "Full Screen Button"
1365
- msgstr ""
1366
-
1367
- #: modules/gmap/views/tpl/gmapEditMap.php:620
1368
- msgid "Add a button on map to open it full screen."
1369
- msgstr ""
1370
-
1371
- #: modules/gmap/views/tpl/gmapEditMap.php:635
1372
- msgid "Hide POI"
1373
- msgstr ""
1374
-
1375
- #: modules/gmap/views/tpl/gmapEditMap.php:637
1376
- msgid ""
1377
- "Hide the Points Of Interest - landmark or other object, the marked points on "
1378
- "the map, for example: hotels, campsites, fuel stations etc."
1379
- msgstr ""
1380
-
1381
- #: modules/gmap/views/tpl/gmapEditMap.php:652
1382
- msgid "Hide Tooltips of Markers"
1383
- msgstr ""
1384
-
1385
- #: modules/gmap/views/tpl/gmapEditMap.php:654
1386
- msgid "Hide the tooltips, which displayed by mouse hover on markers' icons."
1387
- msgstr ""
1388
-
1389
- #: modules/gmap/views/tpl/gmapEditMap.php:665
1390
- msgid "Center on current user location"
1391
- msgstr ""
1392
-
1393
- #: modules/gmap/views/tpl/gmapEditMap.php:667
1394
- msgid "On frontend map will be centered on current user location."
1395
- msgstr ""
1396
-
1397
- #: modules/gmap/views/tpl/gmapEditMap.php:684
1398
- #: modules/gmap/views/tpl/gmapEditMap.php:956
1399
- msgid "Choose Icon"
1400
- msgstr "Elegir icono"
1401
-
1402
- #: modules/gmap/views/tpl/gmapEditMap.php:696
1403
- msgid "Info Window"
1404
- msgstr ""
1405
-
1406
- #: modules/gmap/views/tpl/gmapEditMap.php:698
1407
- msgid "Parameters of markers / shapes info-window PopUp"
1408
- msgstr ""
1409
-
1410
- #: modules/gmap/views/tpl/gmapEditMap.php:705
1411
- msgid "Width"
1412
- msgstr ""
1413
-
1414
- #: modules/gmap/views/tpl/gmapEditMap.php:707
1415
- msgid "Width of info window"
1416
- msgstr ""
1417
-
1418
- #: modules/gmap/views/tpl/gmapEditMap.php:721
1419
- #: modules/gmap/views/tpl/gmapEditMap.php:761
1420
- msgid "Auto"
1421
- msgstr ""
1422
-
1423
- #: modules/gmap/views/tpl/gmapEditMap.php:745
1424
- msgid "Height"
1425
- msgstr ""
1426
-
1427
- #: modules/gmap/views/tpl/gmapEditMap.php:747
1428
- msgid "Height of info window"
1429
- msgstr ""
1430
-
1431
- #: modules/gmap/views/tpl/gmapEditMap.php:785
1432
- msgid "Title Color"
1433
- msgstr ""
1434
-
1435
- #: modules/gmap/views/tpl/gmapEditMap.php:787
1436
- msgid "You can set your info window title color here"
1437
- msgstr ""
1438
-
1439
- #: modules/gmap/views/tpl/gmapEditMap.php:797
1440
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:35
1441
- msgid "Background Color"
1442
- msgstr ""
1443
-
1444
- #: modules/gmap/views/tpl/gmapEditMap.php:799
1445
- msgid "You can set your info window background color here"
1446
- msgstr ""
1447
-
1448
- #: modules/gmap/views/tpl/gmapEditMap.php:809
1449
- msgid "Title Font Size"
1450
- msgstr ""
1451
-
1452
- #: modules/gmap/views/tpl/gmapEditMap.php:811
1453
- msgid "You can set your info window title font size here"
1454
- msgstr ""
1455
-
1456
- #: modules/gmap/views/tpl/gmapEditMap.php:831
1457
- msgid "Description Font Size"
1458
- msgstr ""
1459
-
1460
- #: modules/gmap/views/tpl/gmapEditMap.php:833
1461
- msgid "You can set your info window description font size here"
1462
- msgstr ""
1463
-
1464
- #: modules/gmap/views/tpl/gmapEditMap.php:856
1465
- msgid "Directions Button"
1466
- msgstr ""
1467
-
1468
- #: modules/gmap/views/tpl/gmapEditMap.php:859
1469
- msgid ""
1470
- "Add a button at marker info window to get direction from the entered address "
1471
- "to the marker. If Show route data option is enabled - the total route time "
1472
- "and distance will be shown by click on the route polyline."
1473
- msgstr ""
1474
-
1475
- #: modules/gmap/views/tpl/gmapEditMap.php:877
1476
- msgid "Show route data"
1477
- msgstr ""
1478
-
1479
- #: modules/gmap/views/tpl/gmapEditMap.php:885
1480
- msgid "Print Button"
1481
- msgstr ""
1482
-
1483
- #: modules/gmap/views/tpl/gmapEditMap.php:887
1484
- msgid "Add Print button to markers info window"
1485
- msgstr ""
1486
-
1487
- #: modules/gmap/views/tpl/gmapEditMap.php:916
1488
- msgid "Marker Name"
1489
- msgstr "Nombre del Marcador"
1490
-
1491
- #: modules/gmap/views/tpl/gmapEditMap.php:918
1492
- msgid "Your marker title"
1493
- msgstr "El título de tu marcador"
1494
-
1495
- #: modules/gmap/views/tpl/gmapEditMap.php:929
1496
- msgid "Marker Description"
1497
- msgstr "Descripción del Marcador"
1498
-
1499
- #: modules/gmap/views/tpl/gmapEditMap.php:931
1500
- msgid ""
1501
- "Write here all text, that you want to appear in marker info-window PopUp"
1502
- msgstr ""
1503
- "Escribe aquí todo el texto que quieras que aparezca en el popup de la "
1504
- "información del marcador"
1505
-
1506
- #: modules/gmap/views/tpl/gmapEditMap.php:947
1507
- msgid "Icon"
1508
- msgstr "Icono"
1509
-
1510
- #: modules/gmap/views/tpl/gmapEditMap.php:949
1511
- msgid "Your marker Icon, that will appear on your map for this marker"
1512
- msgstr "Tu icono de marcador, éste aparecera en tu mapa para este marcador"
1513
-
1514
- #: modules/gmap/views/tpl/gmapEditMap.php:969
1515
- msgid "Search your location by address, just start typing here"
1516
- msgstr ""
1517
- "Busca tu localización por la dirección, tan solo empieza a escribir aquí"
1518
-
1519
- #: modules/gmap/views/tpl/gmapEditMap.php:981
1520
- #: modules/gmap/views/tpl/gmapEditMap.php:1238
1521
- msgid "Latitude"
1522
- msgstr "Latitud"
1523
-
1524
- #: modules/gmap/views/tpl/gmapEditMap.php:983
1525
- msgid "Latitude for your marker"
1526
- msgstr "Latitud para tu marcador"
1527
-
1528
- #: modules/gmap/views/tpl/gmapEditMap.php:995
1529
- #: modules/gmap/views/tpl/gmapEditMap.php:1247
1530
- msgid "Longitude"
1531
- msgstr "Longitud"
1532
-
1533
- #: modules/gmap/views/tpl/gmapEditMap.php:997
1534
- msgid "Longitude for your marker"
1535
- msgstr "Longitud para tu marcador"
1536
-
1537
- #: modules/gmap/views/tpl/gmapEditMap.php:1009
1538
- msgid "Marker Category"
1539
- msgstr ""
1540
-
1541
- #: modules/gmap/views/tpl/gmapEditMap.php:1011
1542
- msgid "Choose marker category"
1543
- msgstr ""
1544
-
1545
- #: modules/gmap/views/tpl/gmapEditMap.php:1025
1546
- msgid "Marker Link"
1547
- msgstr ""
1548
-
1549
- #: modules/gmap/views/tpl/gmapEditMap.php:1027
1550
- msgid "Link for opening by click on the marker"
1551
- msgstr ""
1552
-
1553
- #: modules/gmap/views/tpl/gmapEditMap.php:1043
1554
- msgid "Open in new window"
1555
- msgstr ""
1556
-
1557
- #: modules/gmap/views/tpl/gmapEditMap.php:1051
1558
- msgid "Show description by default"
1559
- msgstr ""
1560
-
1561
- #: modules/gmap/views/tpl/gmapEditMap.php:1053
1562
- msgid "Open marker description when map load"
1563
- msgstr ""
1564
-
1565
- #: modules/gmap/views/tpl/gmapEditMap.php:1063
1566
- msgid "Show description by mouse hover"
1567
- msgstr ""
1568
-
1569
- #: modules/gmap/views/tpl/gmapEditMap.php:1065
1570
- msgid "Open marker description by mouse hover"
1571
- msgstr ""
1572
-
1573
- #: modules/gmap/views/tpl/gmapEditMap.php:1075
1574
- msgid "Marker List Default Image"
1575
- msgstr ""
1576
-
1577
- #: modules/gmap/views/tpl/gmapEditMap.php:1077
1578
- msgid ""
1579
- "If there is no image tag in the marker description - this image will be used "
1580
- "for displaying in the map's markers list"
1581
- msgstr ""
1582
-
1583
- #: modules/gmap/views/tpl/gmapEditMap.php:1120
1584
- msgid "Figure Name"
1585
- msgstr ""
1586
-
1587
- #: modules/gmap/views/tpl/gmapEditMap.php:1122
1588
- msgid "Your figure title"
1589
- msgstr ""
1590
-
1591
- #: modules/gmap/views/tpl/gmapEditMap.php:1133
1592
- msgid "Figure Type"
1593
- msgstr ""
1594
-
1595
- #: modules/gmap/views/tpl/gmapEditMap.php:1135
1596
- msgid ""
1597
- "Type of your figure: polyline (a series of straight segments on the map) or "
1598
- "polygon (area enclosed by a closed path (or loop), which is defined by a "
1599
- "series of coordinates)."
1600
- msgstr ""
1601
-
1602
- #: modules/gmap/views/tpl/gmapEditMap.php:1140
1603
- msgid "Polyline"
1604
- msgstr ""
1605
-
1606
- #: modules/gmap/views/tpl/gmapEditMap.php:1141
1607
- msgid "Polygon"
1608
- msgstr ""
1609
-
1610
- #: modules/gmap/views/tpl/gmapEditMap.php:1150
1611
- msgid "Line Color"
1612
- msgstr ""
1613
-
1614
- #: modules/gmap/views/tpl/gmapEditMap.php:1157
1615
- msgid "Line Opacity"
1616
- msgstr ""
1617
-
1618
- #: modules/gmap/views/tpl/gmapEditMap.php:1168
1619
- msgid "Line Weight"
1620
- msgstr ""
1621
-
1622
- #: modules/gmap/views/tpl/gmapEditMap.php:1176
1623
- msgid "Fill Color"
1624
- msgstr ""
1625
-
1626
- #: modules/gmap/views/tpl/gmapEditMap.php:1183
1627
- msgid "Fill Opacity"
1628
- msgstr ""
1629
-
1630
- #: modules/gmap/views/tpl/gmapEditMap.php:1196
1631
- msgid "Fugure Description"
1632
- msgstr ""
1633
-
1634
- #: modules/gmap/views/tpl/gmapEditMap.php:1198
1635
- msgid "Write here all text, that you want to appear in shape info-window PopUp"
1636
- msgstr ""
1637
-
1638
- #: modules/gmap/views/tpl/gmapEditMap.php:1210
1639
- #: modules/gmap/views/tpl/gmapEditMap.php:1279
1640
- msgid "Points"
1641
- msgstr ""
1642
-
1643
- #: modules/gmap/views/tpl/gmapEditMap.php:1212
1644
- msgid ""
1645
- "Figure's points list: you can search the point by address (just start typing "
1646
- "in Address field), type the Latitude and Longitude of point in appropriate "
1647
- "fields or activate Add by Click button, and then draw figure on the map by "
1648
- "clicking on it. Important! You must deactivate Add by Click button after "
1649
- "ending of the draw."
1650
- msgstr ""
1651
-
1652
- #: modules/gmap/views/tpl/gmapEditMap.php:1216
1653
- msgid "Add by Click"
1654
- msgstr ""
1655
-
1656
- #: modules/gmap/views/tpl/gmapEditMap.php:1219
1657
- msgid "Add new point"
1658
- msgstr ""
1659
-
1660
- #: modules/gmap/views/tpl/gmapEditMap.php:1254
1661
- msgid "Remove point"
1662
- msgstr ""
1663
-
1664
- #: modules/gmap/views/tpl/gmapEditMap.php:1281
1665
- msgid ""
1666
- "To add Heatmap Layer points you need to activate Add Points button and draw "
1667
- "each point by click on map. To remove points you need to activate Remove "
1668
- "Points button and delete necessary point by click on it or just click on "
1669
- "Delete Heatmap Layer button to remove all Heatmap Layer points. Important! "
1670
- "You must to deactivate Add by Click and Remove by Click buttons after ending "
1671
- "of the add / remove points."
1672
- msgstr ""
1673
-
1674
- #: modules/gmap/views/tpl/gmapEditMap.php:1286
1675
- msgid "Add Point"
1676
- msgstr ""
1677
-
1678
- #: modules/gmap/views/tpl/gmapEditMap.php:1289
1679
- msgid "Remove Point"
1680
- msgstr ""
1681
-
1682
- #: modules/gmap/views/tpl/gmapEditMap.php:1294
1683
- msgid "Points Count"
1684
- msgstr ""
1685
-
1686
- #: modules/gmap/views/tpl/gmapEditMap.php:1303
1687
- msgid "Radius"
1688
- msgstr ""
1689
-
1690
- #: modules/gmap/views/tpl/gmapEditMap.php:1305
1691
- msgid "Heatmap Layer points radius in pixels"
1692
- msgstr ""
1693
-
1694
- #: modules/gmap/views/tpl/gmapEditMap.php:1316
1695
- msgid "Opacity"
1696
- msgstr ""
1697
-
1698
- #: modules/gmap/views/tpl/gmapEditMap.php:1318
1699
- msgid "Heatmap Layer points opacity"
1700
- msgstr ""
1701
-
1702
- #: modules/gmap/views/tpl/gmapEditMap.php:1351
1703
- msgid "Map shortcode"
1704
- msgstr "Código sencillo del Mapa"
1705
-
1706
- #: modules/gmap/views/tpl/gmapEditMap.php:1356
1707
- msgid "PHP code"
1708
- msgstr "Código PHP"
1709
-
1710
- #: modules/gmap/views/tpl/gmapEditMap.php:1362
1711
- msgid "Shortcode will appear after you save map."
1712
- msgstr "Un código sencillo aparecerá después de que guardes el mapa."
1713
-
1714
- #: modules/gmap/views/tpl/gmapEditMap.php:1370
1715
- msgid "Save Map"
1716
- msgstr "Guardar Mapa"
1717
-
1718
- #: modules/gmap/views/tpl/gmapEditMap.php:1376
1719
- msgid "Delete Map"
1720
- msgstr "Borrar Mapa"
1721
-
1722
- #: modules/gmap/views/tpl/gmapEditMap.php:1385
1723
- msgid "Save Marker"
1724
- msgstr "Guardar Marcador"
1725
-
1726
- #: modules/gmap/views/tpl/gmapEditMap.php:1391
1727
- msgid "Delete Marker"
1728
- msgstr "Eliminar Marcador"
1729
-
1730
- #: modules/gmap/views/tpl/gmapEditMap.php:1400
1731
- msgid "Save Figure"
1732
- msgstr ""
1733
-
1734
- #: modules/gmap/views/tpl/gmapEditMap.php:1406
1735
- msgid "Delete Figure"
1736
- msgstr ""
1737
-
1738
- #: modules/gmap/views/tpl/gmapEditMap.php:1415
1739
- msgid "Save Heatmap Layer"
1740
- msgstr ""
1741
-
1742
- #: modules/gmap/views/tpl/gmapEditMap.php:1421
1743
- msgid "Delete Heatmap Layer"
1744
- msgstr ""
1745
-
1746
- #: modules/gmap/views/tpl/gmapEditMap.php:1477
1747
- msgid "Show markers list with your map on frontend"
1748
- msgstr "Muestra la lista de tus marcadores con tu mapa en el frontal"
1749
-
1750
- #: modules/gmap/views/tpl/gmapEditMap.php:1484
1751
- #: modules/gmap/views/tpl/gmapEditMap.php:1485
1752
- msgid "Apply"
1753
- msgstr "Aplicar"
1754
-
1755
- #: modules/gmap/views/tpl/gmapEditMap.php:1484
1756
- msgid "Selected"
1757
- msgstr "Seleccionado"
1758
-
1759
- #: modules/gmap/views/tpl/gmapEditMap.php:1485
1760
- msgid "Available in PRO"
1761
- msgstr "Disponible en la versión PRO"
1762
-
1763
- #: modules/gmap/views/tpl/gmapListMarkers.php:20
1764
- #, php-format
1765
- msgid "and %s more"
1766
- msgstr "y %s mas"
1767
-
1768
- #: modules/gmap_widget/mod.php:18
1769
- msgid "Displays Most Viewed Products"
1770
- msgstr "Muestra los productos mas vistos"
1771
-
1772
- #: modules/gmap_widget/views/gmap_widget.php:17
1773
- msgid "You have no maps"
1774
- msgstr "No tienes mapas"
1775
-
1776
- #: modules/gmap_widget/views/tpl/form.php:10
1777
- msgid "Select map"
1778
- msgstr "Seleccionar mapa"
1779
-
1780
- #: modules/gmap_widget/views/tpl/form.php:21
1781
- #, php-format
1782
- msgid "Widget Map width (in % or px)"
1783
- msgstr ""
1784
-
1785
- #: modules/gmap_widget/views/tpl/form.php:28
1786
- #, php-format
1787
- msgid "for example, 100% or 200px"
1788
- msgstr ""
1789
-
1790
- #: modules/gmap_widget/views/tpl/form.php:31
1791
- msgid "Widget Map height (in px)"
1792
- msgstr ""
1793
-
1794
- #: modules/gmap_widget/views/tpl/form.php:38
1795
- msgid "for example, 200 or 400"
1796
- msgstr ""
1797
-
1798
- #: modules/gmap_widget/views/tpl/form.php:47
1799
- msgid "Display as image"
1800
- msgstr "Mostrar como imagen"
1801
-
1802
- #: modules/gmap_widget/views/tpl/form.php:48
1803
- msgid ""
1804
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1805
- msgstr ""
1806
- "El mapa será mostrado como imágen en la barra lateral, al hacer click, "
1807
- "abrirá una ventana emergente"
1808
-
1809
- #: modules/gmap_widget/views/tpl/form.php:50
1810
- msgid "Image width (in px)"
1811
- msgstr "Anchura de la imagen (en px)"
1812
-
1813
- #: modules/gmap_widget/views/tpl/form.php:57
1814
- msgid "Image height (in px)"
1815
- msgstr "Altura de la imagen (en px)"
1816
-
1817
- #: modules/icons/controller.php:20
1818
- msgid "Empty url"
1819
- msgstr "Url vacía"
1820
-
1821
- #: modules/icons/models/icons.php:43
1822
- msgid "Icon no found"
1823
- msgstr "Icono no encontrado"
1824
-
1825
- #: modules/icons/models/icons.php:95
1826
- msgid "File not found"
1827
- msgstr "Archivo no encontrado"
1828
-
1829
- #: modules/icons/models/icons.php:100
1830
- msgid "Cannot get image"
1831
- msgstr "No se pudo obtener la imagen"
1832
-
1833
- #: modules/icons/models/icons.php:111
1834
- msgid "cannot insert to table"
1835
- msgstr "no se puede insertar en la tabla"
1836
-
1837
- #: modules/mail/mod.php:33
1838
- msgid "Can not send email - problem with send server"
1839
- msgstr "No se pudo enviar el correo - hay un proble con el servidor de envío"
1840
-
1841
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
1842
- msgid "Marker Not Found"
1843
- msgstr "No se ha encontrado marcador"
1844
-
1845
- #: modules/marker/controller.php:48
1846
- msgid "Cannot remove marker"
1847
- msgstr "No se puede borrar el marcador"
1848
-
1849
- #: modules/marker/controller.php:63
1850
- msgid "Cannot remove markers"
1851
- msgstr "No se puede borrarl os marcadores"
1852
-
1853
- #: modules/marker/controller.php:144
1854
- msgid "Empty or invalid marker ID"
1855
- msgstr "ID de marcador erróneo o vacío"
1856
-
1857
- #: modules/marker/mod.php:21
1858
- msgid "Drop"
1859
- msgstr "Tirar"
1860
-
1861
- #: modules/marker/mod.php:22
1862
- msgid "Bounce"
1863
- msgstr "Bote"
1864
-
1865
- #: modules/marker/models/marker.php:49
1866
- msgid "Please enter marker name"
1867
- msgstr "Por favor, introduce le nombre del marcador"
1868
-
1869
- #: modules/marker/models/marker.php:260
1870
- msgid "Invalid Marker ID"
1871
- msgstr "ID de marcador erróneo"
1872
-
1873
- #: modules/marker_groups/controller.php:41
1874
- msgid "Marker Category data not found"
1875
- msgstr ""
1876
-
1877
- #: modules/marker_groups/mod.php:8
1878
- msgid "Marker Categories"
1879
- msgstr ""
1880
-
1881
- #: modules/marker_groups/mod.php:11
1882
- msgid "Add New"
1883
- msgstr "Añadir nuevo"
1884
-
1885
- #: modules/marker_groups/mod.php:24
1886
- msgid "No Marker Category Found"
1887
- msgstr ""
1888
-
1889
- #: modules/marker_groups/models/marker_groups.php:78
1890
- msgid "Please enter Marker Category"
1891
- msgstr ""
1892
-
1893
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5
1894
- #: modules/marker_groups/views/tpl/mgrAdmin.php:7
1895
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:11
1896
- msgid "Add Category"
1897
- msgstr ""
1898
-
1899
- #: modules/marker_groups/views/tpl/mgrAdmin.php:31
1900
- #, php-format
1901
- msgid ""
1902
- "You have no Marker Categories for now. <a href='%s' style='font-style: "
1903
- "italic;'>Create</a> your first Marker Category!"
1904
- msgstr ""
1905
-
1906
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:15
1907
- #: modules/options/views/tpl/optionsSettingsTabContent.php:6
1908
- msgid "Save"
1909
- msgstr "Guardar"
1910
-
1911
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:22
1912
- msgid "Category Title"
1913
- msgstr ""
1914
-
1915
- #: modules/options/mod.php:108
1916
- msgid "General"
1917
- msgstr "General"
1918
-
1919
- #: modules/options/mod.php:110
1920
- msgid "Send usage statistics"
1921
- msgstr "Enviar estadísticas de uso"
1922
-
1923
- #: modules/options/mod.php:110
1924
- msgid ""
1925
- "Send information about what plugin options you prefer to use, this will help "
1926
- "us make our solution better for You."
1927
- msgstr ""
1928
-
1929
- #: modules/options/mod.php:111
1930
- msgid "Enable promo link"
1931
- msgstr ""
1932
-
1933
- #: modules/options/mod.php:111
1934
- msgid ""
1935
- "We are trying to make our plugin better for you, and you can help us with "
1936
- "this. Just check this option - and small promotion link will be added in the "
1937
- "bottom of your Google Maps. This is easy for you - but very helpful for us!"
1938
- msgstr ""
1939
-
1940
- #: modules/options/mod.php:112
1941
- msgid "User role can use plugin"
1942
- msgstr ""
1943
-
1944
- #: modules/options/mod.php:112
1945
- msgid "User with next roles will have access to whole plugin from admin area."
1946
- msgstr ""
1947
-
1948
- #: modules/options/models/modules.php:35
1949
- msgid "Module Updated"
1950
- msgstr "Módulo actualizado"
1951
-
1952
- #: modules/options/models/modules.php:50
1953
- msgid "Module Update Failed"
1954
- msgstr "La actualización del módulo ha fallado"
1955
-
1956
- #: modules/options/models/modules.php:53
1957
- msgid "Error module ID"
1958
- msgstr "ID del módulo errónea"
1959
-
1960
- #: modules/options/models/options.php:64
1961
- msgid "Empty data to save option"
1962
- msgstr "Vacía los datos para la opción de guardado"
1963
-
1964
- #: modules/options/views/options.php:66
1965
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1966
- msgid "Undefined"
1967
- msgstr ""
1968
-
1969
- #: modules/options/views/tpl/optionsAdminMain.php:18
1970
- msgid "Main page Go here!!!!"
1971
- msgstr "¡¡¡¡Página principal aquí, ven ya!!!!"
1972
-
1973
- #: modules/options/views/tpl/optionsAdminPage.php:31
1974
- msgid "Improve Free version"
1975
- msgstr "Mejora la versión Gratuita"
1976
-
1977
- #: modules/options/views/tpl/optionsAdminPage.php:33
1978
- #, php-format
1979
- msgid ""
1980
- "Please be advised that this option is available only in <a target='_blank' "
1981
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1982
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1983
- "PopUps!"
1984
- msgstr ""
1985
- "Por favor, ten en cuenta que esta opción está disponible solamente en la <a "
1986
- "target='_blank' href='%s'>versión PRO</a>.Puedes <a target='_blank' "
1987
- "href='%s' class='button'>adquirir la versión PRO</a> hoy y conseguir esta y "
1988
- "otras opciones PRO para tus PopUps!"
1989
-
1990
- #: modules/options/views/tpl/optionsSettingsTabContent.php:3
1991
- msgid "Save all options"
1992
- msgstr ""
1993
-
1994
- #: modules/options/views/tpl/optionsSettingsTabContent.php:61
1995
- #, php-format
1996
- msgid "Turned On %s"
1997
- msgstr ""
1998
-
1999
- #: modules/options/views/tpl/optionsSettingsTabContent.php:62
2000
- #, php-format
2001
- msgid "Turned Off %s"
2002
- msgstr ""
2003
-
2004
- #: modules/supsystic_promo/controller.php:7
2005
- msgid "Information was saved. Thank you!"
2006
- msgstr "La información ha sido guardada. Gracias!"
2007
-
2008
- #: modules/supsystic_promo/controller.php:23
2009
- msgid ""
2010
- "Please don't send contact requests so often - wait for response for your "
2011
- "previous requests."
2012
- msgstr ""
2013
- "Por favor no envíes peticiones de contacto tan a menudo, espera a que "
2014
- "respondamos tus peticiones anteriores."
2015
-
2016
- #: modules/supsystic_promo/controller.php:45
2017
- msgid "Please enter valid email address"
2018
- msgstr "Por favor, introduce una dirección de correo electrónico válida"
2019
-
2020
- #: modules/supsystic_promo/mod.php:34
2021
- #, php-format
2022
- msgid ""
2023
- "<h3>Hey, I noticed you just use %s over a week - that's awesome!</"
2024
- "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
2025
- "WordPress? Just to help us spread the word and boost our motivation.</p>"
2026
- msgstr ""
2027
-
2028
- #: modules/supsystic_promo/mod.php:35 modules/supsystic_promo/mod.php:41
2029
- msgid "Ok, you deserve it"
2030
- msgstr ""
2031
-
2032
- #: modules/supsystic_promo/mod.php:36 modules/supsystic_promo/mod.php:42
2033
- msgid "Nope, maybe later"
2034
- msgstr ""
2035
-
2036
- #: modules/supsystic_promo/mod.php:37
2037
- msgid "I already did"
2038
- msgstr ""
2039
-
2040
- #: modules/supsystic_promo/mod.php:38
2041
- #, php-format
2042
- msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
2043
- msgstr ""
2044
-
2045
- #: modules/supsystic_promo/mod.php:39
2046
- msgid ""
2047
- "<p>On behalf of the entire <a href='https://supsystic.com/' "
2048
- "target='_blank'>supsystic.com</a> company I would like to thank you for been "
2049
- "with us, and I really hope that our software helped you.</p>"
2050
- msgstr ""
2051
-
2052
- #: modules/supsystic_promo/mod.php:40
2053
- msgid ""
2054
- "<p>And today, if you want, - you can help us. This is really simple - you "
2055
- "can just add small promo link to our site under your maps. This is small "
2056
- "step for you, but a big help for us! Sure, if you don't want - just skip "
2057
- "this and continue enjoy our software!</p>"
2058
- msgstr ""
2059
-
2060
- #: modules/supsystic_promo/mod.php:43
2061
- msgid "Skip"
2062
- msgstr ""
2063
-
2064
- #: modules/supsystic_promo/mod.php:90
2065
- msgid "Overview"
2066
- msgstr "Vista General"
2067
-
2068
- #: modules/supsystic_promo/mod.php:116
2069
- msgid "Welcome to Supsystic Secure"
2070
- msgstr "BIenvenido a Supsystic Secure"
2071
-
2072
- #: modules/supsystic_promo/mod.php:185
2073
- msgid "Name"
2074
- msgstr "Nombre"
2075
-
2076
- #: modules/supsystic_promo/mod.php:187
2077
- msgid "Website"
2078
- msgstr "Página Web"
2079
-
2080
- #: modules/supsystic_promo/mod.php:188
2081
- msgid "Subject"
2082
- msgstr "Asunto"
2083
-
2084
- #: modules/supsystic_promo/mod.php:189
2085
- msgid "Topic"
2086
- msgstr "Tópico"
2087
-
2088
- #: modules/supsystic_promo/mod.php:190
2089
- msgid "Plugin options"
2090
- msgstr "Opciones del plugin"
2091
-
2092
- #: modules/supsystic_promo/mod.php:191
2093
- msgid "Report a bug"
2094
- msgstr "Reportar un fallo"
2095
-
2096
- #: modules/supsystic_promo/mod.php:192
2097
- msgid "Require a new functionallity"
2098
- msgstr "Solicitar una nueva funcionalidad"
2099
-
2100
- #: modules/supsystic_promo/mod.php:193
2101
- msgid "Other"
2102
- msgstr "Otro"
2103
-
2104
- #: modules/supsystic_promo/mod.php:195
2105
- msgid "Message"
2106
- msgstr "Mensaje"
2107
-
2108
- #: modules/supsystic_promo/mod.php:195
2109
- msgid "Hello Supsystic Team!"
2110
- msgstr "Hola equipo Supsystic!"
2111
-
2112
- #: modules/supsystic_promo/mod.php:240
2113
- msgid "Heatmap"
2114
- msgstr ""
2115
-
2116
- #: modules/supsystic_promo/views/supsystic_promo.php:32
2117
- msgid "How to use Google Maps Easy Widget?"
2118
- msgstr ""
2119
-
2120
- #: modules/supsystic_promo/views/supsystic_promo.php:33
2121
- msgid ""
2122
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
2123
- "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
2124
- "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
2125
- "map for widget and configure the settings - Widget Map width and height.<br /"
2126
- ">5. Click 'Save'."
2127
- msgstr ""
2128
-
2129
- #: modules/supsystic_promo/views/supsystic_promo.php:34
2130
- msgid "How to add map into the site content?"
2131
- msgstr ""
2132
-
2133
- #: modules/supsystic_promo/views/supsystic_promo.php:35
2134
- msgid ""
2135
- "You can add a map in the site content via shortcode or php code. Learn more "
2136
- "about how to do this <a href='http://supsystic.com/add-map-into-site-"
2137
- "content/'>here</a>."
2138
- msgstr ""
2139
-
2140
- #: modules/supsystic_promo/views/supsystic_promo.php:36
2141
- msgid "How to add map in popup window?"
2142
- msgstr ""
2143
-
2144
- #: modules/supsystic_promo/views/supsystic_promo.php:37
2145
- msgid ""
2146
- "You can add a map in popup window by inserting map shortcode in any popup "
2147
- "text field. Learn more about how to do this <a href='http://supsystic.com/"
2148
- "add-map-in-popup-window/'>here</a>."
2149
- msgstr ""
2150
-
2151
- #: modules/supsystic_promo/views/supsystic_promo.php:38
2152
- msgid "How to zoom and center the initial map on markers ?"
2153
- msgstr ""
2154
-
2155
- #: modules/supsystic_promo/views/supsystic_promo.php:39
2156
- msgid ""
2157
- "There is a few different ways to zoom and centralize map. The easiest one is "
2158
- "to drag your map using mouse - 'Draggable' option must be enabled, or with "
2159
- "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
2160
- "zoom-and-center-the-initial-map-on-markers/'>Read more..</a>"
2161
- msgstr ""
2162
-
2163
- #: modules/supsystic_promo/views/supsystic_promo.php:40
2164
- msgid "How to get PRO version of plugin for FREE?"
2165
- msgstr "¿Cómo conseguir la versión PRO del plugin GRATIS?"
2166
-
2167
- #: modules/supsystic_promo/views/supsystic_promo.php:40
2168
- #, php-format
2169
- msgid ""
2170
- "You have an incredible opportunity to get PRO version for free. Make "
2171
- "Translation of plugin! It will be amazing if you take advantage of this "
2172
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
2173
- "version of any plugin for FREE'</a>"
2174
- msgstr ""
2175
- "TIenes la increíble oportunidad de conseguir la versión PRO gratis. Haz una "
2176
- "traducción del plugin! Será alucinante si tomas ventaja de esta oferta! "
2177
- "Puedes encontrar mas información aquí <a target='_blank' href='%s'>'Consigue "
2178
- "la versión PRO de cualquier plugin GRATIS'</a>"
2179
-
2180
- #: modules/supsystic_promo/views/supsystic_promo.php:41
2181
- msgid "Translation"
2182
- msgstr "Traducción"
2183
-
2184
- #: modules/supsystic_promo/views/supsystic_promo.php:41
2185
- #, php-format
2186
- msgid ""
2187
- "All available languages are provided with the Supsystic Google Maps plugin. "
2188
- "If your language isn't available, your plugin will be in English by default."
2189
- "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
2190
- "b><br />Translate or update a translation Google Maps WordPress plugin in "
2191
- "your language and get a Premium license for FREE. <a target='_blank' "
2192
- "href='%s'>Contact us</a>."
2193
- msgstr ""
2194
-
2195
- #: modules/supsystic_promo/views/supsystic_promo.php:57
2196
- #, php-format
2197
- msgid ""
2198
- "There were some problem while trying to retrive our news, but you can always "
2199
- "check all list <a target='_blank' href='%s'>here</a>."
2200
- msgstr ""
2201
- "Ha ocurrido un problema durante la recuperación de nuestras noticias, pero, "
2202
- "siempre puedes consultar toda la lista <a target='_blank' href='%s'>aquí>."
2203
-
2204
- #: modules/supsystic_promo/views/supsystic_promo.php:67
2205
- #: modules/supsystic_promo/views/supsystic_promo.php:68
2206
- #: modules/supsystic_promo/views/supsystic_promo.php:73
2207
- #: modules/supsystic_promo/views/supsystic_promo.php:75
2208
- #: modules/supsystic_promo/views/supsystic_promo.php:76
2209
- msgid "Yes"
2210
- msgstr "Sí"
2211
-
2212
- #: modules/supsystic_promo/views/supsystic_promo.php:67
2213
- #: modules/supsystic_promo/views/supsystic_promo.php:68
2214
- #: modules/supsystic_promo/views/supsystic_promo.php:73
2215
- #: modules/supsystic_promo/views/supsystic_promo.php:75
2216
- #: modules/supsystic_promo/views/supsystic_promo.php:76
2217
- msgid "No"
2218
- msgstr "No"
2219
-
2220
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
2221
- #: modules/supsystic_promo/views/tpl/welcomePage.php:78
2222
- msgid "Version"
2223
- msgstr "Versión"
2224
-
2225
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
2226
- msgid "PRO"
2227
- msgstr "PRO"
2228
-
2229
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
2230
- msgid "Support"
2231
- msgstr "Soporte"
2232
-
2233
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
2234
- msgid "Add your"
2235
- msgstr "Añade tu"
2236
-
2237
- #: modules/supsystic_promo/views/tpl/adminPromoTabContent.php:5
2238
- msgid "Get it now!"
2239
- msgstr ""
2240
-
2241
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
2242
- msgid "FAQ and Documentation"
2243
- msgstr "FAQs y Documentación"
2244
-
2245
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
2246
- msgid "Check all FAQs"
2247
- msgstr "Preguntas Mas Frecuentes (FAQs)"
2248
-
2249
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22
2250
- #: modules/supsystic_promo/views/tpl/welcomePage.php:102
2251
- msgid "Video tutorial"
2252
- msgstr "Videotutorial"
2253
-
2254
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
2255
- msgid "PRO Features"
2256
- msgstr ""
2257
-
2258
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
2259
- msgid "Server Settings"
2260
- msgstr "Ajustes del Servidor"
2261
-
2262
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
2263
- msgid "News"
2264
- msgstr "Noticias"
2265
-
2266
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
2267
- msgid "All news and info"
2268
- msgstr "Todas las noticias e información"
2269
-
2270
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
2271
- msgid "Contact form"
2272
- msgstr "Formulario de contacto"
2273
-
2274
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
2275
- msgid "Send email"
2276
- msgstr "Enviar email"
2277
-
2278
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
2279
- msgid ""
2280
- "Your email was send, we will try to respond to you as soon as possible. "
2281
- "Thank you for support!"
2282
- msgstr ""
2283
- "Tu correo ha sido enviado, intentaremos responderte en el menor tiempo "
2284
- "posible. ¡Gracias por el apoyo!"
2285
-
2286
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
2287
- msgid "Welcome to"
2288
- msgstr "BIenvenido a"
2289
-
2290
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
2291
- #, php-format
2292
- msgid "This is first start up of the %s plugin."
2293
- msgstr "El primer inicio del plugin %s"
2294
-
2295
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
2296
- msgid ""
2297
- "If you are newbie - check all features on that page, if you are guru - "
2298
- "please correct us."
2299
- msgstr ""
2300
- "Si eres nuevo, comprueba todas las características en esta página, si eres "
2301
- "un gurú, por favor, corrígenos."
2302
-
2303
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
2304
- msgid "Please, post url"
2305
- msgstr "Por favor, envía tu url"
2306
-
2307
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
2308
- msgid "What to do next? Check below section"
2309
- msgstr "¿Qué hacer a continuación? Comprueba la sección de abajo"
2310
-
2311
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
2312
- msgid "Boost us"
2313
- msgstr "Poténcianos"
2314
-
2315
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
2316
- #, php-format
2317
- msgid ""
2318
- "It's amazing when you boost development with your feedback and ratings. So "
2319
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
2320
- "help us."
2321
- msgstr ""
2322
- "Es alucinante cuando potencias el desarrollo con tu feedback y puntuaciones. "
2323
- "Así que hemos creado una <a target='_blank' href='%s'>página de mejora</a> "
2324
- "especial para ayudarte a ayudarnos."
2325
-
2326
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
2327
- msgid "Documentation"
2328
- msgstr "Documentación"
2329
-
2330
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
2331
- #, php-format
2332
- msgid ""
2333
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
2334
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
2335
- msgstr ""
2336
- "Comprueba la <a target='_blank' href='%s'>documentación</a> y la sección de "
2337
- "preguntas y respuestas (FAQ). Si no puedes resolver tus problemas, <a "
2338
- "target='_blank' href='%s'>contáctanos</a>."
2339
-
2340
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
2341
- msgid "Full Features List"
2342
- msgstr "Lista completa de características"
2343
-
2344
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
2345
- msgid "There are so many features, so we can't post it here. Like"
2346
- msgstr ""
2347
- "Hay tantas características que no podemos mostrarlas todas aquí. Me gusta"
2348
-
2349
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
2350
- msgid "Capcha for admin login"
2351
- msgstr "Captcha para login de administrador"
2352
-
2353
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
2354
- msgid "htaccess admin protect"
2355
- msgstr "htaccess admin protegido"
2356
-
2357
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
2358
- msgid "Hide directory files listing"
2359
- msgstr "Oculta la lista de directorios de archivo"
2360
-
2361
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
2362
- msgid "Check files and directories write permissions"
2363
- msgstr "Comprueba los permisos de escritura de los directorios y archivos"
2364
-
2365
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
2366
- #, php-format
2367
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
2368
- msgstr ""
2369
- "Así que comprueba la lista completa de características <a target='_blank' "
2370
- "href='%s'>aquí</a>."
2371
-
2372
- #~ msgid "Map ID"
2373
- #~ msgstr "ID del mapa"
2374
-
2375
- #~ msgid "File name"
2376
- #~ msgstr "Nombre del archivo"
2377
-
2378
- #~ msgid "Description Of Map"
2379
- #~ msgstr "Descripción del Mapa"
2380
-
2381
- #~ msgid "Map Properties"
2382
- #~ msgstr "Propiedades del Mapa"
2383
-
2384
- #~ msgid "Add New Marker"
2385
- #~ msgstr "Añadir Nuevo Marcador"
2386
-
2387
- #~ msgid "Zoom control type on your map"
2388
- #~ msgstr "Tipo de control del zoom en tu mapa"
2389
-
2390
- #~ msgid "Large"
2391
- #~ msgstr "Grande"
2392
-
2393
- #~ msgid "Small"
2394
- #~ msgstr "Pequeño"
2395
-
2396
- #~ msgid "Pan control"
2397
- #~ msgstr "Control de vista Panorámica"
2398
-
2399
- #~ msgid ""
2400
- #~ "Pan control - allow you to pan over your map using mouse, usually is "
2401
- #~ "located on left upper corner of your map"
2402
- #~ msgstr ""
2403
- #~ "Control de vista Panorámica - te permite realizar una vista panorámica "
2404
- #~ "sobre tu mapa usando el ratón, normalmente se encuenta en la esquina "
2405
- #~ "superior izquieda de tu mapa"
2406
-
2407
- #~ msgid "Change pan control position on map"
2408
- #~ msgstr "Cambiar la posición del control de vista panorámica"
2409
-
2410
- #~ msgid "Overview control"
2411
- #~ msgstr "Control de visión general"
2412
-
2413
- #~ msgid ""
2414
- #~ "Overview control for your map, by default is disabled, and if enabled - "
2415
- #~ "is located on the right bottom corner"
2416
- #~ msgstr ""
2417
- #~ "Control de visión general para tu mapa, por defecto está desactivada, si "
2418
- #~ "se activa, estará posicionada en la esquina inferior derecha"
2419
-
2420
- #~ msgid "Opened"
2421
- #~ msgstr "Abierto"
2422
-
2423
- #~ msgid "Collapsed"
2424
- #~ msgstr "Colapsado"
2425
-
2426
- #~ msgid "Widget Map width"
2427
- #~ msgstr "Anchura del Widget del Mapa"
2428
-
2429
- #~ msgid "Widget Map height"
2430
- #~ msgstr "Altura del Widget del Mapa"
2431
-
2432
- #~ msgid ""
2433
- #~ "Congradulations! PRO version of %s plugin is activated and working fine!"
2434
- #~ msgstr ""
2435
- #~ "Felicidades! La versión PRO del plugin %s está activada y funciona "
2436
- #~ "correctamente!"
2437
-
2438
- #~ msgid ""
2439
- #~ "Congradulations! You have successfully installed PRO version of %s "
2440
- #~ "plugin. Final step to finish Your PRO version setup - is to enter your "
2441
- #~ "Email and License Key on this page. This will activate Your copy of "
2442
- #~ "software on this site."
2443
- #~ msgstr ""
2444
- #~ "Felicidades! Has terminado con éxito la instalación de la versión PRO del "
2445
- #~ "plugin %s. Introduce tu Email y la Clave de Licencia en esta página para "
2446
- #~ "terminar la instalación. Ésto activara tu copia del software en esta "
2447
- #~ "página."
2448
-
2449
- #~ msgid "Icon ID"
2450
- #~ msgstr "ID del icono"
2451
-
2452
- #~ msgid "Icon Title"
2453
- #~ msgstr "Título del icono"
2454
-
2455
- #~ msgid "Icon Description"
2456
- #~ msgstr "Descripción del icono"
2457
-
2458
- #~ msgid "File Path"
2459
- #~ msgstr "Ruta del Archivo"
2460
-
2461
- #~ msgid "Html Parametrs"
2462
- #~ msgstr "Parámetros Html"
2463
-
2464
- #~ msgid "Create Date"
2465
- #~ msgstr "Feca de Creación"
2466
-
2467
- #~ msgid "Additional Params"
2468
- #~ msgstr "Parámetros Adicionales"
2469
-
2470
- #~ msgid "Marker"
2471
- #~ msgstr "Marcador"
2472
-
2473
- #~ msgid "Added %s maps"
2474
- #~ msgstr "Añadidos %s mapas"
2475
-
2476
- #~ msgid "Updated %s maps"
2477
- #~ msgstr "Actualizados %s mapas"
2478
-
2479
- #~ msgid "Added %s markers"
2480
- #~ msgstr "Añadidos %s marcadores"
2481
-
2482
- #~ msgid "Updated %s markers"
2483
- #~ msgstr "Actualizados %s marcadores"
2484
-
2485
- #~ msgid "Extended Options"
2486
- #~ msgstr "Opciones Extendidas"
2487
-
2488
- #~ msgid "Get 300+ Themes"
2489
- #~ msgstr "COnsigue mas de 300 Temas"
2490
-
2491
- #~ msgid ""
2492
- #~ "Please be advised that this option is available only in <a "
2493
- #~ "target='_blank' href='%s'>PRO version</a>. You can <a target='_blank' "
2494
- #~ "href='%s' class='button'>Get PRO</a> today and get this and other PRO "
2495
- #~ "option for your Maps!"
2496
- #~ msgstr ""
2497
- #~ "Por favor, ten en cuenta que esta opción está disponible solamente en la "
2498
- #~ "<a target='_blank' href='%s'>versión PRO</a>.Puedes <a target='_blank' "
2499
- #~ "href='%s' class='button'>adquirir la versión PRO</a> hoy y conseguir esta "
2500
- #~ "y otras opciones PRO para tus Mapas!"
2501
-
2502
- #~ msgid "Group"
2503
- #~ msgstr "Grupo"
2504
-
2505
- #~ msgid "Creation Date"
2506
- #~ msgstr "Fecha de creación"
2507
-
2508
- #~ msgid "Uses On Map"
2509
- #~ msgstr "Usos en el Mapa"
2510
-
2511
- #~ msgid "Back To Markers List"
2512
- #~ msgstr "Volver a la lista de marcadores"
2513
-
2514
- #~ msgid "Remove"
2515
- #~ msgstr "Eliminar"
2516
-
2517
- #~ msgid "No maps contain this marker"
2518
- #~ msgstr "Este marcador no pertenece a ningún mapa"
2519
-
2520
- #~ msgid "Remove selected"
2521
- #~ msgstr "Eliminar seleccionado"
2522
-
2523
- #~ msgid "Nothing To Save"
2524
- #~ msgstr "Nada que guardar"
2525
-
2526
- #~ msgid "Cannot Save Group"
2527
- #~ msgstr "No se pudo guardar el grupo"
2528
-
2529
- #~ msgid "Group Not Found"
2530
- #~ msgstr "Grupo no encontrado"
2531
-
2532
- #~ msgid "Cannot remove group"
2533
- #~ msgstr "No se puede borrar el grupo"
2534
-
2535
- #~ msgid "Save Group"
2536
- #~ msgstr "Guardar Grupo"
2537
-
2538
- #~ msgid "Group Title"
2539
- #~ msgstr "Título del Grupo"
2540
-
2541
- #~ msgid "Title For Group"
2542
- #~ msgstr "Título para el grupo"
2543
-
2544
- #~ msgid "Group Description"
2545
- #~ msgstr "Descripción del Grupo"
2546
-
2547
- #~ msgid "Description For Goup"
2548
- #~ msgstr "Descripción para el Grupo"
2549
-
2550
- #~ msgid ""
2551
- #~ "All available languages are provided with the Supsystic Google Maps "
2552
- #~ "plugin. If your language isn't available, your plugin will be in English "
2553
- #~ "by default.<br /><b>Available Translations: English</b><br />Translate or "
2554
- #~ "update a translation Google Maps WordPress plugin in your language and "
2555
- #~ "get a Premium license for FREE. <a target='_blank' href='%s'>Contact us</"
2556
- #~ "a>."
2557
- #~ msgstr ""
2558
- #~ "Todos los idiomas son proporcionados mediante el plugin de Supsystic "
2559
- #~ "Google Maps. Tu plugin estará en inglés por defecto si no existe "
2560
- #~ "traducción a tu idioma.<br /><b>Traducciones disponibles: inglés</b><br /"
2561
- #~ "> Traduce o actualiza una traducción del plugin de Google Maps de "
2562
- #~ "Wordpress en tu idioma y consigue una licencia Premium GRATIS <a "
2563
- #~ "target='_blank' href='%s'>Contacta con nosotros</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-fa_IR.mo DELETED
Binary file
lang/gmp_lng-fr_FR.mo DELETED
Binary file
lang/gmp_lng-fr_FR.po DELETED
@@ -1,1917 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2015-07-31 11:50+0300\n"
5
- "PO-Revision-Date: 2017-12-15 13:20+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language: en\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.9\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
- "X-Poedit-SearchPathExcluded-0: js\n"
17
- "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
18
-
19
- #: classes/controller.php:198 classes/controller.php:206
20
- #: doc/google-maps-easy-pro/license/controller.php:6
21
- #: modules/adminmenu/controller.php:29 modules/gmap/controller.php:40
22
- #: modules/gmap/controller.php:57 modules/marker/controller.php:8
23
- #: modules/marker/controller.php:46 modules/marker/controller.php:61
24
- #: modules/marker/controller.php:101 modules/marker_groups/controller.php:58
25
- #: modules/options/controller.php:6
26
- msgid "Done"
27
- msgstr "Fait"
28
-
29
- #: classes/field.php:131
30
- msgid "Select"
31
- msgstr "Sélectionner"
32
-
33
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
34
- msgid "N/A"
35
- msgstr "N/A"
36
-
37
- #: classes/field.php:277
38
- msgid "Add Checkbox"
39
- msgstr "Ajouter une case à cocher"
40
-
41
- #: classes/field.php:282 classes/field.php:287
42
- msgid "Add Item"
43
- msgstr "Ajouter un objet"
44
-
45
- #: classes/field.php:293
46
- msgid "Add Radio Button"
47
- msgstr "Ajouter un bouton radio"
48
-
49
- #: classes/field.php:311
50
- msgid "Dimensions"
51
- msgstr "Dimensions"
52
-
53
- #: classes/field.php:314
54
- msgid "width"
55
- msgstr "largeur"
56
-
57
- #: classes/field.php:316
58
- msgid "height"
59
- msgstr "hauteur"
60
-
61
- #: classes/field.php:323
62
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
63
- msgstr "Cliquer pour remplir les champs &quot;id&quot; et &quot;class&quot;"
64
-
65
- #: classes/field.php:324
66
- msgid "Attributes"
67
- msgstr "Attributs"
68
-
69
- #: classes/field.php:402
70
- msgid "There are no configuration options for this module"
71
- msgstr "Il n'y a pas d'options de configuration pour ce module"
72
-
73
- #: classes/fieldAdapter.php:93
74
- msgid "Apply To"
75
- msgstr "Appliquer à"
76
-
77
- #: classes/fieldAdapter.php:95 modules/gmap/views/tpl/gmapEditMap.php:523
78
- msgid "Address"
79
- msgstr "Adresse"
80
-
81
- #: classes/fieldAdapter.php:96
82
- msgid "Destination"
83
- msgstr "Destination"
84
-
85
- #: classes/fieldAdapter.php:97
86
- msgid "Country"
87
- msgstr "Pays"
88
-
89
- #: classes/fieldAdapter.php:100
90
- msgid "Categories"
91
- msgstr "Catégories"
92
-
93
- #: classes/fieldAdapter.php:101
94
- msgid "You have no categories"
95
- msgstr "Vous n'avez aucune catégorie"
96
-
97
- #: classes/fieldAdapter.php:102
98
- msgid "Brands"
99
- msgstr "Marques"
100
-
101
- #: classes/fieldAdapter.php:103
102
- msgid "You have no brands"
103
- msgstr "Vous n'avez aucune marque"
104
-
105
- #: classes/fieldAdapter.php:105
106
- msgid "Tax Rate"
107
- msgstr "Taux de taxe (TVA)"
108
-
109
- #: classes/fieldAdapter.php:106
110
- msgid "Absolute"
111
- msgstr "Absolue"
112
-
113
- #: classes/fieldAdapter.php:134
114
- msgid "Not selected"
115
- msgstr "Non sélectionné"
116
-
117
- #: classes/fieldAdapter.php:184
118
- msgid "class"
119
- msgstr "class"
120
-
121
- #: classes/fieldAdapter.php:186
122
- msgid "id"
123
- msgstr "id"
124
-
125
- #: classes/frame.php:135
126
- msgid "You have no permissions to view this page"
127
- msgstr "Vous n'avez pas les droits pour voir cette page"
128
-
129
- #: classes/html.php:207
130
- msgid "Upload"
131
- msgstr "Télécharger vers le site"
132
-
133
- #: classes/html.php:611
134
- msgid "ON"
135
- msgstr "Activé"
136
-
137
- #: classes/html.php:612
138
- msgid "OFF"
139
- msgstr "Désactivé"
140
-
141
- #: classes/html.php:636
142
- #, php-format
143
- msgid "Select %s"
144
- msgstr "Sélectionner %s"
145
-
146
- #: classes/modInstaller.php:34
147
- #, php-format
148
- msgid "Move files for %s failed"
149
- msgstr "Echec de transfert des fichiers vers %s"
150
-
151
- #: classes/modInstaller.php:37
152
- #, php-format
153
- msgid "%s is not plugin module"
154
- msgstr "%s n'est pas un module du plugin"
155
-
156
- #: classes/modInstaller.php:76
157
- msgid "Can not create module directory. Try to set permission to "
158
- msgstr ""
159
- "Impossible de créer le répertoire du module. Essayez de donner la permission "
160
- "à"
161
-
162
- #: classes/modInstaller.php:103
163
- msgid "No modules were found in XML file"
164
- msgstr "Aucun module n'a été trouvé dans le fichier XML"
165
-
166
- #: classes/modInstaller.php:107
167
- msgid "Invalid XML file"
168
- msgstr "Fichier XML non valide"
169
-
170
- #: classes/modInstaller.php:109
171
- msgid "No XML file were found"
172
- msgstr "Aucun fichier XML n'a été trouvé"
173
-
174
- #: classes/modInstaller.php:128
175
- #, php-format
176
- msgid "Install %s failed"
177
- msgstr "L'installation de %s a échoué"
178
-
179
- #: classes/modInstaller.php:134
180
- msgid "Error Activate module"
181
- msgstr "Erreur lors de l'activation du module"
182
-
183
- #: classes/modInstaller.php:164
184
- msgid "Error Deactivation module"
185
- msgstr "Erreur lors de la désactivation du module"
186
-
187
- #: classes/modInstaller.php:185
188
- msgid "Error Activating module"
189
- msgstr "Erreur lors de l'activation du module"
190
-
191
- #: classes/model.php:174 classes/model.php:186
192
- msgid "Database error detected"
193
- msgstr "Erreur de base de données détectée"
194
-
195
- #: classes/model.php:176 modules/gmap/models/gmap.php:105
196
- #: modules/icons/models/icons.php:148
197
- #: modules/marker_groups/models/marker_groups.php:30
198
- msgid "Invalid ID"
199
- msgstr "ID non valide"
200
-
201
- #: classes/model.php:209
202
- msgid "Empty or invalid ID"
203
- msgstr "ID vide ou non valide"
204
-
205
- #: classes/table.php:277
206
- msgid "Nothig to update"
207
- msgstr "Rien à télécharger"
208
-
209
- #: classes/table.php:293
210
- msgid "Database error. Please contact your developer."
211
- msgstr "Erreur de base de données. Merci de contacter votre développeur."
212
-
213
- #: classes/tables/marker.php:7 classes/tables/marker_groups.php:8
214
- msgid "Map ID"
215
- msgstr "ID de la carte"
216
-
217
- #: classes/tables/marker.php:8 classes/tables/marker_groups.php:9
218
- msgid "File name"
219
- msgstr "Nom du fichier"
220
-
221
- #: classes/tables/marker.php:9 classes/tables/marker_groups.php:10
222
- msgid "Description Of Map"
223
- msgstr "Déscription de la carte"
224
-
225
- #: classes/tables/marker.php:10
226
- msgid "X coordinate if marker(lng)"
227
- msgstr "Coordonnée X du marqueur (lng)"
228
-
229
- #: classes/tables/marker.php:11
230
- msgid "Y coordinate of marker(lat)"
231
- msgstr "Coordonnée Y du marqueur"
232
-
233
- #: classes/tables/marker.php:12
234
- msgid "Path of icon file"
235
- msgstr "Chemin du fichier icône"
236
-
237
- #: classes/tables/marker.php:13
238
- msgid "Map Id"
239
- msgstr "ID de la carte"
240
-
241
- #: classes/tables/marker.php:14
242
- msgid "Marker Address"
243
- msgstr "Adresse du marqueur"
244
-
245
- #: classes/tables/marker.php:15
246
- msgid "Id of Marker's group"
247
- msgstr "ID du groupe de marqueurs"
248
-
249
- #: classes/tables/marker.php:16
250
- msgid "Animation"
251
- msgstr "Animation"
252
-
253
- #: classes/tables/marker.php:17 classes/tables/modules.php:10
254
- #: classes/tables/options.php:11
255
- msgid "Params"
256
- msgstr "Paramètres"
257
-
258
- #: classes/tables/marker.php:18 classes/tables/options.php:15
259
- msgid "Sort Order"
260
- msgstr "Trier par"
261
-
262
- #: classes/tables/marker.php:19
263
- msgid "Creation date"
264
- msgstr "Date de création"
265
-
266
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8
267
- #: classes/tables/options.php:10
268
- msgid "Label"
269
- msgstr "Libellé"
270
-
271
- #: classes/tables/modules.php:8 classes/tables/options.php:13
272
- msgid "Type"
273
- msgstr "Type"
274
-
275
- #: classes/tables/modules.php:9
276
- msgid "Active"
277
- msgstr "Actif"
278
-
279
- #: classes/tables/modules.php:11
280
- msgid "Has Tab"
281
- msgstr "A un onglet"
282
-
283
- #: classes/tables/modules.php:12 classes/tables/options.php:12
284
- msgid "Description"
285
- msgstr "Déscription"
286
-
287
- #: classes/tables/modules.php:13 classes/tables/options.php:8
288
- #: classes/tables/usage.php:9
289
- msgid "Code"
290
- msgstr "Code"
291
-
292
- #: classes/tables/modules.php:14
293
- msgid "External plugin directory"
294
- msgstr "Répertoire externe du plugin"
295
-
296
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7
297
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:122
298
- msgid "ID"
299
- msgstr "ID"
300
-
301
- #: classes/tables/options.php:9
302
- msgid "Value"
303
- msgstr "Valeur"
304
-
305
- #: classes/tables/options.php:14
306
- msgid "Category ID"
307
- msgstr "ID de la catégorie"
308
-
309
- #: classes/tables/options.php:16
310
- msgid "Value Type"
311
- msgstr "Valeur type"
312
-
313
- #: classes/tables/options_categories.php:8
314
- msgid "Method"
315
- msgstr "Méthode"
316
-
317
- #: classes/tables/usage.php:8
318
- msgid "Usage id"
319
- msgstr "ID utilisé"
320
-
321
- #: classes/tables/usage.php:10
322
- msgid "Visits Count"
323
- msgstr "Nombre de visites"
324
-
325
- #: classes/validator.php:30
326
- #, php-format
327
- msgid "Invalid length for %s, max length is %s"
328
- msgstr "Taille incorrecte pour %s, la taille max est %s"
329
-
330
- #: classes/validator.php:43
331
- #, php-format
332
- msgid "Invalid numeric value for %s"
333
- msgstr "Valeur numérique incorrecte pour %s"
334
-
335
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
336
- #, php-format
337
- msgid "Please enter %s"
338
- msgstr "Merci d'entrer %s"
339
-
340
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
341
- #, php-format
342
- msgid "Please select %s"
343
- msgstr "Merci de sélectionner %s"
344
-
345
- #: classes/validator.php:85 classes/validator.php:101
346
- #, php-format
347
- msgid "Invalid %s"
348
- msgstr "%s non valide"
349
-
350
- #: classes/validator.php:88
351
- #, php-format
352
- msgid "%s is already registered"
353
- msgstr "%s est déjà enregistré"
354
-
355
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
356
- msgid "Exit Full Screen"
357
- msgstr ""
358
-
359
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
360
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
361
- msgid "Open Full Screen"
362
- msgstr ""
363
-
364
- #: doc/google-maps-easy-pro/license/mod.php:28
365
- #, php-format
366
- msgid ""
367
- "Your license is expired. Once you extend your license - you will be able to "
368
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
369
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
370
- "click on 'Re-activate' button to re-activate your PRO version."
371
- msgstr ""
372
- "Votre licence est expirée. Une fois que vous aurez réactivé votre licence - "
373
- "vous pourrez mettre à jour la version PRO. Pour passer à la version PR - "
374
- "suivez <a href='%s' target='_blank'>ce lien</a>, puis - allez sur l'onglet "
375
- "<a href='%s'>Licence</a> et cliquez sur le bouton 'Re-activate' pour "
376
- "réactiver votre version PRO."
377
-
378
- #: doc/google-maps-easy-pro/license/mod.php:36
379
- #, php-format
380
- msgid ""
381
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
382
- "target='_blank'>click here</a> to extend your license, then - go to <a "
383
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
384
- "your PRO version."
385
- msgstr ""
386
- "Votre licence pour la version PRO du plugin %s - est expirée. Vous pouvez <a "
387
- "href='%s' target='_blank'>cliquer ici</a> pour réactiver votre licence, puis "
388
- "- allez sur l'onglet <a href='%s'>Licence</a> et cliquez sur le bouton 'Re-"
389
- "activate' pour réactiver votre version PRO."
390
-
391
- #: doc/google-maps-easy-pro/license/mod.php:49
392
- msgid "License"
393
- msgstr "Licence"
394
-
395
- #: doc/google-maps-easy-pro/license/mod.php:72
396
- msgid "Activate License"
397
- msgstr ""
398
-
399
- #: doc/google-maps-easy-pro/license/mod.php:74
400
- msgid "Renew License"
401
- msgstr ""
402
-
403
- #: doc/google-maps-easy-pro/license/models/license.php:54
404
- msgid "Please enter your License Key"
405
- msgstr "Merci d'entrer votre clé de licence"
406
-
407
- #: doc/google-maps-easy-pro/license/models/license.php:56
408
- msgid "Please enter your Email address"
409
- msgstr "Merci d'entrer votre adresse email"
410
-
411
- #: doc/google-maps-easy-pro/license/models/license.php:131
412
- msgid ""
413
- "There was a problem with sending request to our autentification server. "
414
- "Please try latter."
415
- msgstr ""
416
- "Il y a eu un problème lors de l'envoi de la requête à notre serveur. Merci "
417
- "d'essayer plus tard."
418
-
419
- #: doc/google-maps-easy-pro/license/models/license.php:154
420
- #, php-format
421
- msgid "License for plugin %s will expire today."
422
- msgstr "La licence pour le plugin %s arrive à expiration aujourd'hui."
423
-
424
- #: doc/google-maps-easy-pro/license/models/license.php:156
425
- #, php-format
426
- msgid "License for plugin %s will expire tomorrow."
427
- msgstr "La licence pour le plugin %s arrivera à expiration demain."
428
-
429
- #: doc/google-maps-easy-pro/license/models/license.php:158
430
- #, php-format
431
- msgid "License for plugin %s will expire in %d days."
432
- msgstr "La licence pour le plugin %s expirera dans %d jours ."
433
-
434
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
435
- #, php-format
436
- msgid ""
437
- "Congratulations! PRO version of %s plugin is activated and working fine!"
438
- msgstr ""
439
-
440
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
441
- #, php-format
442
- msgid ""
443
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
444
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
445
- "activate' button to re-activate your PRO version."
446
- msgstr ""
447
- "Votre licence pour la version PRO du plugin %s a expiré. Vous pouvez <a "
448
- "href='%s' target='_blank'>cliquer ici</a> pour renouveler votre licence, "
449
- "puis cliquer sur le bouton 'Re-activate' pour réactiver votre version PRO."
450
-
451
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
452
- #, php-format
453
- msgid ""
454
- "Congratulations! You have successfully installed PRO version of %s plugin. "
455
- "Final step to finish Your PRO version setup - is to enter your Email and "
456
- "License Key on this page. This will activate Your copy of software on this "
457
- "site."
458
- msgstr ""
459
-
460
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
461
- #: modules/supsystic_promo/mod.php:132
462
- msgid "Email"
463
- msgstr "Email"
464
-
465
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
466
- #, php-format
467
- msgid ""
468
- "Your email address, used on checkout procedure on <a href='%s' "
469
- "target='_blank'>%s</a>"
470
- msgstr ""
471
- "Votre adresse email, utilisée dans la procédure de vérification <a href='%s' "
472
- "target='_blank'>%s</a>"
473
-
474
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
475
- msgid "License Key"
476
- msgstr "Clé de licence"
477
-
478
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
479
- #, php-format
480
- msgid ""
481
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
482
- msgstr ""
483
- "Votre clé de licence pour votre comptre sur <a href='%s' target='_blank'>%s</"
484
- "a>"
485
-
486
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
487
- msgid "Re-activate"
488
- msgstr "Réactiver"
489
-
490
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
491
- msgid "Activate"
492
- msgstr "Activer"
493
-
494
- #: doc/google-maps-easy-pro/wpUpdater.php:68
495
- msgid ""
496
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
497
- "onclick='document.location.reload(); return false;'>Try again</a>"
498
- msgstr ""
499
- "Une erreur HTTP inattendue s'est produite pendant la requête de l'API.</p> "
500
- "<p><a href='?' onclick='document.location.reload(); return false;'>Essayer à "
501
- "nouveau</a>"
502
-
503
- #: doc/google-maps-easy-pro/wpUpdater.php:73
504
- msgid "An unknown error occurred"
505
- msgstr "Une erreur inconnue s'est produite"
506
-
507
- #: modules/adminmenu/controller.php:7
508
- msgid "Your name field is required."
509
- msgstr "Le champ -votre nom- est requis"
510
-
511
- #: modules/adminmenu/controller.php:8
512
- msgid "Your website field is required."
513
- msgstr "Le champ -votre site web- est requis"
514
-
515
- #: modules/adminmenu/controller.php:9
516
- msgid "Your e-mail field is required."
517
- msgstr "Le champ email est requis"
518
-
519
- #: modules/adminmenu/controller.php:10
520
- msgid "Subject field is required."
521
- msgstr "Le champ -sujet- est requis"
522
-
523
- #: modules/adminmenu/controller.php:11
524
- msgid "You must select a valid category."
525
- msgstr "Vous devez sélectionner une catégorie valide"
526
-
527
- #: modules/adminmenu/controller.php:12
528
- msgid "Message field is required."
529
- msgstr "Le champ -message- est requis"
530
-
531
- #: modules/adminmenu/mod.php:12
532
- msgid "Settings"
533
- msgstr "Paramètres"
534
-
535
- #: modules/csv/controller.php:45
536
- #, php-format
537
- msgid "Maps from %s - %s"
538
- msgstr ""
539
-
540
- #: modules/csv/controller.php:48
541
- msgid "You have no maps for now."
542
- msgstr ""
543
-
544
- #: modules/csv/controller.php:87
545
- #, php-format
546
- msgid "Markers from %s"
547
- msgstr ""
548
-
549
- #: modules/csv/controller.php:90
550
- msgid "You have no markers for now."
551
- msgstr ""
552
-
553
- #: modules/csv/controller.php:124
554
- msgid "Missing File"
555
- msgstr "Fichier manquant"
556
-
557
- #: modules/csv/controller.php:126
558
- #, php-format
559
- msgid "File uploaded with error code %s"
560
- msgstr "Fichier téléchargé avec le code erreur %s"
561
-
562
- #: modules/csv/controller.php:208
563
- msgid ""
564
- "File should contain more then 1 row, at least 1 row should be for headers"
565
- msgstr ""
566
- "Le fichier devrait contenur plus d'1 ligne, au moins 1 ligne pour les en-"
567
- "têtes"
568
-
569
- #: modules/csv/controller.php:210
570
- msgid "Empty data in file"
571
- msgstr "Aucune donnée dans le fichier"
572
-
573
- #: modules/csv/mod.php:11
574
- msgid "Maps Import / Export"
575
- msgstr "Importer / exporter des cartes"
576
-
577
- #: modules/csv/models/csv.php:133
578
- msgid "Can not detect import list type"
579
- msgstr "Impossible de détécter le type de la liste d'import"
580
-
581
- #: modules/csv/models/csv.php:135
582
- msgid "Can not find fields names"
583
- msgstr "Impossible de trouver les noms des champs"
584
-
585
- #: modules/csv/views/tpl/csvTabContent.php:9
586
- msgid "Maps"
587
- msgstr "Cartes"
588
-
589
- #: modules/csv/views/tpl/csvTabContent.php:14
590
- #: modules/csv/views/tpl/csvTabContent.php:35
591
- msgid "Export"
592
- msgstr "Exporter"
593
-
594
- #: modules/csv/views/tpl/csvTabContent.php:19
595
- #: modules/csv/views/tpl/csvTabContent.php:40
596
- msgid "Import"
597
- msgstr "Importer"
598
-
599
- #: modules/csv/views/tpl/csvTabContent.php:30 modules/gmap/views/gmap.php:125
600
- #: modules/gmap/views/tpl/gmapEditMap.php:17
601
- msgid "Markers"
602
- msgstr "Marqueurs"
603
-
604
- #: modules/gmap/controller.php:23
605
- msgid "Map data not found"
606
- msgstr "Donnée de la carte introuvable"
607
-
608
- #: modules/gmap/mod.php:13
609
- msgid "Add Map"
610
- msgstr "Ajouter une carte"
611
-
612
- #: modules/gmap/mod.php:16 modules/gmap/views/tpl/gmapEditMap.php:701
613
- #: modules/marker_groups/mod.php:14
614
- msgid "Edit"
615
- msgstr "Editer"
616
-
617
- #: modules/gmap/mod.php:19
618
- msgid "All Maps"
619
- msgstr "Toutes les cartes"
620
-
621
- #: modules/gmap/mod.php:29
622
- msgid "No Map Found"
623
- msgstr "Aucune carte trouvée"
624
-
625
- #: modules/gmap/mod.php:39
626
- msgid "Empty or Invalid Map ID"
627
- msgstr "ID de la carte vide ou invalide"
628
-
629
- #: modules/gmap/mod.php:58
630
- msgid "Top Center"
631
- msgstr "Centrer en haut"
632
-
633
- #: modules/gmap/mod.php:59
634
- msgid "Top Left"
635
- msgstr "Haut à gauche"
636
-
637
- #: modules/gmap/mod.php:60
638
- msgid "Top Right"
639
- msgstr "Haut à droite"
640
-
641
- #: modules/gmap/mod.php:61
642
- msgid "Left Top"
643
- msgstr "Gauche en haut"
644
-
645
- #: modules/gmap/mod.php:62
646
- msgid "Right Top"
647
- msgstr "Droite en haut"
648
-
649
- #: modules/gmap/mod.php:63
650
- msgid "Left Center"
651
- msgstr "Gauche au centre"
652
-
653
- #: modules/gmap/mod.php:64
654
- msgid "Right Center"
655
- msgstr "Droite au centre"
656
-
657
- #: modules/gmap/mod.php:65
658
- msgid "Left Bottom"
659
- msgstr "Gauche en bas"
660
-
661
- #: modules/gmap/mod.php:66
662
- msgid "Right Bottom"
663
- msgstr "Droite en bas"
664
-
665
- #: modules/gmap/mod.php:67
666
- msgid "Bottom Center"
667
- msgstr "Bas au centre"
668
-
669
- #: modules/gmap/mod.php:68
670
- msgid "Bottom Left"
671
- msgstr "En bas à gauche"
672
-
673
- #: modules/gmap/mod.php:69
674
- msgid "Bottom Right"
675
- msgstr "En bas à droite"
676
-
677
- #: modules/gmap/mod.php:92
678
- msgid "Slider"
679
- msgstr "Slider"
680
-
681
- #: modules/gmap/mod.php:93
682
- msgid "Slider - Title and Img"
683
- msgstr "Slider - Titre et image"
684
-
685
- #: modules/gmap/mod.php:94 modules/gmap/mod.php:96
686
- msgid "Slider Vertical - Title and Img"
687
- msgstr "Slider vertical - Titre et image"
688
-
689
- #: modules/gmap/mod.php:95
690
- msgid "Slider Vertical - Title and Description"
691
- msgstr "Slider vertical - Titre et description"
692
-
693
- #: modules/gmap/models/gmap.php:67
694
- msgid "Please enter Map Name"
695
- msgstr "Merci d'entrer le nom de la carte"
696
-
697
- #: modules/gmap/models/gmap.php:96
698
- #: modules/marker_groups/models/marker_groups.php:63
699
- msgid "Empty Params"
700
- msgstr "Paramètres vides"
701
-
702
- #: modules/gmap/views/gmap.php:123
703
- msgid "Title"
704
- msgstr "Titre"
705
-
706
- #: modules/gmap/views/gmap.php:124
707
- msgid "Html options"
708
- msgstr "Options HTML"
709
-
710
- #: modules/gmap/views/gmap.php:126
711
- msgid "Operations"
712
- msgstr "Opérattions"
713
-
714
- #: modules/gmap/views/gmap.php:163 modules/gmap/views/gmap.php:169
715
- #: modules/gmap/views/tpl/gmapEditMap.php:104
716
- #: modules/gmap/views/tpl/gmapEditMap.php:132
717
- #: modules/gmap/views/tpl/gmapEditMap.php:214
718
- #: modules/gmap/views/tpl/gmapEditMap.php:370 modules/marker/mod.php:20
719
- msgid "None"
720
- msgstr "Aucun"
721
-
722
- #: modules/gmap/views/tpl/gmapAdmin.php:5
723
- #: modules/gmap/views/tpl/gmapAdmin.php:8
724
- #: modules/marker_groups/views/tpl/mgrAdmin.php:9
725
- #: modules/marker_groups/views/tpl/mgrAdmin.php:12
726
- msgid "Delete selected"
727
- msgstr "Supprimer la sélection"
728
-
729
- #: modules/gmap/views/tpl/gmapAdmin.php:11
730
- #: modules/marker_groups/views/tpl/mgrAdmin.php:15
731
- msgid "Clear All"
732
- msgstr "Supprimer tout"
733
-
734
- #: modules/gmap/views/tpl/gmapAdmin.php:13
735
- #: modules/marker_groups/views/tpl/mgrAdmin.php:17
736
- msgid "Clear"
737
- msgstr "Supprimer"
738
-
739
- #: modules/gmap/views/tpl/gmapAdmin.php:16
740
- #: modules/gmap/views/tpl/gmapAdmin.php:17
741
- #: modules/marker_groups/views/tpl/mgrAdmin.php:20
742
- #: modules/marker_groups/views/tpl/mgrAdmin.php:21
743
- msgid "Search"
744
- msgstr "Chercher"
745
-
746
- #: modules/gmap/views/tpl/gmapAdmin.php:26
747
- #, php-format
748
- msgid ""
749
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
750
- "a> your first Map!"
751
- msgstr ""
752
- "Vous n'avez aucune carte pour le moment. <a href='%s' style='font-style: "
753
- "italic;'>Créez</a> votre première carte !"
754
-
755
- #: modules/gmap/views/tpl/gmapDrawMap.php:3
756
- msgid "Map not found"
757
- msgstr "Carte introuvable"
758
-
759
- #: modules/gmap/views/tpl/gmapEditMap.php:2
760
- #, php-format
761
- msgid ""
762
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
763
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
764
- msgstr ""
765
- "Cette option est disponible dans la <a target='_blank' href='%s'>version "
766
- "PRO</a> seulement, vous pouvez l'obtenir<a target='_blank' href='%s'>ici.</a>"
767
-
768
- #: modules/gmap/views/tpl/gmapEditMap.php:13
769
- msgid "Map Properties"
770
- msgstr "Propriétés de la carte"
771
-
772
- #: modules/gmap/views/tpl/gmapEditMap.php:20
773
- msgid "Add New Marker"
774
- msgstr "Ajouter un nouveau marqueur"
775
-
776
- #: modules/gmap/views/tpl/gmapEditMap.php:31
777
- msgid "Map Name"
778
- msgstr "Nom de la carte"
779
-
780
- #: modules/gmap/views/tpl/gmapEditMap.php:33
781
- msgid "Your map name"
782
- msgstr "Nom de votre carte"
783
-
784
- #: modules/gmap/views/tpl/gmapEditMap.php:45
785
- msgid "Map Width"
786
- msgstr "Largeur de la carte"
787
-
788
- #: modules/gmap/views/tpl/gmapEditMap.php:47
789
- msgid "Your map width"
790
- msgstr "Largeur de votre carte"
791
-
792
- #: modules/gmap/views/tpl/gmapEditMap.php:56
793
- #: modules/gmap/views/tpl/gmapEditMap.php:81
794
- msgid "Pixels"
795
- msgstr "Pixels"
796
-
797
- #: modules/gmap/views/tpl/gmapEditMap.php:59
798
- #: modules/gmap/views/tpl/gmapEditMap.php:84
799
- msgid "Px"
800
- msgstr "px"
801
-
802
- #: modules/gmap/views/tpl/gmapEditMap.php:63
803
- msgid "Percents"
804
- msgstr "Pourcents"
805
-
806
- #: modules/gmap/views/tpl/gmapEditMap.php:70
807
- msgid "Map Height"
808
- msgstr "hauteur de la carte"
809
-
810
- #: modules/gmap/views/tpl/gmapEditMap.php:72
811
- msgid "Your map height"
812
- msgstr "Hauteur de votre carte"
813
-
814
- #: modules/gmap/views/tpl/gmapEditMap.php:97
815
- msgid "Map type control"
816
- msgstr "Tupe de contrôle de carte"
817
-
818
- #: modules/gmap/views/tpl/gmapEditMap.php:99
819
- msgid ""
820
- "Control view for map type - you can see it in right upper corner by default"
821
- msgstr ""
822
- "Choix du type de carte - vous pouvez le voir dans le coin supérieur droit "
823
- "par défaut"
824
-
825
- #: modules/gmap/views/tpl/gmapEditMap.php:104
826
- msgid "Dropdown Menu"
827
- msgstr "Menu dropdown"
828
-
829
- #: modules/gmap/views/tpl/gmapEditMap.php:104
830
- msgid "Horizontal Bar"
831
- msgstr "Barre horizontale"
832
-
833
- #: modules/gmap/views/tpl/gmapEditMap.php:110
834
- msgid "Change type control position on map"
835
- msgstr "Changez la position du bouton de type de carte"
836
-
837
- #: modules/gmap/views/tpl/gmapEditMap.php:117
838
- #: modules/gmap/views/tpl/gmapEditMap.php:145
839
- #: modules/gmap/views/tpl/gmapEditMap.php:172
840
- #: modules/gmap/views/tpl/gmapEditMap.php:199
841
- #: modules/gmap/views/tpl/gmapEditMap.php:281
842
- #: modules/gmap/views/tpl/gmapEditMap.php:298
843
- #: modules/gmap/views/tpl/gmapEditMap.php:315
844
- #: modules/gmap/views/tpl/gmapEditMap.php:352
845
- #: modules/gmap/views/tpl/gmapEditMap.php:383
846
- #: modules/gmap/views/tpl/gmapEditMap.php:412
847
- msgid "PRO option"
848
- msgstr "option PRO"
849
-
850
- #: modules/gmap/views/tpl/gmapEditMap.php:125
851
- msgid "Zoom control"
852
- msgstr "Bouton de zoom"
853
-
854
- #: modules/gmap/views/tpl/gmapEditMap.php:127
855
- msgid "Zoom control type on your map"
856
- msgstr "Type de bouton de zoom sur votre carte"
857
-
858
- #: modules/gmap/views/tpl/gmapEditMap.php:132
859
- msgid "Default"
860
- msgstr "Défaut"
861
-
862
- #: modules/gmap/views/tpl/gmapEditMap.php:132
863
- msgid "Large"
864
- msgstr "Grand"
865
-
866
- #: modules/gmap/views/tpl/gmapEditMap.php:132
867
- msgid "Small"
868
- msgstr "Petit"
869
-
870
- #: modules/gmap/views/tpl/gmapEditMap.php:138
871
- msgid "Change zoom control position on map"
872
- msgstr "Changez la position du bouton de zoom sur la carte"
873
-
874
- #: modules/gmap/views/tpl/gmapEditMap.php:153
875
- msgid "Street view control"
876
- msgstr "Bouton Street view"
877
-
878
- #: modules/gmap/views/tpl/gmapEditMap.php:155
879
- msgid "Street view control usually is located on left upper corner of your map"
880
- msgstr ""
881
- "Le bouton Street view est habituellement situé dans le coin supérieur gauche "
882
- "de votre carte"
883
-
884
- #: modules/gmap/views/tpl/gmapEditMap.php:165
885
- msgid "Change street view control position on map"
886
- msgstr "Changez la position du bouton Street view sur votre carte"
887
-
888
- #: modules/gmap/views/tpl/gmapEditMap.php:180
889
- msgid "Pan control"
890
- msgstr "Pavé de contrôle"
891
-
892
- #: modules/gmap/views/tpl/gmapEditMap.php:182
893
- msgid ""
894
- "Pan control - allow you to pan over your map using mouse, usually is located "
895
- "on left upper corner of your map"
896
- msgstr ""
897
- "Pavé de contrôle - vous permet de vous déplacer sur la carte via la souris, "
898
- "habituellement situé dans le coin supérieur gauche de votre carte"
899
-
900
- #: modules/gmap/views/tpl/gmapEditMap.php:192
901
- msgid "Change pan control position on map"
902
- msgstr "Changer la position du pavé de contrôle sur votre carte"
903
-
904
- #: modules/gmap/views/tpl/gmapEditMap.php:207
905
- msgid "Overview control"
906
- msgstr "Aperçu"
907
-
908
- #: modules/gmap/views/tpl/gmapEditMap.php:209
909
- msgid ""
910
- "Overview control for your map, by default is disabled, and if enabled - is "
911
- "located on the right bottom corner"
912
- msgstr ""
913
- "Aperçu de votre carte, désactivé par défaut, et s'il est activé, se situe "
914
- "dans le coin inférieur droit."
915
-
916
- #: modules/gmap/views/tpl/gmapEditMap.php:214
917
- msgid "Opened"
918
- msgstr "Ouvert"
919
-
920
- #: modules/gmap/views/tpl/gmapEditMap.php:214
921
- msgid "Collapsed"
922
- msgstr "Replié"
923
-
924
- #: modules/gmap/views/tpl/gmapEditMap.php:223
925
- msgid "Draggable"
926
- msgstr "Draggable"
927
-
928
- #: modules/gmap/views/tpl/gmapEditMap.php:225
929
- msgid "Enable or disable possibility to drag your map using mouse"
930
- msgstr ""
931
- "Activer ou désactiver la possibilité de glisser votre carte avec la souris."
932
-
933
- #: modules/gmap/views/tpl/gmapEditMap.php:236
934
- msgid "Double click to zoom"
935
- msgstr "Double cliquer pour zoomer"
936
-
937
- #: modules/gmap/views/tpl/gmapEditMap.php:238
938
- msgid ""
939
- "By default double left click on map will zoom it in. But you can change this "
940
- "here."
941
- msgstr ""
942
- "Par défault double-cliquer sur la carte effectuer un zoom avant. Mais vous "
943
- "pouvez le changer ici."
944
-
945
- #: modules/gmap/views/tpl/gmapEditMap.php:249
946
- msgid "Mouse wheel to zoom"
947
- msgstr "Zoom avec la molette de la souris"
948
-
949
- #: modules/gmap/views/tpl/gmapEditMap.php:251
950
- msgid ""
951
- "Sometimes you need to disable possibility to zoom your map using mouse "
952
- "wheel. This can be required for example - if you need to use your wheel for "
953
- "some other action, for example scroll your site even if mouse is over your "
954
- "map."
955
- msgstr ""
956
- "Parfois vous avez besoin de désactiver la possibilité de zoomer sur votre "
957
- "carte avec la molette de la souris. Ceci peut être requis par exemple si "
958
- "vous avez besoin d'utiliser la molette de la souris pour une action, comme "
959
- "scroller même si la souris est au-dessus de la carte."
960
-
961
- #: modules/gmap/views/tpl/gmapEditMap.php:262
962
- msgid "Google Map Theme"
963
- msgstr "Thème Google Map"
964
-
965
- #: modules/gmap/views/tpl/gmapEditMap.php:264
966
- msgid ""
967
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
968
- "Terrain - here. By default your map will have Road Map Google maps theme."
969
- msgstr ""
970
- "Vous pouvez sélectionner votre thème Google Map - Route, Hybrid, Satellite "
971
- "ou Terrain - ici. Par défaut le thème de votre carte sera la carte des "
972
- "routes."
973
-
974
- #: modules/gmap/views/tpl/gmapEditMap.php:268
975
- msgid "Road Map"
976
- msgstr "Carte des routes"
977
-
978
- #: modules/gmap/views/tpl/gmapEditMap.php:268
979
- msgid "Hybrid"
980
- msgstr "Hybrid"
981
-
982
- #: modules/gmap/views/tpl/gmapEditMap.php:268
983
- msgid "Satellite"
984
- msgstr "Satellite"
985
-
986
- #: modules/gmap/views/tpl/gmapEditMap.php:268
987
- msgid "Terrain"
988
- msgstr "Terrain"
989
-
990
- #: modules/gmap/views/tpl/gmapEditMap.php:276
991
- msgid "Traffic Layer"
992
- msgstr "Tracé de la circulation"
993
-
994
- #: modules/gmap/views/tpl/gmapEditMap.php:278
995
- msgid "Add real-time traffic information to your map."
996
- msgstr "Ajouter le trafic en temps réel à votre carte."
997
-
998
- #: modules/gmap/views/tpl/gmapEditMap.php:293
999
- msgid "Transit Layer"
1000
- msgstr "Tracé routier"
1001
-
1002
- #: modules/gmap/views/tpl/gmapEditMap.php:295
1003
- msgid ""
1004
- "Display the public transit network of a city on your map. When the Transit "
1005
- "Layer is enabled, and the map is centered on a city that supports transit "
1006
- "information, the map will display major transit lines as thick, colored "
1007
- "lines."
1008
- msgstr ""
1009
- "Affiche le réseau de transport public de la ville sur votre carte. Quand la "
1010
- "surcouche de transit est activée et que la carte est centrée sur une ville "
1011
- "qui supporte les information de transit, la carte affichera les lignes "
1012
- "principales en lignes épaisses et rouges."
1013
-
1014
- #: modules/gmap/views/tpl/gmapEditMap.php:310
1015
- msgid "Bicycling Layer"
1016
- msgstr "Tracé des pistes cyclables"
1017
-
1018
- #: modules/gmap/views/tpl/gmapEditMap.php:312
1019
- msgid ""
1020
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1021
- "to bicycling usage on top of the given map.Dark green routes indicated "
1022
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1023
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1024
- "for bicycle usage."
1025
- msgstr ""
1026
- "Ajouter une surcouche avec les chemins, pistes cyclables et autres passages "
1027
- "spécifiques au vélo par dessus une carte. Les routes en vert foncé indiquent "
1028
- "les pistes cyclables. Les routes en vert clair indiquent les rues avec des "
1029
- "'bike lanes.' dédiées. Les pointillés indiquent des rues ou chemins "
1030
- "recommandés pour le vélo."
1031
-
1032
- #: modules/gmap/views/tpl/gmapEditMap.php:327
1033
- msgid "Map Stylization"
1034
- msgstr "Style de carte"
1035
-
1036
- #: modules/gmap/views/tpl/gmapEditMap.php:329
1037
- msgid ""
1038
- "Make your map unique with our Map Themes, just try to change it here - and "
1039
- "you will see results on your Map Preview."
1040
- msgstr ""
1041
- "Faites de votre carte une carte unique avec nos thèmes, essayez simplement "
1042
- "d'en changer ici - et vous verrez les résultats sur l'aperçu de votre carte."
1043
-
1044
- #: modules/gmap/views/tpl/gmapEditMap.php:339
1045
- msgid "Get 300+ Themes with PRO"
1046
- msgstr "Obetnir +300 thèmes avec PRO"
1047
-
1048
- #: modules/gmap/views/tpl/gmapEditMap.php:347
1049
- msgid "Markers List"
1050
- msgstr "Liste des marqueurs"
1051
-
1052
- #: modules/gmap/views/tpl/gmapEditMap.php:349
1053
- msgid ""
1054
- "Display all map markers - as list bellow Your map. This will help your users "
1055
- "get more info about your markers and find required marker more faster."
1056
- msgstr ""
1057
- "Affiche tous les marqueurs - en une liste sous votre carte. Ceci aidera vos "
1058
- "utilisateurs à obtenir plus d'info sur vos marqueurs et à trouver le bon "
1059
- "marqueur plus rapidement."
1060
-
1061
- #: modules/gmap/views/tpl/gmapEditMap.php:356
1062
- msgid "Select Markers List type"
1063
- msgstr "Sélectionner un type de liste de Marqueurs"
1064
-
1065
- #: modules/gmap/views/tpl/gmapEditMap.php:364
1066
- msgid "Markers Clusterization"
1067
- msgstr "Regroupement des marqueurs"
1068
-
1069
- #: modules/gmap/views/tpl/gmapEditMap.php:366
1070
- msgid ""
1071
- "If you have many markers - you can have a problems with viewing them when "
1072
- "zoom out for example: they will just cover each-other. Marker clusterization "
1073
- "can solve this problem by grouping your markers in groups when they are too "
1074
- "close to each-other."
1075
- msgstr ""
1076
- "Si vous avez beaucoup de marqueurs, vous pouvez avoir des problèmes "
1077
- "d'affcihage en dé-zoomant par exemple : ils vont se superposer et se "
1078
- "masquer. Le regroupement des marqueurs peut solutionner ce problème quand "
1079
- "ils sont trop proches les uns des autres."
1080
-
1081
- #: modules/gmap/views/tpl/gmapEditMap.php:370
1082
- msgid "Base Clusterization"
1083
- msgstr "Regroupement de base"
1084
-
1085
- #: modules/gmap/views/tpl/gmapEditMap.php:378
1086
- msgid "Full Screen Button"
1087
- msgstr ""
1088
-
1089
- #: modules/gmap/views/tpl/gmapEditMap.php:380
1090
- msgid "Add a button on map to open it full screen."
1091
- msgstr ""
1092
-
1093
- #: modules/gmap/views/tpl/gmapEditMap.php:395
1094
- msgid "Marker Title color"
1095
- msgstr ""
1096
-
1097
- #: modules/gmap/views/tpl/gmapEditMap.php:397
1098
- msgid "You can set your markers title color here"
1099
- msgstr ""
1100
-
1101
- #: modules/gmap/views/tpl/gmapEditMap.php:407
1102
- msgid "Custom Map Controls"
1103
- msgstr ""
1104
-
1105
- #: modules/gmap/views/tpl/gmapEditMap.php:409
1106
- msgid "Add custom map controls to the map."
1107
- msgstr ""
1108
-
1109
- #: modules/gmap/views/tpl/gmapEditMap.php:422
1110
- msgid "Controls type"
1111
- msgstr ""
1112
-
1113
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1114
- msgid "Round"
1115
- msgstr ""
1116
-
1117
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1118
- msgid "Square"
1119
- msgstr ""
1120
-
1121
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1122
- msgid "Square with rounded edges"
1123
- msgstr ""
1124
-
1125
- #: modules/gmap/views/tpl/gmapEditMap.php:431
1126
- msgid "Background color"
1127
- msgstr ""
1128
-
1129
- #: modules/gmap/views/tpl/gmapEditMap.php:438
1130
- msgid "Text color"
1131
- msgstr ""
1132
-
1133
- #: modules/gmap/views/tpl/gmapEditMap.php:445
1134
- msgid "Controls position"
1135
- msgstr ""
1136
-
1137
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1138
- msgid "Marker Name"
1139
- msgstr "Nom du marqueur"
1140
-
1141
- #: modules/gmap/views/tpl/gmapEditMap.php:474
1142
- msgid "Your marker title"
1143
- msgstr "Titre de votre marqueur"
1144
-
1145
- #: modules/gmap/views/tpl/gmapEditMap.php:485
1146
- msgid "Marker Description"
1147
- msgstr "Déscription du marqueur"
1148
-
1149
- #: modules/gmap/views/tpl/gmapEditMap.php:487
1150
- msgid ""
1151
- "Write here all text, that you want to appear in marker info-window PopUp"
1152
- msgstr ""
1153
- "Rédigez ici le texte que vous souhaitez voir apparaître dans la fenêtre "
1154
- "d'info du marqueur"
1155
-
1156
- #: modules/gmap/views/tpl/gmapEditMap.php:503
1157
- msgid "Icon"
1158
- msgstr "Icône"
1159
-
1160
- #: modules/gmap/views/tpl/gmapEditMap.php:505
1161
- msgid "Your marker Icon, that will appear on your map for this marker"
1162
- msgstr ""
1163
- "L'cône de votre marquer, qui apparaîtra sur votre carte pour ce marqueur."
1164
-
1165
- #: modules/gmap/views/tpl/gmapEditMap.php:512
1166
- msgid "Choose Icon"
1167
- msgstr "Choisir une icône"
1168
-
1169
- #: modules/gmap/views/tpl/gmapEditMap.php:513
1170
- msgid "Upload Icon"
1171
- msgstr ""
1172
-
1173
- #: modules/gmap/views/tpl/gmapEditMap.php:525
1174
- msgid "Search your location by address, just start typing here"
1175
- msgstr "Rechercher votre lieu via l'adresse, commencez simplement à écrire ici"
1176
-
1177
- #: modules/gmap/views/tpl/gmapEditMap.php:537
1178
- msgid "Latitude"
1179
- msgstr "Latitude"
1180
-
1181
- #: modules/gmap/views/tpl/gmapEditMap.php:539
1182
- msgid "Latitude for your marker"
1183
- msgstr "Latitude pour votre marqueur"
1184
-
1185
- #: modules/gmap/views/tpl/gmapEditMap.php:551
1186
- msgid "Longitude"
1187
- msgstr "Longitude"
1188
-
1189
- #: modules/gmap/views/tpl/gmapEditMap.php:553
1190
- msgid "Longitude for your marker"
1191
- msgstr "Longitude pour votre marqueur"
1192
-
1193
- #: modules/gmap/views/tpl/gmapEditMap.php:565
1194
- msgid "Show description by default"
1195
- msgstr ""
1196
-
1197
- #: modules/gmap/views/tpl/gmapEditMap.php:567
1198
- msgid "Open marker description when map load"
1199
- msgstr ""
1200
-
1201
- #: modules/gmap/views/tpl/gmapEditMap.php:577
1202
- msgid "Marker Link"
1203
- msgstr ""
1204
-
1205
- #: modules/gmap/views/tpl/gmapEditMap.php:579
1206
- msgid "Link for opening by click on the marker"
1207
- msgstr ""
1208
-
1209
- #: modules/gmap/views/tpl/gmapEditMap.php:594
1210
- msgid "Open in new window"
1211
- msgstr ""
1212
-
1213
- #: modules/gmap/views/tpl/gmapEditMap.php:602
1214
- msgid "Show description by mouse hover"
1215
- msgstr ""
1216
-
1217
- #: modules/gmap/views/tpl/gmapEditMap.php:604
1218
- msgid "Open marker description by mouse hover"
1219
- msgstr ""
1220
-
1221
- #: modules/gmap/views/tpl/gmapEditMap.php:614
1222
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:10
1223
- msgid "Marker Category"
1224
- msgstr ""
1225
-
1226
- #: modules/gmap/views/tpl/gmapEditMap.php:616
1227
- msgid "Choose marker category"
1228
- msgstr ""
1229
-
1230
- #: modules/gmap/views/tpl/gmapEditMap.php:643
1231
- msgid "Map shortcode"
1232
- msgstr "Shortcode de la carte"
1233
-
1234
- #: modules/gmap/views/tpl/gmapEditMap.php:648
1235
- msgid "PHP code"
1236
- msgstr "Code PHP"
1237
-
1238
- #: modules/gmap/views/tpl/gmapEditMap.php:654
1239
- msgid "Shortcode will appear after you save map."
1240
- msgstr "Le shortcode apparaîtra quand vous aurez enregistré la carte"
1241
-
1242
- #: modules/gmap/views/tpl/gmapEditMap.php:662
1243
- msgid "Save Map"
1244
- msgstr "Sauvegarder la carte"
1245
-
1246
- #: modules/gmap/views/tpl/gmapEditMap.php:668
1247
- msgid "Delete Map"
1248
- msgstr "Supprimer la carte"
1249
-
1250
- #: modules/gmap/views/tpl/gmapEditMap.php:677
1251
- msgid "Save Marker"
1252
- msgstr "Enregistrer le marqueur"
1253
-
1254
- #: modules/gmap/views/tpl/gmapEditMap.php:683
1255
- msgid "Delete Marker"
1256
- msgstr "Supprimer le marqueur"
1257
-
1258
- #: modules/gmap/views/tpl/gmapEditMap.php:704
1259
- msgid "Delete"
1260
- msgstr "Supprimer"
1261
-
1262
- #: modules/gmap/views/tpl/gmapEditMap.php:731
1263
- msgid "Show markers list with your map on frontend"
1264
- msgstr "Afficher la liste de vos marqueurs avec votre carte"
1265
-
1266
- #: modules/gmap/views/tpl/gmapEditMap.php:738
1267
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1268
- msgid "Apply"
1269
- msgstr "Appliquer"
1270
-
1271
- #: modules/gmap/views/tpl/gmapEditMap.php:738
1272
- msgid "Selected"
1273
- msgstr "Sélectionné"
1274
-
1275
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1276
- msgid "Available in PRO"
1277
- msgstr "Disponible en PRO"
1278
-
1279
- #: modules/gmap/views/tpl/gmapListMarkers.php:20
1280
- #, php-format
1281
- msgid "and %s more"
1282
- msgstr "et %s de plus"
1283
-
1284
- #: modules/gmap_widget/mod.php:18
1285
- msgid "Displays Most Viewed Products"
1286
- msgstr "Affiche les produits les plus vus"
1287
-
1288
- #: modules/gmap_widget/views/gmap_widget.php:15
1289
- msgid "You have no maps"
1290
- msgstr "Vous n'avez aucune carte"
1291
-
1292
- #: modules/gmap_widget/views/tpl/form.php:10
1293
- msgid "Select map"
1294
- msgstr "Sélectionner une carte"
1295
-
1296
- #: modules/gmap_widget/views/tpl/form.php:18
1297
- msgid "Widget Map width"
1298
- msgstr "Largeur du widget carte"
1299
-
1300
- #: modules/gmap_widget/views/tpl/form.php:25
1301
- msgid "Widget Map height"
1302
- msgstr "Hauteur du widget carte"
1303
-
1304
- #: modules/gmap_widget/views/tpl/form.php:32
1305
- msgid "Display as image"
1306
- msgstr "Afficher en tant qu'image"
1307
-
1308
- #: modules/gmap_widget/views/tpl/form.php:40
1309
- msgid ""
1310
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1311
- msgstr ""
1312
- "La carte sera affiché comme une image dans la sidebar. Au clic, elle "
1313
- "s'ouvrira dans une popup."
1314
-
1315
- #: modules/gmap_widget/views/tpl/form.php:42
1316
- msgid "Image width (in px)"
1317
- msgstr "Largeur de l'image (en px)"
1318
-
1319
- #: modules/gmap_widget/views/tpl/form.php:49
1320
- msgid "Image height (in px)"
1321
- msgstr "hauteur de l'image (en px)"
1322
-
1323
- #: modules/icons/controller.php:20
1324
- msgid "Empty url"
1325
- msgstr "URL vide"
1326
-
1327
- #: modules/icons/models/icons.php:43
1328
- msgid "Icon no found"
1329
- msgstr "Icône introuvable"
1330
-
1331
- #: modules/icons/models/icons.php:95
1332
- msgid "File not found"
1333
- msgstr "Fichier introuvable"
1334
-
1335
- #: modules/icons/models/icons.php:100
1336
- msgid "Cannot get image"
1337
- msgstr "Impossible d'obtenir l'image"
1338
-
1339
- #: modules/icons/models/icons.php:111
1340
- msgid "cannot insert to table"
1341
- msgstr "Impossible d'insérer le tableau"
1342
-
1343
- #: modules/mail/mod.php:33
1344
- msgid "Can not send email - problem with send server"
1345
- msgstr "Impossible d'envoyer l'email - problème avec le serveur d'envoi"
1346
-
1347
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
1348
- msgid "Marker Not Found"
1349
- msgstr "Marqueur introuvable"
1350
-
1351
- #: modules/marker/controller.php:48
1352
- msgid "Cannot remove marker"
1353
- msgstr "Impossible de retirer le marqueur"
1354
-
1355
- #: modules/marker/controller.php:63
1356
- msgid "Cannot remove markers"
1357
- msgstr "Impossible de retirer les marqueurs"
1358
-
1359
- #: modules/marker/controller.php:144
1360
- msgid "Empty or invalid marker ID"
1361
- msgstr "ID du marqueur vide ou invalide."
1362
-
1363
- #: modules/marker/mod.php:21
1364
- msgid "Drop"
1365
- msgstr "Déposer"
1366
-
1367
- #: modules/marker/mod.php:22
1368
- msgid "Bounce"
1369
- msgstr "Rebond"
1370
-
1371
- #: modules/marker/models/marker.php:49
1372
- msgid "Please enter marker name"
1373
- msgstr "Merci d'entrer le nom du marqueur"
1374
-
1375
- #: modules/marker/models/marker.php:192
1376
- msgid "Address is empty or not match"
1377
- msgstr "L'adresse est vide ou n'a pas de correspondance"
1378
-
1379
- #: modules/marker/models/marker.php:248
1380
- msgid "Invalid Marker ID"
1381
- msgstr "ID du marqueur invalide"
1382
-
1383
- #: modules/marker_groups/controller.php:31
1384
- msgid "Marker Category data not found"
1385
- msgstr ""
1386
-
1387
- #: modules/marker_groups/mod.php:8
1388
- msgid "Marker Categories"
1389
- msgstr ""
1390
-
1391
- #: modules/marker_groups/mod.php:11
1392
- msgid "Add New"
1393
- msgstr "Ajouter un nouveau"
1394
-
1395
- #: modules/marker_groups/mod.php:24
1396
- msgid "No Marker Category Found"
1397
- msgstr ""
1398
-
1399
- #: modules/marker_groups/models/marker_groups.php:39
1400
- msgid "Please enter Marker Category"
1401
- msgstr ""
1402
-
1403
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5
1404
- msgid "Add Category"
1405
- msgstr ""
1406
-
1407
- #: modules/marker_groups/views/tpl/mgrAdmin.php:30
1408
- #, php-format
1409
- msgid ""
1410
- "You have no Marker Categories for now. <a href='%s' style='font-style: "
1411
- "italic;'>Create</a> your first Marker Category!"
1412
- msgstr ""
1413
-
1414
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:20
1415
- msgid "Save"
1416
- msgstr "Enregistrer"
1417
-
1418
- #: modules/options/mod.php:84
1419
- msgid "General"
1420
- msgstr "Général"
1421
-
1422
- #: modules/options/mod.php:86
1423
- msgid "Send usage statistics"
1424
- msgstr "Envoyer données statistiques d'utilisation"
1425
-
1426
- #: modules/options/models/modules.php:32
1427
- msgid "Module Updated"
1428
- msgstr "Module mis à jour"
1429
-
1430
- #: modules/options/models/modules.php:47
1431
- msgid "Module Update Failed"
1432
- msgstr "Mise à jour du module échouée"
1433
-
1434
- #: modules/options/models/modules.php:50
1435
- msgid "Error module ID"
1436
- msgstr "Erreur module ID"
1437
-
1438
- #: modules/options/models/options.php:63
1439
- msgid "Empty data to save option"
1440
- msgstr "Donné vide pour enregistrer l'option"
1441
-
1442
- #: modules/options/views/tpl/optionsAdminMain.php:18
1443
- msgid "Main page Go here!!!!"
1444
- msgstr "La page principale va ICI !!!"
1445
-
1446
- #: modules/options/views/tpl/optionsAdminPage.php:31
1447
- msgid "Improve Free version"
1448
- msgstr "Améliorer la version gratuite"
1449
-
1450
- #: modules/options/views/tpl/optionsAdminPage.php:33
1451
- #, php-format
1452
- msgid ""
1453
- "Please be advised that this option is available only in <a target='_blank' "
1454
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1455
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1456
- "PopUps!"
1457
- msgstr ""
1458
- "Veuillez noter que cette option est disponible uniquement dans la <a "
1459
- "target='_blank' href='%s'>version PRO</a>. Vous pouvez <a target='_blank' "
1460
- "href='%s' class='button'>obtenir la version PRO</a> maintenant et obtenir "
1461
- "cette option PRO et d'autres pour vos PopUps !"
1462
-
1463
- #: modules/supsystic_promo/controller.php:7
1464
- msgid "Information was saved. Thank you!"
1465
- msgstr "L'information a été enregistrée. Merci !"
1466
-
1467
- #: modules/supsystic_promo/controller.php:23
1468
- msgid ""
1469
- "Please don't send contact requests so often - wait for response for your "
1470
- "previous requests."
1471
- msgstr ""
1472
- "Merci de ne pas envoyer des demandes si souvent - attendez la réponse pour "
1473
- "vos demandes précédentes."
1474
-
1475
- #: modules/supsystic_promo/controller.php:45
1476
- msgid "Please enter valid email address"
1477
- msgstr "Merci d'entrer une adresse email valide"
1478
-
1479
- #: modules/supsystic_promo/mod.php:24
1480
- msgid "Overview"
1481
- msgstr "Aperçu"
1482
-
1483
- #: modules/supsystic_promo/mod.php:50
1484
- msgid "Welcome to Supsystic Secure"
1485
- msgstr "Bienvenue à Supsystic Secure"
1486
-
1487
- #: modules/supsystic_promo/mod.php:131
1488
- msgid "Name"
1489
- msgstr "Nom"
1490
-
1491
- #: modules/supsystic_promo/mod.php:133
1492
- msgid "Website"
1493
- msgstr "Site web"
1494
-
1495
- #: modules/supsystic_promo/mod.php:134
1496
- msgid "Subject"
1497
- msgstr "Sujet"
1498
-
1499
- #: modules/supsystic_promo/mod.php:135
1500
- msgid "Topic"
1501
- msgstr "Sujet"
1502
-
1503
- #: modules/supsystic_promo/mod.php:136
1504
- msgid "Plugin options"
1505
- msgstr "Options du plugin"
1506
-
1507
- #: modules/supsystic_promo/mod.php:137
1508
- msgid "Report a bug"
1509
- msgstr "Signaler un bug"
1510
-
1511
- #: modules/supsystic_promo/mod.php:138
1512
- msgid "Require a new functionallity"
1513
- msgstr "Nécessite une nouvelle fonctionnalité"
1514
-
1515
- #: modules/supsystic_promo/mod.php:139
1516
- msgid "Other"
1517
- msgstr "Autre"
1518
-
1519
- #: modules/supsystic_promo/mod.php:141
1520
- msgid "Message"
1521
- msgstr "Message"
1522
-
1523
- #: modules/supsystic_promo/mod.php:141
1524
- msgid "Hello Supsystic Team!"
1525
- msgstr "Bonjour l'Equipe Supsystic !"
1526
-
1527
- #: modules/supsystic_promo/views/supsystic_promo.php:30
1528
- msgid "How to use Google Maps Easy Widget?"
1529
- msgstr ""
1530
-
1531
- #: modules/supsystic_promo/views/supsystic_promo.php:31
1532
- msgid ""
1533
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
1534
- "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
1535
- "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
1536
- "map for widget and configure the settings - Widget Map width and height.<br /"
1537
- ">5. Click 'Save'."
1538
- msgstr ""
1539
-
1540
- #: modules/supsystic_promo/views/supsystic_promo.php:32
1541
- msgid "How to add map into the site content?"
1542
- msgstr ""
1543
-
1544
- #: modules/supsystic_promo/views/supsystic_promo.php:33
1545
- msgid ""
1546
- "You can add a map in the site content via shortcode or php code. Learn more "
1547
- "about how to do this <a href='http://supsystic.com/add-map-into-site-"
1548
- "content/'>here</a>."
1549
- msgstr ""
1550
-
1551
- #: modules/supsystic_promo/views/supsystic_promo.php:34
1552
- msgid "How to add map in popup window?"
1553
- msgstr ""
1554
-
1555
- #: modules/supsystic_promo/views/supsystic_promo.php:35
1556
- msgid ""
1557
- "You can add a map in popup window by inserting map shortcode in any popup "
1558
- "text field. Learn more about how to do this <a href='http://supsystic.com/"
1559
- "add-map-in-popup-window/'>here</a>."
1560
- msgstr ""
1561
-
1562
- #: modules/supsystic_promo/views/supsystic_promo.php:36
1563
- msgid "How to zoom and center the initial map on markers ?"
1564
- msgstr ""
1565
-
1566
- #: modules/supsystic_promo/views/supsystic_promo.php:37
1567
- msgid ""
1568
- "There is a few different ways to zoom and centralize map. The easiest one is "
1569
- "to drag your map using mouse - 'Draggable' option must be enabled, or with "
1570
- "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
1571
- "zoom-and-center-the-initial-map-on-markers/'>Read more..</a>"
1572
- msgstr ""
1573
-
1574
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1575
- msgid "How to get PRO version of plugin for FREE?"
1576
- msgstr "Comment obtenir la version PRO du plugin gratuitement ?"
1577
-
1578
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1579
- #, php-format
1580
- msgid ""
1581
- "You have an incredible opportunity to get PRO version for free. Make "
1582
- "Translation of plugin! It will be amazing if you take advantage of this "
1583
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
1584
- "version of any plugin for FREE'</a>"
1585
- msgstr ""
1586
- "Vous avez une incroyable opportunité d'obtenir la version PRO gratuitement. "
1587
- "Traduisez le plugin ! Ce serait génial que vous bénéficiez de cette offre ! "
1588
- "Plus d'info ici <a target='_blank' href='%s'>'Obtenir la version PRO de "
1589
- "n'importe quel plugin gratuitement'</a>"
1590
-
1591
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1592
- msgid "Translation"
1593
- msgstr "Traduction"
1594
-
1595
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1596
- #, php-format
1597
- msgid ""
1598
- "All available languages are provided with the Supsystic Google Maps plugin. "
1599
- "If your language isn't available, your plugin will be in English by default."
1600
- "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
1601
- "b><br />Translate or update a translation Google Maps WordPress plugin in "
1602
- "your language and get a Premium license for FREE. <a target='_blank' "
1603
- "href='%s'>Contact us</a>."
1604
- msgstr ""
1605
-
1606
- #: modules/supsystic_promo/views/supsystic_promo.php:55
1607
- #, php-format
1608
- msgid ""
1609
- "There were some problem while trying to retrive our news, but you can always "
1610
- "check all list <a target='_blank' href='%s'>here</a>."
1611
- msgstr ""
1612
- "There were some problem while trying to retrive our news, but you can always "
1613
- "check all list <a target='_blank' href='%s'>here</a>."
1614
-
1615
- #: modules/supsystic_promo/views/supsystic_promo.php:65
1616
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1617
- #: modules/supsystic_promo/views/supsystic_promo.php:71
1618
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1619
- #: modules/supsystic_promo/views/supsystic_promo.php:74
1620
- msgid "Yes"
1621
- msgstr "Oui"
1622
-
1623
- #: modules/supsystic_promo/views/supsystic_promo.php:65
1624
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1625
- #: modules/supsystic_promo/views/supsystic_promo.php:71
1626
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1627
- #: modules/supsystic_promo/views/supsystic_promo.php:74
1628
- msgid "No"
1629
- msgstr "Non"
1630
-
1631
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
1632
- #: modules/supsystic_promo/views/tpl/welcomePage.php:78
1633
- msgid "Version"
1634
- msgstr "Version"
1635
-
1636
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1637
- msgid "Go"
1638
- msgstr "Aller"
1639
-
1640
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1641
- msgid "PRO"
1642
- msgstr "PRO"
1643
-
1644
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
1645
- msgid "Support"
1646
- msgstr "Support"
1647
-
1648
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
1649
- msgid "Add your"
1650
- msgstr "Ajouter votre"
1651
-
1652
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1653
- msgid "FAQ and Documentation"
1654
- msgstr "FAQ et documentation"
1655
-
1656
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1657
- msgid "Check all FAQs"
1658
- msgstr "Vérifier la FAQ"
1659
-
1660
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1661
- #: modules/supsystic_promo/views/tpl/welcomePage.php:102
1662
- msgid "Video tutorial"
1663
- msgstr "Tutoriel vidéo"
1664
-
1665
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1666
- msgid "PRO Features"
1667
- msgstr ""
1668
-
1669
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
1670
- msgid "Server Settings"
1671
- msgstr "Paramètres du serveur"
1672
-
1673
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
1674
- msgid "News"
1675
- msgstr "Nouveautés"
1676
-
1677
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
1678
- msgid "All news and info"
1679
- msgstr "Toutes les nouveautés et infos"
1680
-
1681
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
1682
- msgid "Contact form"
1683
- msgstr "Formulaire de contact"
1684
-
1685
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1686
- msgid "Send email"
1687
- msgstr "Envoyer l'email"
1688
-
1689
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
1690
- msgid ""
1691
- "Your email was send, we will try to respond to you as soon as possible. "
1692
- "Thank you for support!"
1693
- msgstr ""
1694
- "Votre email a été envoyé, nous allons essayer de vous répondre dès que "
1695
- "possible. Merci pour votre soutien !"
1696
-
1697
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
1698
- msgid "Welcome to"
1699
- msgstr "Bienvenue à"
1700
-
1701
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
1702
- #, php-format
1703
- msgid "This is first start up of the %s plugin."
1704
- msgstr "Ceci est la première version du plugin %s"
1705
-
1706
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
1707
- msgid ""
1708
- "If you are newbie - check all features on that page, if you are guru - "
1709
- "please correct us."
1710
- msgstr ""
1711
- "Si vous êtes un débutant - vérifiez toutes les fonctionnalités sur cette "
1712
- "page, si vous êtes un expert - merci de nous corriger."
1713
-
1714
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
1715
- msgid "Please, post url"
1716
- msgstr "SVP, l'URL de l'article"
1717
-
1718
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
1719
- msgid "What to do next? Check below section"
1720
- msgstr "Que fair ensuite ? Voir la séction ci-dessous"
1721
-
1722
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
1723
- msgid "Boost us"
1724
- msgstr "Boostez-nous"
1725
-
1726
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
1727
- #, php-format
1728
- msgid ""
1729
- "It's amazing when you boost development with your feedback and ratings. So "
1730
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
1731
- "help us."
1732
- msgstr ""
1733
- "C'est incroyable de booster son développement avec vos retours et notes. "
1734
- "Alors on a créé cette <a target='_blank' href='%s'>page spéciale</a> pour "
1735
- "vous aider à nous aider."
1736
-
1737
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
1738
- msgid "Documentation"
1739
- msgstr "Documentation"
1740
-
1741
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
1742
- #, php-format
1743
- msgid ""
1744
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
1745
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
1746
- msgstr ""
1747
- "Vérifier la <a target='_blank' href='%s'>documentation</a> et la séction "
1748
- "FAQ. Si vous ne trouvez pas de solutions à vos problèmes - <a "
1749
- "target='_blank' href='%s'>contactez-nous</a>."
1750
-
1751
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
1752
- msgid "Full Features List"
1753
- msgstr "Liste complète des fonctionnalités"
1754
-
1755
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
1756
- msgid "There are so many features, so we can't post it here. Like"
1757
- msgstr ""
1758
- "Il y a tant de fonctionnalités qu'on ne peut toutes les afficher ici. Comme"
1759
-
1760
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
1761
- msgid "Capcha for admin login"
1762
- msgstr "Captcha pour se connecter à l'admin"
1763
-
1764
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
1765
- msgid "htaccess admin protect"
1766
- msgstr "Protection de l'admin par htaccess"
1767
-
1768
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
1769
- msgid "Hide directory files listing"
1770
- msgstr "Masquer les fichiers de la liste des répertoires"
1771
-
1772
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
1773
- msgid "Check files and directories write permissions"
1774
- msgstr "Vérifier les accès en écriture des fichiers et répertoires"
1775
-
1776
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
1777
- #, php-format
1778
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
1779
- msgstr ""
1780
- "Vérifiez la liste de toutes les fonctionalités <a target='_blank' "
1781
- "href='%s'>ici</a>."
1782
-
1783
- #~ msgid ""
1784
- #~ "Congradulations! PRO version of %s plugin is activated and working fine!"
1785
- #~ msgstr ""
1786
- #~ "Félicitations ! La version PRO du plugin %s est activée et fonctionne "
1787
- #~ "bien !"
1788
-
1789
- #~ msgid ""
1790
- #~ "Congradulations! You have successfully installed PRO version of %s "
1791
- #~ "plugin. Final step to finish Your PRO version setup - is to enter your "
1792
- #~ "Email and License Key on this page. This will activate Your copy of "
1793
- #~ "software on this site."
1794
- #~ msgstr ""
1795
- #~ "Félicitations ! Vous avez installé avec succès la version PRO du plugin "
1796
- #~ "%s. Dernière étape pour finir l'installation de votre version PRO - "
1797
- #~ "entrer votre adresse email and votre clé de licence sur cette page. Cela "
1798
- #~ "activera votre version sur ce site."
1799
-
1800
- #~ msgid "Icon ID"
1801
- #~ msgstr "ID de l'icône"
1802
-
1803
- #~ msgid "Icon Title"
1804
- #~ msgstr "Titre de l'icône"
1805
-
1806
- #~ msgid "Icon Description"
1807
- #~ msgstr "Déscription de l'icône"
1808
-
1809
- #~ msgid "File Path"
1810
- #~ msgstr "Chemin du fichier"
1811
-
1812
- #~ msgid "Html Parametrs"
1813
- #~ msgstr "Paramètres HTML"
1814
-
1815
- #~ msgid "Create Date"
1816
- #~ msgstr "Date de création"
1817
-
1818
- #~ msgid "Additional Params"
1819
- #~ msgstr "Paramètres supplémentaires"
1820
-
1821
- #~ msgid "Marker"
1822
- #~ msgstr "Marqueur"
1823
-
1824
- #~ msgid "Added %s maps"
1825
- #~ msgstr "%s cartes ajoutées"
1826
-
1827
- #~ msgid "Updated %s maps"
1828
- #~ msgstr "%s cartes mises à jour"
1829
-
1830
- #~ msgid "Added %s markers"
1831
- #~ msgstr "%s marqueurs ajoutés"
1832
-
1833
- #~ msgid "Updated %s markers"
1834
- #~ msgstr "%s marqueurs mis à jour"
1835
-
1836
- #~ msgid "Extended Options"
1837
- #~ msgstr "Options étendues"
1838
-
1839
- #~ msgid "Get 300+ Themes"
1840
- #~ msgstr "Obtenir +300 thèmes"
1841
-
1842
- #~ msgid ""
1843
- #~ "Please be advised that this option is available only in <a "
1844
- #~ "target='_blank' href='%s'>PRO version</a>. You can <a target='_blank' "
1845
- #~ "href='%s' class='button'>Get PRO</a> today and get this and other PRO "
1846
- #~ "option for your Maps!"
1847
- #~ msgstr ""
1848
- #~ "Veuillez noter que cette option est disponible uniquement dans la <a "
1849
- #~ "target='_blank' href='%s'>version PRO</a>. Vous pouvez obtenir la<a "
1850
- #~ "target='_blank' href='%s' class='button'>version PRO</a> maintenant et "
1851
- #~ "avoir les options PRO pour vos cartes !"
1852
-
1853
- #~ msgid "Group"
1854
- #~ msgstr "Groupe"
1855
-
1856
- #~ msgid "Creation Date"
1857
- #~ msgstr "Date de création"
1858
-
1859
- #~ msgid "Uses On Map"
1860
- #~ msgstr "Utilisés sur la carte"
1861
-
1862
- #~ msgid "Back To Markers List"
1863
- #~ msgstr "Retour à la liste des marqueurs"
1864
-
1865
- #~ msgid "Remove"
1866
- #~ msgstr "Retirer"
1867
-
1868
- #~ msgid "No maps contain this marker"
1869
- #~ msgstr "Aucune carte ne contient ce marqueur"
1870
-
1871
- #~ msgid "Remove selected"
1872
- #~ msgstr "Retirer la sélection"
1873
-
1874
- #~ msgid "Nothing To Save"
1875
- #~ msgstr "Rien à enregistrer"
1876
-
1877
- #~ msgid "Cannot Save Group"
1878
- #~ msgstr "Impossible d'enregistrer le groupe"
1879
-
1880
- #~ msgid "Group Not Found"
1881
- #~ msgstr "Groupe non trouvé"
1882
-
1883
- #~ msgid "Cannot remove group"
1884
- #~ msgstr "Impossible de retirer le groupe"
1885
-
1886
- #~ msgid "Save Group"
1887
- #~ msgstr "Enregistrer le groupe"
1888
-
1889
- #~ msgid "Group Title"
1890
- #~ msgstr "Titre du groupe"
1891
-
1892
- #~ msgid "Title For Group"
1893
- #~ msgstr "Titre pour le groupe"
1894
-
1895
- #~ msgid "Group Description"
1896
- #~ msgstr "Déscription du groupe"
1897
-
1898
- #~ msgid "Description For Goup"
1899
- #~ msgstr "Déscription du groupe"
1900
-
1901
- #~ msgid "Reset"
1902
- #~ msgstr "Réinitialiser"
1903
-
1904
- #~ msgid ""
1905
- #~ "All available languages are provided with the Supsystic Google Maps "
1906
- #~ "plugin. If your language isn't available, your plugin will be in English "
1907
- #~ "by default.<br /><b>Available Translations: English</b><br />Translate or "
1908
- #~ "update a translation Google Maps WordPress plugin in your language and "
1909
- #~ "get a Premium license for FREE. <a target='_blank' href='%s'>Contact us</"
1910
- #~ "a>."
1911
- #~ msgstr ""
1912
- #~ "Toutes les langues disponibles sont fournies par le plugin Supsystic "
1913
- #~ "Google Maps. Si votre langue n'est pas disponible, votre plugin sera en "
1914
- #~ "anglais par défaut.<br /><b>Traductions disponibles : Anglais</b><br /"
1915
- #~ ">Traduisez ou mettez à jour la traduction du plugin Google Maps WordPress "
1916
- #~ "et obtenez la version PRO gratuitement. <a target='_blank' "
1917
- #~ "href='%s'>Contactez-nous</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-it_IT.mo DELETED
Binary file
lang/gmp_lng-it_IT.po DELETED
@@ -1,1815 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2015-07-30 18:39+0300\n"
5
- "PO-Revision-Date: 2017-12-15 13:20+0200\n"
6
- "Last-Translator: irene <ka3d3@hotmail.com>\n"
7
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language: en\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.9\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
- "X-Poedit-SearchPathExcluded-0: js\n"
17
- "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
18
-
19
- #: classes/controller.php:198 classes/controller.php:206
20
- #: doc/google-maps-easy-pro/license/controller.php:6
21
- #: modules/adminmenu/controller.php:29 modules/gmap/controller.php:40
22
- #: modules/gmap/controller.php:57 modules/marker/controller.php:8
23
- #: modules/marker/controller.php:46 modules/marker/controller.php:61
24
- #: modules/marker/controller.php:101 modules/marker_groups/controller.php:58
25
- #: modules/options/controller.php:6
26
- msgid "Done"
27
- msgstr "Fatto"
28
-
29
- #: classes/field.php:131
30
- msgid "Select"
31
- msgstr "Seleziona"
32
-
33
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
34
- msgid "N/A"
35
- msgstr "Non disponibile"
36
-
37
- #: classes/field.php:277
38
- msgid "Add Checkbox"
39
- msgstr "Aggiungi Checkbox"
40
-
41
- #: classes/field.php:282 classes/field.php:287
42
- msgid "Add Item"
43
- msgstr "Aggiungi un elemento"
44
-
45
- #: classes/field.php:293
46
- msgid "Add Radio Button"
47
- msgstr "Aggiungi un Radio Button"
48
-
49
- #: classes/field.php:311
50
- msgid "Dimensions"
51
- msgstr "Dimensioni"
52
-
53
- #: classes/field.php:314
54
- msgid "width"
55
- msgstr "Larghezza"
56
-
57
- #: classes/field.php:316
58
- msgid "height"
59
- msgstr "altezza"
60
-
61
- #: classes/field.php:323
62
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
63
- msgstr "Clicca per settare il campo &quot;id&quot; and &quot;class&quot;"
64
-
65
- #: classes/field.php:324
66
- msgid "Attributes"
67
- msgstr "Attributi"
68
-
69
- #: classes/field.php:402
70
- msgid "There are no configuration options for this module"
71
- msgstr "Non ci sono opzioni di configurazione per questo modulo"
72
-
73
- #: classes/fieldAdapter.php:93
74
- msgid "Apply To"
75
- msgstr "Applica a "
76
-
77
- #: classes/fieldAdapter.php:95 modules/gmap/views/tpl/gmapEditMap.php:523
78
- msgid "Address"
79
- msgstr "Indirizzo"
80
-
81
- #: classes/fieldAdapter.php:96
82
- msgid "Destination"
83
- msgstr "Destinazione"
84
-
85
- #: classes/fieldAdapter.php:97
86
- msgid "Country"
87
- msgstr "Paese"
88
-
89
- #: classes/fieldAdapter.php:100
90
- msgid "Categories"
91
- msgstr "Categorie"
92
-
93
- #: classes/fieldAdapter.php:101
94
- msgid "You have no categories"
95
- msgstr "Non ci sono categorie"
96
-
97
- #: classes/fieldAdapter.php:102
98
- msgid "Brands"
99
- msgstr "Brands"
100
-
101
- #: classes/fieldAdapter.php:103
102
- msgid "You have no brands"
103
- msgstr "Non ci sono brands"
104
-
105
- #: classes/fieldAdapter.php:105
106
- msgid "Tax Rate"
107
- msgstr "aliquota fiscale"
108
-
109
- #: classes/fieldAdapter.php:106
110
- msgid "Absolute"
111
- msgstr "Assoluto"
112
-
113
- #: classes/fieldAdapter.php:134
114
- msgid "Not selected"
115
- msgstr "Non selezionato"
116
-
117
- #: classes/fieldAdapter.php:184
118
- msgid "class"
119
- msgstr "classe"
120
-
121
- #: classes/fieldAdapter.php:186
122
- msgid "id"
123
- msgstr "id"
124
-
125
- #: classes/frame.php:135
126
- msgid "You have no permissions to view this page"
127
- msgstr "Non hai i permessi per visualizzare questa pagina"
128
-
129
- #: classes/html.php:207
130
- msgid "Upload"
131
- msgstr "Carica"
132
-
133
- #: classes/html.php:611
134
- msgid "ON"
135
- msgstr "ON"
136
-
137
- #: classes/html.php:612
138
- msgid "OFF"
139
- msgstr "OFF"
140
-
141
- #: classes/html.php:636
142
- #, php-format
143
- msgid "Select %s"
144
- msgstr "Seleziona %s"
145
-
146
- #: classes/modInstaller.php:34
147
- #, php-format
148
- msgid "Move files for %s failed"
149
- msgstr "Lo spostamento dei files %s è fallito"
150
-
151
- #: classes/modInstaller.php:37
152
- #, php-format
153
- msgid "%s is not plugin module"
154
- msgstr "%s non è un modulo del plugin"
155
-
156
- #: classes/modInstaller.php:76
157
- msgid "Can not create module directory. Try to set permission to "
158
- msgstr ""
159
- "Non posso creare la cartella del modulo. Prova a impostare i permessi per "
160
- "farlo."
161
-
162
- #: classes/modInstaller.php:103
163
- msgid "No modules were found in XML file"
164
- msgstr "Non sono stati trovati moduli nel file XML"
165
-
166
- #: classes/modInstaller.php:107
167
- msgid "Invalid XML file"
168
- msgstr "File XML non valido"
169
-
170
- #: classes/modInstaller.php:109
171
- msgid "No XML file were found"
172
- msgstr "Non è stato trovato alcun file XML"
173
-
174
- #: classes/modInstaller.php:128
175
- #, php-format
176
- msgid "Install %s failed"
177
- msgstr "Installazione %s fallita"
178
-
179
- #: classes/modInstaller.php:134
180
- msgid "Error Activate module"
181
- msgstr "errore modulo attivazione"
182
-
183
- #: classes/modInstaller.php:164
184
- msgid "Error Deactivation module"
185
- msgstr "errore modulo disattivazione"
186
-
187
- #: classes/modInstaller.php:185
188
- msgid "Error Activating module"
189
- msgstr "errore nell'attivare il modulo"
190
-
191
- #: classes/model.php:174 classes/model.php:186
192
- msgid "Database error detected"
193
- msgstr "Individuato errore nel database"
194
-
195
- #: classes/model.php:176 modules/gmap/models/gmap.php:105
196
- #: modules/icons/models/icons.php:148
197
- #: modules/marker_groups/models/marker_groups.php:30
198
- msgid "Invalid ID"
199
- msgstr "ID non valido"
200
-
201
- #: classes/model.php:209
202
- msgid "Empty or invalid ID"
203
- msgstr "ID vuoto o non valido"
204
-
205
- #: classes/table.php:277
206
- msgid "Nothig to update"
207
- msgstr "Non c'è niente da aggiornare"
208
-
209
- #: classes/table.php:293
210
- msgid "Database error. Please contact your developer."
211
- msgstr "Errore nel database. Per favore contatta lo sviluppatore."
212
-
213
- #: classes/tables/marker.php:7 classes/tables/marker_groups.php:8
214
- msgid "Map ID"
215
- msgstr "ID della mappa"
216
-
217
- #: classes/tables/marker.php:8 classes/tables/marker_groups.php:9
218
- msgid "File name"
219
- msgstr "nome del file"
220
-
221
- #: classes/tables/marker.php:9 classes/tables/marker_groups.php:10
222
- msgid "Description Of Map"
223
- msgstr "Descrizione della mappa"
224
-
225
- #: classes/tables/marker.php:10
226
- msgid "X coordinate if marker(lng)"
227
- msgstr "coordinata X per il segnaposto (longitudine)"
228
-
229
- #: classes/tables/marker.php:11
230
- msgid "Y coordinate of marker(lat)"
231
- msgstr "coordinata Y per il segnaposto (latitudine)"
232
-
233
- #: classes/tables/marker.php:12
234
- msgid "Path of icon file"
235
- msgstr "Percorso del file dell'icona"
236
-
237
- #: classes/tables/marker.php:13
238
- msgid "Map Id"
239
- msgstr "Id della mappa"
240
-
241
- #: classes/tables/marker.php:14
242
- msgid "Marker Address"
243
- msgstr "Indirizzo del segnaposto"
244
-
245
- #: classes/tables/marker.php:15
246
- msgid "Id of Marker's group"
247
- msgstr "Id del gruppo di segnaposto"
248
-
249
- #: classes/tables/marker.php:16
250
- msgid "Animation"
251
- msgstr "animazione"
252
-
253
- #: classes/tables/marker.php:17 classes/tables/modules.php:10
254
- #: classes/tables/options.php:11
255
- msgid "Params"
256
- msgstr "Parametri"
257
-
258
- #: classes/tables/marker.php:18 classes/tables/options.php:15
259
- msgid "Sort Order"
260
- msgstr "Ordina"
261
-
262
- #: classes/tables/marker.php:19
263
- msgid "Creation date"
264
- msgstr "Data di creazione"
265
-
266
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8
267
- #: classes/tables/options.php:10
268
- msgid "Label"
269
- msgstr "Etichetta"
270
-
271
- #: classes/tables/modules.php:8 classes/tables/options.php:13
272
- msgid "Type"
273
- msgstr "Tipo"
274
-
275
- #: classes/tables/modules.php:9
276
- msgid "Active"
277
- msgstr "Attiva"
278
-
279
- #: classes/tables/modules.php:11
280
- msgid "Has Tab"
281
- msgstr ""
282
-
283
- #: classes/tables/modules.php:12 classes/tables/options.php:12
284
- msgid "Description"
285
- msgstr "Descrizione"
286
-
287
- #: classes/tables/modules.php:13 classes/tables/options.php:8
288
- #: classes/tables/usage.php:9
289
- msgid "Code"
290
- msgstr "Codice"
291
-
292
- #: classes/tables/modules.php:14
293
- msgid "External plugin directory"
294
- msgstr "Cartella plugin esterna"
295
-
296
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7
297
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:122
298
- msgid "ID"
299
- msgstr "ID"
300
-
301
- #: classes/tables/options.php:9
302
- msgid "Value"
303
- msgstr "Valore"
304
-
305
- #: classes/tables/options.php:14
306
- msgid "Category ID"
307
- msgstr "ID della categoria"
308
-
309
- #: classes/tables/options.php:16
310
- msgid "Value Type"
311
- msgstr "Tipo di valore"
312
-
313
- #: classes/tables/options_categories.php:8
314
- msgid "Method"
315
- msgstr "Metodo"
316
-
317
- #: classes/tables/usage.php:8
318
- msgid "Usage id"
319
- msgstr "Id di utilizzo"
320
-
321
- #: classes/tables/usage.php:10
322
- msgid "Visits Count"
323
- msgstr "Contatore visite"
324
-
325
- #: classes/validator.php:30
326
- #, php-format
327
- msgid "Invalid length for %s, max length is %s"
328
- msgstr "Lunghezza non valida per %s, la lunghezza massima è %s"
329
-
330
- #: classes/validator.php:43
331
- #, php-format
332
- msgid "Invalid numeric value for %s"
333
- msgstr "Il valore numerico per %s non è valido"
334
-
335
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
336
- #, php-format
337
- msgid "Please enter %s"
338
- msgstr "Per favore inserisci %s"
339
-
340
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
341
- #, php-format
342
- msgid "Please select %s"
343
- msgstr "Per favore seleziona %s"
344
-
345
- #: classes/validator.php:85 classes/validator.php:101
346
- #, php-format
347
- msgid "Invalid %s"
348
- msgstr "Non valido %s"
349
-
350
- #: classes/validator.php:88
351
- #, php-format
352
- msgid "%s is already registered"
353
- msgstr "%s è già registrato"
354
-
355
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
356
- msgid "Exit Full Screen"
357
- msgstr "Esci da schermo intero"
358
-
359
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
360
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
361
- msgid "Open Full Screen"
362
- msgstr "Apri a schermo intero"
363
-
364
- #: doc/google-maps-easy-pro/license/mod.php:28
365
- #, php-format
366
- msgid ""
367
- "Your license is expired. Once you extend your license - you will be able to "
368
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
369
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
370
- "click on 'Re-activate' button to re-activate your PRO version."
371
- msgstr ""
372
- "La tua licenza è scaduta. Un volta estesa la tua licenza - potrai aggiornare "
373
- "la versione PRO. Per estendere la licenza per la versione PRO - segui<a "
374
- "href='%s' target='_blank'>questo link</a>, poi - vai su <a "
375
- "href='%s'>Licenza</a> e clicca sul 'Re-activate' bottone per riattivare la "
376
- "tua versione PRO."
377
-
378
- #: doc/google-maps-easy-pro/license/mod.php:36
379
- #, php-format
380
- msgid ""
381
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
382
- "target='_blank'>click here</a> to extend your license, then - go to <a "
383
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
384
- "your PRO version."
385
- msgstr ""
386
- "La tua licenza per la versione PRO del plugin %s - è scaduta. Puoi <a "
387
- "href='%s' target='_blank'>cliccare qui</a> per estendere la tua ricerca, poi "
388
- "- vai su <a href='%s'>Licenza</a> e clicca sul bottone 'Riattiva' per "
389
- "riattivare la tua versione PRO."
390
-
391
- #: doc/google-maps-easy-pro/license/mod.php:49
392
- msgid "License"
393
- msgstr "Licenza"
394
-
395
- #: doc/google-maps-easy-pro/license/mod.php:72
396
- msgid "Activate License"
397
- msgstr "Attiva licenza"
398
-
399
- #: doc/google-maps-easy-pro/license/mod.php:74
400
- msgid "Renew License"
401
- msgstr "Rinnova la licenza"
402
-
403
- #: doc/google-maps-easy-pro/license/models/license.php:54
404
- msgid "Please enter your License Key"
405
- msgstr "Per favore inserisci la tua License Key (chiave di licenza)"
406
-
407
- #: doc/google-maps-easy-pro/license/models/license.php:56
408
- msgid "Please enter your Email address"
409
- msgstr "Per favore inserisci il tuo un indirizzo mail "
410
-
411
- #: doc/google-maps-easy-pro/license/models/license.php:131
412
- msgid ""
413
- "There was a problem with sending request to our autentification server. "
414
- "Please try latter."
415
- msgstr ""
416
- "C'è un problema nell'invio della richiesta al nostro server di "
417
- "autentificazione. Per favore riprova più tardi."
418
-
419
- #: doc/google-maps-easy-pro/license/models/license.php:154
420
- #, php-format
421
- msgid "License for plugin %s will expire today."
422
- msgstr "La licenza per il plugin %s scadrà oggi"
423
-
424
- #: doc/google-maps-easy-pro/license/models/license.php:156
425
- #, php-format
426
- msgid "License for plugin %s will expire tomorrow."
427
- msgstr "La licenza per il plugin %s scadrà domani"
428
-
429
- #: doc/google-maps-easy-pro/license/models/license.php:158
430
- #, php-format
431
- msgid "License for plugin %s will expire in %d days."
432
- msgstr "La licenza per il plugin %s scadrà in %d giorni."
433
-
434
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
435
- #, php-format
436
- msgid ""
437
- "Congratulations! PRO version of %s plugin is activated and working fine!"
438
- msgstr ""
439
- "Congratulazioni! la versione PRO del plugin %s è stata attivata e funziona "
440
- "bene!"
441
-
442
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
443
- #, php-format
444
- msgid ""
445
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
446
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
447
- "activate' button to re-activate your PRO version."
448
- msgstr ""
449
- "La tua licenza per la versione PRO del plugin %s - è scaduta. Puoi <a "
450
- "href='%s' target='_blank'>cliccare qui</a> per estendere la licenza, poi - "
451
- "clicca sul 'Riattiva' bottone per riattivare la tua versione PRO."
452
-
453
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
454
- #, php-format
455
- msgid ""
456
- "Congratulations! You have successfully installed PRO version of %s plugin. "
457
- "Final step to finish Your PRO version setup - is to enter your Email and "
458
- "License Key on this page. This will activate Your copy of software on this "
459
- "site."
460
- msgstr ""
461
- "Congratulazioni! Hai installato con successo la versione PRO del plugin %s. "
462
- "Il passaggio finale per completare il setup della tua versione pro - è di "
463
- "inserire la tua email e la License Key (chiave di licenza) in questa pagina. "
464
- "Questo attiverà la tua copia del software per questo sito."
465
-
466
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
467
- #: modules/supsystic_promo/mod.php:132
468
- msgid "Email"
469
- msgstr "Email"
470
-
471
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
472
- #, php-format
473
- msgid ""
474
- "Your email address, used on checkout procedure on <a href='%s' "
475
- "target='_blank'>%s</a>"
476
- msgstr ""
477
- "Your email address, used on checkout procedure on <a href='%s' "
478
- "target='_blank'>%s</a>"
479
-
480
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
481
- msgid "License Key"
482
- msgstr "License Key (chiave di licenza)"
483
-
484
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
485
- #, php-format
486
- msgid ""
487
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
488
- msgstr ""
489
- "La tua chiave di licenza dal tuo account su <a href='%s' target='_blank'>%s</"
490
- "a>"
491
-
492
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
493
- msgid "Re-activate"
494
- msgstr "Ri-attiva"
495
-
496
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
497
- msgid "Activate"
498
- msgstr "Attivare"
499
-
500
- #: doc/google-maps-easy-pro/wpUpdater.php:68
501
- msgid ""
502
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
503
- "onclick='document.location.reload(); return false;'>Try again</a>"
504
- msgstr ""
505
- "si è verificato un errore HTTP inatteso durante la richiesta API</p> <p><a "
506
- "href='?' onclick='document.location.reload(); return false;'>Prova di nuovo</"
507
- "a>"
508
-
509
- #: doc/google-maps-easy-pro/wpUpdater.php:73
510
- msgid "An unknown error occurred"
511
- msgstr "é subentrato un errore sconosciuto"
512
-
513
- #: modules/adminmenu/controller.php:7
514
- msgid "Your name field is required."
515
- msgstr "Il campo 'nome' è richiesto"
516
-
517
- #: modules/adminmenu/controller.php:8
518
- msgid "Your website field is required."
519
- msgstr "Il campo 'sito web' è richiesto"
520
-
521
- #: modules/adminmenu/controller.php:9
522
- msgid "Your e-mail field is required."
523
- msgstr "Il campo 'tua email' è richiesto"
524
-
525
- #: modules/adminmenu/controller.php:10
526
- msgid "Subject field is required."
527
- msgstr "Il campo 'oggetto' è richiesto"
528
-
529
- #: modules/adminmenu/controller.php:11
530
- msgid "You must select a valid category."
531
- msgstr "Devi selezionare una categoria valida"
532
-
533
- #: modules/adminmenu/controller.php:12
534
- msgid "Message field is required."
535
- msgstr "Il campo 'messaggio' è richiesto"
536
-
537
- #: modules/adminmenu/mod.php:12
538
- msgid "Settings"
539
- msgstr "Impostazioni"
540
-
541
- #: modules/csv/controller.php:45
542
- #, php-format
543
- msgid "Maps from %s - %s"
544
- msgstr "Mappe da %s - %s"
545
-
546
- #: modules/csv/controller.php:48
547
- msgid "You have no maps for now."
548
- msgstr "Non ci sono mappe per ora"
549
-
550
- #: modules/csv/controller.php:87
551
- #, php-format
552
- msgid "Markers from %s"
553
- msgstr "Segnaposto da %s"
554
-
555
- #: modules/csv/controller.php:90
556
- msgid "You have no markers for now."
557
- msgstr "Non ci sono segnaposto per ora"
558
-
559
- #: modules/csv/controller.php:124
560
- msgid "Missing File"
561
- msgstr "File mancante"
562
-
563
- #: modules/csv/controller.php:126
564
- #, php-format
565
- msgid "File uploaded with error code %s"
566
- msgstr "File caricato con codice di errore %s"
567
-
568
- #: modules/csv/controller.php:208
569
- msgid ""
570
- "File should contain more then 1 row, at least 1 row should be for headers"
571
- msgstr ""
572
- "Il file deve contenere più di una riga, deve esserci almeno una riga per "
573
- "l'intestazione"
574
-
575
- #: modules/csv/controller.php:210
576
- msgid "Empty data in file"
577
- msgstr "File vuoti - nessun dato"
578
-
579
- #: modules/csv/mod.php:11
580
- msgid "Maps Import / Export"
581
- msgstr "Mappe importa/esporta"
582
-
583
- #: modules/csv/models/csv.php:133
584
- msgid "Can not detect import list type"
585
- msgstr "Non si può individuare un tipo di lista da importare"
586
-
587
- #: modules/csv/models/csv.php:135
588
- msgid "Can not find fields names"
589
- msgstr "Non posso trovare i nomi dei campi"
590
-
591
- #: modules/csv/views/tpl/csvTabContent.php:9
592
- msgid "Maps"
593
- msgstr "Mappe"
594
-
595
- #: modules/csv/views/tpl/csvTabContent.php:14
596
- #: modules/csv/views/tpl/csvTabContent.php:35
597
- msgid "Export"
598
- msgstr "Esporta"
599
-
600
- #: modules/csv/views/tpl/csvTabContent.php:19
601
- #: modules/csv/views/tpl/csvTabContent.php:40
602
- msgid "Import"
603
- msgstr "Importa"
604
-
605
- #: modules/csv/views/tpl/csvTabContent.php:30 modules/gmap/views/gmap.php:125
606
- #: modules/gmap/views/tpl/gmapEditMap.php:17
607
- msgid "Markers"
608
- msgstr "Segnaposto"
609
-
610
- #: modules/gmap/controller.php:23
611
- msgid "Map data not found"
612
- msgstr "Dati della mappa non trovati"
613
-
614
- #: modules/gmap/mod.php:13
615
- msgid "Add Map"
616
- msgstr "Aggiungi mappa"
617
-
618
- #: modules/gmap/mod.php:16 modules/gmap/views/tpl/gmapEditMap.php:701
619
- #: modules/marker_groups/mod.php:14
620
- msgid "Edit"
621
- msgstr "Modifica"
622
-
623
- #: modules/gmap/mod.php:19
624
- msgid "All Maps"
625
- msgstr "Tutte le mappe"
626
-
627
- #: modules/gmap/mod.php:29
628
- msgid "No Map Found"
629
- msgstr "Nessuna mappa trovata"
630
-
631
- #: modules/gmap/mod.php:39
632
- msgid "Empty or Invalid Map ID"
633
- msgstr "ID della mappa vuoto o non valido"
634
-
635
- #: modules/gmap/mod.php:58
636
- msgid "Top Center"
637
- msgstr "in alto - centrale"
638
-
639
- #: modules/gmap/mod.php:59
640
- msgid "Top Left"
641
- msgstr "in alto - a sinistra"
642
-
643
- #: modules/gmap/mod.php:60
644
- msgid "Top Right"
645
- msgstr "in alto - a destra"
646
-
647
- #: modules/gmap/mod.php:61
648
- msgid "Left Top"
649
- msgstr "a sinistra - in alto"
650
-
651
- #: modules/gmap/mod.php:62
652
- msgid "Right Top"
653
- msgstr "a destra - in alto"
654
-
655
- #: modules/gmap/mod.php:63
656
- msgid "Left Center"
657
- msgstr "a sinistra - al centro"
658
-
659
- #: modules/gmap/mod.php:64
660
- msgid "Right Center"
661
- msgstr "a destra - al centro"
662
-
663
- #: modules/gmap/mod.php:65
664
- msgid "Left Bottom"
665
- msgstr "a sinistra - in basso"
666
-
667
- #: modules/gmap/mod.php:66
668
- msgid "Right Bottom"
669
- msgstr "a destra - in basso"
670
-
671
- #: modules/gmap/mod.php:67
672
- msgid "Bottom Center"
673
- msgstr "in basso - al centro"
674
-
675
- #: modules/gmap/mod.php:68
676
- msgid "Bottom Left"
677
- msgstr "in basso - a sinistra"
678
-
679
- #: modules/gmap/mod.php:69
680
- msgid "Bottom Right"
681
- msgstr "in basso - a destra"
682
-
683
- #: modules/gmap/mod.php:92
684
- msgid "Slider"
685
- msgstr "Slider"
686
-
687
- #: modules/gmap/mod.php:93
688
- msgid "Slider - Title and Img"
689
- msgstr "Slider - titolo e immagine"
690
-
691
- #: modules/gmap/mod.php:94 modules/gmap/mod.php:96
692
- msgid "Slider Vertical - Title and Img"
693
- msgstr "Slider verticale - titolo e immagine"
694
-
695
- #: modules/gmap/mod.php:95
696
- msgid "Slider Vertical - Title and Description"
697
- msgstr "Slider verticale - titolo e descrizione"
698
-
699
- #: modules/gmap/models/gmap.php:67
700
- msgid "Please enter Map Name"
701
- msgstr "Per favore inserisci il nome della mappa"
702
-
703
- #: modules/gmap/models/gmap.php:96
704
- #: modules/marker_groups/models/marker_groups.php:63
705
- msgid "Empty Params"
706
- msgstr "parametro vuoto"
707
-
708
- #: modules/gmap/views/gmap.php:123
709
- msgid "Title"
710
- msgstr "Titolo"
711
-
712
- #: modules/gmap/views/gmap.php:124
713
- msgid "Html options"
714
- msgstr "opzioni HTML"
715
-
716
- #: modules/gmap/views/gmap.php:126
717
- msgid "Operations"
718
- msgstr "Operazioni"
719
-
720
- #: modules/gmap/views/gmap.php:163 modules/gmap/views/gmap.php:169
721
- #: modules/gmap/views/tpl/gmapEditMap.php:104
722
- #: modules/gmap/views/tpl/gmapEditMap.php:132
723
- #: modules/gmap/views/tpl/gmapEditMap.php:214
724
- #: modules/gmap/views/tpl/gmapEditMap.php:370 modules/marker/mod.php:20
725
- msgid "None"
726
- msgstr "Nessuno"
727
-
728
- #: modules/gmap/views/tpl/gmapAdmin.php:5
729
- #: modules/gmap/views/tpl/gmapAdmin.php:8
730
- #: modules/marker_groups/views/tpl/mgrAdmin.php:9
731
- #: modules/marker_groups/views/tpl/mgrAdmin.php:12
732
- msgid "Delete selected"
733
- msgstr "Cancella selezionati"
734
-
735
- #: modules/gmap/views/tpl/gmapAdmin.php:11
736
- #: modules/marker_groups/views/tpl/mgrAdmin.php:15
737
- msgid "Clear All"
738
- msgstr "Cancella tutto"
739
-
740
- #: modules/gmap/views/tpl/gmapAdmin.php:13
741
- #: modules/marker_groups/views/tpl/mgrAdmin.php:17
742
- msgid "Clear"
743
- msgstr "Cancella "
744
-
745
- #: modules/gmap/views/tpl/gmapAdmin.php:16
746
- #: modules/gmap/views/tpl/gmapAdmin.php:17
747
- #: modules/marker_groups/views/tpl/mgrAdmin.php:20
748
- #: modules/marker_groups/views/tpl/mgrAdmin.php:21
749
- msgid "Search"
750
- msgstr "Cerca"
751
-
752
- #: modules/gmap/views/tpl/gmapAdmin.php:26
753
- #, php-format
754
- msgid ""
755
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
756
- "a> your first Map!"
757
- msgstr ""
758
- "Non ci sono mappe per ora. <a href='%s' style='font-style: italic;'>Crea</a> "
759
- "la tua prima mappa!"
760
-
761
- #: modules/gmap/views/tpl/gmapDrawMap.php:3
762
- msgid "Map not found"
763
- msgstr "Mappa non trovata "
764
-
765
- #: modules/gmap/views/tpl/gmapEditMap.php:2
766
- #, php-format
767
- msgid ""
768
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
769
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
770
- msgstr ""
771
- "Questa opzione è disponibile solo nella <a target='_blank' "
772
- "href='%s'>versione PRO</a>. Puoi averla cliccando <a target='_blank' "
773
- "href='%s'>qui.</a>"
774
-
775
- #: modules/gmap/views/tpl/gmapEditMap.php:13
776
- msgid "Map Properties"
777
- msgstr "Proprietà della mappa"
778
-
779
- #: modules/gmap/views/tpl/gmapEditMap.php:20
780
- msgid "Add New Marker"
781
- msgstr "Aggiungi nuovo segnaposto"
782
-
783
- #: modules/gmap/views/tpl/gmapEditMap.php:31
784
- msgid "Map Name"
785
- msgstr "Nome della mappa"
786
-
787
- #: modules/gmap/views/tpl/gmapEditMap.php:33
788
- msgid "Your map name"
789
- msgstr "Il nome della tua mappa"
790
-
791
- #: modules/gmap/views/tpl/gmapEditMap.php:45
792
- msgid "Map Width"
793
- msgstr "Larghezza della mappa"
794
-
795
- #: modules/gmap/views/tpl/gmapEditMap.php:47
796
- msgid "Your map width"
797
- msgstr "La larghezza della tua mappa"
798
-
799
- #: modules/gmap/views/tpl/gmapEditMap.php:56
800
- #: modules/gmap/views/tpl/gmapEditMap.php:81
801
- msgid "Pixels"
802
- msgstr "Pixels"
803
-
804
- #: modules/gmap/views/tpl/gmapEditMap.php:59
805
- #: modules/gmap/views/tpl/gmapEditMap.php:84
806
- msgid "Px"
807
- msgstr "Px"
808
-
809
- #: modules/gmap/views/tpl/gmapEditMap.php:63
810
- msgid "Percents"
811
- msgstr "Percentuale"
812
-
813
- #: modules/gmap/views/tpl/gmapEditMap.php:70
814
- msgid "Map Height"
815
- msgstr "Altezza della mappa"
816
-
817
- #: modules/gmap/views/tpl/gmapEditMap.php:72
818
- msgid "Your map height"
819
- msgstr "Altezza della tua mappa"
820
-
821
- #: modules/gmap/views/tpl/gmapEditMap.php:97
822
- msgid "Map type control"
823
- msgstr "Controllo del tipo di mappa"
824
-
825
- #: modules/gmap/views/tpl/gmapEditMap.php:99
826
- msgid ""
827
- "Control view for map type - you can see it in right upper corner by default"
828
- msgstr ""
829
- "Visualizzazione del controllo per il tipo di mappa - di default puoi "
830
- "trovarlo nell'angolo in alto a destra"
831
-
832
- #: modules/gmap/views/tpl/gmapEditMap.php:104
833
- msgid "Dropdown Menu"
834
- msgstr "Menu a tendina"
835
-
836
- #: modules/gmap/views/tpl/gmapEditMap.php:104
837
- msgid "Horizontal Bar"
838
- msgstr "Barra orizzontale"
839
-
840
- #: modules/gmap/views/tpl/gmapEditMap.php:110
841
- msgid "Change type control position on map"
842
- msgstr "Cambia la posizione del controllo del tipo sulla mappa"
843
-
844
- #: modules/gmap/views/tpl/gmapEditMap.php:117
845
- #: modules/gmap/views/tpl/gmapEditMap.php:145
846
- #: modules/gmap/views/tpl/gmapEditMap.php:172
847
- #: modules/gmap/views/tpl/gmapEditMap.php:199
848
- #: modules/gmap/views/tpl/gmapEditMap.php:281
849
- #: modules/gmap/views/tpl/gmapEditMap.php:298
850
- #: modules/gmap/views/tpl/gmapEditMap.php:315
851
- #: modules/gmap/views/tpl/gmapEditMap.php:352
852
- #: modules/gmap/views/tpl/gmapEditMap.php:383
853
- #: modules/gmap/views/tpl/gmapEditMap.php:412
854
- msgid "PRO option"
855
- msgstr "Opzione PRO"
856
-
857
- #: modules/gmap/views/tpl/gmapEditMap.php:125
858
- msgid "Zoom control"
859
- msgstr "Controllo zoom"
860
-
861
- #: modules/gmap/views/tpl/gmapEditMap.php:127
862
- msgid "Zoom control type on your map"
863
- msgstr "Tipo di controllo dello zoom sulla mappa"
864
-
865
- #: modules/gmap/views/tpl/gmapEditMap.php:132
866
- msgid "Default"
867
- msgstr "Default (impostazione predefinita)"
868
-
869
- #: modules/gmap/views/tpl/gmapEditMap.php:132
870
- msgid "Large"
871
- msgstr "Grande"
872
-
873
- #: modules/gmap/views/tpl/gmapEditMap.php:132
874
- msgid "Small"
875
- msgstr "Piccola"
876
-
877
- #: modules/gmap/views/tpl/gmapEditMap.php:138
878
- msgid "Change zoom control position on map"
879
- msgstr "Cambia la pozione del controllo zoom sulla mappa"
880
-
881
- #: modules/gmap/views/tpl/gmapEditMap.php:153
882
- msgid "Street view control"
883
- msgstr "Controllo Street-view"
884
-
885
- #: modules/gmap/views/tpl/gmapEditMap.php:155
886
- msgid "Street view control usually is located on left upper corner of your map"
887
- msgstr ""
888
- "Il controllo dello street-view è solitamente visibile nell'angolo in alto a "
889
- "sinistra della tua mappa"
890
-
891
- #: modules/gmap/views/tpl/gmapEditMap.php:165
892
- msgid "Change street view control position on map"
893
- msgstr "Cambia la posizione del controllo street-view sulla mappa"
894
-
895
- #: modules/gmap/views/tpl/gmapEditMap.php:180
896
- msgid "Pan control"
897
- msgstr "Controllo dello scorrimento"
898
-
899
- #: modules/gmap/views/tpl/gmapEditMap.php:182
900
- msgid ""
901
- "Pan control - allow you to pan over your map using mouse, usually is located "
902
- "on left upper corner of your map"
903
- msgstr ""
904
- "Controllo dello scorrimento - ti permette di scorrere sulla mappa usando il "
905
- "mouse, solitamente è posizionato nell'angolo in alto a sinistra della tua "
906
- "mappa"
907
-
908
- #: modules/gmap/views/tpl/gmapEditMap.php:192
909
- msgid "Change pan control position on map"
910
- msgstr "Cambia la posizione sulla mappa del controllo dello scorrimento"
911
-
912
- #: modules/gmap/views/tpl/gmapEditMap.php:207
913
- msgid "Overview control"
914
- msgstr "Controllo panoramica"
915
-
916
- #: modules/gmap/views/tpl/gmapEditMap.php:209
917
- msgid ""
918
- "Overview control for your map, by default is disabled, and if enabled - is "
919
- "located on the right bottom corner"
920
- msgstr ""
921
- "il controllo della Panoramica per la mappa è disabilitato per default. Se "
922
- "abilitato si trova nell'angolo in basso a destra"
923
-
924
- #: modules/gmap/views/tpl/gmapEditMap.php:214
925
- msgid "Opened"
926
- msgstr "Riquadro"
927
-
928
- #: modules/gmap/views/tpl/gmapEditMap.php:214
929
- msgid "Collapsed"
930
- msgstr "Pulsantino cliccabile"
931
-
932
- #: modules/gmap/views/tpl/gmapEditMap.php:223
933
- msgid "Draggable"
934
- msgstr "Trascinabile"
935
-
936
- #: modules/gmap/views/tpl/gmapEditMap.php:225
937
- msgid "Enable or disable possibility to drag your map using mouse"
938
- msgstr ""
939
- "Abilita o disabilitala possibilità di trascinare la tua mappa usando il "
940
- "mouse."
941
-
942
- #: modules/gmap/views/tpl/gmapEditMap.php:236
943
- msgid "Double click to zoom"
944
- msgstr "Doppio click per lo zoom"
945
-
946
- #: modules/gmap/views/tpl/gmapEditMap.php:238
947
- msgid ""
948
- "By default double left click on map will zoom it in. But you can change this "
949
- "here."
950
- msgstr ""
951
- "L'opzione predefinita fa sì che il doppio click sulla mappa corrisponda allo "
952
- "zoom-in . Ma tu puoi cambiare questa impostazione qui."
953
-
954
- #: modules/gmap/views/tpl/gmapEditMap.php:249
955
- msgid "Mouse wheel to zoom"
956
- msgstr "Rotella del mouse per controllo zoom"
957
-
958
- #: modules/gmap/views/tpl/gmapEditMap.php:251
959
- msgid ""
960
- "Sometimes you need to disable possibility to zoom your map using mouse "
961
- "wheel. This can be required for example - if you need to use your wheel for "
962
- "some other action, for example scroll your site even if mouse is over your "
963
- "map."
964
- msgstr ""
965
- "A volte c'è bisogno di disabilitare la possibilità di usare la rotella del "
966
- "mouse per controllare lo zoom della mappa. Questo può essere richiesto per "
967
- "esempio se hai bisogno che la rotella svolga altre azioni come lo scroll "
968
- "della pagina web del sito anche se il mouse è sopra la mappa."
969
-
970
- #: modules/gmap/views/tpl/gmapEditMap.php:262
971
- msgid "Google Map Theme"
972
- msgstr "Tema Google Map"
973
-
974
- #: modules/gmap/views/tpl/gmapEditMap.php:264
975
- msgid ""
976
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
977
- "Terrain - here. By default your map will have Road Map Google maps theme."
978
- msgstr ""
979
- "Puoi selezionare il tema della tua Google Map - stradale, ibrida, satellite, "
980
- "terra - qui. Di default (opzione predefinita) la tua mappa userà il tema "
981
- "stradale di Google Map."
982
-
983
- #: modules/gmap/views/tpl/gmapEditMap.php:268
984
- msgid "Road Map"
985
- msgstr "Stradale"
986
-
987
- #: modules/gmap/views/tpl/gmapEditMap.php:268
988
- msgid "Hybrid"
989
- msgstr "Ibrida"
990
-
991
- #: modules/gmap/views/tpl/gmapEditMap.php:268
992
- msgid "Satellite"
993
- msgstr "Satellite"
994
-
995
- #: modules/gmap/views/tpl/gmapEditMap.php:268
996
- msgid "Terrain"
997
- msgstr "Terra - Earth"
998
-
999
- #: modules/gmap/views/tpl/gmapEditMap.php:276
1000
- msgid "Traffic Layer"
1001
- msgstr "Livello traffico"
1002
-
1003
- #: modules/gmap/views/tpl/gmapEditMap.php:278
1004
- msgid "Add real-time traffic information to your map."
1005
- msgstr "Aggiungi informazioni sul traffico real-time sulla tua mappa"
1006
-
1007
- #: modules/gmap/views/tpl/gmapEditMap.php:293
1008
- msgid "Transit Layer"
1009
- msgstr "Livello trasporto pubblico"
1010
-
1011
- #: modules/gmap/views/tpl/gmapEditMap.php:295
1012
- msgid ""
1013
- "Display the public transit network of a city on your map. When the Transit "
1014
- "Layer is enabled, and the map is centered on a city that supports transit "
1015
- "information, the map will display major transit lines as thick, colored "
1016
- "lines."
1017
- msgstr ""
1018
- "Mostra la rete di trasporto pubblico di una città nella tua mappa. Quando il "
1019
- "livello è abilitato, e la mappa è centrata su una città che supporta questo "
1020
- "tipo di informazioni, la mappa mostrerà le principali linee di trasporto "
1021
- "come più spesse e colorate."
1022
-
1023
- #: modules/gmap/views/tpl/gmapEditMap.php:310
1024
- msgid "Bicycling Layer"
1025
- msgstr "Livello delle piste ciclabili"
1026
-
1027
- #: modules/gmap/views/tpl/gmapEditMap.php:312
1028
- msgid ""
1029
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1030
- "to bicycling usage on top of the given map.Dark green routes indicated "
1031
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1032
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1033
- "for bicycle usage."
1034
- msgstr ""
1035
- "Aggiungi il livello dei percorsi ciclabili, suggerisce strade percorribili "
1036
- "in bicicletta e altre coperture specifiche per l'uso delle bici in alto "
1037
- "nella mappa. Il verde scuro indica le strade dedicate alle bici. Il verde "
1038
- "chiaro indica le strade con piste ciclabili dedicate. Le linee tratteggiate "
1039
- "indicano strade o percorsi altrimenti raccomandati per l'uso della bici."
1040
-
1041
- #: modules/gmap/views/tpl/gmapEditMap.php:327
1042
- msgid "Map Stylization"
1043
- msgstr "Stile - Tema della mappa"
1044
-
1045
- #: modules/gmap/views/tpl/gmapEditMap.php:329
1046
- msgid ""
1047
- "Make your map unique with our Map Themes, just try to change it here - and "
1048
- "you will see results on your Map Preview."
1049
- msgstr ""
1050
- "Rendi la tua mappa unica con i nostri Temi per le mappe. Semplicemente prova "
1051
- "a cambiare tema qui - e vedrai il risultato nell'anteprima della mappa."
1052
-
1053
- #: modules/gmap/views/tpl/gmapEditMap.php:339
1054
- msgid "Get 300+ Themes with PRO"
1055
- msgstr "Ottieni 300+ temi con la versione PRO"
1056
-
1057
- #: modules/gmap/views/tpl/gmapEditMap.php:347
1058
- msgid "Markers List"
1059
- msgstr "Lista dei segnaposto"
1060
-
1061
- #: modules/gmap/views/tpl/gmapEditMap.php:349
1062
- msgid ""
1063
- "Display all map markers - as list bellow Your map. This will help your users "
1064
- "get more info about your markers and find required marker more faster."
1065
- msgstr ""
1066
- "Mostra tutti i segnaposto della mappa - come una lista sotto la tua mappa. "
1067
- "Questo aiuta gli utenti ad ottenere più informazioni sui segnaposto e a "
1068
- "trovare il segnaposto di loro interesse più velocemente."
1069
-
1070
- #: modules/gmap/views/tpl/gmapEditMap.php:356
1071
- msgid "Select Markers List type"
1072
- msgstr "Seleziona il tipo di lista dei segnaposto"
1073
-
1074
- #: modules/gmap/views/tpl/gmapEditMap.php:364
1075
- msgid "Markers Clusterization"
1076
- msgstr "Raggruppamento dei segnaposto"
1077
-
1078
- #: modules/gmap/views/tpl/gmapEditMap.php:366
1079
- msgid ""
1080
- "If you have many markers - you can have a problems with viewing them when "
1081
- "zoom out for example: they will just cover each-other. Marker clusterization "
1082
- "can solve this problem by grouping your markers in groups when they are too "
1083
- "close to each-other."
1084
- msgstr ""
1085
- "Se hai molti segnaposto potresti avere problemi con la visualizzazione "
1086
- "quando diminuisce lo zoom: i segnaposto potrebbero coprirsi a vicenda. La "
1087
- "clusterizzazione può risolvere il problema raggruppando i segnaposto quando "
1088
- "sono troppo vicini tra loro."
1089
-
1090
- #: modules/gmap/views/tpl/gmapEditMap.php:370
1091
- msgid "Base Clusterization"
1092
- msgstr "Raggruppamento base"
1093
-
1094
- #: modules/gmap/views/tpl/gmapEditMap.php:378
1095
- msgid "Full Screen Button"
1096
- msgstr "Bottone per lo schermo intero"
1097
-
1098
- #: modules/gmap/views/tpl/gmapEditMap.php:380
1099
- msgid "Add a button on map to open it full screen."
1100
- msgstr "Aggiungi un bottone alla mappa per poterla aprire a schermo intero"
1101
-
1102
- #: modules/gmap/views/tpl/gmapEditMap.php:395
1103
- msgid "Marker Title color"
1104
- msgstr "Colore del titolo del segnaposto"
1105
-
1106
- #: modules/gmap/views/tpl/gmapEditMap.php:397
1107
- msgid "You can set your markers title color here"
1108
- msgstr "Puoi impostare il colore del titolo del segnaposto qui."
1109
-
1110
- #: modules/gmap/views/tpl/gmapEditMap.php:407
1111
- msgid "Custom Map Controls"
1112
- msgstr "Controlli mappa personalizzati"
1113
-
1114
- #: modules/gmap/views/tpl/gmapEditMap.php:409
1115
- msgid "Add custom map controls to the map."
1116
- msgstr "Aggiungi alla mappa controlli personalizzati per la mappa"
1117
-
1118
- #: modules/gmap/views/tpl/gmapEditMap.php:422
1119
- msgid "Controls type"
1120
- msgstr "Controllo tipo"
1121
-
1122
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1123
- msgid "Round"
1124
- msgstr "Rotondo"
1125
-
1126
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1127
- msgid "Square"
1128
- msgstr "Quadrato"
1129
-
1130
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1131
- msgid "Square with rounded edges"
1132
- msgstr "Quadrato con angoli arrotondati"
1133
-
1134
- #: modules/gmap/views/tpl/gmapEditMap.php:431
1135
- msgid "Background color"
1136
- msgstr "Colore dello sfondo"
1137
-
1138
- #: modules/gmap/views/tpl/gmapEditMap.php:438
1139
- msgid "Text color"
1140
- msgstr "Colore del testo"
1141
-
1142
- #: modules/gmap/views/tpl/gmapEditMap.php:445
1143
- msgid "Controls position"
1144
- msgstr "Controllo posizione"
1145
-
1146
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1147
- msgid "Marker Name"
1148
- msgstr "Nome del segnaposto"
1149
-
1150
- #: modules/gmap/views/tpl/gmapEditMap.php:474
1151
- msgid "Your marker title"
1152
- msgstr "Titolo del tuo segnaposto"
1153
-
1154
- #: modules/gmap/views/tpl/gmapEditMap.php:485
1155
- msgid "Marker Description"
1156
- msgstr "Descrizione del segnaposto"
1157
-
1158
- #: modules/gmap/views/tpl/gmapEditMap.php:487
1159
- msgid ""
1160
- "Write here all text, that you want to appear in marker info-window PopUp"
1161
- msgstr ""
1162
- "Scrivi qui tutto il testo che vuoi che appaia nella finestra di informazioni "
1163
- "PopUp relativa al segnaposto"
1164
-
1165
- #: modules/gmap/views/tpl/gmapEditMap.php:503
1166
- msgid "Icon"
1167
- msgstr "Icona"
1168
-
1169
- #: modules/gmap/views/tpl/gmapEditMap.php:505
1170
- msgid "Your marker Icon, that will appear on your map for this marker"
1171
- msgstr ""
1172
- "L'icona del tuo segnaposto. Apparirà sulla tua mappa per questo segnaposto"
1173
-
1174
- #: modules/gmap/views/tpl/gmapEditMap.php:512
1175
- msgid "Choose Icon"
1176
- msgstr "Scegli l'icona"
1177
-
1178
- #: modules/gmap/views/tpl/gmapEditMap.php:513
1179
- msgid "Upload Icon"
1180
- msgstr "Carica icona"
1181
-
1182
- #: modules/gmap/views/tpl/gmapEditMap.php:525
1183
- msgid "Search your location by address, just start typing here"
1184
- msgstr "Cerca un luogo tramite indirizzo, inizia scrivendo qui"
1185
-
1186
- #: modules/gmap/views/tpl/gmapEditMap.php:537
1187
- msgid "Latitude"
1188
- msgstr "Latitudine"
1189
-
1190
- #: modules/gmap/views/tpl/gmapEditMap.php:539
1191
- msgid "Latitude for your marker"
1192
- msgstr "Latitudine del segnaposto"
1193
-
1194
- #: modules/gmap/views/tpl/gmapEditMap.php:551
1195
- msgid "Longitude"
1196
- msgstr "Longitudine"
1197
-
1198
- #: modules/gmap/views/tpl/gmapEditMap.php:553
1199
- msgid "Longitude for your marker"
1200
- msgstr "Longitudine del segnaposto"
1201
-
1202
- #: modules/gmap/views/tpl/gmapEditMap.php:565
1203
- msgid "Show description by default"
1204
- msgstr "Mostra la descrizione come opzione predefinita"
1205
-
1206
- #: modules/gmap/views/tpl/gmapEditMap.php:567
1207
- msgid "Open marker description when map load"
1208
- msgstr "Apri la descrizione del segnaposto quando la mappa viene caricata"
1209
-
1210
- #: modules/gmap/views/tpl/gmapEditMap.php:577
1211
- msgid "Marker Link"
1212
- msgstr "Link del segnaposto"
1213
-
1214
- #: modules/gmap/views/tpl/gmapEditMap.php:579
1215
- msgid "Link for opening by click on the marker"
1216
- msgstr "Link da aprire cliccando sul segnaposto"
1217
-
1218
- #: modules/gmap/views/tpl/gmapEditMap.php:594
1219
- msgid "Open in new window"
1220
- msgstr "Apri in una nuova finestra"
1221
-
1222
- #: modules/gmap/views/tpl/gmapEditMap.php:602
1223
- msgid "Show description by mouse hover"
1224
- msgstr "Mostra la descrizione al passaggio del mouse"
1225
-
1226
- #: modules/gmap/views/tpl/gmapEditMap.php:604
1227
- msgid "Open marker description by mouse hover"
1228
- msgstr "Apri la descrizione del segnaposto al passaggio del mouse"
1229
-
1230
- #: modules/gmap/views/tpl/gmapEditMap.php:614
1231
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:10
1232
- msgid "Marker Category"
1233
- msgstr "Categoria seganposto"
1234
-
1235
- #: modules/gmap/views/tpl/gmapEditMap.php:616
1236
- msgid "Choose marker category"
1237
- msgstr "Scegli la categoria del segnaposto"
1238
-
1239
- #: modules/gmap/views/tpl/gmapEditMap.php:643
1240
- msgid "Map shortcode"
1241
- msgstr "Shortcode della mappa"
1242
-
1243
- #: modules/gmap/views/tpl/gmapEditMap.php:648
1244
- msgid "PHP code"
1245
- msgstr "codice PHP"
1246
-
1247
- #: modules/gmap/views/tpl/gmapEditMap.php:654
1248
- msgid "Shortcode will appear after you save map."
1249
- msgstr "Lo shortcode relativo alla mappa apparirà dopo che l'avrai salvata"
1250
-
1251
- #: modules/gmap/views/tpl/gmapEditMap.php:662
1252
- msgid "Save Map"
1253
- msgstr "Salva la mappa"
1254
-
1255
- #: modules/gmap/views/tpl/gmapEditMap.php:668
1256
- msgid "Delete Map"
1257
- msgstr "Cancella la mappa"
1258
-
1259
- #: modules/gmap/views/tpl/gmapEditMap.php:677
1260
- msgid "Save Marker"
1261
- msgstr "Salva segnaposto"
1262
-
1263
- #: modules/gmap/views/tpl/gmapEditMap.php:683
1264
- msgid "Delete Marker"
1265
- msgstr "Cancella il segnaposto"
1266
-
1267
- #: modules/gmap/views/tpl/gmapEditMap.php:704
1268
- msgid "Delete"
1269
- msgstr "Cancella"
1270
-
1271
- #: modules/gmap/views/tpl/gmapEditMap.php:731
1272
- msgid "Show markers list with your map on frontend"
1273
- msgstr "Mostra la lista dei segnaposto con la tua mappa nel frontend"
1274
-
1275
- #: modules/gmap/views/tpl/gmapEditMap.php:738
1276
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1277
- msgid "Apply"
1278
- msgstr "Applica"
1279
-
1280
- #: modules/gmap/views/tpl/gmapEditMap.php:738
1281
- msgid "Selected"
1282
- msgstr "Selezionato"
1283
-
1284
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1285
- msgid "Available in PRO"
1286
- msgstr "Disponibile nella versione PRO"
1287
-
1288
- #: modules/gmap/views/tpl/gmapListMarkers.php:20
1289
- #, php-format
1290
- msgid "and %s more"
1291
- msgstr "e altri %s "
1292
-
1293
- #: modules/gmap_widget/mod.php:18
1294
- msgid "Displays Most Viewed Products"
1295
- msgstr "Mostra i prodotti più visualizzati"
1296
-
1297
- #: modules/gmap_widget/views/gmap_widget.php:15
1298
- msgid "You have no maps"
1299
- msgstr "Non ci sono mappe"
1300
-
1301
- #: modules/gmap_widget/views/tpl/form.php:10
1302
- msgid "Select map"
1303
- msgstr "Seleziona una mappa"
1304
-
1305
- #: modules/gmap_widget/views/tpl/form.php:18
1306
- msgid "Widget Map width"
1307
- msgstr "Larghezza del widget della mappa"
1308
-
1309
- #: modules/gmap_widget/views/tpl/form.php:25
1310
- msgid "Widget Map height"
1311
- msgstr "Altezza del widget della mappa"
1312
-
1313
- #: modules/gmap_widget/views/tpl/form.php:32
1314
- msgid "Display as image"
1315
- msgstr "Visualizza come immagine"
1316
-
1317
- #: modules/gmap_widget/views/tpl/form.php:40
1318
- msgid ""
1319
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1320
- msgstr ""
1321
- "La mappa sarà visualizzata come una immagine nella sidebar, al click sarà "
1322
- "aperta in una finestra popup"
1323
-
1324
- #: modules/gmap_widget/views/tpl/form.php:42
1325
- msgid "Image width (in px)"
1326
- msgstr "Larghezza dell'immagine in px"
1327
-
1328
- #: modules/gmap_widget/views/tpl/form.php:49
1329
- msgid "Image height (in px)"
1330
- msgstr "Altezza dell'immagine in px"
1331
-
1332
- #: modules/icons/controller.php:20
1333
- msgid "Empty url"
1334
- msgstr "Url vuoto"
1335
-
1336
- #: modules/icons/models/icons.php:43
1337
- msgid "Icon no found"
1338
- msgstr "Icona non trovata"
1339
-
1340
- #: modules/icons/models/icons.php:95
1341
- msgid "File not found"
1342
- msgstr "file non trovato"
1343
-
1344
- #: modules/icons/models/icons.php:100
1345
- msgid "Cannot get image"
1346
- msgstr "Non è possibile ottenere l'immagine"
1347
-
1348
- #: modules/icons/models/icons.php:111
1349
- msgid "cannot insert to table"
1350
- msgstr "non si può inserire in tabella"
1351
-
1352
- #: modules/mail/mod.php:33
1353
- msgid "Can not send email - problem with send server"
1354
- msgstr "Non si può inviare la mail - problemi con il server d'invio"
1355
-
1356
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
1357
- msgid "Marker Not Found"
1358
- msgstr "Segnaposto non trovato"
1359
-
1360
- #: modules/marker/controller.php:48
1361
- msgid "Cannot remove marker"
1362
- msgstr "Il segnaposto non può essere rimosso"
1363
-
1364
- #: modules/marker/controller.php:63
1365
- msgid "Cannot remove markers"
1366
- msgstr "I segnaposti non possono essere rimossi"
1367
-
1368
- #: modules/marker/controller.php:144
1369
- msgid "Empty or invalid marker ID"
1370
- msgstr "ID del segnaposto vuoto o non valido"
1371
-
1372
- #: modules/marker/mod.php:21
1373
- msgid "Drop"
1374
- msgstr "Rilascia"
1375
-
1376
- #: modules/marker/mod.php:22
1377
- msgid "Bounce"
1378
- msgstr ""
1379
-
1380
- #: modules/marker/models/marker.php:49
1381
- msgid "Please enter marker name"
1382
- msgstr "Per favore inserisci un nome per il segnaposto"
1383
-
1384
- #: modules/marker/models/marker.php:192
1385
- msgid "Address is empty or not match"
1386
- msgstr "L'indirizzo è vuoto o non corrisponde"
1387
-
1388
- #: modules/marker/models/marker.php:248
1389
- msgid "Invalid Marker ID"
1390
- msgstr "ID del segnaposto non valido"
1391
-
1392
- #: modules/marker_groups/controller.php:31
1393
- msgid "Marker Category data not found"
1394
- msgstr "Non sono stati trovati dati relativi alla categoria del segnaposto"
1395
-
1396
- #: modules/marker_groups/mod.php:8
1397
- msgid "Marker Categories"
1398
- msgstr "Categorie segnaposto"
1399
-
1400
- #: modules/marker_groups/mod.php:11
1401
- msgid "Add New"
1402
- msgstr "Aggiungi nuovo"
1403
-
1404
- #: modules/marker_groups/mod.php:24
1405
- msgid "No Marker Category Found"
1406
- msgstr "Non è stata trovata una categoria segnaposto"
1407
-
1408
- #: modules/marker_groups/models/marker_groups.php:39
1409
- msgid "Please enter Marker Category"
1410
- msgstr "Per favore inserisci la categoria per il segnaposto"
1411
-
1412
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5
1413
- msgid "Add Category"
1414
- msgstr "Aggiungi categoria"
1415
-
1416
- #: modules/marker_groups/views/tpl/mgrAdmin.php:30
1417
- #, php-format
1418
- msgid ""
1419
- "You have no Marker Categories for now. <a href='%s' style='font-style: "
1420
- "italic;'>Create</a> your first Marker Category!"
1421
- msgstr ""
1422
- "Non ci sono categorie per i segnaposto. <a href='%s' style='font-style: "
1423
- "italic;'>Crea</a> la tua prima categoria per i segnaposto!"
1424
-
1425
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:20
1426
- msgid "Save"
1427
- msgstr "Salva"
1428
-
1429
- #: modules/options/mod.php:84
1430
- msgid "General"
1431
- msgstr "Generale"
1432
-
1433
- #: modules/options/mod.php:86
1434
- msgid "Send usage statistics"
1435
- msgstr "Invia statistiche di utilizzo"
1436
-
1437
- #: modules/options/models/modules.php:32
1438
- msgid "Module Updated"
1439
- msgstr "Modulo aggiornato"
1440
-
1441
- #: modules/options/models/modules.php:47
1442
- msgid "Module Update Failed"
1443
- msgstr "Aggiornamento del modulo: fallito"
1444
-
1445
- #: modules/options/models/modules.php:50
1446
- msgid "Error module ID"
1447
- msgstr "Errore ID del modulo"
1448
-
1449
- #: modules/options/models/options.php:63
1450
- msgid "Empty data to save option"
1451
- msgstr "Nessun dato per salvare le opzioni."
1452
-
1453
- #: modules/options/views/tpl/optionsAdminMain.php:18
1454
- msgid "Main page Go here!!!!"
1455
- msgstr "La pagina principale va qui!!!"
1456
-
1457
- #: modules/options/views/tpl/optionsAdminPage.php:31
1458
- msgid "Improve Free version"
1459
- msgstr "Migliora la versione gratuita"
1460
-
1461
- #: modules/options/views/tpl/optionsAdminPage.php:33
1462
- #, php-format
1463
- msgid ""
1464
- "Please be advised that this option is available only in <a target='_blank' "
1465
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1466
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1467
- "PopUps!"
1468
- msgstr ""
1469
- "Cortesemente, sappi che questa opzione è disponibile sono nella <a "
1470
- "target='_blank' href='%s'> versione PRO </a>. Puoi <a target='_blank' "
1471
- "href='%s' class='button'> ottenere la versione PRO</a> oggi stesso e con "
1472
- "essa avrai questa e altre opzioni PRO per la tua mappa!"
1473
-
1474
- #: modules/supsystic_promo/controller.php:7
1475
- msgid "Information was saved. Thank you!"
1476
- msgstr "L'informazione è stata salvata. Grazie!"
1477
-
1478
- #: modules/supsystic_promo/controller.php:23
1479
- msgid ""
1480
- "Please don't send contact requests so often - wait for response for your "
1481
- "previous requests."
1482
- msgstr ""
1483
- "Per favore non mandarci così spesso delle richieste di contatto - aspetta la "
1484
- "risposta per la tua precedente richiesta"
1485
-
1486
- #: modules/supsystic_promo/controller.php:45
1487
- msgid "Please enter valid email address"
1488
- msgstr "Per favore inserisci un indirizzo mail valido"
1489
-
1490
- #: modules/supsystic_promo/mod.php:24
1491
- msgid "Overview"
1492
- msgstr "Panoramica"
1493
-
1494
- #: modules/supsystic_promo/mod.php:50
1495
- msgid "Welcome to Supsystic Secure"
1496
- msgstr "Benvenuto nella Supsystic Secure"
1497
-
1498
- #: modules/supsystic_promo/mod.php:131
1499
- msgid "Name"
1500
- msgstr "Nome"
1501
-
1502
- #: modules/supsystic_promo/mod.php:133
1503
- msgid "Website"
1504
- msgstr "Sito web"
1505
-
1506
- #: modules/supsystic_promo/mod.php:134
1507
- msgid "Subject"
1508
- msgstr "Oggetto"
1509
-
1510
- #: modules/supsystic_promo/mod.php:135
1511
- msgid "Topic"
1512
- msgstr "Argomento"
1513
-
1514
- #: modules/supsystic_promo/mod.php:136
1515
- msgid "Plugin options"
1516
- msgstr "Opzioni del plugin"
1517
-
1518
- #: modules/supsystic_promo/mod.php:137
1519
- msgid "Report a bug"
1520
- msgstr "Segnala un errore (bug)"
1521
-
1522
- #: modules/supsystic_promo/mod.php:138
1523
- msgid "Require a new functionallity"
1524
- msgstr "Richiedi una nuova funzionalità"
1525
-
1526
- #: modules/supsystic_promo/mod.php:139
1527
- msgid "Other"
1528
- msgstr "Altro"
1529
-
1530
- #: modules/supsystic_promo/mod.php:141
1531
- msgid "Message"
1532
- msgstr "Messaggio"
1533
-
1534
- #: modules/supsystic_promo/mod.php:141
1535
- msgid "Hello Supsystic Team!"
1536
- msgstr "Ciao Supsystic Team!"
1537
-
1538
- #: modules/supsystic_promo/views/supsystic_promo.php:30
1539
- msgid "How to use Google Maps Easy Widget?"
1540
- msgstr "Come usare il widget di Google Maps Easy"
1541
-
1542
- #: modules/supsystic_promo/views/supsystic_promo.php:31
1543
- msgid ""
1544
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
1545
- "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
1546
- "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
1547
- "map for widget and configure the settings - Widget Map width and height.<br /"
1548
- ">5. Click 'Save'."
1549
- msgstr ""
1550
- "1. Vai su Aspetto -> Widgets nel menù di navigazione di WordPress.<br />2. "
1551
- "Trova Google Maps Easy nella lista dei widgets disponibili.<br />3. Trascina "
1552
- "il widget di Google Maps Easy widget nella widget area, dove vuoi che appaia."
1553
- "<br />4. Scegli la mappa da inserire nel widget e configura le impostazioni "
1554
- "- larghezza e altezza del Widget Map.<br />5. Clicca su 'Salva'."
1555
-
1556
- #: modules/supsystic_promo/views/supsystic_promo.php:32
1557
- msgid "How to add map into the site content?"
1558
- msgstr "Come aggiungere la mappa nel content del sito?"
1559
-
1560
- #: modules/supsystic_promo/views/supsystic_promo.php:33
1561
- msgid ""
1562
- "You can add a map in the site content via shortcode or php code. Learn more "
1563
- "about how to do this <a href='http://supsystic.com/add-map-into-site-"
1564
- "content/'>here</a>."
1565
- msgstr ""
1566
- "Puoi aggiungere una mappa nel content del sito attraverso uno shortcode o "
1567
- "con del codice php. Impare di più su come fare <a href='http://supsystic.com/"
1568
- "add-map-into-site-content/'> cliccando qui </a>."
1569
-
1570
- #: modules/supsystic_promo/views/supsystic_promo.php:34
1571
- msgid "How to add map in popup window?"
1572
- msgstr "Come aggiungere la mappa in una finestra popup?"
1573
-
1574
- #: modules/supsystic_promo/views/supsystic_promo.php:35
1575
- msgid ""
1576
- "You can add a map in popup window by inserting map shortcode in any popup "
1577
- "text field. Learn more about how to do this <a href='http://supsystic.com/"
1578
- "add-map-in-popup-window/'>here</a>."
1579
- msgstr ""
1580
- "Puoi aggiungere una mappa in una finestra pop-up inserendo lo shortcode "
1581
- "della mappa in qualsiasi campo testuale per popup. Impara di più su come "
1582
- "farlo <a href='http://supsystic.com/add-map-in-popup-window/'> cliccando "
1583
- "qui</a>."
1584
-
1585
- #: modules/supsystic_promo/views/supsystic_promo.php:36
1586
- msgid "How to zoom and center the initial map on markers ?"
1587
- msgstr "Come zoomare e centrale la mappa iniziare sui segnaposto?"
1588
-
1589
- #: modules/supsystic_promo/views/supsystic_promo.php:37
1590
- msgid ""
1591
- "There is a few different ways to zoom and centralize map. The easiest one is "
1592
- "to drag your map using mouse - 'Draggable' option must be enabled, or with "
1593
- "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
1594
- "zoom-and-center-the-initial-map-on-markers/'>Read more..</a>"
1595
- msgstr ""
1596
- "Ci sono molti modi per centrare la mappa e usare lo zoom. Il più semplice è "
1597
- "trascinare la mappa con il mouse - l'opzione 'trascinabile' deve essere "
1598
- "abilitata, oppure il controllo della panoramica ti aiuta nella anteprima. <a "
1599
- "href='http://supsystic.com/how-to-zoom-and-center-the-initial-map-on-"
1600
- "markers/'> per approfondimenti…clicca qui</a>"
1601
-
1602
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1603
- msgid "How to get PRO version of plugin for FREE?"
1604
- msgstr "Come avere la versione PRO del plugin gratuitamente?"
1605
-
1606
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1607
- #, php-format
1608
- msgid ""
1609
- "You have an incredible opportunity to get PRO version for free. Make "
1610
- "Translation of plugin! It will be amazing if you take advantage of this "
1611
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
1612
- "version of any plugin for FREE'</a>"
1613
- msgstr ""
1614
- "Hai l'incredibile opportunità di ottenere gratis la versione PRO del plugin. "
1615
- "Traduci il plugin! Sarà fantastico cogliere questa occasione! Puoi avere più "
1616
- "informazioni qui <a target='_blank' href='%s'>'Ottieni la versione PRO "
1617
- "gratuitamente'</a>"
1618
-
1619
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1620
- msgid "Translation"
1621
- msgstr "Traduzione"
1622
-
1623
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1624
- #, php-format
1625
- msgid ""
1626
- "All available languages are provided with the Supsystic Google Maps plugin. "
1627
- "If your language isn't available, your plugin will be in English by default."
1628
- "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
1629
- "b><br />Translate or update a translation Google Maps WordPress plugin in "
1630
- "your language and get a Premium license for FREE. <a target='_blank' "
1631
- "href='%s'>Contact us</a>."
1632
- msgstr ""
1633
- "Tutte le lingue disponibili sono già inserite con il plugin Supsystic Google "
1634
- "Maps. Se la tua lingua non è disponibile, il tuo plugin sarà visualizzato, "
1635
- "per default, in inglese.<br /><b>Traduzioni disponibili: Inglese</b><br /"
1636
- ">Traduci o aggiorna una traduzione di Google Maps WordPress plugin nella tua "
1637
- "lingua e avrai la licenza Premium gratuitamente. <a target='_blank' "
1638
- "href='%s'>Contattaci</a>."
1639
-
1640
- #: modules/supsystic_promo/views/supsystic_promo.php:55
1641
- #, php-format
1642
- msgid ""
1643
- "There were some problem while trying to retrive our news, but you can always "
1644
- "check all list <a target='_blank' href='%s'>here</a>."
1645
- msgstr ""
1646
- "Ci sono problemi nel recuperare le nostre novità, ma puoi pur sempre "
1647
- "controllare tutte le liste <a target='_blank' href='%s'>qui</a>."
1648
-
1649
- #: modules/supsystic_promo/views/supsystic_promo.php:65
1650
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1651
- #: modules/supsystic_promo/views/supsystic_promo.php:71
1652
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1653
- #: modules/supsystic_promo/views/supsystic_promo.php:74
1654
- msgid "Yes"
1655
- msgstr "Si"
1656
-
1657
- #: modules/supsystic_promo/views/supsystic_promo.php:65
1658
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1659
- #: modules/supsystic_promo/views/supsystic_promo.php:71
1660
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1661
- #: modules/supsystic_promo/views/supsystic_promo.php:74
1662
- msgid "No"
1663
- msgstr "No"
1664
-
1665
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
1666
- #: modules/supsystic_promo/views/tpl/welcomePage.php:78
1667
- msgid "Version"
1668
- msgstr "Versione"
1669
-
1670
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1671
- msgid "Go"
1672
- msgstr "Vai"
1673
-
1674
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1675
- msgid "PRO"
1676
- msgstr "PRO"
1677
-
1678
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
1679
- msgid "Support"
1680
- msgstr "Supporto"
1681
-
1682
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
1683
- msgid "Add your"
1684
- msgstr "Aggiungi il tuo"
1685
-
1686
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1687
- msgid "FAQ and Documentation"
1688
- msgstr "FAQ e Documentazione"
1689
-
1690
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1691
- msgid "Check all FAQs"
1692
- msgstr "Controlla tutte le FAQs"
1693
-
1694
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1695
- #: modules/supsystic_promo/views/tpl/welcomePage.php:102
1696
- msgid "Video tutorial"
1697
- msgstr "Video tutorial"
1698
-
1699
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1700
- msgid "PRO Features"
1701
- msgstr "Caratteristiche PRO"
1702
-
1703
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
1704
- msgid "Server Settings"
1705
- msgstr "Impostazioni del Server"
1706
-
1707
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
1708
- msgid "News"
1709
- msgstr "Novità"
1710
-
1711
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
1712
- msgid "All news and info"
1713
- msgstr "Tutte le novità e le informazioni"
1714
-
1715
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
1716
- msgid "Contact form"
1717
- msgstr "Modulo di contatto"
1718
-
1719
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1720
- msgid "Send email"
1721
- msgstr "Invia email"
1722
-
1723
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
1724
- msgid ""
1725
- "Your email was send, we will try to respond to you as soon as possible. "
1726
- "Thank you for support!"
1727
- msgstr ""
1728
- "La tua mail è stata inviata, cercheremo di risponderti il più presto "
1729
- "possibile. Grazie per il tuo supporto!"
1730
-
1731
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
1732
- msgid "Welcome to"
1733
- msgstr "Benvenuto "
1734
-
1735
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
1736
- #, php-format
1737
- msgid "This is first start up of the %s plugin."
1738
- msgstr "Questo è il primo avvio del plugin %s"
1739
-
1740
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
1741
- msgid ""
1742
- "If you are newbie - check all features on that page, if you are guru - "
1743
- "please correct us."
1744
- msgstr ""
1745
- "Se sei un neofita puoi trovare le caratteristiche in questa pagina, se sei "
1746
- "un guru - per favore correggici "
1747
-
1748
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
1749
- msgid "Please, post url"
1750
- msgstr "Per favore invia un url"
1751
-
1752
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
1753
- msgid "What to do next? Check below section"
1754
- msgstr "Cosa fare dopo? Controlla la sezione seguente"
1755
-
1756
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
1757
- msgid "Boost us"
1758
- msgstr "Dacci lo slancio!"
1759
-
1760
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
1761
- #, php-format
1762
- msgid ""
1763
- "It's amazing when you boost development with your feedback and ratings. So "
1764
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
1765
- "help us."
1766
- msgstr ""
1767
- "è fantastico come i tuoi feedback e il punteggio che ci assegni siano di "
1768
- "stimolo per noi. Per questo abbiamo creato una <a target='_blank' href='%s'> "
1769
- "pagina 'di slancio' </a> speciale per aiutarti ad aiutarci!"
1770
-
1771
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
1772
- msgid "Documentation"
1773
- msgstr "Documentazione"
1774
-
1775
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
1776
- #, php-format
1777
- msgid ""
1778
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
1779
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
1780
- msgstr ""
1781
- "Controlla <a target='_blank' href='%s'> la documentazione</a> e la sezione "
1782
- "FAQ. Se non riesci comunque a risolvere il problema, <a target='_blank' "
1783
- "href='%s'>contattaci</a>."
1784
-
1785
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
1786
- msgid "Full Features List"
1787
- msgstr "Lista completa delle caratteristiche"
1788
-
1789
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
1790
- msgid "There are so many features, so we can't post it here. Like"
1791
- msgstr ""
1792
- "Ci sono così tante caratteristiche che non possiamo scriverle qui. Come"
1793
-
1794
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
1795
- msgid "Capcha for admin login"
1796
- msgstr "Capcha per il login dell'admin (amministratore)"
1797
-
1798
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
1799
- msgid "htaccess admin protect"
1800
- msgstr "protezione htaccess admin "
1801
-
1802
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
1803
- msgid "Hide directory files listing"
1804
- msgstr ""
1805
-
1806
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
1807
- msgid "Check files and directories write permissions"
1808
- msgstr "Controlla i permessi di scrittura per files e cartelle"
1809
-
1810
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
1811
- #, php-format
1812
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
1813
- msgstr ""
1814
- "Così controlla la lista completa delle caratteristiche<a target='_blank' "
1815
- "href='%s'>qui</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-nb_NO.mo DELETED
Binary file
lang/gmp_lng-nb_NO.po DELETED
@@ -1,2093 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2015-12-10 19:04+0300\n"
5
- "PO-Revision-Date: 2017-12-15 13:21+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language: nb_NO\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.9\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
- "X-Poedit-SearchPathExcluded-0: js\n"
18
- "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
19
-
20
- #: classes/controller.php:198 classes/controller.php:206
21
- #: doc/google-maps-easy-pro/kml/controller.php:9
22
- #: doc/google-maps-easy-pro/license/controller.php:6
23
- #: modules/adminmenu/controller.php:29 modules/gmap/controller.php:40
24
- #: modules/gmap/controller.php:57 modules/marker/controller.php:8
25
- #: modules/marker/controller.php:46 modules/marker/controller.php:61
26
- #: modules/marker/controller.php:101 modules/marker_groups/controller.php:58
27
- #: modules/options/controller.php:6
28
- msgid "Done"
29
- msgstr "Fullført"
30
-
31
- #: classes/field.php:131
32
- msgid "Select"
33
- msgstr "Velg"
34
-
35
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
36
- msgid "N/A"
37
- msgstr "Ikke tilgjengelig"
38
-
39
- #: classes/field.php:277
40
- msgid "Add Checkbox"
41
- msgstr "Legg til avkryssningsboks"
42
-
43
- #: classes/field.php:282 classes/field.php:287
44
- msgid "Add Item"
45
- msgstr "Legg til element"
46
-
47
- #: classes/field.php:293
48
- msgid "Add Radio Button"
49
- msgstr "Legg til alternativ-knapp"
50
-
51
- #: classes/field.php:311
52
- msgid "Dimensions"
53
- msgstr "Dimensjoner"
54
-
55
- #: classes/field.php:314
56
- msgid "width"
57
- msgstr "bredde"
58
-
59
- #: classes/field.php:316
60
- msgid "height"
61
- msgstr "høyde"
62
-
63
- #: classes/field.php:323
64
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
65
- msgstr "Klikk for å sette feltene &quot;id&quot; og 'klasse'"
66
-
67
- #: classes/field.php:324
68
- msgid "Attributes"
69
- msgstr "Attributter"
70
-
71
- #: classes/field.php:402
72
- msgid "There are no configuration options for this module"
73
- msgstr "Det er ingen konfigurasjonsmuligheter for denne modulen"
74
-
75
- #: classes/fieldAdapter.php:93
76
- msgid "Apply To"
77
- msgstr "Bruk på"
78
-
79
- #: classes/fieldAdapter.php:95
80
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:52
81
- #: modules/gmap/views/tpl/gmapEditMap.php:863
82
- msgid "Address"
83
- msgstr "Adresse"
84
-
85
- #: classes/fieldAdapter.php:96
86
- msgid "Destination"
87
- msgstr "Destinasjon"
88
-
89
- #: classes/fieldAdapter.php:97
90
- msgid "Country"
91
- msgstr "Land"
92
-
93
- #: classes/fieldAdapter.php:100
94
- msgid "Categories"
95
- msgstr "Kategorier"
96
-
97
- #: classes/fieldAdapter.php:101
98
- msgid "You have no categories"
99
- msgstr "Du har ingen kategorier"
100
-
101
- #: classes/fieldAdapter.php:102
102
- msgid "Brands"
103
- msgstr "Merker"
104
-
105
- #: classes/fieldAdapter.php:103
106
- msgid "You have no brands"
107
- msgstr "Du har ingen merker"
108
-
109
- #: classes/fieldAdapter.php:105
110
- msgid "Tax Rate"
111
- msgstr "Moms"
112
-
113
- #: classes/fieldAdapter.php:106
114
- msgid "Absolute"
115
- msgstr "Absolutt"
116
-
117
- #: classes/fieldAdapter.php:134
118
- msgid "Not selected"
119
- msgstr "Ikke valgt"
120
-
121
- #: classes/fieldAdapter.php:184
122
- msgid "class"
123
- msgstr "klasse"
124
-
125
- #: classes/fieldAdapter.php:186
126
- msgid "id"
127
- msgstr "id"
128
-
129
- #: classes/frame.php:136
130
- msgid "You have no permissions to view this page"
131
- msgstr "Du har ikke rettigheter til å vise denne siden"
132
-
133
- #: classes/html.php:207
134
- msgid "Upload"
135
- msgstr "Last opp"
136
-
137
- #: classes/html.php:611
138
- msgid "ON"
139
- msgstr "PÅ"
140
-
141
- #: classes/html.php:612
142
- msgid "OFF"
143
- msgstr "AV"
144
-
145
- #: classes/html.php:636
146
- #, php-format
147
- msgid "Select %s"
148
- msgstr "Velg %s"
149
-
150
- #: classes/modInstaller.php:34
151
- #, php-format
152
- msgid "Move files for %s failed"
153
- msgstr "Flytting av filer for %s mislyktes"
154
-
155
- #: classes/modInstaller.php:37
156
- #, php-format
157
- msgid "%s is not plugin module"
158
- msgstr "%s er ikke en utvidelses-modul"
159
-
160
- #: classes/modInstaller.php:76
161
- msgid "Can not create module directory. Try to set permission to "
162
- msgstr "Kan ikke opprette modul-katalog. Prøv å sett rettigheter til"
163
-
164
- #: classes/modInstaller.php:103
165
- msgid "No modules were found in XML file"
166
- msgstr "Ingen moduler ble funnet i XML-fil"
167
-
168
- #: classes/modInstaller.php:107
169
- msgid "Invalid XML file"
170
- msgstr "Ugyldig XML-fil"
171
-
172
- #: classes/modInstaller.php:109
173
- msgid "No XML file were found"
174
- msgstr "Ingen XML-fil ble funnet"
175
-
176
- #: classes/modInstaller.php:128
177
- #, php-format
178
- msgid "Install %s failed"
179
- msgstr "Instalasjon av %s mislyktes"
180
-
181
- #: classes/modInstaller.php:134
182
- msgid "Error Activate module"
183
- msgstr "Feil i aktivering av modul"
184
-
185
- #: classes/modInstaller.php:164
186
- msgid "Error Deactivation module"
187
- msgstr "Feil i deaktivering av modul"
188
-
189
- #: classes/modInstaller.php:185
190
- msgid "Error Activating module"
191
- msgstr "Feil i aktivering av modul"
192
-
193
- #: classes/model.php:174 classes/model.php:186
194
- msgid "Database error detected"
195
- msgstr "Databasefeil oppdaget"
196
-
197
- #: classes/model.php:176 modules/gmap/models/gmap.php:116
198
- #: modules/icons/models/icons.php:148
199
- #: modules/marker_groups/models/marker_groups.php:47
200
- msgid "Invalid ID"
201
- msgstr "Ugyldig ID"
202
-
203
- #: classes/model.php:209
204
- msgid "Empty or invalid ID"
205
- msgstr "Tom eller ugyldig ID"
206
-
207
- #: classes/table.php:277
208
- msgid "Nothig to update"
209
- msgstr "Ingen å oppdatere"
210
-
211
- #: classes/table.php:293
212
- msgid "Database error. Please contact your developer."
213
- msgstr "Databasefeil. Vennligst ta kontakt med utvikler."
214
-
215
- #: classes/tables/marker.php:7 classes/tables/marker_groups.php:8
216
- msgid "Map ID"
217
- msgstr "Kart-ID"
218
-
219
- #: classes/tables/marker.php:8 classes/tables/marker_groups.php:9
220
- msgid "File name"
221
- msgstr "Filnavn"
222
-
223
- #: classes/tables/marker.php:9 classes/tables/marker_groups.php:10
224
- msgid "Description Of Map"
225
- msgstr "Beskrivelse av kart"
226
-
227
- #: classes/tables/marker.php:10
228
- msgid "X coordinate if marker(lng)"
229
- msgstr "X-koordinater hvis markør(lng)"
230
-
231
- #: classes/tables/marker.php:11
232
- msgid "Y coordinate of marker(lat)"
233
- msgstr "Y-koordinater av markør(lat)"
234
-
235
- #: classes/tables/marker.php:12
236
- msgid "Path of icon file"
237
- msgstr "Ikonets filbane"
238
-
239
- #: classes/tables/marker.php:13
240
- msgid "Map Id"
241
- msgstr "Kart-ID"
242
-
243
- #: classes/tables/marker.php:14
244
- msgid "Marker Address"
245
- msgstr "Markør-adresse"
246
-
247
- #: classes/tables/marker.php:15
248
- msgid "Id of Marker's group"
249
- msgstr "Markørens gruppe-ID"
250
-
251
- #: classes/tables/marker.php:16
252
- msgid "Animation"
253
- msgstr "Animasjon"
254
-
255
- #: classes/tables/marker.php:17 classes/tables/modules.php:10
256
- #: classes/tables/options.php:11
257
- msgid "Params"
258
- msgstr "Parametre"
259
-
260
- #: classes/tables/marker.php:18 classes/tables/options.php:15
261
- msgid "Sort Order"
262
- msgstr "Sorteringsrekkefølge"
263
-
264
- #: classes/tables/marker.php:19
265
- msgid "Creation date"
266
- msgstr "Opprettelsesdato"
267
-
268
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8
269
- #: classes/tables/options.php:10
270
- msgid "Label"
271
- msgstr "Etikett"
272
-
273
- #: classes/tables/modules.php:8 classes/tables/options.php:13
274
- msgid "Type"
275
- msgstr "Type"
276
-
277
- #: classes/tables/modules.php:9
278
- msgid "Active"
279
- msgstr "Aktiv"
280
-
281
- #: classes/tables/modules.php:11
282
- msgid "Has Tab"
283
- msgstr "Har fane"
284
-
285
- #: classes/tables/modules.php:12 classes/tables/options.php:12
286
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:53
287
- msgid "Description"
288
- msgstr "Beskrivelse"
289
-
290
- #: classes/tables/modules.php:13 classes/tables/options.php:8
291
- #: classes/tables/usage.php:9
292
- msgid "Code"
293
- msgstr "Kode"
294
-
295
- #: classes/tables/modules.php:14
296
- msgid "External plugin directory"
297
- msgstr "Eksternt utvidelses-katalog"
298
-
299
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7
300
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:114
301
- msgid "ID"
302
- msgstr "ID"
303
-
304
- #: classes/tables/options.php:9
305
- msgid "Value"
306
- msgstr "Verdi"
307
-
308
- #: classes/tables/options.php:14
309
- msgid "Category ID"
310
- msgstr "Kategori-ID"
311
-
312
- #: classes/tables/options.php:16
313
- msgid "Value Type"
314
- msgstr "Verdi-type"
315
-
316
- #: classes/tables/options_categories.php:8
317
- msgid "Method"
318
- msgstr "Metode"
319
-
320
- #: classes/tables/usage.php:8
321
- msgid "Usage id"
322
- msgstr "Bruks-ID"
323
-
324
- #: classes/tables/usage.php:10
325
- msgid "Visits Count"
326
- msgstr "Antall besøkende"
327
-
328
- #: classes/validator.php:30
329
- #, php-format
330
- msgid "Invalid length for %s, max length is %s"
331
- msgstr "Ugyldig lengde for %s, maks lengde er %s"
332
-
333
- #: classes/validator.php:43
334
- #, php-format
335
- msgid "Invalid numeric value for %s"
336
- msgstr "Ugyldig numerisk verdi for %s"
337
-
338
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
339
- #, php-format
340
- msgid "Please enter %s"
341
- msgstr "Vennligst fyll %s"
342
-
343
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
344
- #, php-format
345
- msgid "Please select %s"
346
- msgstr "Vennligst velg %s"
347
-
348
- #: classes/validator.php:85 classes/validator.php:101
349
- #, php-format
350
- msgid "Invalid %s"
351
- msgstr "Ugyldig %s"
352
-
353
- #: classes/validator.php:88
354
- #, php-format
355
- msgid "%s is already registered"
356
- msgstr "%s er allerede registrert"
357
-
358
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
359
- msgid "Exit Full Screen"
360
- msgstr "Avslutt fullskjerm"
361
-
362
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
363
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
364
- msgid "Open Full Screen"
365
- msgstr "Åpne fullskjerm"
366
-
367
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:50
368
- msgid "Search address..."
369
- msgstr "Søk etter adresse"
370
-
371
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:85
372
- msgid "Reset"
373
- msgstr "Tilbakestill"
374
-
375
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:98
376
- msgid "Find"
377
- msgstr "Finn"
378
-
379
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:112
380
- msgid "Please, type a search address."
381
- msgstr "Vennligst "
382
-
383
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:118
384
- msgid "Search area have no markers, please try to modify search criterias."
385
- msgstr ""
386
- "Søkeområde har ingen markører, vennligst forsøk å endre dine søkekriterier"
387
-
388
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
389
- msgid "Get Direction"
390
- msgstr "Får veibeskrivelse"
391
-
392
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:24
393
- msgid "Type the address..."
394
- msgstr "Skriv inn adressen..."
395
-
396
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:33
397
- msgid "or"
398
- msgstr "eller"
399
-
400
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:50
401
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
402
- msgid "Go"
403
- msgstr "Gå"
404
-
405
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
406
- msgid "The Geolocation service failed."
407
- msgstr "Geolokasjon-tjenesten mislyktes"
408
-
409
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
410
- msgid "Your browser does not support geolocation."
411
- msgstr "Din nettleser støtter ikke geolokasjon."
412
-
413
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
414
- msgid "Route could not be found. Please, try to select another address!"
415
- msgstr "Ruten ble ikke funnet. Vennligst velg en annen adresse!"
416
-
417
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
418
- msgid "Please, select address from search list!"
419
- msgstr "Vennligst velg adresse fra søkelisten!"
420
-
421
- #: doc/google-maps-easy-pro/kml/controller.php:16
422
- msgid "Security check failed"
423
- msgstr "Sikkerhetskontroll mislyktes"
424
-
425
- #: doc/google-maps-easy-pro/license/mod.php:30
426
- #, php-format
427
- msgid ""
428
- "Your license is expired. Once you extend your license - you will be able to "
429
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
430
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
431
- "click on 'Re-activate' button to re-activate your PRO version."
432
- msgstr ""
433
- "Din lisens er utløpt. Så fort du utvider din lisens - vil du kunne oppdatere "
434
- "til PRO-versjonen. For å utvide PRO-versjon-lisensen - følg <a href='%s' "
435
- "target='_blank'>den lenken</a>, deretter - gå til <a href='%s'>Lisens</a>-"
436
- "taben, og klikk på 'Reaktiver'-knappen for å reaktivere din PRO-versjon."
437
-
438
- #: doc/google-maps-easy-pro/license/mod.php:38
439
- #, php-format
440
- msgid ""
441
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
442
- "target='_blank'>click here</a> to extend your license, then - go to <a "
443
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
444
- "your PRO version."
445
- msgstr ""
446
- "Din lisens for PRO-versjonen av utvidelsen %s - utløpt. Du kan <a href='%s' "
447
- "target='_blank'>klikke her</a> for å forlenge din lisens, deretter - gå til "
448
- "<a href='%s'>Lisens</a>-taben, og klikk på 'Reaktiver'-knappen for å "
449
- "reaktivere din PRO-versjon."
450
-
451
- #: doc/google-maps-easy-pro/license/mod.php:51
452
- msgid "License"
453
- msgstr "Lisens"
454
-
455
- #: doc/google-maps-easy-pro/license/mod.php:74
456
- msgid "Activate License"
457
- msgstr "Aktiver lisens"
458
-
459
- #: doc/google-maps-easy-pro/license/mod.php:76
460
- msgid "Renew License"
461
- msgstr "Forny lisens"
462
-
463
- #: doc/google-maps-easy-pro/license/models/license.php:54
464
- msgid "Please enter your License Key"
465
- msgstr "Vennligst angi din lisensnøkkel"
466
-
467
- #: doc/google-maps-easy-pro/license/models/license.php:56
468
- msgid "Please enter your Email address"
469
- msgstr "Vennligst skriv inn din e-postadresse"
470
-
471
- #: doc/google-maps-easy-pro/license/models/license.php:131
472
- msgid ""
473
- "There was a problem with sending request to our autentification server. "
474
- "Please try latter."
475
- msgstr ""
476
- "Det oppsto et problem ved sending av forespørsel til vår autentifiserings-"
477
- "server. Vennligst prøv igjen senere."
478
-
479
- #: doc/google-maps-easy-pro/license/models/license.php:154
480
- #, php-format
481
- msgid "License for plugin %s will expire today."
482
- msgstr "Lisens for utvidelse %s utløper i dag."
483
-
484
- #: doc/google-maps-easy-pro/license/models/license.php:156
485
- #, php-format
486
- msgid "License for plugin %s will expire tomorrow."
487
- msgstr "Lisens for utvidelse %s utløper i morgen."
488
-
489
- #: doc/google-maps-easy-pro/license/models/license.php:158
490
- #, php-format
491
- msgid "License for plugin %s will expire in %d days."
492
- msgstr "Lisens for utvidelse %s utløper om %d dager."
493
-
494
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
495
- #, php-format
496
- msgid ""
497
- "Congratulations! PRO version of %s plugin is activated and working fine!"
498
- msgstr ""
499
- "Gratulerer! PRO-versjonen av utvidelsen %s er aktivert og fungerer fint!"
500
-
501
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
502
- #, php-format
503
- msgid ""
504
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
505
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
506
- "activate' button to re-activate your PRO version."
507
- msgstr ""
508
- "Din lisens for PRO-versjonen av utvidelsen %s - utløpt. Du kan <a href='%s' "
509
- "target='_blank'>klikke her</a> for å forlenge din lisens, deretter - klikk "
510
- "på 'Reaktiver'-knappen for å reaktivere din PRO-versjon."
511
-
512
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
513
- #, php-format
514
- msgid ""
515
- "Congratulations! You have successfully installed PRO version of %s plugin. "
516
- "Final step to finish Your PRO version setup - is to enter your Email and "
517
- "License Key on this page. This will activate Your copy of software on this "
518
- "site."
519
- msgstr ""
520
- "Gratulerer! Du har nå installert PRO-versjonen av utvidelsen %s. Det siste "
521
- "trinnet for å fullføre oppsett av din PRO-versjon - er å skrive inn din e-"
522
- "post og lisensnøkkel på denne siden. Dette vil aktivere din kopi av "
523
- "programvaren på dette nettstedet."
524
-
525
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
526
- #: modules/supsystic_promo/mod.php:183
527
- msgid "Email"
528
- msgstr "E-post"
529
-
530
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
531
- #, php-format
532
- msgid ""
533
- "Your email address, used on checkout procedure on <a href='%s' "
534
- "target='_blank'>%s</a>"
535
- msgstr ""
536
- "Din e-postadresse, som brukes i kasse-prosedyren på <a href='%s' "
537
- "target='_blank'>%s</a>"
538
-
539
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
540
- msgid "License Key"
541
- msgstr "Lisensnøkkel"
542
-
543
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
544
- #, php-format
545
- msgid ""
546
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
547
- msgstr "Din lisensnøkkel fra din konto på <a href='%s' target='_blank'>%s</a>"
548
-
549
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
550
- msgid "Re-activate"
551
- msgstr "Reaktiver"
552
-
553
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
554
- msgid "Activate"
555
- msgstr "Aktiver"
556
-
557
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:14
558
- msgid "Uncategorized"
559
- msgstr "Ukategorisert"
560
-
561
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:51
562
- #: modules/gmap/views/gmap.php:115
563
- msgid "Title"
564
- msgstr "Tittel"
565
-
566
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:55
567
- msgid "Directions"
568
- msgstr "Veibeskrivelse"
569
-
570
- #: doc/google-maps-easy-pro/wpUpdater.php:68
571
- msgid ""
572
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
573
- "onclick='document.location.reload(); return false;'>Try again</a>"
574
- msgstr ""
575
- "En uventet HTTP-feil under API-forespørsel.</p> <p><a href=“?” "
576
- "onclick=“document.location.reload(); return false;”>Prøv igjen</a>"
577
-
578
- #: doc/google-maps-easy-pro/wpUpdater.php:73
579
- msgid "An unknown error occurred"
580
- msgstr "Det oppstod en ukjent feil"
581
-
582
- #: modules/adminmenu/controller.php:7
583
- msgid "Your name field is required."
584
- msgstr "Feltet ditt navn er påkrevd."
585
-
586
- #: modules/adminmenu/controller.php:8
587
- msgid "Your website field is required."
588
- msgstr "Feltet nettsted er påkrevd."
589
-
590
- #: modules/adminmenu/controller.php:9
591
- msgid "Your e-mail field is required."
592
- msgstr "Feltet e-post er påkrevd."
593
-
594
- #: modules/adminmenu/controller.php:10
595
- msgid "Subject field is required."
596
- msgstr "Feltet emne er påkrevd."
597
-
598
- #: modules/adminmenu/controller.php:11
599
- msgid "You must select a valid category."
600
- msgstr "Du må velge en gyldig kategori."
601
-
602
- #: modules/adminmenu/controller.php:12
603
- msgid "Message field is required."
604
- msgstr "Feltet melding er påkrevd."
605
-
606
- #: modules/adminmenu/mod.php:13
607
- #, php-format
608
- msgid ""
609
- "Cool WordPress plugins from supsystic.com developers. I tried %s - and this "
610
- "was what I need! #supsystic.com"
611
- msgstr ""
612
- "Kul WordPress-utvidelse fra sysystic.com-utviklerne. Jeg prøvde %s - og "
613
- "dette var det jeg trengte! #sysystic.com"
614
-
615
- #: modules/adminmenu/mod.php:14 modules/options/mod.php:13
616
- msgid "Settings"
617
- msgstr "Innstillinger"
618
-
619
- #: modules/adminmenu/mod.php:15
620
- msgid "More plugins for your WordPress site here!"
621
- msgstr "Flere utvidelser til din WordPress-side her!"
622
-
623
- #: modules/adminmenu/mod.php:16 modules/adminmenu/mod.php:17
624
- #: modules/adminmenu/mod.php:18
625
- msgid "Spread the word!"
626
- msgstr "Spre ordet!!"
627
-
628
- #: modules/csv/controller.php:45
629
- #, php-format
630
- msgid "Maps from %s - %s"
631
- msgstr "Kart fra %s - %s"
632
-
633
- #: modules/csv/controller.php:48
634
- msgid "You have no maps for now."
635
- msgstr "Du har for tiden ingen kart."
636
-
637
- #: modules/csv/controller.php:87
638
- #, php-format
639
- msgid "Markers from %s"
640
- msgstr "Markører fra %s"
641
-
642
- #: modules/csv/controller.php:90
643
- msgid "You have no markers for now."
644
- msgstr "Du har for tiden ingen markører."
645
-
646
- #: modules/csv/controller.php:124
647
- msgid "Missing File"
648
- msgstr "Manglende fil"
649
-
650
- #: modules/csv/controller.php:126
651
- #, php-format
652
- msgid "File uploaded with error code %s"
653
- msgstr "Fil lastet opp med feilkode %s"
654
-
655
- #: modules/csv/controller.php:208
656
- msgid ""
657
- "File should contain more then 1 row, at least 1 row should be for headers"
658
- msgstr ""
659
- "Filen må inneholde mer enn 1 rad, minst 1 rad skal være til overskrifter"
660
-
661
- #: modules/csv/controller.php:210
662
- msgid "Empty data in file"
663
- msgstr "Tom data i fil"
664
-
665
- #: modules/csv/mod.php:11
666
- msgid "Maps Import / Export"
667
- msgstr "Kart Import / Eksport"
668
-
669
- #: modules/csv/models/csv.php:133
670
- msgid "Can not detect import list type"
671
- msgstr "Finner ikke importens listetype"
672
-
673
- #: modules/csv/models/csv.php:135
674
- msgid "Can not find fields names"
675
- msgstr "Finner ikke feltnavn"
676
-
677
- #: modules/csv/views/tpl/csvTabContent.php:9
678
- msgid "Maps"
679
- msgstr "Kart"
680
-
681
- #: modules/csv/views/tpl/csvTabContent.php:14
682
- #: modules/csv/views/tpl/csvTabContent.php:35
683
- msgid "Export"
684
- msgstr "Eksport"
685
-
686
- #: modules/csv/views/tpl/csvTabContent.php:19
687
- #: modules/csv/views/tpl/csvTabContent.php:40
688
- msgid "Import"
689
- msgstr "Import"
690
-
691
- #: modules/csv/views/tpl/csvTabContent.php:30 modules/gmap/views/gmap.php:117
692
- #: modules/gmap/views/tpl/gmapEditMap.php:17
693
- msgid "Markers"
694
- msgstr "Markører"
695
-
696
- #: modules/gmap/controller.php:23
697
- msgid "Map data not found"
698
- msgstr "Fant ikke kart-data"
699
-
700
- #: modules/gmap/mod.php:13
701
- msgid "Add Map"
702
- msgstr "Legg til kart"
703
-
704
- #: modules/gmap/mod.php:16 modules/gmap/views/tpl/gmapEditMap.php:1044
705
- #: modules/marker_groups/mod.php:14
706
- msgid "Edit"
707
- msgstr "Rediger"
708
-
709
- #: modules/gmap/mod.php:19
710
- msgid "All Maps"
711
- msgstr "Alle kart"
712
-
713
- #: modules/gmap/mod.php:29
714
- msgid "No Map Found"
715
- msgstr "Ingen kart funnet"
716
-
717
- #: modules/gmap/mod.php:39
718
- msgid "Empty or Invalid Map ID"
719
- msgstr "Tom eller ugyldig kart-ID"
720
-
721
- #: modules/gmap/mod.php:58
722
- msgid "Top Center"
723
- msgstr "Topp Midten"
724
-
725
- #: modules/gmap/mod.php:59
726
- msgid "Top Left"
727
- msgstr "Topp Venstre"
728
-
729
- #: modules/gmap/mod.php:60
730
- msgid "Top Right"
731
- msgstr "Topp Høyre"
732
-
733
- #: modules/gmap/mod.php:61
734
- msgid "Left Top"
735
- msgstr "Venstre Topp"
736
-
737
- #: modules/gmap/mod.php:62
738
- msgid "Right Top"
739
- msgstr "Høyre Topp"
740
-
741
- #: modules/gmap/mod.php:63
742
- msgid "Left Center"
743
- msgstr "Venstre Midten"
744
-
745
- #: modules/gmap/mod.php:64
746
- msgid "Right Center"
747
- msgstr "Høyre Midten"
748
-
749
- #: modules/gmap/mod.php:65
750
- msgid "Left Bottom"
751
- msgstr "Venstre Bunn"
752
-
753
- #: modules/gmap/mod.php:66
754
- msgid "Right Bottom"
755
- msgstr "Høyre Bunn"
756
-
757
- #: modules/gmap/mod.php:67
758
- msgid "Bottom Center"
759
- msgstr "Bunn Midten"
760
-
761
- #: modules/gmap/mod.php:68
762
- msgid "Bottom Left"
763
- msgstr "Bunn Venstre"
764
-
765
- #: modules/gmap/mod.php:69
766
- msgid "Bottom Right"
767
- msgstr "Bunn Høyre"
768
-
769
- #: modules/gmap/mod.php:92
770
- msgid "Slider"
771
- msgstr "Lysbilde-presentasjon"
772
-
773
- #: modules/gmap/mod.php:93
774
- msgid "Slider - Title and Img"
775
- msgstr "Lysbilde-presentasjon - Tittel og bilde"
776
-
777
- #: modules/gmap/mod.php:94 modules/gmap/mod.php:96
778
- msgid "Slider Vertical - Title and Img"
779
- msgstr "Lysbilde-presentasjon Vertikal - Tittel og bilde"
780
-
781
- #: modules/gmap/mod.php:95
782
- msgid "Slider Vertical - Title and Description"
783
- msgstr "Lysbilde-presentasjon Vertikal - Tittel og beskrivelse"
784
-
785
- #: modules/gmap/mod.php:97
786
- msgid "Slider Table"
787
- msgstr "Lysbilde-presentasjon Tabell"
788
-
789
- #: modules/gmap/models/gmap.php:78
790
- msgid "Please enter Map Name"
791
- msgstr "Vennligst skriv inn kart-navn"
792
-
793
- #: modules/gmap/models/gmap.php:107
794
- #: modules/marker_groups/models/marker_groups.php:80
795
- msgid "Empty Params"
796
- msgstr "Tomme parametre"
797
-
798
- #: modules/gmap/views/gmap.php:116
799
- msgid "Html options"
800
- msgstr "HTML-alternativer"
801
-
802
- #: modules/gmap/views/gmap.php:118
803
- msgid "Operations"
804
- msgstr "Handlinger"
805
-
806
- #: modules/gmap/views/gmap.php:155 modules/gmap/views/gmap.php:161
807
- #: modules/gmap/views/tpl/gmapEditMap.php:104
808
- #: modules/gmap/views/tpl/gmapEditMap.php:132
809
- #: modules/gmap/views/tpl/gmapEditMap.php:398 modules/marker/mod.php:20
810
- msgid "None"
811
- msgstr "Ingen"
812
-
813
- #: modules/gmap/views/tpl/gmapAdmin.php:5
814
- #: modules/gmap/views/tpl/gmapAdmin.php:8
815
- #: modules/marker_groups/views/tpl/mgrAdmin.php:10
816
- #: modules/marker_groups/views/tpl/mgrAdmin.php:13
817
- msgid "Delete selected"
818
- msgstr "Slett valgte"
819
-
820
- #: modules/gmap/views/tpl/gmapAdmin.php:11
821
- #: modules/marker_groups/views/tpl/mgrAdmin.php:16
822
- msgid "Clear All"
823
- msgstr "Fjern alt"
824
-
825
- #: modules/gmap/views/tpl/gmapAdmin.php:13
826
- #: modules/marker_groups/views/tpl/mgrAdmin.php:18
827
- msgid "Clear"
828
- msgstr "Fjern"
829
-
830
- #: modules/gmap/views/tpl/gmapAdmin.php:16
831
- #: modules/gmap/views/tpl/gmapAdmin.php:17
832
- #: modules/marker_groups/views/tpl/mgrAdmin.php:21
833
- #: modules/marker_groups/views/tpl/mgrAdmin.php:22
834
- msgid "Search"
835
- msgstr "Søk"
836
-
837
- #: modules/gmap/views/tpl/gmapAdmin.php:26
838
- #, php-format
839
- msgid ""
840
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
841
- "a> your first Map!"
842
- msgstr ""
843
- "Du har for tiden ingen kart. <a href='%s' style='font-style: "
844
- "italic;'>Opprett</a> ditt første kart!"
845
-
846
- #: modules/gmap/views/tpl/gmapDrawMap.php:3
847
- msgid "Map not found"
848
- msgstr "Fant ikke kart"
849
-
850
- #: modules/gmap/views/tpl/gmapEditMap.php:2
851
- #, php-format
852
- msgid ""
853
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
854
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
855
- msgstr ""
856
- "Dette alternativet er bare tilgjengelig i <a target='_blank' href='%s'>PRO-"
857
- "versjonen</a>, du kan få det <a target='_blank' href='%s'>her.</a>"
858
-
859
- #: modules/gmap/views/tpl/gmapEditMap.php:13
860
- msgid "Map Properties"
861
- msgstr "Kart-egenskaper"
862
-
863
- #: modules/gmap/views/tpl/gmapEditMap.php:20
864
- msgid "Add New Marker"
865
- msgstr "Legg til ny markør"
866
-
867
- #: modules/gmap/views/tpl/gmapEditMap.php:31
868
- msgid "Map Name"
869
- msgstr "Kart-navn"
870
-
871
- #: modules/gmap/views/tpl/gmapEditMap.php:33
872
- msgid "Your map name"
873
- msgstr "Ditt kart-navn"
874
-
875
- #: modules/gmap/views/tpl/gmapEditMap.php:45
876
- msgid "Map Width"
877
- msgstr "Kart-bredde"
878
-
879
- #: modules/gmap/views/tpl/gmapEditMap.php:47
880
- msgid "Your map width"
881
- msgstr "Din kart-bredde"
882
-
883
- #: modules/gmap/views/tpl/gmapEditMap.php:56
884
- #: modules/gmap/views/tpl/gmapEditMap.php:81
885
- #: modules/gmap/views/tpl/gmapEditMap.php:697
886
- #: modules/gmap/views/tpl/gmapEditMap.php:740
887
- msgid "Pixels"
888
- msgstr "Piksler"
889
-
890
- #: modules/gmap/views/tpl/gmapEditMap.php:59
891
- #: modules/gmap/views/tpl/gmapEditMap.php:84
892
- #: modules/gmap/views/tpl/gmapEditMap.php:703
893
- #: modules/gmap/views/tpl/gmapEditMap.php:746
894
- msgid "Px"
895
- msgstr "Px"
896
-
897
- #: modules/gmap/views/tpl/gmapEditMap.php:63
898
- msgid "Percents"
899
- msgstr "%"
900
-
901
- #: modules/gmap/views/tpl/gmapEditMap.php:70
902
- msgid "Map Height"
903
- msgstr "Kart-høyde"
904
-
905
- #: modules/gmap/views/tpl/gmapEditMap.php:72
906
- msgid "Your map height"
907
- msgstr "Din kart-høyde"
908
-
909
- #: modules/gmap/views/tpl/gmapEditMap.php:97
910
- msgid "Map type control"
911
- msgstr "Kart-type-kontroll"
912
-
913
- #: modules/gmap/views/tpl/gmapEditMap.php:99
914
- msgid ""
915
- "Control view for map type - you can see it in right upper corner by default"
916
- msgstr ""
917
- "Kontroll-visning for kart-type - du kan normalt se det i øvre høyre hjørne"
918
-
919
- #: modules/gmap/views/tpl/gmapEditMap.php:104
920
- msgid "Dropdown Menu"
921
- msgstr "Nedtrekksmeny"
922
-
923
- #: modules/gmap/views/tpl/gmapEditMap.php:104
924
- msgid "Horizontal Bar"
925
- msgstr "Vannrett linje"
926
-
927
- #: modules/gmap/views/tpl/gmapEditMap.php:110
928
- msgid "Change type control position on map"
929
- msgstr "Endre type-kontroll-posisjon på kart"
930
-
931
- #: modules/gmap/views/tpl/gmapEditMap.php:117
932
- #: modules/gmap/views/tpl/gmapEditMap.php:145
933
- #: modules/gmap/views/tpl/gmapEditMap.php:177
934
- #: modules/gmap/views/tpl/gmapEditMap.php:308
935
- #: modules/gmap/views/tpl/gmapEditMap.php:325
936
- #: modules/gmap/views/tpl/gmapEditMap.php:342
937
- #: modules/gmap/views/tpl/gmapEditMap.php:371
938
- #: modules/gmap/views/tpl/gmapEditMap.php:459
939
- #: modules/gmap/views/tpl/gmapEditMap.php:529
940
- #: modules/gmap/views/tpl/gmapEditMap.php:555
941
- #: modules/gmap/views/tpl/gmapEditMap.php:581
942
- #: modules/gmap/views/tpl/gmapEditMap.php:644
943
- #: modules/gmap/views/tpl/gmapEditMap.php:661
944
- #: modules/options/views/tpl/optionsSettingsTabContent.php:69
945
- msgid "PRO option"
946
- msgstr "PRO-alternativ"
947
-
948
- #: modules/gmap/views/tpl/gmapEditMap.php:125
949
- msgid "Zoom control"
950
- msgstr "Zoom-kontroll"
951
-
952
- #: modules/gmap/views/tpl/gmapEditMap.php:127
953
- msgid ""
954
- "Zoom control type on your map. Note, to view Zoom control on the map the "
955
- "Custom Map Controls option must be disabled."
956
- msgstr ""
957
- "Zoom-kontroll-type på kartet. Merk, for å vise zoom-kontrollen på kartet må "
958
- "egendefinert kart-kontroller være deaktivert."
959
-
960
- #: modules/gmap/views/tpl/gmapEditMap.php:132
961
- #: modules/gmap/views/tpl/gmapEditMap.php:407
962
- msgid "Default"
963
- msgstr "Standard"
964
-
965
- #: modules/gmap/views/tpl/gmapEditMap.php:138
966
- msgid "Change zoom control position on map"
967
- msgstr "Endre zoom-kontroll-posisjon på kart"
968
-
969
- #: modules/gmap/views/tpl/gmapEditMap.php:148
970
- msgid "Notice"
971
- msgstr "Merknad"
972
-
973
- #: modules/gmap/views/tpl/gmapEditMap.php:150
974
- msgid ""
975
- "Standard Zoom control will not displaying for this map, because the Custom "
976
- "Map Controls option enabled now."
977
- msgstr ""
978
- "Standard zoom-kontroll vil ikke vises på dette kartet, fordi egendefinert "
979
- "kart-kontroller er aktivert."
980
-
981
- #: modules/gmap/views/tpl/gmapEditMap.php:158
982
- msgid "Street view control"
983
- msgstr "Street view-kontroll"
984
-
985
- #: modules/gmap/views/tpl/gmapEditMap.php:160
986
- msgid "Street view control usually is located on left upper corner of your map"
987
- msgstr ""
988
- "Street view-kontroll er vanligvis posisjonert i øvre venstre hjørne av kartet"
989
-
990
- #: modules/gmap/views/tpl/gmapEditMap.php:170
991
- msgid "Change street view control position on map"
992
- msgstr "Endre street view-kontroll-posisjon på kart"
993
-
994
- #: modules/gmap/views/tpl/gmapEditMap.php:230
995
- msgid "Draggable"
996
- msgstr "Flyttbar"
997
-
998
- #: modules/gmap/views/tpl/gmapEditMap.php:232
999
- msgid "Enable or disable possibility to drag your map using mouse"
1000
- msgstr "Aktiver eller deaktiver muligheten til å dra kartet ved hjelp av musen"
1001
-
1002
- #: modules/gmap/views/tpl/gmapEditMap.php:243
1003
- msgid "Double click to zoom"
1004
- msgstr "Dobbelklikk for å zoome"
1005
-
1006
- #: modules/gmap/views/tpl/gmapEditMap.php:245
1007
- msgid ""
1008
- "By default double left click on map will zoom it in. But you can change this "
1009
- "here."
1010
- msgstr ""
1011
- "Som standard er dobbeltklikk på kart for å zoome inn, men du kan endre dette "
1012
- "her."
1013
-
1014
- #: modules/gmap/views/tpl/gmapEditMap.php:256
1015
- msgid "Mouse wheel to zoom"
1016
- msgstr "Musehjul for å zoome"
1017
-
1018
- #: modules/gmap/views/tpl/gmapEditMap.php:258
1019
- msgid ""
1020
- "Sometimes you need to disable possibility to zoom your map using mouse "
1021
- "wheel. This can be required for example - if you need to use your wheel for "
1022
- "some other action, for example scroll your site even if mouse is over your "
1023
- "map."
1024
- msgstr ""
1025
- "Noen ganger trenger du å deaktivere muligheten for å zoome ved hjelp av "
1026
- "musehjulet. Dette kan være påkrevd for eksempel - om du trenger musehjulet "
1027
- "for andre handlinger, for eksempel scrolling av nettstedet selv ved musen "
1028
- "over kartet."
1029
-
1030
- #: modules/gmap/views/tpl/gmapEditMap.php:269
1031
- msgid "Google Map Theme"
1032
- msgstr "Google Map-tema"
1033
-
1034
- #: modules/gmap/views/tpl/gmapEditMap.php:271
1035
- msgid ""
1036
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
1037
- "Terrain - here. By default your map will have Road Map Google maps theme."
1038
- msgstr ""
1039
- "Du kan velge ditt Google Map-tema - Veikart, Hybrid, Satellitt eller Terreng "
1040
- "- her. Som standard vil kartet ha Veikart Google maps-tema."
1041
-
1042
- #: modules/gmap/views/tpl/gmapEditMap.php:275
1043
- msgid "Road Map"
1044
- msgstr "Vei-kart"
1045
-
1046
- #: modules/gmap/views/tpl/gmapEditMap.php:275
1047
- msgid "Hybrid"
1048
- msgstr "Hybrid"
1049
-
1050
- #: modules/gmap/views/tpl/gmapEditMap.php:275
1051
- msgid "Satellite"
1052
- msgstr "Satelitt"
1053
-
1054
- #: modules/gmap/views/tpl/gmapEditMap.php:275
1055
- msgid "Terrain"
1056
- msgstr "Terreng"
1057
-
1058
- #: modules/gmap/views/tpl/gmapEditMap.php:283
1059
- msgid "Map Stylization"
1060
- msgstr "Kart-stilering"
1061
-
1062
- #: modules/gmap/views/tpl/gmapEditMap.php:285
1063
- msgid ""
1064
- "Make your map unique with our Map Themes, just try to change it here - and "
1065
- "you will see results on your Map Preview."
1066
- msgstr ""
1067
- "Gjør ditt kart unikt med våre kart-temaer, bare prøv å endre det her - og du "
1068
- "vil se resultatet på forhåndsvisning av kartet."
1069
-
1070
- #: modules/gmap/views/tpl/gmapEditMap.php:295
1071
- msgid "Get 300+ Themes with PRO"
1072
- msgstr "Få 300+ temaer med PRO"
1073
-
1074
- #: modules/gmap/views/tpl/gmapEditMap.php:303
1075
- msgid "Traffic Layer"
1076
- msgstr "Trafikk-lag"
1077
-
1078
- #: modules/gmap/views/tpl/gmapEditMap.php:305
1079
- msgid "Add real-time traffic information to your map."
1080
- msgstr "Legg til sanntids trafikkinformasjon på kartet."
1081
-
1082
- #: modules/gmap/views/tpl/gmapEditMap.php:320
1083
- msgid "Transit Layer"
1084
- msgstr "Kollektivtrafikk-lag"
1085
-
1086
- #: modules/gmap/views/tpl/gmapEditMap.php:322
1087
- msgid ""
1088
- "Display the public transit network of a city on your map. When the Transit "
1089
- "Layer is enabled, and the map is centered on a city that supports transit "
1090
- "information, the map will display major transit lines as thick, colored "
1091
- "lines."
1092
- msgstr ""
1093
- "Vis kollektivtransport-nettverket av en by på kartet. Når kollektivtransport-"
1094
- "laget er aktivert, og kartet er sentrert på en by som støtter "
1095
- "kollektivtransport-informasjon, vil kartet vise store kollektivtransport-"
1096
- "linjer som tykke, fargede linjer."
1097
-
1098
- #: modules/gmap/views/tpl/gmapEditMap.php:337
1099
- msgid "Bicycling Layer"
1100
- msgstr "Sykkel-lag"
1101
-
1102
- #: modules/gmap/views/tpl/gmapEditMap.php:339
1103
- msgid ""
1104
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1105
- "to bicycling usage on top of the given map.Dark green routes indicated "
1106
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1107
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1108
- "for bicycle usage."
1109
- msgstr ""
1110
- "Legg til et lag med sykkelstier, foreslått sykkelruter og andre lag "
1111
- "spesifikke til sykling over respektivt kart. Mørkegrønne ruter indikerer "
1112
- "dedikerte sykkeruter. Lysegrønne ruter indikerer gater med dedikerte "
1113
- "sykkefelt. Streket linje indikerer gater eller ruter som anbefales til "
1114
- "sykling."
1115
-
1116
- #: modules/gmap/views/tpl/gmapEditMap.php:354
1117
- msgid "Marker Title color"
1118
- msgstr "Markør-tittel farge"
1119
-
1120
- #: modules/gmap/views/tpl/gmapEditMap.php:356
1121
- msgid "You can set your markers title color here"
1122
- msgstr "Du kan sette din markørs tittel-farge her"
1123
-
1124
- #: modules/gmap/views/tpl/gmapEditMap.php:366
1125
- msgid "Markers List"
1126
- msgstr "Markør-liste"
1127
-
1128
- #: modules/gmap/views/tpl/gmapEditMap.php:368
1129
- msgid ""
1130
- "Display all map markers - as list bellow Your map. This will help your users "
1131
- "get more info about your markers and find required marker more faster."
1132
- msgstr ""
1133
- "Vi alle kart-markører - som liste under kart. Dette vil hjelpe dine "
1134
- "besøkende med mer informasjon om dine markører og finne påkrevde markører "
1135
- "fortere."
1136
-
1137
- #: modules/gmap/views/tpl/gmapEditMap.php:375
1138
- msgid "Select Markers List type"
1139
- msgstr "Velg markør-liste-type"
1140
-
1141
- #: modules/gmap/views/tpl/gmapEditMap.php:381
1142
- msgid "Markers List Color"
1143
- msgstr "Markør-liste farge"
1144
-
1145
- #: modules/gmap/views/tpl/gmapEditMap.php:392
1146
- msgid "Markers Clusterization"
1147
- msgstr "Markør-klaser"
1148
-
1149
- #: modules/gmap/views/tpl/gmapEditMap.php:394
1150
- msgid ""
1151
- "If you have many markers - you can have a problems with viewing them when "
1152
- "zoom out for example: they will just cover each-other. Marker clusterization "
1153
- "can solve this problem by grouping your markers in groups when they are too "
1154
- "close to each-other."
1155
- msgstr ""
1156
- "Om du har mange markører - du kan ha et problem med å vise alle ved ut-"
1157
- "zooming, for eksempel kan de legge seg over hverandre. Markør-klasing kan "
1158
- "fikse dette problemet ved å gruppere dine markører når de er for nære "
1159
- "hverandre."
1160
-
1161
- #: modules/gmap/views/tpl/gmapEditMap.php:398
1162
- msgid "Base Clusterization"
1163
- msgstr "Base-klaser"
1164
-
1165
- #: modules/gmap/views/tpl/gmapEditMap.php:403
1166
- msgid "Cluster Icon"
1167
- msgstr "Klase-ikon"
1168
-
1169
- #: modules/gmap/views/tpl/gmapEditMap.php:406
1170
- #: modules/gmap/views/tpl/gmapEditMap.php:853
1171
- msgid "Upload Icon"
1172
- msgstr "Last opp ikon"
1173
-
1174
- #: modules/gmap/views/tpl/gmapEditMap.php:448
1175
- msgid "Custom Map Controls"
1176
- msgstr "Egendefinert kart-kontroller"
1177
-
1178
- #: modules/gmap/views/tpl/gmapEditMap.php:453
1179
- msgid "Add custom map controls to the map."
1180
- msgstr "Legg til egendefinerte kart-kontroller."
1181
-
1182
- #: modules/gmap/views/tpl/gmapEditMap.php:469
1183
- msgid "Controls type"
1184
- msgstr "Kontroll-type"
1185
-
1186
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1187
- msgid "Square"
1188
- msgstr "Fikant"
1189
-
1190
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1191
- msgid "Rounded edges"
1192
- msgstr "Avrundede kanter"
1193
-
1194
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1195
- msgid "Round"
1196
- msgstr "Rund"
1197
-
1198
- #: modules/gmap/views/tpl/gmapEditMap.php:478
1199
- msgid "Background color"
1200
- msgstr "Bakgrunns-farge"
1201
-
1202
- #: modules/gmap/views/tpl/gmapEditMap.php:486
1203
- msgid "Text color"
1204
- msgstr "Tekst-farge"
1205
-
1206
- #: modules/gmap/views/tpl/gmapEditMap.php:494
1207
- msgid "Controls position"
1208
- msgstr "Kontroll-posisjon"
1209
-
1210
- #: modules/gmap/views/tpl/gmapEditMap.php:504
1211
- msgid "Min Search Radius"
1212
- msgstr "Min søke-radius"
1213
-
1214
- #: modules/gmap/views/tpl/gmapEditMap.php:512
1215
- msgid "Max Search Radius"
1216
- msgstr "Maks søke-radius"
1217
-
1218
- #: modules/gmap/views/tpl/gmapEditMap.php:524
1219
- msgid "Full Screen Button"
1220
- msgstr "Fullskjerm-knapp"
1221
-
1222
- #: modules/gmap/views/tpl/gmapEditMap.php:526
1223
- msgid "Add a button on map to open it full screen."
1224
- msgstr "Legg til knapp for å åpne i fullskjerm."
1225
-
1226
- #: modules/gmap/views/tpl/gmapEditMap.php:544
1227
- msgid "Directions Button"
1228
- msgstr "Veibeskrivelse-knapp"
1229
-
1230
- #: modules/gmap/views/tpl/gmapEditMap.php:549
1231
- msgid ""
1232
- "Add a button at marker description to get direction from the entered address "
1233
- "to the marker."
1234
- msgstr ""
1235
- "Legg til knapp ved markør-beskrivelse for å få veibeskrivelse fra den "
1236
- "oppgitte adressen til markør."
1237
-
1238
- #: modules/gmap/views/tpl/gmapEditMap.php:570
1239
- msgid "Add KML layers"
1240
- msgstr "Legg til KML-lag"
1241
-
1242
- #: modules/gmap/views/tpl/gmapEditMap.php:575
1243
- msgid "Add KML files to display custom layers on the map."
1244
- msgstr "Legg til KML-filer for å vise egendefinerte lag på kartet."
1245
-
1246
- #: modules/gmap/views/tpl/gmapEditMap.php:588
1247
- msgid "Enter KML file URL"
1248
- msgstr "Skriv inn KML-fil-url"
1249
-
1250
- #: modules/gmap/views/tpl/gmapEditMap.php:600
1251
- msgid "X"
1252
- msgstr "X"
1253
-
1254
- #: modules/gmap/views/tpl/gmapEditMap.php:622
1255
- msgid "or Upload KML file"
1256
- msgstr "eller last opp KML-fil"
1257
-
1258
- #: modules/gmap/views/tpl/gmapEditMap.php:632
1259
- msgid "Add more files"
1260
- msgstr "Legg til flere filer"
1261
-
1262
- #: modules/gmap/views/tpl/gmapEditMap.php:639
1263
- msgid "Hide POI"
1264
- msgstr "Skjul POI"
1265
-
1266
- #: modules/gmap/views/tpl/gmapEditMap.php:641
1267
- msgid ""
1268
- "Hide the Points Of Interest - landmark or other object, the marked points on "
1269
- "the map, for example: hotels, campsites, fuel stations etc."
1270
- msgstr ""
1271
- "Skjul Points Of Interest - landemerker eller andre objekter, de markerte "
1272
- "punktene på på kartet, for eksempel: hoteller, campingplasser, "
1273
- "bensinstasjoner, etc."
1274
-
1275
- #: modules/gmap/views/tpl/gmapEditMap.php:656
1276
- msgid "Center on current user location"
1277
- msgstr "Midtstill på brukerens lokasjon"
1278
-
1279
- #: modules/gmap/views/tpl/gmapEditMap.php:658
1280
- msgid "On frontend map will be centered on current user location."
1281
- msgstr "På nettstedets kart vil kartet bli midtstilt på brukerens lokasjon."
1282
-
1283
- #: modules/gmap/views/tpl/gmapEditMap.php:673
1284
- msgid "Markers Info Window Width"
1285
- msgstr "Markør-informasjonens vindu-bredde"
1286
-
1287
- #: modules/gmap/views/tpl/gmapEditMap.php:675
1288
- msgid "Width of markers info windows."
1289
- msgstr "Bredde på markør-informasjonens vindu"
1290
-
1291
- #: modules/gmap/views/tpl/gmapEditMap.php:692
1292
- #: modules/gmap/views/tpl/gmapEditMap.php:735
1293
- msgid "Auto"
1294
- msgstr "Auto"
1295
-
1296
- #: modules/gmap/views/tpl/gmapEditMap.php:716
1297
- msgid "Markers Info Window Height"
1298
- msgstr "Markør-informasjonens vindu-høyde"
1299
-
1300
- #: modules/gmap/views/tpl/gmapEditMap.php:718
1301
- msgid "Height of markers info windows."
1302
- msgstr "Høyde på markør-informasjonens vindu"
1303
-
1304
- #: modules/gmap/views/tpl/gmapEditMap.php:759
1305
- msgid "Markers Info Window Background"
1306
- msgstr "Markør-informasjonens vindu-bakgrunn"
1307
-
1308
- #: modules/gmap/views/tpl/gmapEditMap.php:761
1309
- msgid "Background color of markers info windows."
1310
- msgstr "Bakgrunns-farge på markør-informasjonens vindu"
1311
-
1312
- #: modules/gmap/views/tpl/gmapEditMap.php:771
1313
- msgid "Min Zoom Level"
1314
- msgstr "Min zoom-nivå"
1315
-
1316
- #: modules/gmap/views/tpl/gmapEditMap.php:773
1317
- msgid "Sets min zoom level for map."
1318
- msgstr "Setter min zoom-nivå på kart."
1319
-
1320
- #: modules/gmap/views/tpl/gmapEditMap.php:785
1321
- msgid "Max Zoom Level"
1322
- msgstr "Maks zoom-nivå"
1323
-
1324
- #: modules/gmap/views/tpl/gmapEditMap.php:787
1325
- msgid "Sets max zoom level for map."
1326
- msgstr "Setter maks zoom-nivå på kart."
1327
-
1328
- #: modules/gmap/views/tpl/gmapEditMap.php:812
1329
- msgid "Marker Name"
1330
- msgstr "Markør-navn"
1331
-
1332
- #: modules/gmap/views/tpl/gmapEditMap.php:814
1333
- msgid "Your marker title"
1334
- msgstr "Din markør-tittel"
1335
-
1336
- #: modules/gmap/views/tpl/gmapEditMap.php:825
1337
- msgid "Marker Description"
1338
- msgstr "Markør-beskrivelse"
1339
-
1340
- #: modules/gmap/views/tpl/gmapEditMap.php:827
1341
- msgid ""
1342
- "Write here all text, that you want to appear in marker info-window PopUp"
1343
- msgstr ""
1344
- "Skriv her inn all tekst du vil skal vises i markør-informasjonens popup-vindu"
1345
-
1346
- #: modules/gmap/views/tpl/gmapEditMap.php:843
1347
- msgid "Icon"
1348
- msgstr "Ikon"
1349
-
1350
- #: modules/gmap/views/tpl/gmapEditMap.php:845
1351
- msgid "Your marker Icon, that will appear on your map for this marker"
1352
- msgstr "Ditt markør-ikon, som vil vises på kartet for denne markøren"
1353
-
1354
- #: modules/gmap/views/tpl/gmapEditMap.php:852
1355
- msgid "Choose Icon"
1356
- msgstr "Velg ikon"
1357
-
1358
- #: modules/gmap/views/tpl/gmapEditMap.php:865
1359
- msgid "Search your location by address, just start typing here"
1360
- msgstr "Søk på din lokasjon ved adresse, begynn å skriv her"
1361
-
1362
- #: modules/gmap/views/tpl/gmapEditMap.php:877
1363
- msgid "Latitude"
1364
- msgstr "Breddegrad"
1365
-
1366
- #: modules/gmap/views/tpl/gmapEditMap.php:879
1367
- msgid "Latitude for your marker"
1368
- msgstr "Breddegrad for markøren"
1369
-
1370
- #: modules/gmap/views/tpl/gmapEditMap.php:891
1371
- msgid "Longitude"
1372
- msgstr "Lengdegrad"
1373
-
1374
- #: modules/gmap/views/tpl/gmapEditMap.php:893
1375
- msgid "Longitude for your marker"
1376
- msgstr "Lengregrad for markøren"
1377
-
1378
- #: modules/gmap/views/tpl/gmapEditMap.php:905
1379
- msgid "Show description by default"
1380
- msgstr "Vis beskrivelse som standard"
1381
-
1382
- #: modules/gmap/views/tpl/gmapEditMap.php:907
1383
- msgid "Open marker description when map load"
1384
- msgstr "Åpne markør-beskrivelse når kart lastes"
1385
-
1386
- #: modules/gmap/views/tpl/gmapEditMap.php:917
1387
- msgid "Marker Link"
1388
- msgstr "Markør-lenke"
1389
-
1390
- #: modules/gmap/views/tpl/gmapEditMap.php:919
1391
- msgid "Link for opening by click on the marker"
1392
- msgstr "Lenke for åpning ved klikk på markør"
1393
-
1394
- #: modules/gmap/views/tpl/gmapEditMap.php:934
1395
- msgid "Open in new window"
1396
- msgstr "Åpne i nytt vindu"
1397
-
1398
- #: modules/gmap/views/tpl/gmapEditMap.php:942
1399
- msgid "Show description by mouse hover"
1400
- msgstr "Vis beskrivelse ved mus over"
1401
-
1402
- #: modules/gmap/views/tpl/gmapEditMap.php:944
1403
- msgid "Open marker description by mouse hover"
1404
- msgstr "Åpne markør-beskrivelse ved mus over"
1405
-
1406
- #: modules/gmap/views/tpl/gmapEditMap.php:954
1407
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:18
1408
- msgid "Marker Category"
1409
- msgstr "Markør-kategori"
1410
-
1411
- #: modules/gmap/views/tpl/gmapEditMap.php:956
1412
- msgid "Choose marker category"
1413
- msgstr "Velg markør-kategori"
1414
-
1415
- #: modules/gmap/views/tpl/gmapEditMap.php:986
1416
- msgid "Map shortcode"
1417
- msgstr "Kart shortcode"
1418
-
1419
- #: modules/gmap/views/tpl/gmapEditMap.php:991
1420
- msgid "PHP code"
1421
- msgstr "PHP-kode"
1422
-
1423
- #: modules/gmap/views/tpl/gmapEditMap.php:997
1424
- msgid "Shortcode will appear after you save map."
1425
- msgstr "Shortcode vil vises etter du lagrer kartet."
1426
-
1427
- #: modules/gmap/views/tpl/gmapEditMap.php:1005
1428
- msgid "Save Map"
1429
- msgstr "Lagre kart"
1430
-
1431
- #: modules/gmap/views/tpl/gmapEditMap.php:1011
1432
- msgid "Delete Map"
1433
- msgstr "Slett kart"
1434
-
1435
- #: modules/gmap/views/tpl/gmapEditMap.php:1020
1436
- msgid "Save Marker"
1437
- msgstr "Lagre markør"
1438
-
1439
- #: modules/gmap/views/tpl/gmapEditMap.php:1026
1440
- msgid "Delete Marker"
1441
- msgstr "Slett markør"
1442
-
1443
- #: modules/gmap/views/tpl/gmapEditMap.php:1047
1444
- msgid "Delete"
1445
- msgstr "Slett"
1446
-
1447
- #: modules/gmap/views/tpl/gmapEditMap.php:1074
1448
- msgid "Show markers list with your map on frontend"
1449
- msgstr "Vi markør-liste med ditt kart på nettstedet"
1450
-
1451
- #: modules/gmap/views/tpl/gmapEditMap.php:1081
1452
- #: modules/gmap/views/tpl/gmapEditMap.php:1082
1453
- msgid "Apply"
1454
- msgstr "Bruk"
1455
-
1456
- #: modules/gmap/views/tpl/gmapEditMap.php:1081
1457
- msgid "Selected"
1458
- msgstr "Valgte"
1459
-
1460
- #: modules/gmap/views/tpl/gmapEditMap.php:1082
1461
- msgid "Available in PRO"
1462
- msgstr "TIlgjengelig i PRO"
1463
-
1464
- #: modules/gmap/views/tpl/gmapListMarkers.php:20
1465
- #, php-format
1466
- msgid "and %s more"
1467
- msgstr "og %s mer"
1468
-
1469
- #: modules/gmap_widget/mod.php:18
1470
- msgid "Displays Most Viewed Products"
1471
- msgstr "Vis mest viste produkter"
1472
-
1473
- #: modules/gmap_widget/views/gmap_widget.php:15
1474
- msgid "You have no maps"
1475
- msgstr "Du har ingen kart"
1476
-
1477
- #: modules/gmap_widget/views/tpl/form.php:10
1478
- msgid "Select map"
1479
- msgstr "Velg kart"
1480
-
1481
- #: modules/gmap_widget/views/tpl/form.php:18
1482
- msgid "Widget Map width"
1483
- msgstr "Widget kart-bredde"
1484
-
1485
- #: modules/gmap_widget/views/tpl/form.php:25
1486
- msgid "Widget Map height"
1487
- msgstr "Widget kart-høyde"
1488
-
1489
- #: modules/gmap_widget/views/tpl/form.php:32
1490
- msgid "Display as image"
1491
- msgstr "Vis som bilde"
1492
-
1493
- #: modules/gmap_widget/views/tpl/form.php:40
1494
- msgid ""
1495
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1496
- msgstr ""
1497
- "Kart vil bli vist som bilde i sidekolonnen, på klikk - vil bli åpnet i popup"
1498
-
1499
- #: modules/gmap_widget/views/tpl/form.php:42
1500
- msgid "Image width (in px)"
1501
- msgstr "Bilde-bredde (i px)"
1502
-
1503
- #: modules/gmap_widget/views/tpl/form.php:49
1504
- msgid "Image height (in px)"
1505
- msgstr "Bilde-høyde (i px)"
1506
-
1507
- #: modules/icons/controller.php:20
1508
- msgid "Empty url"
1509
- msgstr "Tom url"
1510
-
1511
- #: modules/icons/models/icons.php:43
1512
- msgid "Icon no found"
1513
- msgstr "Ikon ikke funnet"
1514
-
1515
- #: modules/icons/models/icons.php:95
1516
- msgid "File not found"
1517
- msgstr "Fil ikke funnet"
1518
-
1519
- #: modules/icons/models/icons.php:100
1520
- msgid "Cannot get image"
1521
- msgstr "Kan ikke hente bilde"
1522
-
1523
- #: modules/icons/models/icons.php:111
1524
- msgid "cannot insert to table"
1525
- msgstr "kan ikke sette inn i tabell"
1526
-
1527
- #: modules/mail/mod.php:33
1528
- msgid "Can not send email - problem with send server"
1529
- msgstr "Kan ikke sende e-post - problem med send-server"
1530
-
1531
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
1532
- msgid "Marker Not Found"
1533
- msgstr "Markør ikke funnet"
1534
-
1535
- #: modules/marker/controller.php:48
1536
- msgid "Cannot remove marker"
1537
- msgstr "Kan ikke fjerne markør"
1538
-
1539
- #: modules/marker/controller.php:63
1540
- msgid "Cannot remove markers"
1541
- msgstr "Kan ikke fjerne markører"
1542
-
1543
- #: modules/marker/controller.php:144
1544
- msgid "Empty or invalid marker ID"
1545
- msgstr "Tom eller ugyldig markør-ID"
1546
-
1547
- #: modules/marker/mod.php:21
1548
- msgid "Drop"
1549
- msgstr "Dropp"
1550
-
1551
- #: modules/marker/mod.php:22
1552
- msgid "Bounce"
1553
- msgstr "Sprett"
1554
-
1555
- #: modules/marker/models/marker.php:49
1556
- msgid "Please enter marker name"
1557
- msgstr "Vennligst skriv inn markør-navn"
1558
-
1559
- #: modules/marker/models/marker.php:192
1560
- msgid "Address is empty or not match"
1561
- msgstr "Adresse er tom eller samsvarer ikke"
1562
-
1563
- #: modules/marker/models/marker.php:248
1564
- msgid "Invalid Marker ID"
1565
- msgstr "Ugyldig markør-ID"
1566
-
1567
- #: modules/marker_groups/controller.php:31
1568
- msgid "Marker Category data not found"
1569
- msgstr "Markør-kategori-data ikke funnet"
1570
-
1571
- #: modules/marker_groups/mod.php:8
1572
- msgid "Marker Categories"
1573
- msgstr "Markør-kategorier"
1574
-
1575
- #: modules/marker_groups/mod.php:11
1576
- msgid "Add New"
1577
- msgstr "Legg til ny"
1578
-
1579
- #: modules/marker_groups/mod.php:24
1580
- msgid "No Marker Category Found"
1581
- msgstr "Ingen markør-kategorier funnet"
1582
-
1583
- #: modules/marker_groups/models/marker_groups.php:56
1584
- msgid "Please enter Marker Category"
1585
- msgstr "Vennligst skriv inn markør-kategori"
1586
-
1587
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5
1588
- #: modules/marker_groups/views/tpl/mgrAdmin.php:7
1589
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:11
1590
- msgid "Add Category"
1591
- msgstr "Legg til kategori"
1592
-
1593
- #: modules/marker_groups/views/tpl/mgrAdmin.php:31
1594
- #, php-format
1595
- msgid ""
1596
- "You have no Marker Categories for now. <a href='%s' style='font-style: "
1597
- "italic;'>Create</a> your first Marker Category!"
1598
- msgstr ""
1599
- "Du har for tiden ingen markør-kategorier. <a href='%s' style='font-style: "
1600
- "italic;'>Opprett</a> din første markør-kategori!"
1601
-
1602
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:28
1603
- #: modules/options/views/tpl/optionsSettingsTabContent.php:6
1604
- msgid "Save"
1605
- msgstr "Lagre"
1606
-
1607
- #: modules/options/mod.php:94
1608
- msgid "General"
1609
- msgstr "Generelt"
1610
-
1611
- #: modules/options/mod.php:96
1612
- msgid "Send usage statistics"
1613
- msgstr "Send brukerstatistikk"
1614
-
1615
- #: modules/options/mod.php:96
1616
- msgid ""
1617
- "Send information about what plugin options you prefer to use, this will help "
1618
- "us make our solution better for You."
1619
- msgstr ""
1620
- "Send informasjon om utvidelses-alternativer du foretrekker å bruke, dette "
1621
- "vil hjelpe oss å forbedre produktet til deg."
1622
-
1623
- #: modules/options/mod.php:97
1624
- msgid "Enable promo link"
1625
- msgstr "Aktiver promo-lenke"
1626
-
1627
- #: modules/options/mod.php:97
1628
- msgid ""
1629
- "We are trying to make our plugin better for you, and you can help us with "
1630
- "this. Just check this option - and small promotion link will be added in the "
1631
- "bottom of your Google Maps. This is easy for you - but very helpful for us!"
1632
- msgstr ""
1633
- "Vi prøver å gjøre vår utvidelse bedre for deg, og du kan hjelpe oss med "
1634
- "dette. Bare kryss av her - og en liten promo-lenke vil bli lagt i bunnen av "
1635
- "Google Maps. Dette er lett for deg - men veldig nyttig for oss!"
1636
-
1637
- #: modules/options/models/modules.php:35
1638
- msgid "Module Updated"
1639
- msgstr "Modul oppdatert"
1640
-
1641
- #: modules/options/models/modules.php:50
1642
- msgid "Module Update Failed"
1643
- msgstr "Modul-oppdatering feilet"
1644
-
1645
- #: modules/options/models/modules.php:53
1646
- msgid "Error module ID"
1647
- msgstr "Feil modul-ID"
1648
-
1649
- #: modules/options/models/options.php:64
1650
- msgid "Empty data to save option"
1651
- msgstr "Tomme data for å lagre alternativ"
1652
-
1653
- #: modules/options/views/tpl/optionsAdminMain.php:18
1654
- msgid "Main page Go here!!!!"
1655
- msgstr "Hovedside Gå her!!!!"
1656
-
1657
- #: modules/options/views/tpl/optionsAdminPage.php:31
1658
- msgid "Improve Free version"
1659
- msgstr "Forbedre gratis-versjon"
1660
-
1661
- #: modules/options/views/tpl/optionsAdminPage.php:33
1662
- #, php-format
1663
- msgid ""
1664
- "Please be advised that this option is available only in <a target='_blank' "
1665
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1666
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1667
- "PopUps!"
1668
- msgstr ""
1669
- "Vær oppmerksom på at dette alternativet er kun tilgjengelig i <a "
1670
- "target='_blank' href='%s'>PRO-versjonen</a> . Du kan <a target='_blank' "
1671
- "href='%s' class='button'>få PRO</a> i dag og få dette og andre PRO-"
1672
- "alternativ for popups!"
1673
-
1674
- #: modules/options/views/tpl/optionsSettingsTabContent.php:3
1675
- msgid "Save all options"
1676
- msgstr "Lagre alle alternativer"
1677
-
1678
- #: modules/options/views/tpl/optionsSettingsTabContent.php:61
1679
- #, php-format
1680
- msgid "Turned On %s"
1681
- msgstr "Slo på %s"
1682
-
1683
- #: modules/options/views/tpl/optionsSettingsTabContent.php:62
1684
- #, php-format
1685
- msgid "Turned Off %s"
1686
- msgstr "Slo av %s"
1687
-
1688
- #: modules/supsystic_promo/controller.php:7
1689
- msgid "Information was saved. Thank you!"
1690
- msgstr "Informasjonen ble lagret. Takk!"
1691
-
1692
- #: modules/supsystic_promo/controller.php:23
1693
- msgid ""
1694
- "Please don't send contact requests so often - wait for response for your "
1695
- "previous requests."
1696
- msgstr ""
1697
- "Vennligst ikke send kontaktforespørsler så ofte - vent på svar på dine "
1698
- "tidligere forespørsler."
1699
-
1700
- #: modules/supsystic_promo/controller.php:45
1701
- msgid "Please enter valid email address"
1702
- msgstr "Vennligst skriv inn en gyldig e-postadresse"
1703
-
1704
- #: modules/supsystic_promo/mod.php:34
1705
- #, php-format
1706
- msgid ""
1707
- "<h3>Hey, I noticed you just use %s over a week - that's awesome!</"
1708
- "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
1709
- "WordPress? Just to help us spread the word and boost our motivation.</p>"
1710
- msgstr ""
1711
- "<h3>Hei, jeg la merke til at du har brukt %s over en uke - det er kjempebra!"
1712
- "</h3><p>Kan du gjøre meg en stor tjeneste og gi den en 5-stjerners rating på "
1713
- "WordPress? Bare for å hjelpe oss å spre ordet og øke vår motivasjon.</p>"
1714
-
1715
- #: modules/supsystic_promo/mod.php:35 modules/supsystic_promo/mod.php:41
1716
- msgid "Ok, you deserve it"
1717
- msgstr "Ok, du fortjener det"
1718
-
1719
- #: modules/supsystic_promo/mod.php:36 modules/supsystic_promo/mod.php:42
1720
- msgid "Nope, maybe later"
1721
- msgstr "Nei, kanskje senere"
1722
-
1723
- #: modules/supsystic_promo/mod.php:37
1724
- msgid "I already did"
1725
- msgstr "Det har jeg allerede gjort"
1726
-
1727
- #: modules/supsystic_promo/mod.php:38
1728
- #, php-format
1729
- msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
1730
- msgstr "<h3>Mer enn elleve dager med vår %s-utvidelse - gratulerer!</h3>"
1731
-
1732
- #: modules/supsystic_promo/mod.php:39
1733
- msgid ""
1734
- "<p>On behalf of the entire <a href='https://supsystic.com/' "
1735
- "target='_blank'>supsystic.com</a> company I would like to thank you for been "
1736
- "with us, and I really hope that our software helped you.</p>"
1737
- msgstr ""
1738
- "<p>På vegne av hele <a href='https://supsystic.com/' "
1739
- "target='_blank'>supsystic.com</a>-selskapet ville jeg gjerne takke deg for "
1740
- "vært med oss, og jeg håper virkelig at vår programvare har hjulpet deg.</p>"
1741
-
1742
- #: modules/supsystic_promo/mod.php:40
1743
- msgid ""
1744
- "<p>And today, if you want, - you can help us. This is really simple - you "
1745
- "can just add small promo link to our site under your maps. This is small "
1746
- "step for you, but a big help for us! Sure, if you don't want - just skip "
1747
- "this and continue enjoy our software!</p>"
1748
- msgstr ""
1749
- "<p>Og i dag, hvis du vil, - kan du hjelpe oss. Dette er veldig enkelt - du "
1750
- "kan bare legge til liten promo-link til vår side under kartene. Dette er "
1751
- "lite skritt for deg, men en stor hjelp for oss! Jada, hvis du ikke vil - "
1752
- "bare hopp over dette og fortsett å nyte vår programvare! </p>"
1753
-
1754
- #: modules/supsystic_promo/mod.php:43
1755
- msgid "Skip"
1756
- msgstr "Hopp over"
1757
-
1758
- #: modules/supsystic_promo/mod.php:87
1759
- msgid "Overview"
1760
- msgstr "Oversikt"
1761
-
1762
- #: modules/supsystic_promo/mod.php:113
1763
- msgid "Welcome to Supsystic Secure"
1764
- msgstr "Velkommen til Supsystic Secure"
1765
-
1766
- #: modules/supsystic_promo/mod.php:182
1767
- msgid "Name"
1768
- msgstr "Navn"
1769
-
1770
- #: modules/supsystic_promo/mod.php:184
1771
- msgid "Website"
1772
- msgstr "Nettsted"
1773
-
1774
- #: modules/supsystic_promo/mod.php:185
1775
- msgid "Subject"
1776
- msgstr "Overskrift"
1777
-
1778
- #: modules/supsystic_promo/mod.php:186
1779
- msgid "Topic"
1780
- msgstr "Emne"
1781
-
1782
- #: modules/supsystic_promo/mod.php:187
1783
- msgid "Plugin options"
1784
- msgstr "Plugin options"
1785
-
1786
- #: modules/supsystic_promo/mod.php:188
1787
- msgid "Report a bug"
1788
- msgstr "Report a bug"
1789
-
1790
- #: modules/supsystic_promo/mod.php:189
1791
- msgid "Require a new functionallity"
1792
- msgstr "Require a new functionallity"
1793
-
1794
- #: modules/supsystic_promo/mod.php:190
1795
- msgid "Other"
1796
- msgstr "Other"
1797
-
1798
- #: modules/supsystic_promo/mod.php:192
1799
- msgid "Message"
1800
- msgstr "Melding"
1801
-
1802
- #: modules/supsystic_promo/mod.php:192
1803
- msgid "Hello Supsystic Team!"
1804
- msgstr "Hello Supsystic Team!"
1805
-
1806
- #: modules/supsystic_promo/views/supsystic_promo.php:32
1807
- msgid "How to use Google Maps Easy Widget?"
1808
- msgstr "Hvordan bruke Google Maps Easy Widget?"
1809
-
1810
- #: modules/supsystic_promo/views/supsystic_promo.php:33
1811
- msgid ""
1812
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
1813
- "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
1814
- "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
1815
- "map for widget and configure the settings - Widget Map width and height.<br /"
1816
- ">5. Click 'Save'."
1817
- msgstr ""
1818
- "1. Gå til Utseende -> Widgeter i WordPress-navigasjonsmenyen. <br /> 2. Finn "
1819
- "Google Maps Easy i listen over tilgjengelige widgets. <br /> 3. Dra Google "
1820
- "Maps Easy widgeten til widget-området. <br /> 4. Velg kartet for widget og "
1821
- "konfigurer innstillinger - Widget-kart bredde og høyde. <br /> 5. Klikk på "
1822
- "'Lagre'."
1823
-
1824
- #: modules/supsystic_promo/views/supsystic_promo.php:34
1825
- msgid "How to add map into the site content?"
1826
- msgstr "Hvordan legge til kart i innholdet på nettstedet?"
1827
-
1828
- #: modules/supsystic_promo/views/supsystic_promo.php:35
1829
- msgid ""
1830
- "You can add a map in the site content via shortcode or php code. Learn more "
1831
- "about how to do this <a href='http://supsystic.com/add-map-into-site-"
1832
- "content/'>here</a>."
1833
- msgstr ""
1834
- "Du kan legge til et kart i innhold via shortcode eller php-kode. Lær mer om "
1835
- "hvordan du gjør dette <a href='http://supsystic.com/add-map-into-site-"
1836
- "content/'>her</a> ."
1837
-
1838
- #: modules/supsystic_promo/views/supsystic_promo.php:36
1839
- msgid "How to add map in popup window?"
1840
- msgstr "Hvordan legge til kart i et popup-vindu?"
1841
-
1842
- #: modules/supsystic_promo/views/supsystic_promo.php:37
1843
- msgid ""
1844
- "You can add a map in popup window by inserting map shortcode in any popup "
1845
- "text field. Learn more about how to do this <a href='http://supsystic.com/"
1846
- "add-map-in-popup-window/'>here</a>."
1847
- msgstr ""
1848
- "Du kan legge til et kart i et popup-vindu ved å sette kart-shortcode i alle "
1849
- "popup-tekstfelt. Lær mer om hvordan du gjør dette <a href='http://supsystic."
1850
- "com/add-map-in-popup-window/'>her</a> ."
1851
-
1852
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1853
- msgid "How to zoom and center the initial map on markers ?"
1854
- msgstr "Hvordan zoome og midtstille kartet på markørene?"
1855
-
1856
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1857
- msgid ""
1858
- "There is a few different ways to zoom and centralize map. The easiest one is "
1859
- "to drag your map using mouse - 'Draggable' option must be enabled, or with "
1860
- "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
1861
- "zoom-and-center-the-initial-map-on-markers/'>Read more..</a>"
1862
- msgstr ""
1863
- "Det er noen forskjellige måter å zoome og sentralisere kartet. Den enkleste "
1864
- "er å dra kartet ditt ved hjelp av musen - 'flyttbare'-alternativet må være "
1865
- "aktivert, eller med pan-kontroller hjelp i forhåndsvisning. <a href='http://"
1866
- "supsystic.com/how-to-zoom-and-center-the-initial-map-on-markers/'>Les mer .."
1867
- "</a>"
1868
-
1869
- #: modules/supsystic_promo/views/supsystic_promo.php:40
1870
- msgid "How to get PRO version of plugin for FREE?"
1871
- msgstr "Hvordan få PRO-versjonen av utvidelsen GRATIS?"
1872
-
1873
- #: modules/supsystic_promo/views/supsystic_promo.php:40
1874
- #, php-format
1875
- msgid ""
1876
- "You have an incredible opportunity to get PRO version for free. Make "
1877
- "Translation of plugin! It will be amazing if you take advantage of this "
1878
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
1879
- "version of any plugin for FREE'</a>"
1880
- msgstr ""
1881
- "Du har en utrolig mulighet til å få PRO-versjonen gratis. Gjør Oversettelse "
1882
- "av plugin! Det vil være fantastisk hvis du dra nytte av dette tilbudet! Mer "
1883
- "info finner du her <a target='_blank' href='%s'>'Få PRO-versjonen av noen "
1884
- "plugin gratis'</a>"
1885
-
1886
- #: modules/supsystic_promo/views/supsystic_promo.php:41
1887
- msgid "Translation"
1888
- msgstr "Oversettelse"
1889
-
1890
- #: modules/supsystic_promo/views/supsystic_promo.php:41
1891
- #, php-format
1892
- msgid ""
1893
- "All available languages are provided with the Supsystic Google Maps plugin. "
1894
- "If your language isn't available, your plugin will be in English by default."
1895
- "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
1896
- "b><br />Translate or update a translation Google Maps WordPress plugin in "
1897
- "your language and get a Premium license for FREE. <a target='_blank' "
1898
- "href='%s'>Contact us</a>."
1899
- msgstr ""
1900
- "Alle tilgjengelige språk følger med Supsystic Google Maps plugin. Hvis ditt "
1901
- "språk ikke er tilgjengelig, vil plugin være på engelsk som standard. <br /"
1902
- "><b>Tilgjengelige oversettelser: Engelsk, Polsk, Tysk, Spansk, Russisk</"
1903
- "b><br />Oversett eller oppdatere en oversettelse Google Maps WordPress-"
1904
- "utvidelse på ditt språk og få en Premium-lisens gratis. <a target='_blank' "
1905
- "href='%s'>Kontakt oss</a> ."
1906
-
1907
- #: modules/supsystic_promo/views/supsystic_promo.php:57
1908
- #, php-format
1909
- msgid ""
1910
- "There were some problem while trying to retrive our news, but you can always "
1911
- "check all list <a target='_blank' href='%s'>here</a>."
1912
- msgstr ""
1913
- "Det var noen problemer mens du prøver å hente våre nyheter, men du kan "
1914
- "alltids sjekke alle lister <a target='_blank' href='%s'>her.</a>"
1915
-
1916
- #: modules/supsystic_promo/views/supsystic_promo.php:67
1917
- #: modules/supsystic_promo/views/supsystic_promo.php:68
1918
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1919
- #: modules/supsystic_promo/views/supsystic_promo.php:75
1920
- #: modules/supsystic_promo/views/supsystic_promo.php:76
1921
- msgid "Yes"
1922
- msgstr "Ja"
1923
-
1924
- #: modules/supsystic_promo/views/supsystic_promo.php:67
1925
- #: modules/supsystic_promo/views/supsystic_promo.php:68
1926
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1927
- #: modules/supsystic_promo/views/supsystic_promo.php:75
1928
- #: modules/supsystic_promo/views/supsystic_promo.php:76
1929
- msgid "No"
1930
- msgstr "Nei"
1931
-
1932
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
1933
- #: modules/supsystic_promo/views/tpl/welcomePage.php:78
1934
- msgid "Version"
1935
- msgstr "Versjon"
1936
-
1937
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1938
- msgid "PRO"
1939
- msgstr "PRO"
1940
-
1941
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
1942
- msgid "Support"
1943
- msgstr "Support"
1944
-
1945
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
1946
- msgid "Add your"
1947
- msgstr "Legg til din"
1948
-
1949
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1950
- msgid "FAQ and Documentation"
1951
- msgstr "FAQ og dokumentasjon"
1952
-
1953
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1954
- msgid "Check all FAQs"
1955
- msgstr "Merk alle FAQs"
1956
-
1957
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1958
- #: modules/supsystic_promo/views/tpl/welcomePage.php:102
1959
- msgid "Video tutorial"
1960
- msgstr "Video-opplæring"
1961
-
1962
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1963
- msgid "PRO Features"
1964
- msgstr "PRO-funksjoner"
1965
-
1966
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
1967
- msgid "Server Settings"
1968
- msgstr "Server-instillinger"
1969
-
1970
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
1971
- msgid "News"
1972
- msgstr "Nyheter"
1973
-
1974
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
1975
- msgid "All news and info"
1976
- msgstr "Alle nyheter og informasjon"
1977
-
1978
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
1979
- msgid "Contact form"
1980
- msgstr "Kontaktskjema"
1981
-
1982
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1983
- msgid "Send email"
1984
- msgstr "Send e-post"
1985
-
1986
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
1987
- msgid ""
1988
- "Your email was send, we will try to respond to you as soon as possible. "
1989
- "Thank you for support!"
1990
- msgstr ""
1991
- "Din e-post ble sendt, vil vi prøve å svare deg så snart som mulig. Takk for "
1992
- "støtten!"
1993
-
1994
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
1995
- msgid "Welcome to"
1996
- msgstr "Velkommen til"
1997
-
1998
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
1999
- #, php-format
2000
- msgid "This is first start up of the %s plugin."
2001
- msgstr "Dette er første gang %s-utvidelsen starter"
2002
-
2003
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
2004
- msgid ""
2005
- "If you are newbie - check all features on that page, if you are guru - "
2006
- "please correct us."
2007
- msgstr ""
2008
- "Hvis du er nybegynner - sjekk alle funksjonene på denne siden, hvis du er "
2009
- "guru - vennligst korrigere oss."
2010
-
2011
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
2012
- msgid "Please, post url"
2013
- msgstr "Vennligst, post url"
2014
-
2015
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
2016
- msgid "What to do next? Check below section"
2017
- msgstr "Hva gjør man nå? Sjekk under avsnittet"
2018
-
2019
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
2020
- msgid "Boost us"
2021
- msgstr "Løft oss"
2022
-
2023
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
2024
- #, php-format
2025
- msgid ""
2026
- "It's amazing when you boost development with your feedback and ratings. So "
2027
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
2028
- "help us."
2029
- msgstr ""
2030
- "Det er utrolig når du øker utviklingingen med tilbakemeldinger og "
2031
- "karakterer. Så vi laget spesiell <a target='_blank' href='%s'>løft side</a> "
2032
- "for å hjelpe deg å hjelpe oss."
2033
-
2034
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
2035
- msgid "Documentation"
2036
- msgstr "Dokumentasjon"
2037
-
2038
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
2039
- #, php-format
2040
- msgid ""
2041
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
2042
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
2043
- msgstr ""
2044
- "Sjekk <a target='_blank' href='%s'>dokumentasjon</a> og FAQ-seksjon. Hvis du "
2045
- "ikke kan løse problemene dine - <a target='_blank' href='%s'>ta kontakt med "
2046
- "oss</a> ."
2047
-
2048
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
2049
- msgid "Full Features List"
2050
- msgstr "Full funksjons-liste"
2051
-
2052
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
2053
- msgid "There are so many features, so we can't post it here. Like"
2054
- msgstr "Det er så mange funksjoner, så vi kan ikke legge det ut her. Like"
2055
-
2056
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
2057
- msgid "Capcha for admin login"
2058
- msgstr "CAPTCHA for admin-login"
2059
-
2060
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
2061
- msgid "htaccess admin protect"
2062
- msgstr "htaccess admin-beskyttelse"
2063
-
2064
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
2065
- msgid "Hide directory files listing"
2066
- msgstr "Skjul katalog-fil-liste"
2067
-
2068
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
2069
- msgid "Check files and directories write permissions"
2070
- msgstr "Sjekk skrive-rettigheter for filer og kataloger"
2071
-
2072
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
2073
- #, php-format
2074
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
2075
- msgstr "Så sjekk full funksjons-liste <a target='_blank' href='%s'>her</a>."
2076
-
2077
- #~ msgid "Google Map"
2078
- #~ msgstr "Google Map"
2079
-
2080
- #~ msgid "Marker Title font size"
2081
- #~ msgstr "Markør-tittel skriftstørrelse"
2082
-
2083
- #~ msgid "You can set your markers title font size here"
2084
- #~ msgstr "Du kan sette din markør-tittels skriftstørrelse her"
2085
-
2086
- #~ msgid "Marker Description font size"
2087
- #~ msgstr "Markør-beskrivelse skriftstørrelse"
2088
-
2089
- #~ msgid "You can set your markers description font size here"
2090
- #~ msgstr "Du kan sette din markør-beskrivelses skriftstørrelse her"
2091
-
2092
- #~ msgid "Undefined"
2093
- #~ msgstr "Udefinert"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-nl_NL.mo DELETED
Binary file
lang/gmp_lng-nl_NL.po DELETED
@@ -1,2038 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2015-04-12 19:26+0200\n"
5
- "PO-Revision-Date: 2017-12-15 13:21+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.8.9\n"
12
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "Language: nl_NL\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
-
18
- #: ../classes/controller.php:198 ../classes/controller.php:206
19
- #: ../doc/google-maps-easy-pro/license/controller.php:6
20
- #: ../doc/old-version/classes/controller.php:198
21
- #: ../doc/old-version/classes/controller.php:206
22
- #: ../doc/old-version/modules/adminmenu/controller.php:29
23
- #: ../doc/old-version/modules/gmap/controller.php:39
24
- #: ../doc/old-version/modules/gmap/controller.php:56
25
- #: ../doc/old-version/modules/marker/controller.php:8
26
- #: ../doc/old-version/modules/marker/controller.php:46
27
- #: ../doc/old-version/modules/marker/controller.php:61
28
- #: ../doc/old-version/modules/marker/controller.php:101
29
- #: ../doc/old-version/modules/marker_groups/controller.php:18
30
- #: ../doc/old-version/modules/marker_groups/controller.php:33
31
- #: ../doc/old-version/modules/options/controller.php:6
32
- #: ../modules/adminmenu/controller.php:29 ../modules/gmap/controller.php:39
33
- #: ../modules/gmap/controller.php:56 ../modules/marker/controller.php:8
34
- #: ../modules/marker/controller.php:46 ../modules/marker/controller.php:61
35
- #: ../modules/marker/controller.php:101
36
- #: ../modules/marker_groups/controller.php:18
37
- #: ../modules/marker_groups/controller.php:33
38
- #: ../modules/options/controller.php:6
39
- msgid "Done"
40
- msgstr "Klaar"
41
-
42
- #: ../classes/field.php:131 ../doc/old-version/classes/field.php:131
43
- msgid "Select"
44
- msgstr "Selecteer"
45
-
46
- #: ../classes/field.php:170 ../classes/field.php:179 ../classes/field.php:184
47
- #: ../doc/old-version/classes/field.php:170
48
- #: ../doc/old-version/classes/field.php:179
49
- #: ../doc/old-version/classes/field.php:184
50
- msgid "N/A"
51
- msgstr "NVT"
52
-
53
- #: ../classes/field.php:277 ../doc/old-version/classes/field.php:277
54
- msgid "Add Checkbox"
55
- msgstr "Voeg Checkbox toe"
56
-
57
- #: ../classes/field.php:282 ../classes/field.php:287
58
- #: ../doc/old-version/classes/field.php:282
59
- #: ../doc/old-version/classes/field.php:287
60
- msgid "Add Item"
61
- msgstr "Toevoegen item"
62
-
63
- #: ../classes/field.php:293 ../doc/old-version/classes/field.php:293
64
- msgid "Add Radio Button"
65
- msgstr "Voeg keuzerondje toe"
66
-
67
- #: ../classes/field.php:311 ../doc/old-version/classes/field.php:311
68
- msgid "Dimensions"
69
- msgstr "Afmetingen"
70
-
71
- #: ../classes/field.php:314 ../doc/old-version/classes/field.php:314
72
- msgid "width"
73
- msgstr "breedte"
74
-
75
- #: ../classes/field.php:316 ../doc/old-version/classes/field.php:316
76
- msgid "height"
77
- msgstr "hoogte"
78
-
79
- #: ../classes/field.php:323 ../doc/old-version/classes/field.php:323
80
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
81
- msgstr "Klik om het veld &quot;id&quot; en &quot;class&quot; toe te voegen"
82
-
83
- #: ../classes/field.php:324 ../doc/old-version/classes/field.php:324
84
- msgid "Attributes"
85
- msgstr "Attributen"
86
-
87
- #: ../classes/field.php:402 ../doc/old-version/classes/field.php:402
88
- msgid "There are no configuration options for this module"
89
- msgstr "Er zijn geen configuratie opties voor deze module"
90
-
91
- #: ../classes/fieldAdapter.php:93
92
- #: ../doc/old-version/classes/fieldAdapter.php:93
93
- msgid "Apply To"
94
- msgstr "Toepassen op"
95
-
96
- #: ../classes/fieldAdapter.php:95
97
- #: ../doc/old-version/classes/fieldAdapter.php:95
98
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:349
99
- #: ../doc/old-version/modules/marker/views/marker.php:35
100
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:64
101
- #: ../modules/gmap/views/tpl/gmapEditMap.php:437
102
- msgid "Address"
103
- msgstr "Adres"
104
-
105
- #: ../classes/fieldAdapter.php:96
106
- #: ../doc/old-version/classes/fieldAdapter.php:96
107
- msgid "Destination"
108
- msgstr "Bestemming"
109
-
110
- #: ../classes/fieldAdapter.php:97
111
- #: ../doc/old-version/classes/fieldAdapter.php:97
112
- msgid "Country"
113
- msgstr "Land"
114
-
115
- #: ../classes/fieldAdapter.php:100
116
- #: ../doc/old-version/classes/fieldAdapter.php:100
117
- msgid "Categories"
118
- msgstr "Categorieën"
119
-
120
- #: ../classes/fieldAdapter.php:101
121
- #: ../doc/old-version/classes/fieldAdapter.php:101
122
- msgid "You have no categories"
123
- msgstr "U hebt geen categorieën"
124
-
125
- #: ../classes/fieldAdapter.php:102
126
- #: ../doc/old-version/classes/fieldAdapter.php:102
127
- msgid "Brands"
128
- msgstr "Merken"
129
-
130
- #: ../classes/fieldAdapter.php:103
131
- #: ../doc/old-version/classes/fieldAdapter.php:103
132
- msgid "You have no brands"
133
- msgstr "U hebt geen merken"
134
-
135
- #: ../classes/fieldAdapter.php:105
136
- #: ../doc/old-version/classes/fieldAdapter.php:105
137
- msgid "Tax Rate"
138
- msgstr "Belastingvoet"
139
-
140
- #: ../classes/fieldAdapter.php:106
141
- #: ../doc/old-version/classes/fieldAdapter.php:106
142
- msgid "Absolute"
143
- msgstr "Absoluut"
144
-
145
- #: ../classes/fieldAdapter.php:134
146
- #: ../doc/old-version/classes/fieldAdapter.php:134
147
- msgid "Not selected"
148
- msgstr "Niet geselecteerd"
149
-
150
- #: ../classes/fieldAdapter.php:184
151
- #: ../doc/old-version/classes/fieldAdapter.php:184
152
- msgid "class"
153
- msgstr "class"
154
-
155
- #: ../classes/fieldAdapter.php:186
156
- #: ../doc/old-version/classes/fieldAdapter.php:186
157
- msgid "id"
158
- msgstr "id"
159
-
160
- #: ../classes/frame.php:135 ../doc/old-version/classes/frame.php:135
161
- msgid "You have no permissions to view this page"
162
- msgstr "U hebt niet de bevoegde rechten om deze pagina te bekijken"
163
-
164
- #: ../classes/html.php:207 ../doc/old-version/classes/html.php:207
165
- msgid "Upload"
166
- msgstr "Upload"
167
-
168
- #: ../classes/html.php:611 ../doc/old-version/classes/html.php:611
169
- msgid "ON"
170
- msgstr "AAN"
171
-
172
- #: ../classes/html.php:612 ../doc/old-version/classes/html.php:612
173
- msgid "OFF"
174
- msgstr "UIT"
175
-
176
- #: ../classes/html.php:636 ../doc/old-version/classes/html.php:636
177
- #, php-format
178
- msgid "Select %s"
179
- msgstr "Selecteer %s"
180
-
181
- #: ../classes/model.php:174 ../classes/model.php:186
182
- #: ../doc/old-version/classes/model.php:174
183
- #: ../doc/old-version/classes/model.php:186
184
- msgid "Database error detected"
185
- msgstr "Database fout gevonden"
186
-
187
- #: ../classes/model.php:176 ../doc/old-version/classes/model.php:176
188
- #: ../doc/old-version/modules/gmap/models/gmap.php:103
189
- #: ../doc/old-version/modules/icons/models/icons.php:133
190
- #: ../modules/gmap/models/gmap.php:105 ../modules/icons/models/icons.php:133
191
- msgid "Invalid ID"
192
- msgstr "Ongeldige ID"
193
-
194
- #: ../classes/model.php:209 ../doc/old-version/classes/model.php:209
195
- msgid "Empty or invalid ID"
196
- msgstr "Lege of ongeldige ID"
197
-
198
- #: ../classes/modInstaller.php:34
199
- #: ../doc/old-version/classes/modInstaller.php:34
200
- #, php-format
201
- msgid "Move files for %s failed"
202
- msgstr "Bestanden verplaatsen voor %s is mislukt"
203
-
204
- #: ../classes/modInstaller.php:37
205
- #: ../doc/old-version/classes/modInstaller.php:37
206
- #, php-format
207
- msgid "%s is not plugin module"
208
- msgstr "%s is geen plugin module"
209
-
210
- #: ../classes/modInstaller.php:76
211
- #: ../doc/old-version/classes/modInstaller.php:76
212
- msgid "Can not create module directory. Try to set permission to "
213
- msgstr ""
214
- "Kan de module map niet opzetten. Probeer de permissies te veranderen naar "
215
-
216
- #: ../classes/modInstaller.php:103
217
- #: ../doc/old-version/classes/modInstaller.php:103
218
- msgid "No modules were found in XML file"
219
- msgstr "Geen modules gevonden in XML bestand"
220
-
221
- #: ../classes/modInstaller.php:107
222
- #: ../doc/old-version/classes/modInstaller.php:107
223
- msgid "Invalid XML file"
224
- msgstr "Ongeldig XML bestand"
225
-
226
- #: ../classes/modInstaller.php:109
227
- #: ../doc/old-version/classes/modInstaller.php:109
228
- msgid "No XML file were found"
229
- msgstr "Geen XML bestand gevonden"
230
-
231
- #: ../classes/modInstaller.php:128
232
- #: ../doc/old-version/classes/modInstaller.php:128
233
- #, php-format
234
- msgid "Install %s failed"
235
- msgstr "Installatie %s mislukt"
236
-
237
- #: ../classes/modInstaller.php:134
238
- #: ../doc/old-version/classes/modInstaller.php:134
239
- msgid "Error Activate module"
240
- msgstr "Fout in activering module"
241
-
242
- #: ../classes/modInstaller.php:164
243
- #: ../doc/old-version/classes/modInstaller.php:164
244
- msgid "Error Deactivation module"
245
- msgstr "Fout bij deactiveren module"
246
-
247
- #: ../classes/modInstaller.php:185
248
- #: ../doc/old-version/classes/modInstaller.php:185
249
- msgid "Error Activating module"
250
- msgstr "Fout bij activeren module"
251
-
252
- #: ../classes/table.php:277 ../doc/old-version/classes/table.php:277
253
- msgid "Nothig to update"
254
- msgstr "Niets om te updaten"
255
-
256
- #: ../classes/table.php:293 ../doc/old-version/classes/table.php:293
257
- msgid "Database error. Please contact your developer."
258
- msgstr "Database fout. Contacteer de ontwikkelaar aub."
259
-
260
- #: ../classes/validator.php:30 ../doc/old-version/classes/validator.php:30
261
- #, php-format
262
- msgid "Invalid length for %s, max length is %s"
263
- msgstr "Ongeldige lengte voor %s, max lengte is %s"
264
-
265
- #: ../classes/validator.php:43 ../doc/old-version/classes/validator.php:43
266
- #, php-format
267
- msgid "Invalid numeric value for %s"
268
- msgstr "Ongeldige numerieke waarde voor %s "
269
-
270
- #: ../classes/validator.php:71 ../doc/old-version/classes/validator.php:71
271
- #: ../doc/old-version/modules/supsystic_promo/controller.php:39
272
- #: ../modules/supsystic_promo/controller.php:39
273
- #, php-format
274
- msgid "Please enter %s"
275
- msgstr "Voeg aub %s in "
276
-
277
- #: ../classes/validator.php:78 ../doc/old-version/classes/validator.php:78
278
- #: ../doc/old-version/modules/supsystic_promo/controller.php:39
279
- #: ../modules/supsystic_promo/controller.php:39
280
- #, php-format
281
- msgid "Please select %s"
282
- msgstr "Selecteer %s aub "
283
-
284
- #: ../classes/validator.php:85 ../classes/validator.php:101
285
- #: ../doc/old-version/classes/validator.php:85
286
- #: ../doc/old-version/classes/validator.php:101
287
- #, php-format
288
- msgid "Invalid %s"
289
- msgstr "Ongeldige %s"
290
-
291
- #: ../classes/validator.php:88 ../doc/old-version/classes/validator.php:88
292
- #, php-format
293
- msgid "%s is already registered"
294
- msgstr " %s is reeds geregistreerd"
295
-
296
- #: ../classes/tables/marker.php:7 ../classes/tables/marker_groups.php:8
297
- #: ../doc/old-version/classes/tables/maps.php:8
298
- #: ../doc/old-version/classes/tables/marker.php:7
299
- #: ../doc/old-version/classes/tables/marker_groups.php:8
300
- msgid "Map ID"
301
- msgstr "Kaart ID"
302
-
303
- #: ../classes/tables/marker.php:8 ../classes/tables/marker_groups.php:9
304
- #: ../doc/old-version/classes/tables/maps.php:9
305
- #: ../doc/old-version/classes/tables/marker.php:8
306
- #: ../doc/old-version/classes/tables/marker_groups.php:9
307
- msgid "File name"
308
- msgstr "Bestandsnaam"
309
-
310
- #: ../classes/tables/marker.php:9 ../classes/tables/marker_groups.php:10
311
- #: ../doc/old-version/classes/tables/maps.php:10
312
- #: ../doc/old-version/classes/tables/marker.php:9
313
- #: ../doc/old-version/classes/tables/marker_groups.php:10
314
- msgid "Description Of Map"
315
- msgstr "Beschrijving van de kaart"
316
-
317
- #: ../classes/tables/marker.php:10
318
- #: ../doc/old-version/classes/tables/marker.php:10
319
- msgid "X coordinate if marker(lng)"
320
- msgstr "X coördinaat van baken(lng)"
321
-
322
- #: ../classes/tables/marker.php:11
323
- #: ../doc/old-version/classes/tables/marker.php:11
324
- msgid "Y coordinate of marker(lat)"
325
- msgstr "Y coördinaat van baken(lat)"
326
-
327
- #: ../classes/tables/marker.php:12
328
- #: ../doc/old-version/classes/tables/marker.php:12
329
- msgid "Path of icon file"
330
- msgstr "Pad van het pictogram bestand"
331
-
332
- #: ../classes/tables/marker.php:13
333
- #: ../doc/old-version/classes/tables/marker.php:13
334
- msgid "Map Id"
335
- msgstr "Kaart id"
336
-
337
- #: ../classes/tables/marker.php:14
338
- #: ../doc/old-version/classes/tables/marker.php:14
339
- msgid "Marker Address"
340
- msgstr "Baken adres"
341
-
342
- #: ../classes/tables/marker.php:15
343
- #: ../doc/old-version/classes/tables/marker.php:15
344
- msgid "Id of Marker's group"
345
- msgstr "Id van baken groep"
346
-
347
- #: ../classes/tables/marker.php:16
348
- #: ../doc/old-version/classes/tables/marker.php:16
349
- msgid "Animation"
350
- msgstr "Animatie"
351
-
352
- #: ../classes/tables/marker.php:17 ../classes/tables/modules.php:10
353
- #: ../classes/tables/options.php:11
354
- #: ../doc/old-version/classes/tables/marker.php:17
355
- #: ../doc/old-version/classes/tables/modules.php:10
356
- #: ../doc/old-version/classes/tables/options.php:11
357
- msgid "Params"
358
- msgstr "Parameters"
359
-
360
- #: ../classes/tables/marker.php:18
361
- #: ../doc/old-version/classes/tables/marker.php:18
362
- msgid "Creation date"
363
- msgstr "Datum creatie"
364
-
365
- #: ../classes/tables/modules.php:7 ../classes/tables/modules_type.php:8
366
- #: ../classes/tables/options.php:10
367
- #: ../doc/old-version/classes/tables/modules.php:7
368
- #: ../doc/old-version/classes/tables/modules_type.php:8
369
- #: ../doc/old-version/classes/tables/options.php:10
370
- msgid "Label"
371
- msgstr "Label"
372
-
373
- #: ../classes/tables/modules.php:8 ../classes/tables/options.php:13
374
- #: ../doc/old-version/classes/tables/modules.php:8
375
- #: ../doc/old-version/classes/tables/options.php:13
376
- msgid "Type"
377
- msgstr "Soort"
378
-
379
- #: ../classes/tables/modules.php:9
380
- #: ../doc/old-version/classes/tables/modules.php:9
381
- msgid "Active"
382
- msgstr "Actief"
383
-
384
- #: ../classes/tables/modules.php:11
385
- #: ../doc/old-version/classes/tables/modules.php:11
386
- msgid "Has Tab"
387
- msgstr "Heeft tab"
388
-
389
- #: ../classes/tables/modules.php:12 ../classes/tables/options.php:12
390
- #: ../doc/old-version/classes/tables/modules.php:12
391
- #: ../doc/old-version/classes/tables/options.php:12
392
- #: ../doc/old-version/modules/marker/views/marker.php:32
393
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:10
394
- msgid "Description"
395
- msgstr "Beschrijving"
396
-
397
- #: ../classes/tables/modules.php:13 ../classes/tables/options.php:8
398
- #: ../classes/tables/usage.php:9
399
- #: ../doc/old-version/classes/tables/modules.php:13
400
- #: ../doc/old-version/classes/tables/options.php:8
401
- #: ../doc/old-version/classes/tables/usage.php:9
402
- msgid "Code"
403
- msgstr "Code"
404
-
405
- #: ../classes/tables/modules.php:14
406
- #: ../doc/old-version/classes/tables/modules.php:14
407
- msgid "External plugin directory"
408
- msgstr "Externe plugin map"
409
-
410
- #: ../classes/tables/modules_type.php:7 ../classes/tables/options.php:7
411
- #: ../classes/tables/options_categories.php:7
412
- #: ../doc/old-version/classes/tables/modules_type.php:7
413
- #: ../doc/old-version/classes/tables/options.php:7
414
- #: ../doc/old-version/classes/tables/options_categories.php:7
415
- #: ../doc/old-version/modules/gmap/views/gmap.php:154
416
- #: ../doc/old-version/modules/marker/views/marker.php:29
417
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:7
418
- #: ../modules/gmap/views/gmap.php:122
419
- msgid "ID"
420
- msgstr "ID"
421
-
422
- #: ../classes/tables/options.php:9
423
- #: ../doc/old-version/classes/tables/options.php:9
424
- msgid "Value"
425
- msgstr "Waarde"
426
-
427
- #: ../classes/tables/options.php:14
428
- #: ../doc/old-version/classes/tables/options.php:14
429
- msgid "Category ID"
430
- msgstr "Categorie ID"
431
-
432
- #: ../classes/tables/options.php:15
433
- #: ../doc/old-version/classes/tables/options.php:15
434
- msgid "Sort Order"
435
- msgstr "Sorteringsvolgorde"
436
-
437
- #: ../classes/tables/options.php:16
438
- #: ../doc/old-version/classes/tables/options.php:16
439
- msgid "Value Type"
440
- msgstr "Soort waarde"
441
-
442
- #: ../classes/tables/options_categories.php:8
443
- #: ../doc/old-version/classes/tables/options_categories.php:8
444
- msgid "Method"
445
- msgstr "Methode"
446
-
447
- #: ../classes/tables/usage.php:8 ../doc/old-version/classes/tables/usage.php:8
448
- msgid "Usage id"
449
- msgstr "Gebruiks id"
450
-
451
- #: ../classes/tables/usage.php:10
452
- #: ../doc/old-version/classes/tables/usage.php:10
453
- msgid "Visits Count"
454
- msgstr "Bezoeken teller"
455
-
456
- #: ../doc/google-maps-easy-pro/wpUpdater.php:68
457
- msgid ""
458
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
459
- "onclick='document.location.reload(); return false;'>Try again</a>"
460
- msgstr ""
461
- "Een onverwachte HTTP fout heeft zich voor gedaan tijdens het testen van het "
462
- "API verzoek.</p> <p><a href='?' onclick='document.location.reload(); return "
463
- "false;'>Probeer opnieuw</a>"
464
-
465
- #: ../doc/google-maps-easy-pro/wpUpdater.php:73
466
- msgid "An unknown error occurred"
467
- msgstr "Een onbekende fout heeft zich voor gedaan"
468
-
469
- #: ../doc/google-maps-easy-pro/license/mod.php:23
470
- #, php-format
471
- msgid ""
472
- "Your license is expired. Once you extend your license - you will be able to "
473
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
474
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
475
- "click on 'Re-activate' button to re-activate your PRO version."
476
- msgstr ""
477
- "Uw licentie is vervallen. Wanneer u uw licentie verlengt zal u de PRO versie "
478
- "weer kunnen updaten. Om uw PRO versie te verlengen: Volg <a href='%s' "
479
- "target='_blank'>deze link</a>, daarna gaat u naar <a href='%s'>Licentie</a> "
480
- "tab en klik op 'Her-activeren' knop om uw PRO versie te activeren."
481
-
482
- #: ../doc/google-maps-easy-pro/license/mod.php:31
483
- #, php-format
484
- msgid ""
485
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
486
- "target='_blank'>click here</a> to extend your license, then - go to <a "
487
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
488
- "your PRO version."
489
- msgstr ""
490
- "Uw licentie voor de PRO versie van %s plugin - is vervallen. U kan <a "
491
- "href='%s' target='_blank'>hier klikken</a> om uw licentie te verlengen, "
492
- "daarna gaat u naar <a href='%s'>Licentie</a> tab klik op de 'Her-activatie' "
493
- "knop om uw PRO versie te verlengen."
494
-
495
- #: ../doc/google-maps-easy-pro/license/mod.php:44
496
- msgid "License"
497
- msgstr "Licentie"
498
-
499
- #: ../doc/google-maps-easy-pro/license/models/license.php:54
500
- msgid "Please enter your License Key"
501
- msgstr "Geef aub uw licentiesleutel in"
502
-
503
- #: ../doc/google-maps-easy-pro/license/models/license.php:56
504
- msgid "Please enter your Email address"
505
- msgstr "Geef aub uw e-mailadres in"
506
-
507
- #: ../doc/google-maps-easy-pro/license/models/license.php:130
508
- msgid ""
509
- "There was a problem with sending request to our autentification server. "
510
- "Please try latter."
511
- msgstr ""
512
- "Er was een probleem bij het verzenden van uw verzoek naar onze authenticatie "
513
- "server. Probeer later opnieuw."
514
-
515
- #: ../doc/google-maps-easy-pro/license/models/license.php:153
516
- #, php-format
517
- msgid "License for plugin %s will expire today."
518
- msgstr "Licentie voor %s plugin vervalt vandaag."
519
-
520
- #: ../doc/google-maps-easy-pro/license/models/license.php:155
521
- #, php-format
522
- msgid "License for plugin %s will expire tomorrow."
523
- msgstr "Licentie voor %s plugin vervalt morgen."
524
-
525
- #: ../doc/google-maps-easy-pro/license/models/license.php:157
526
- #, php-format
527
- msgid "License for plugin %s will expire in %d days."
528
- msgstr "Licentie voor %s plugin zal vervallen binnen %d dagen."
529
-
530
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
531
- #, php-format
532
- msgid ""
533
- "Congradulations! PRO version of %s plugin is activated and working fine!"
534
- msgstr ""
535
- "Gefeliciteerd! PRO versie van %s plugin is geactiveerd en werkt naar behoren."
536
-
537
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
538
- #, php-format
539
- msgid ""
540
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
541
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
542
- "activate' button to re-activate your PRO version."
543
- msgstr ""
544
- "Uw licentie voor de PRO versie van %s plugin - is vervallen. U kan <a "
545
- "href='%s' target='_blank'>hier klikken</a> om uw licentie te verlengen, "
546
- "daarna klikt u op de 'Her-activeren' knop om uw PRO versie te verlengen."
547
-
548
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
549
- #, php-format
550
- msgid ""
551
- "Congradulations! You have successfully installed PRO version of %s plugin. "
552
- "Final step to finish Your PRO version setup - is to enter your Email and "
553
- "License Key on this page. This will activate Your copy of software on this "
554
- "site."
555
- msgstr ""
556
- "Gefeliciteerd! U hebt de PRO versie van de %s plugin met succes "
557
- "geïnstalleerd. De laatste stap om de installatie van uw PRO versie af te "
558
- "ronden is het ingeven van uw e-mail en licentiesleutel op deze pagina. Dit "
559
- "zal uw licentie op deze site activeren."
560
-
561
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
562
- #: ../doc/old-version/modules/supsystic_promo/mod.php:124
563
- #: ../modules/supsystic_promo/mod.php:124
564
- msgid "Email"
565
- msgstr "E-mail"
566
-
567
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
568
- msgid ""
569
- "Your email address, used on checkout procedure on <a href='%' "
570
- "target='_blank'>%s</a>"
571
- msgstr ""
572
- "Uw e-mailadres, gebruikt bij de betalingsprocedure <a href='%' "
573
- "target='_blank'>%s</a>"
574
-
575
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
576
- msgid "License Key"
577
- msgstr "Licentiesleutel"
578
-
579
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
580
- msgid ""
581
- "Your License Key from your account on <a href='%' target='_blank'>%s</a>"
582
- msgstr ""
583
- "Uw licentiesleutel van uw account op <a href='%' target='_blank'>%s</a>"
584
-
585
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
586
- msgid "Re-activate"
587
- msgstr "Her-activeren"
588
-
589
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
590
- msgid "Activate"
591
- msgstr "Activeren"
592
-
593
- #: ../doc/old-version/classes/tables/icons.php:8
594
- msgid "Icon ID"
595
- msgstr "Pictogram ID"
596
-
597
- #: ../doc/old-version/classes/tables/icons.php:9
598
- msgid "Icon Title"
599
- msgstr "Pictogram titel"
600
-
601
- #: ../doc/old-version/classes/tables/icons.php:10
602
- msgid "Icon Description"
603
- msgstr "Pictogram beschrijving"
604
-
605
- #: ../doc/old-version/classes/tables/icons.php:11
606
- msgid "File Path"
607
- msgstr "Bestandspad"
608
-
609
- #: ../doc/old-version/classes/tables/maps.php:11
610
- msgid "Html Parametrs"
611
- msgstr "Html parameters"
612
-
613
- #: ../doc/old-version/classes/tables/maps.php:12
614
- msgid "Create Date"
615
- msgstr "Datum creatie"
616
-
617
- #: ../doc/old-version/classes/tables/maps.php:13
618
- msgid "Additional Params"
619
- msgstr "Additionele parameters"
620
-
621
- #: ../doc/old-version/modules/adminmenu/controller.php:7
622
- #: ../modules/adminmenu/controller.php:7
623
- msgid "Your name field is required."
624
- msgstr "Het naam veld is verplicht."
625
-
626
- #: ../doc/old-version/modules/adminmenu/controller.php:8
627
- #: ../modules/adminmenu/controller.php:8
628
- msgid "Your website field is required."
629
- msgstr "Het website veld is verplicht."
630
-
631
- #: ../doc/old-version/modules/adminmenu/controller.php:9
632
- #: ../modules/adminmenu/controller.php:9
633
- msgid "Your e-mail field is required."
634
- msgstr "Het e-mail veld is verplicht."
635
-
636
- #: ../doc/old-version/modules/adminmenu/controller.php:10
637
- #: ../modules/adminmenu/controller.php:10
638
- msgid "Subject field is required."
639
- msgstr "Het onderwerp veld is verplicht."
640
-
641
- #: ../doc/old-version/modules/adminmenu/controller.php:11
642
- #: ../modules/adminmenu/controller.php:11
643
- msgid "You must select a valid category."
644
- msgstr "U moet een geldige categorie selecteren."
645
-
646
- #: ../doc/old-version/modules/adminmenu/controller.php:12
647
- #: ../modules/adminmenu/controller.php:12
648
- msgid "Message field is required."
649
- msgstr "Het boodschap veld is verplicht."
650
-
651
- #: ../doc/old-version/modules/adminmenu/mod.php:12
652
- #: ../modules/adminmenu/mod.php:12
653
- msgid "Settings"
654
- msgstr "Instellingen"
655
-
656
- #: ../doc/old-version/modules/csv/controller.php:11
657
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:9
658
- #: ../modules/csv/controller.php:11
659
- #: ../modules/csv/views/tpl/csvTabContent.php:9
660
- msgid "Maps"
661
- msgstr "Kaarten"
662
-
663
- #: ../doc/old-version/modules/csv/controller.php:47
664
- #: ../modules/csv/controller.php:47
665
- msgid "Marker"
666
- msgstr "Baken"
667
-
668
- #: ../doc/old-version/modules/csv/controller.php:100
669
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:30
670
- #: ../doc/old-version/modules/gmap/views/gmap.php:158
671
- #: ../modules/csv/controller.php:100
672
- #: ../modules/csv/views/tpl/csvTabContent.php:30
673
- #: ../modules/gmap/views/gmap.php:125
674
- #: ../modules/gmap/views/tpl/gmapEditMap.php:17
675
- msgid "Markers"
676
- msgstr "Bakens"
677
-
678
- #: ../doc/old-version/modules/csv/controller.php:133
679
- #: ../modules/csv/controller.php:133
680
- msgid "Missing File"
681
- msgstr "Missend bestand"
682
-
683
- #: ../doc/old-version/modules/csv/controller.php:135
684
- #: ../modules/csv/controller.php:135
685
- #, php-format
686
- msgid "File uploaded with error code %s"
687
- msgstr "Bestand uploaden met foutcode %s"
688
-
689
- #: ../doc/old-version/modules/csv/controller.php:154
690
- #: ../modules/csv/controller.php:154
691
- #, php-format
692
- msgid "Added %s maps"
693
- msgstr "%s kaarten toegevoegd"
694
-
695
- #: ../doc/old-version/modules/csv/controller.php:156
696
- #: ../modules/csv/controller.php:156
697
- #, php-format
698
- msgid "Updated %s maps"
699
- msgstr "%s kaarten bijgewerkt"
700
-
701
- #: ../doc/old-version/modules/csv/controller.php:158
702
- #: ../modules/csv/controller.php:158
703
- #, php-format
704
- msgid "Added %s markers"
705
- msgstr "%s bakens toegevoegd"
706
-
707
- #: ../doc/old-version/modules/csv/controller.php:160
708
- #: ../modules/csv/controller.php:160
709
- #, php-format
710
- msgid "Updated %s markers"
711
- msgstr "%s bakens bijgewerkt"
712
-
713
- #: ../doc/old-version/modules/csv/controller.php:164
714
- #: ../modules/csv/controller.php:164
715
- msgid ""
716
- "File should contain more then 1 row, at least 1 row should be for headers"
717
- msgstr ""
718
- "Bestand moet meer dan 1 rij bevatten, ten minste 1 rij is voor de headers/"
719
- "hoofding"
720
-
721
- #: ../doc/old-version/modules/csv/controller.php:166
722
- #: ../modules/csv/controller.php:166
723
- msgid "Empty data in file"
724
- msgstr "Lege data in bestand"
725
-
726
- #: ../doc/old-version/modules/csv/mod.php:11 ../modules/csv/mod.php:11
727
- msgid "Maps Import / Export"
728
- msgstr "Kaarten importeren / exporteren"
729
-
730
- #: ../doc/old-version/modules/csv/models/csv.php:133
731
- #: ../modules/csv/models/csv.php:133
732
- msgid "Can not detect import list type"
733
- msgstr "Kan het importeren lijst type niet vinden"
734
-
735
- #: ../doc/old-version/modules/csv/models/csv.php:135
736
- #: ../modules/csv/models/csv.php:135
737
- msgid "Can not find fields names"
738
- msgstr "Kan de namen van de velden niet vinden"
739
-
740
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:14
741
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:35
742
- #: ../modules/csv/views/tpl/csvTabContent.php:14
743
- #: ../modules/csv/views/tpl/csvTabContent.php:35
744
- msgid "Export"
745
- msgstr "Exporteren"
746
-
747
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:38
748
- #: ../modules/csv/views/tpl/csvTabContent.php:38
749
- msgid "Import"
750
- msgstr "Importeren"
751
-
752
- #: ../doc/old-version/modules/gmap/controller.php:23
753
- #: ../modules/gmap/controller.php:23
754
- msgid "Map data not found"
755
- msgstr "Kaart gegevens niet gevonden"
756
-
757
- #: ../doc/old-version/modules/gmap/mod.php:12 ../modules/gmap/mod.php:13
758
- msgid "Add Map"
759
- msgstr "Kaart toevoegen"
760
-
761
- #: ../doc/old-version/modules/gmap/mod.php:15
762
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:409
763
- #: ../doc/old-version/modules/marker/views/tpl/markerListOperations.php:3
764
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:35
765
- #: ../modules/gmap/mod.php:16 ../modules/gmap/views/tpl/gmapEditMap.php:550
766
- msgid "Edit"
767
- msgstr "Bewerken"
768
-
769
- #: ../doc/old-version/modules/gmap/mod.php:18 ../modules/gmap/mod.php:19
770
- msgid "All Maps"
771
- msgstr "Alle kaarten"
772
-
773
- #: ../doc/old-version/modules/gmap/mod.php:28 ../modules/gmap/mod.php:29
774
- msgid "No Map Found"
775
- msgstr "Geen kaart gevonden"
776
-
777
- #: ../doc/old-version/modules/gmap/mod.php:38 ../modules/gmap/mod.php:39
778
- msgid "Empty or Invalid Map ID"
779
- msgstr "Lege of ongeldige kaart ID"
780
-
781
- #: ../doc/old-version/modules/gmap/mod.php:57 ../modules/gmap/mod.php:58
782
- msgid "Top Center"
783
- msgstr "Centraal bovenaan"
784
-
785
- #: ../doc/old-version/modules/gmap/mod.php:58 ../modules/gmap/mod.php:59
786
- msgid "Top Left"
787
- msgstr "Links boven"
788
-
789
- #: ../doc/old-version/modules/gmap/mod.php:59 ../modules/gmap/mod.php:60
790
- msgid "Top Right"
791
- msgstr "Rechts boven"
792
-
793
- #: ../doc/old-version/modules/gmap/mod.php:60 ../modules/gmap/mod.php:61
794
- msgid "Left Top"
795
- msgstr "Links boven"
796
-
797
- #: ../doc/old-version/modules/gmap/mod.php:61 ../modules/gmap/mod.php:62
798
- msgid "Right Top"
799
- msgstr "Rechts boven"
800
-
801
- #: ../doc/old-version/modules/gmap/mod.php:62 ../modules/gmap/mod.php:63
802
- msgid "Left Center"
803
- msgstr "Centraal links"
804
-
805
- #: ../doc/old-version/modules/gmap/mod.php:63 ../modules/gmap/mod.php:64
806
- msgid "Right Center"
807
- msgstr "Centraal rechts"
808
-
809
- #: ../doc/old-version/modules/gmap/mod.php:64 ../modules/gmap/mod.php:65
810
- msgid "Left Bottom"
811
- msgstr "Links beneden"
812
-
813
- #: ../doc/old-version/modules/gmap/mod.php:65 ../modules/gmap/mod.php:66
814
- msgid "Right Bottom"
815
- msgstr "Rechts beneden"
816
-
817
- #: ../doc/old-version/modules/gmap/mod.php:66 ../modules/gmap/mod.php:67
818
- msgid "Bottom Center"
819
- msgstr "Centraal beneden"
820
-
821
- #: ../doc/old-version/modules/gmap/mod.php:67 ../modules/gmap/mod.php:68
822
- msgid "Bottom Left"
823
- msgstr "Links beneden"
824
-
825
- #: ../doc/old-version/modules/gmap/mod.php:68 ../modules/gmap/mod.php:69
826
- msgid "Bottom Right"
827
- msgstr "Rechts beneden"
828
-
829
- #: ../doc/old-version/modules/gmap/models/gmap.php:65
830
- #: ../modules/gmap/models/gmap.php:67
831
- msgid "Please enter Map Name"
832
- msgstr "Geef de naam van de kaart op"
833
-
834
- #: ../doc/old-version/modules/gmap/models/gmap.php:94
835
- #: ../modules/gmap/models/gmap.php:96
836
- msgid "Empty Params"
837
- msgstr "Lege parameters"
838
-
839
- #: ../doc/old-version/modules/gmap/views/gmap.php:155
840
- #: ../doc/old-version/modules/marker/views/marker.php:31
841
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:8
842
- #: ../modules/gmap/views/gmap.php:123
843
- msgid "Title"
844
- msgstr "Titel"
845
-
846
- #: ../doc/old-version/modules/gmap/views/gmap.php:157
847
- #: ../modules/gmap/views/gmap.php:124
848
- msgid "Html options"
849
- msgstr "Html opties"
850
-
851
- #: ../doc/old-version/modules/gmap/views/gmap.php:159
852
- #: ../doc/old-version/modules/marker/views/marker.php:37
853
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:13
854
- #: ../modules/gmap/views/gmap.php:126
855
- msgid "Operations"
856
- msgstr "Operaties"
857
-
858
- #: ../doc/old-version/modules/gmap/views/gmap.php:192
859
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:89
860
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:114
861
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:187
862
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:275
863
- #: ../doc/old-version/modules/marker/mod.php:20
864
- #: ../modules/gmap/views/gmap.php:161
865
- #: ../modules/gmap/views/tpl/gmapEditMap.php:104
866
- #: ../modules/gmap/views/tpl/gmapEditMap.php:132
867
- #: ../modules/gmap/views/tpl/gmapEditMap.php:214
868
- #: ../modules/gmap/views/tpl/gmapEditMap.php:370 ../modules/marker/mod.php:20
869
- msgid "None"
870
- msgstr "Geen"
871
-
872
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:5
873
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:8
874
- #: ../modules/gmap/views/tpl/gmapAdmin.php:5
875
- #: ../modules/gmap/views/tpl/gmapAdmin.php:8
876
- msgid "Delete selected"
877
- msgstr "Verwijder geselecteerde"
878
-
879
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:11
880
- #: ../modules/gmap/views/tpl/gmapAdmin.php:11
881
- msgid "Clear All"
882
- msgstr "Alles wissen"
883
-
884
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:13
885
- #: ../modules/gmap/views/tpl/gmapAdmin.php:13
886
- msgid "Clear"
887
- msgstr "Wissen"
888
-
889
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:16
890
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:17
891
- #: ../modules/gmap/views/tpl/gmapAdmin.php:16
892
- #: ../modules/gmap/views/tpl/gmapAdmin.php:17
893
- msgid "Search"
894
- msgstr "Zoeken"
895
-
896
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:26
897
- #: ../modules/gmap/views/tpl/gmapAdmin.php:26
898
- #, php-format
899
- msgid ""
900
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
901
- "a> your first Map!"
902
- msgstr ""
903
- "U hebt nog geen kaarten. <a href='%s' style='font-style: italic;'>Creëer</a> "
904
- "uw eerste kaart!"
905
-
906
- #: ../doc/old-version/modules/gmap/views/tpl/gmapDrawMap.php:3
907
- #: ../modules/gmap/views/tpl/gmapDrawMap.php:3
908
- msgid "Map not found"
909
- msgstr "Kaart niet gevonden"
910
-
911
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:2
912
- #: ../modules/gmap/views/tpl/gmapEditMap.php:2
913
- #, php-format
914
- msgid ""
915
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
916
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
917
- msgstr ""
918
- "Deze optie is enkel beschikbaar in de <a target='_blank' href='%s'>PRO "
919
- "versie</a>, deze kan u <a target='_blank' href='%s'>hier</a> verkrijgen."
920
-
921
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:4
922
- #: ../modules/gmap/views/tpl/gmapEditMap.php:117
923
- #: ../modules/gmap/views/tpl/gmapEditMap.php:145
924
- #: ../modules/gmap/views/tpl/gmapEditMap.php:172
925
- #: ../modules/gmap/views/tpl/gmapEditMap.php:199
926
- #: ../modules/gmap/views/tpl/gmapEditMap.php:281
927
- #: ../modules/gmap/views/tpl/gmapEditMap.php:298
928
- #: ../modules/gmap/views/tpl/gmapEditMap.php:315
929
- #: ../modules/gmap/views/tpl/gmapEditMap.php:352
930
- msgid "PRO option"
931
- msgstr "PRO optie"
932
-
933
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:16
934
- #: ../modules/gmap/views/tpl/gmapEditMap.php:31
935
- msgid "Map Name"
936
- msgstr "Kaart naam"
937
-
938
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:18
939
- #: ../modules/gmap/views/tpl/gmapEditMap.php:33
940
- msgid "Your map name"
941
- msgstr "De naam van uw kaart"
942
-
943
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:30
944
- #: ../modules/gmap/views/tpl/gmapEditMap.php:45
945
- msgid "Map Width"
946
- msgstr "Kaart breedte"
947
-
948
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:32
949
- #: ../modules/gmap/views/tpl/gmapEditMap.php:47
950
- msgid "Your map width"
951
- msgstr "De breedte van uw kaart"
952
-
953
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:44
954
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:69
955
- #: ../modules/gmap/views/tpl/gmapEditMap.php:56
956
- #: ../modules/gmap/views/tpl/gmapEditMap.php:81
957
- msgid "Pixels"
958
- msgstr "Pixels"
959
-
960
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:48
961
- #: ../modules/gmap/views/tpl/gmapEditMap.php:63
962
- msgid "Percents"
963
- msgstr "Procenten"
964
-
965
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:55
966
- #: ../modules/gmap/views/tpl/gmapEditMap.php:70
967
- msgid "Map Height"
968
- msgstr "Kaart hoogte"
969
-
970
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:57
971
- #: ../modules/gmap/views/tpl/gmapEditMap.php:72
972
- msgid "Your map height"
973
- msgstr "Uw kaart hoogte"
974
-
975
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:75
976
- msgid "Extended Options"
977
- msgstr "Uitgebreide opties"
978
-
979
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:82
980
- #: ../modules/gmap/views/tpl/gmapEditMap.php:97
981
- msgid "Map type control"
982
- msgstr "Soort kaart controle"
983
-
984
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:84
985
- #: ../modules/gmap/views/tpl/gmapEditMap.php:99
986
- msgid ""
987
- "Control view for map type - you can see it in right upper corner by default"
988
- msgstr ""
989
- "Controle zicht voor type kaart - u kan dit standaard zien in de rechter "
990
- "bovenhoek"
991
-
992
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:89
993
- #: ../modules/gmap/views/tpl/gmapEditMap.php:104
994
- msgid "Dropdown Menu"
995
- msgstr "Uitklap menu"
996
-
997
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:89
998
- #: ../modules/gmap/views/tpl/gmapEditMap.php:104
999
- msgid "Horizontal Bar"
1000
- msgstr "Horizontale balk"
1001
-
1002
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:94
1003
- #: ../modules/gmap/views/tpl/gmapEditMap.php:110
1004
- msgid "Change type control position on map"
1005
- msgstr "Verander het soort controle positie op uw kaart"
1006
-
1007
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:107
1008
- #: ../modules/gmap/views/tpl/gmapEditMap.php:125
1009
- msgid "Zoom control"
1010
- msgstr "Zoom controle"
1011
-
1012
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:109
1013
- #: ../modules/gmap/views/tpl/gmapEditMap.php:127
1014
- msgid "Zoom control type on your map"
1015
- msgstr "Soort zoom controle op uw kaart"
1016
-
1017
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:114
1018
- #: ../modules/gmap/views/tpl/gmapEditMap.php:132
1019
- msgid "Default"
1020
- msgstr "Standaard"
1021
-
1022
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:114
1023
- #: ../modules/gmap/views/tpl/gmapEditMap.php:132
1024
- msgid "Large"
1025
- msgstr "Groot"
1026
-
1027
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:114
1028
- #: ../modules/gmap/views/tpl/gmapEditMap.php:132
1029
- msgid "Small"
1030
- msgstr "Klein"
1031
-
1032
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:119
1033
- #: ../modules/gmap/views/tpl/gmapEditMap.php:138
1034
- msgid "Change zoom control position on map"
1035
- msgstr "Verander de zoom controle positie op de kaart"
1036
-
1037
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:132
1038
- #: ../modules/gmap/views/tpl/gmapEditMap.php:153
1039
- msgid "Street view control"
1040
- msgstr "Street view controle"
1041
-
1042
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:134
1043
- #: ../modules/gmap/views/tpl/gmapEditMap.php:155
1044
- msgid "Street view control usually is located on left upper corner of your map"
1045
- msgstr ""
1046
- "Street view controle is meestal gesitueerd in de linker boven hoek van uw "
1047
- "kaart"
1048
-
1049
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:143
1050
- #: ../modules/gmap/views/tpl/gmapEditMap.php:165
1051
- msgid "Change street view control position on map"
1052
- msgstr "Verander street view controle positie op de kaart "
1053
-
1054
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:156
1055
- #: ../modules/gmap/views/tpl/gmapEditMap.php:180
1056
- msgid "Pan control"
1057
- msgstr "Pan controle"
1058
-
1059
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:158
1060
- #: ../modules/gmap/views/tpl/gmapEditMap.php:182
1061
- msgid ""
1062
- "Pan control - allow you to pan over your map using mouse, usually is located "
1063
- "on left upper corner of your map"
1064
- msgstr ""
1065
- "Pan controle - Staat u toe om via de muis over de kaart te bewegen, meestal "
1066
- "is dit gelokaliseerd in de linker bovenhoek van uw kaart"
1067
-
1068
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:167
1069
- #: ../modules/gmap/views/tpl/gmapEditMap.php:192
1070
- msgid "Change pan control position on map"
1071
- msgstr "Verander de pan controle positie op de kaart"
1072
-
1073
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:180
1074
- #: ../modules/gmap/views/tpl/gmapEditMap.php:207
1075
- msgid "Overview control"
1076
- msgstr "Overzicht controle"
1077
-
1078
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:182
1079
- #: ../modules/gmap/views/tpl/gmapEditMap.php:209
1080
- msgid ""
1081
- "Overview control for your map, by default is disabled, and if enabled - is "
1082
- "located on the right bottom corner"
1083
- msgstr ""
1084
- "Overzicht controle van uw kaart is standaard uitgezet, wanneer dit wordt "
1085
- "ingeschakeld situeert het zich in de rechter beneden hoek"
1086
-
1087
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:187
1088
- #: ../modules/gmap/views/tpl/gmapEditMap.php:214
1089
- msgid "Opened"
1090
- msgstr "Geopend"
1091
-
1092
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:187
1093
- #: ../modules/gmap/views/tpl/gmapEditMap.php:214
1094
- msgid "Collapsed"
1095
- msgstr "Uitgeklapt"
1096
-
1097
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:196
1098
- #: ../modules/gmap/views/tpl/gmapEditMap.php:223
1099
- msgid "Draggable"
1100
- msgstr "Verschuifbaar"
1101
-
1102
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:198
1103
- #: ../modules/gmap/views/tpl/gmapEditMap.php:225
1104
- msgid "Enable or disable possibility to drag your map using mouse"
1105
- msgstr ""
1106
- "Activeer of deactiveer de mogelijkheid om de map te verschuiven met uw muis"
1107
-
1108
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:209
1109
- #: ../modules/gmap/views/tpl/gmapEditMap.php:236
1110
- msgid "Double click to zoom"
1111
- msgstr "Dubbel klikken om te zoomen"
1112
-
1113
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:211
1114
- #: ../modules/gmap/views/tpl/gmapEditMap.php:238
1115
- msgid ""
1116
- "By default double left click on map will zoom it in. But you can change this "
1117
- "here."
1118
- msgstr ""
1119
- "Standard zal de kaart bij links dubbel klikken inzoomen. Maar u kan dit hier "
1120
- "veranderen."
1121
-
1122
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:222
1123
- #: ../modules/gmap/views/tpl/gmapEditMap.php:249
1124
- msgid "Mouse wheel to zoom"
1125
- msgstr "Muiswiel om te zoomen"
1126
-
1127
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:224
1128
- #: ../modules/gmap/views/tpl/gmapEditMap.php:251
1129
- msgid ""
1130
- "Sometimes you need to disable possibility to zoom your map using mouse "
1131
- "wheel. This can be required for example - if you need to use your wheel for "
1132
- "some other action, for example scroll your site even if mouse is over your "
1133
- "map."
1134
- msgstr ""
1135
- "Soms moet u de mogelijkheid om te zoomen op uw kaart via het muiswiel "
1136
- "uitschakelen. Dit kan vereist zijn bij bijvoorbeeld - als u het muiswiel "
1137
- "nodig hebt voor een andere actie, bijvoorbeeld als uw site wilt verschuiven "
1138
- "zelfs als de muis zich boven de kaart bevindt."
1139
-
1140
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:235
1141
- #: ../modules/gmap/views/tpl/gmapEditMap.php:262
1142
- msgid "Google Map Theme"
1143
- msgstr "Google Map thema"
1144
-
1145
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:237
1146
- #: ../modules/gmap/views/tpl/gmapEditMap.php:264
1147
- msgid ""
1148
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
1149
- "Terrain - here. By default your map will have Road Map Google maps theme."
1150
- msgstr ""
1151
- "U kan uw Google Map thema - wegenkaart, hybride, satelliet of terrein - hier "
1152
- "selecteren. Standaard zal uw kaart het Google Maps wegenkaarten thema hebben."
1153
-
1154
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:241
1155
- #: ../modules/gmap/views/tpl/gmapEditMap.php:268
1156
- msgid "Road Map"
1157
- msgstr "Wegenkaart"
1158
-
1159
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:241
1160
- #: ../modules/gmap/views/tpl/gmapEditMap.php:268
1161
- msgid "Hybrid"
1162
- msgstr "Hybride"
1163
-
1164
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:241
1165
- #: ../modules/gmap/views/tpl/gmapEditMap.php:268
1166
- msgid "Satellite"
1167
- msgstr "Satelliet"
1168
-
1169
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:241
1170
- #: ../modules/gmap/views/tpl/gmapEditMap.php:268
1171
- msgid "Terrain"
1172
- msgstr "Terrein"
1173
-
1174
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:249
1175
- #: ../modules/gmap/views/tpl/gmapEditMap.php:327
1176
- msgid "Map Stylization"
1177
- msgstr "Kaart vormgeving"
1178
-
1179
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:251
1180
- #: ../modules/gmap/views/tpl/gmapEditMap.php:329
1181
- msgid ""
1182
- "Make your map unique with our Map Themes, just try to change it here - and "
1183
- "you will see results on your Map Preview."
1184
- msgstr ""
1185
- "Maak uw kaart uniek met onze Kaart thema's, probeer ze hier te veranderen en "
1186
- "u zal de resultaten zien in uw kaart preview."
1187
-
1188
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:261
1189
- msgid "Get 300+ Themes"
1190
- msgstr "Verkrijg +300 thema's"
1191
-
1192
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:269
1193
- #: ../modules/gmap/views/tpl/gmapEditMap.php:364
1194
- msgid "Markers Clusterization"
1195
- msgstr "Bakens clasterizatie"
1196
-
1197
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:271
1198
- #: ../modules/gmap/views/tpl/gmapEditMap.php:366
1199
- msgid ""
1200
- "If you have many markers - you can have a problems with viewing them when "
1201
- "zoom out for example: they will just cover each-other. Marker clusterization "
1202
- "can solve this problem by grouping your markers in groups when they are too "
1203
- "close to each-other."
1204
- msgstr ""
1205
- "Wanneer u veel bakens heeft dan kan u een probleem hebben met ze te bekijken "
1206
- "wanneer u gaat zoomen, ze zullen elkaar overlappen. Baken clasterizatie kan "
1207
- "dit oplossen door het groeperen van uw bakens in groepen wanneer ze te dicht "
1208
- "bij elkaar liggen."
1209
-
1210
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:275
1211
- #: ../modules/gmap/views/tpl/gmapEditMap.php:370
1212
- msgid "Base Clusterization"
1213
- msgstr "Basis clasterizatie"
1214
-
1215
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:293
1216
- #: ../modules/gmap/views/tpl/gmapEditMap.php:20
1217
- msgid "Add New Marker"
1218
- msgstr "Voeg nieuwe baken toe"
1219
-
1220
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:294
1221
- #: ../modules/gmap/views/tpl/gmapEditMap.php:526
1222
- msgid "Save Marker"
1223
- msgstr "Baken opslaan"
1224
-
1225
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:303
1226
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:9
1227
- #: ../modules/gmap/views/tpl/gmapEditMap.php:391
1228
- msgid "Marker Name"
1229
- msgstr "Naam baken"
1230
-
1231
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:305
1232
- #: ../modules/gmap/views/tpl/gmapEditMap.php:393
1233
- msgid "Your marker title"
1234
- msgstr "Uw baken titel"
1235
-
1236
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:316
1237
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:25
1238
- #: ../modules/gmap/views/tpl/gmapEditMap.php:404
1239
- msgid "Marker Description"
1240
- msgstr "Baken beschrijving"
1241
-
1242
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:318
1243
- #: ../modules/gmap/views/tpl/gmapEditMap.php:406
1244
- msgid ""
1245
- "Write here all text, that you want to appear in marker info-window PopUp"
1246
- msgstr ""
1247
- "Schrijf hier alle tekst die u wilt weergeven in het baken popup informatie "
1248
- "venster"
1249
-
1250
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:334
1251
- #: ../doc/old-version/modules/marker/views/marker.php:30
1252
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:45
1253
- #: ../modules/gmap/views/tpl/gmapEditMap.php:422
1254
- msgid "Icon"
1255
- msgstr "Icoon"
1256
-
1257
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:336
1258
- #: ../modules/gmap/views/tpl/gmapEditMap.php:424
1259
- msgid "Your marker Icon, that will appear on your map for this marker"
1260
- msgstr "Uw baken pictogram dat op de map zal verschijnen voor deze baken"
1261
-
1262
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:342
1263
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:57
1264
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:131
1265
- #: ../modules/gmap/views/tpl/gmapEditMap.php:430
1266
- msgid "Choose icon"
1267
- msgstr "Kies pictogram"
1268
-
1269
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:351
1270
- #: ../modules/gmap/views/tpl/gmapEditMap.php:439
1271
- msgid "Search your location by address, just start typing here"
1272
- msgstr "Zoek locatie via adres, gewoon hier starten met typen"
1273
-
1274
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:363
1275
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:83
1276
- #: ../doc/old-version/modules/marker/views/tpl/markerListAddress.php:3
1277
- #: ../modules/gmap/views/tpl/gmapEditMap.php:451
1278
- msgid "Latitude"
1279
- msgstr "Latitude"
1280
-
1281
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:365
1282
- #: ../modules/gmap/views/tpl/gmapEditMap.php:453
1283
- msgid "Latitude for your marker"
1284
- msgstr "Latitude voor uw baken"
1285
-
1286
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:377
1287
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:102
1288
- #: ../doc/old-version/modules/marker/views/tpl/markerListAddress.php:3
1289
- #: ../modules/gmap/views/tpl/gmapEditMap.php:465
1290
- msgid "Longitude"
1291
- msgstr "Longitude"
1292
-
1293
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:379
1294
- #: ../modules/gmap/views/tpl/gmapEditMap.php:467
1295
- msgid "Longitude for your marker"
1296
- msgstr "Longitude voor uw baken"
1297
-
1298
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:412
1299
- #: ../modules/gmap/views/tpl/gmapEditMap.php:553
1300
- msgid "Delete"
1301
- msgstr "Verwijder"
1302
-
1303
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:430
1304
- #: ../modules/gmap/views/tpl/gmapEditMap.php:492
1305
- msgid "Map shortcode"
1306
- msgstr "Kaart shortcode"
1307
-
1308
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:433
1309
- #: ../modules/gmap/views/tpl/gmapEditMap.php:503
1310
- msgid "Shortcode will appear after you save map."
1311
- msgstr "Shortcode zal verschijnen na het opslaan van de kaart."
1312
-
1313
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:439
1314
- #: ../modules/gmap/views/tpl/gmapEditMap.php:511
1315
- msgid "Save Map"
1316
- msgstr "Kaart opslaan"
1317
-
1318
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:442
1319
- #: ../modules/gmap/views/tpl/gmapEditMap.php:517
1320
- msgid "Delete Map"
1321
- msgstr "Kaart verwijderen"
1322
-
1323
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:464
1324
- #, php-format
1325
- msgid ""
1326
- "Please be advised that this option is available only in <a target='_blank' "
1327
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1328
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1329
- "Maps!"
1330
- msgstr ""
1331
- "Deze optie is enkel beschikbaar in de <a target='_blank' href='%s'>PRO "
1332
- "versie</a>. U kan <a target='_blank' href='%s' class='button'>PRO "
1333
- "verkrijgen</a> om deze PRO optie en andere opties te gaan gebruiken voor uw "
1334
- "kaarten!"
1335
-
1336
- #: ../doc/old-version/modules/gmap/views/tpl/gmapListMarkers.php:20
1337
- #: ../modules/gmap/views/tpl/gmapListMarkers.php:20
1338
- #, php-format
1339
- msgid "and %s more"
1340
- msgstr "en %s meer"
1341
-
1342
- #: ../doc/old-version/modules/gmap_widget/mod.php:18
1343
- #: ../modules/gmap_widget/mod.php:18
1344
- msgid "Displays Most Viewed Products"
1345
- msgstr "Toont de meest bekeken producten"
1346
-
1347
- #: ../doc/old-version/modules/gmap_widget/views/gmap_widget.php:15
1348
- #: ../modules/gmap_widget/views/gmap_widget.php:15
1349
- msgid "You have no maps"
1350
- msgstr "U hebt geen kaarten"
1351
-
1352
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:10
1353
- #: ../modules/gmap_widget/views/tpl/form.php:10
1354
- msgid "Select map"
1355
- msgstr "Kaart selecteren"
1356
-
1357
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:18
1358
- #: ../modules/gmap_widget/views/tpl/form.php:18
1359
- msgid "Widget Map width"
1360
- msgstr "Widget kaart breedte"
1361
-
1362
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:25
1363
- #: ../modules/gmap_widget/views/tpl/form.php:25
1364
- msgid "Widget Map height"
1365
- msgstr "Widget kaart hoogte"
1366
-
1367
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:32
1368
- #: ../modules/gmap_widget/views/tpl/form.php:32
1369
- msgid "Display as image"
1370
- msgstr "Tonen als afbeelding"
1371
-
1372
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:40
1373
- #: ../modules/gmap_widget/views/tpl/form.php:40
1374
- msgid ""
1375
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1376
- msgstr ""
1377
- "Kaart wordt getoond als afbeelding in de zijbalk, wanneer men er op klikt "
1378
- "zal ze in een popup openen."
1379
-
1380
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:42
1381
- #: ../modules/gmap_widget/views/tpl/form.php:42
1382
- msgid "Image width (in px)"
1383
- msgstr "Breedte afbeelding (in px)"
1384
-
1385
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:49
1386
- #: ../modules/gmap_widget/views/tpl/form.php:49
1387
- msgid "Image height (in px)"
1388
- msgstr "hoogte afbeelding (in px)"
1389
-
1390
- #: ../doc/old-version/modules/icons/controller.php:20
1391
- #: ../modules/icons/controller.php:20
1392
- msgid "Empty url"
1393
- msgstr "Lege url"
1394
-
1395
- #: ../doc/old-version/modules/icons/models/icons.php:29
1396
- #: ../modules/icons/models/icons.php:29
1397
- msgid "Icon no found"
1398
- msgstr "Pictogram niet gevonden"
1399
-
1400
- #: ../doc/old-version/modules/icons/models/icons.php:81
1401
- #: ../modules/icons/models/icons.php:81
1402
- msgid "File not found"
1403
- msgstr "Bestand niet gevonden"
1404
-
1405
- #: ../doc/old-version/modules/icons/models/icons.php:86
1406
- #: ../modules/icons/models/icons.php:86
1407
- msgid "Cannot get image"
1408
- msgstr "Kan het bestand niet opvragen"
1409
-
1410
- #: ../doc/old-version/modules/icons/models/icons.php:97
1411
- #: ../modules/icons/models/icons.php:97
1412
- msgid "cannot insert to table"
1413
- msgstr "Kan niet in tabel invoegen"
1414
-
1415
- #: ../doc/old-version/modules/mail/mod.php:33 ../modules/mail/mod.php:33
1416
- msgid "Can not send email - problem with send server"
1417
- msgstr "Kan geen e-mail verzenden - probleem met de verzend server"
1418
-
1419
- #: ../doc/old-version/modules/marker/controller.php:42
1420
- #: ../doc/old-version/modules/marker/controller.php:57
1421
- #: ../modules/marker/controller.php:42 ../modules/marker/controller.php:57
1422
- msgid "Marker Not Found"
1423
- msgstr "Baken niet gevonden"
1424
-
1425
- #: ../doc/old-version/modules/marker/controller.php:48
1426
- #: ../modules/marker/controller.php:48
1427
- msgid "Cannot remove marker"
1428
- msgstr "Kan de baken niet verwijderen"
1429
-
1430
- #: ../doc/old-version/modules/marker/controller.php:63
1431
- #: ../modules/marker/controller.php:63
1432
- msgid "Cannot remove markers"
1433
- msgstr "Kan de bakens niet verwijderen"
1434
-
1435
- #: ../doc/old-version/modules/marker/controller.php:144
1436
- #: ../modules/marker/controller.php:144
1437
- msgid "Empty or invalid marker ID"
1438
- msgstr "Lege of ongeldige baken ID"
1439
-
1440
- #: ../doc/old-version/modules/marker/mod.php:21 ../modules/marker/mod.php:21
1441
- msgid "Drop"
1442
- msgstr "Dump"
1443
-
1444
- #: ../doc/old-version/modules/marker/mod.php:22 ../modules/marker/mod.php:22
1445
- msgid "Bounce"
1446
- msgstr "Bounce"
1447
-
1448
- #: ../doc/old-version/modules/marker/models/marker.php:42
1449
- #: ../modules/marker/models/marker.php:42
1450
- msgid "Please enter marker name"
1451
- msgstr "Geef de baken naam op"
1452
-
1453
- #: ../doc/old-version/modules/marker/models/marker.php:185
1454
- #: ../modules/marker/models/marker.php:185
1455
- msgid "Address is empty or not match"
1456
- msgstr "Adres is leeg of niet geldig"
1457
-
1458
- #: ../doc/old-version/modules/marker/models/marker.php:243
1459
- #: ../modules/marker/models/marker.php:243
1460
- msgid "Invalid Marker ID"
1461
- msgstr "Ongeldige baken ID"
1462
-
1463
- #: ../doc/old-version/modules/marker/views/marker.php:33
1464
- msgid "Group"
1465
- msgstr "Groep"
1466
-
1467
- #: ../doc/old-version/modules/marker/views/marker.php:34
1468
- msgid "Creation Date"
1469
- msgstr "Datum creatie"
1470
-
1471
- #: ../doc/old-version/modules/marker/views/marker.php:36
1472
- msgid "Uses On Map"
1473
- msgstr "Gebruik op de kaart"
1474
-
1475
- #: ../doc/old-version/modules/marker/views/tpl/markerList.php:16
1476
- msgid "Back To Markers List"
1477
- msgstr "Tarug naar de baken lijst"
1478
-
1479
- #: ../doc/old-version/modules/marker/views/tpl/markerListOperations.php:7
1480
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:39
1481
- msgid "Remove"
1482
- msgstr "Verwijder"
1483
-
1484
- #: ../doc/old-version/modules/marker/views/tpl/markerListUsesOnMap.php:5
1485
- msgid "No maps contain this marker"
1486
- msgstr "Er is geen map met deze baken"
1487
-
1488
- #: ../doc/old-version/modules/marker/views/tpl/markerTable.php:17
1489
- msgid "Remove selected"
1490
- msgstr "Verwijder geselecteerde"
1491
-
1492
- #: ../doc/old-version/modules/marker_groups/controller.php:14
1493
- #: ../modules/marker_groups/controller.php:14
1494
- msgid "Nothing To Save"
1495
- msgstr "Niets om op te slaan"
1496
-
1497
- #: ../doc/old-version/modules/marker_groups/controller.php:21
1498
- #: ../modules/marker_groups/controller.php:21
1499
- msgid "Cannot Save Group"
1500
- msgstr "Kan de groep niet opslaan"
1501
-
1502
- #: ../doc/old-version/modules/marker_groups/controller.php:29
1503
- #: ../modules/marker_groups/controller.php:29
1504
- msgid "Group Not Found"
1505
- msgstr "Groep niet gevonden"
1506
-
1507
- #: ../doc/old-version/modules/marker_groups/controller.php:35
1508
- #: ../modules/marker_groups/controller.php:35
1509
- msgid "Cannot remove group"
1510
- msgstr "Kan de groep niet verwijderen"
1511
-
1512
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:5
1513
- msgid "Add New"
1514
- msgstr "Nieuwe toevoegen"
1515
-
1516
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:20
1517
- msgid "Save Group"
1518
- msgstr "Groep opslaan"
1519
-
1520
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:22
1521
- msgid "Group Title"
1522
- msgstr "Groepstitel"
1523
-
1524
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:26
1525
- msgid "Title For Group"
1526
- msgstr "Titel voor groep"
1527
-
1528
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:30
1529
- msgid "Group Description"
1530
- msgstr "Groep beschrijving"
1531
-
1532
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:34
1533
- msgid "Description For Goup"
1534
- msgstr "Beschrijving voor groep"
1535
-
1536
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:40
1537
- msgid "Save"
1538
- msgstr "Opslaan"
1539
-
1540
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:43
1541
- msgid "Reset"
1542
- msgstr "Reset"
1543
-
1544
- #: ../doc/old-version/modules/options/mod.php:84 ../modules/options/mod.php:84
1545
- msgid "General"
1546
- msgstr "Algemeen"
1547
-
1548
- #: ../doc/old-version/modules/options/mod.php:86 ../modules/options/mod.php:86
1549
- msgid "Send usage statistics"
1550
- msgstr "Verzend gebruiksstatistieken"
1551
-
1552
- #: ../doc/old-version/modules/options/models/modules.php:32
1553
- #: ../modules/options/models/modules.php:32
1554
- msgid "Module Updated"
1555
- msgstr "Module is bijgewerkt"
1556
-
1557
- #: ../doc/old-version/modules/options/models/modules.php:47
1558
- #: ../modules/options/models/modules.php:47
1559
- msgid "Module Update Failed"
1560
- msgstr "Module bijwerken is mislukt"
1561
-
1562
- #: ../doc/old-version/modules/options/models/modules.php:50
1563
- #: ../modules/options/models/modules.php:50
1564
- msgid "Error module ID"
1565
- msgstr "Fout bij module ID"
1566
-
1567
- #: ../doc/old-version/modules/options/models/options.php:63
1568
- #: ../modules/options/models/options.php:63
1569
- msgid "Empty data to save option"
1570
- msgstr "Geen data om deze optie op te slaan"
1571
-
1572
- #: ../doc/old-version/modules/options/views/tpl/optionsAdminMain.php:18
1573
- #: ../modules/options/views/tpl/optionsAdminMain.php:18
1574
- msgid "Main page Go here!!!!"
1575
- msgstr "Hoofdpagina langs hier!!!!"
1576
-
1577
- #: ../doc/old-version/modules/supsystic_promo/controller.php:7
1578
- #: ../modules/supsystic_promo/controller.php:7
1579
- msgid "Information was saved. Thank you!"
1580
- msgstr "Informatie is opgeslagen. Dank u!"
1581
-
1582
- #: ../doc/old-version/modules/supsystic_promo/controller.php:23
1583
- #: ../modules/supsystic_promo/controller.php:23
1584
- msgid ""
1585
- "Please don't send contact requests so often - wait for response for your "
1586
- "previous requests."
1587
- msgstr ""
1588
- "Zend aub niet zo vaak contact aanvragen - wacht op antwoord van uw vorige "
1589
- "aanvragen."
1590
-
1591
- #: ../doc/old-version/modules/supsystic_promo/controller.php:45
1592
- #: ../modules/supsystic_promo/controller.php:45
1593
- msgid "Please enter valid email address"
1594
- msgstr "Geef aub een geldig e-mailadres op"
1595
-
1596
- #: ../doc/old-version/modules/supsystic_promo/mod.php:24
1597
- #: ../modules/supsystic_promo/mod.php:24
1598
- msgid "Overview"
1599
- msgstr "Overzicht"
1600
-
1601
- #: ../doc/old-version/modules/supsystic_promo/mod.php:50
1602
- #: ../modules/supsystic_promo/mod.php:50
1603
- msgid "Welcome to Supsystic Secure"
1604
- msgstr "Welkom bij Supsystic Secure"
1605
-
1606
- #: ../doc/old-version/modules/supsystic_promo/mod.php:123
1607
- #: ../modules/supsystic_promo/mod.php:123
1608
- msgid "Name"
1609
- msgstr "Naam"
1610
-
1611
- #: ../doc/old-version/modules/supsystic_promo/mod.php:125
1612
- #: ../modules/supsystic_promo/mod.php:125
1613
- msgid "Website"
1614
- msgstr "Website"
1615
-
1616
- #: ../doc/old-version/modules/supsystic_promo/mod.php:126
1617
- #: ../modules/supsystic_promo/mod.php:126
1618
- msgid "Subject"
1619
- msgstr "Onderwerp"
1620
-
1621
- #: ../doc/old-version/modules/supsystic_promo/mod.php:127
1622
- #: ../modules/supsystic_promo/mod.php:127
1623
- msgid "Topic"
1624
- msgstr "Hoofdstuk"
1625
-
1626
- #: ../doc/old-version/modules/supsystic_promo/mod.php:128
1627
- #: ../modules/supsystic_promo/mod.php:128
1628
- msgid "Plugin options"
1629
- msgstr "Plugin opties"
1630
-
1631
- #: ../doc/old-version/modules/supsystic_promo/mod.php:129
1632
- #: ../modules/supsystic_promo/mod.php:129
1633
- msgid "Report a bug"
1634
- msgstr "Rapporteer een bug"
1635
-
1636
- #: ../doc/old-version/modules/supsystic_promo/mod.php:130
1637
- #: ../modules/supsystic_promo/mod.php:130
1638
- msgid "Require a new functionallity"
1639
- msgstr "Vraag nieuwe functionaliteit aan"
1640
-
1641
- #: ../doc/old-version/modules/supsystic_promo/mod.php:131
1642
- #: ../modules/supsystic_promo/mod.php:131
1643
- msgid "Other"
1644
- msgstr "Anders"
1645
-
1646
- #: ../doc/old-version/modules/supsystic_promo/mod.php:133
1647
- #: ../modules/supsystic_promo/mod.php:133
1648
- msgid "Message"
1649
- msgstr "Boodschap"
1650
-
1651
- #: ../doc/old-version/modules/supsystic_promo/mod.php:133
1652
- #: ../modules/supsystic_promo/mod.php:133
1653
- msgid "Hello Supsystic Team!"
1654
- msgstr "Hallo Supsystic Team!"
1655
-
1656
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:30
1657
- #: ../modules/supsystic_promo/views/supsystic_promo.php:30
1658
- msgid "How to get PRO version of plugin for FREE?"
1659
- msgstr "Hoe de PRO versie van deze plugin gratis verkrijgen?"
1660
-
1661
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:30
1662
- #: ../modules/supsystic_promo/views/supsystic_promo.php:30
1663
- #, php-format
1664
- msgid ""
1665
- "You have an incredible opportunity to get PRO version for free. Make "
1666
- "Translation of plugin! It will be amazing if you take advantage of this "
1667
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
1668
- "version of any plugin for FREE'</a>"
1669
- msgstr ""
1670
- "U hebt de ongelofelijk mogelijkheid om de PRO versie gratis te verkrijgen. "
1671
- "Maak een vertaling van de plugin! Het zou leuk zijn als u gebruik maakt van "
1672
- "deze kans! Meer informatie vindt u hier: <a target='_blank' "
1673
- "href='%s'>'Verkrijg de PRO versie van eender welke plugin GRATIS'</a>"
1674
-
1675
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:31
1676
- #: ../modules/supsystic_promo/views/supsystic_promo.php:31
1677
- msgid "Translation"
1678
- msgstr "Vertaling"
1679
-
1680
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:31
1681
- #: ../modules/supsystic_promo/views/supsystic_promo.php:31
1682
- #, php-format
1683
- msgid ""
1684
- "All available languages are provided with the Supsystic Google Maps plugin. "
1685
- "If your language isn't available, your plugin will be in English by default."
1686
- "<br /><b>Available Translations: English</b><br />Translate or update a "
1687
- "translation Google Maps WordPress plugin in your language and get a Premium "
1688
- "license for FREE. <a target='_blank' href='%s'>Contact us</a>."
1689
- msgstr ""
1690
- "Alle verkrijgbare talen zijn beschikbaar gesteld met Supsystic Google Maps "
1691
- "plugin. Wanneer uw taal niet beschikbaar is zal uw plugin standaard in het "
1692
- "Engels zijn.<br /><b>Beschikbare vertalingen: Engels</b><br />Vertaal of "
1693
- "update een Google Maps WordPress plugin vertaling in uw taal en verkrijg een "
1694
- "GRATIS Premium licentie. <a target='_blank' href='%s'>Contacteer ons</a>."
1695
-
1696
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:48
1697
- #: ../modules/supsystic_promo/views/supsystic_promo.php:48
1698
- #, php-format
1699
- msgid ""
1700
- "There were some problem while trying to retrive our news, but you can always "
1701
- "check all list <a target='_blank' href='%s'>here</a>."
1702
- msgstr ""
1703
- "Er was een probleem bij de poging om ons nieuws te banderen, maar u kan "
1704
- "altijd de hele lijst <a target='_blank' href='%s'>hier</a> nakijken."
1705
-
1706
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:58
1707
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:59
1708
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:64
1709
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:66
1710
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:67
1711
- #: ../modules/supsystic_promo/views/supsystic_promo.php:58
1712
- #: ../modules/supsystic_promo/views/supsystic_promo.php:59
1713
- #: ../modules/supsystic_promo/views/supsystic_promo.php:64
1714
- #: ../modules/supsystic_promo/views/supsystic_promo.php:66
1715
- #: ../modules/supsystic_promo/views/supsystic_promo.php:67
1716
- msgid "Yes"
1717
- msgstr "Ja"
1718
-
1719
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:58
1720
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:59
1721
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:64
1722
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:66
1723
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:67
1724
- #: ../modules/supsystic_promo/views/supsystic_promo.php:58
1725
- #: ../modules/supsystic_promo/views/supsystic_promo.php:59
1726
- #: ../modules/supsystic_promo/views/supsystic_promo.php:64
1727
- #: ../modules/supsystic_promo/views/supsystic_promo.php:66
1728
- #: ../modules/supsystic_promo/views/supsystic_promo.php:67
1729
- msgid "No"
1730
- msgstr "Nee"
1731
-
1732
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:4
1733
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:78
1734
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:4
1735
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:78
1736
- msgid "Version"
1737
- msgstr "Versie"
1738
-
1739
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:10
1740
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
1741
- msgid "Go"
1742
- msgstr "Ga"
1743
-
1744
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:10
1745
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
1746
- msgid "PRO"
1747
- msgstr "PRO"
1748
-
1749
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:15
1750
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:15
1751
- msgid "Support"
1752
- msgstr "Ondersteuning"
1753
-
1754
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:19
1755
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:19
1756
- msgid "Add your"
1757
- msgstr "Toevoegen van uw"
1758
-
1759
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1760
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1761
- msgid "FAQ and Documentation"
1762
- msgstr "FAQ en documentatie"
1763
-
1764
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1765
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1766
- msgid "Check all FAQs"
1767
- msgstr "Bekijk alle FAQ's (veel gestelde vragen)"
1768
-
1769
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1770
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:102
1771
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1772
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:102
1773
- msgid "Video tutorial"
1774
- msgstr "Video tutorial"
1775
-
1776
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1777
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1778
- msgid "Server Settings"
1779
- msgstr "Server instellingen"
1780
-
1781
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:44
1782
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:44
1783
- msgid "News"
1784
- msgstr "Nieuws"
1785
-
1786
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:50
1787
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:50
1788
- msgid "All news and info"
1789
- msgstr "Alle nieuws en info"
1790
-
1791
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:55
1792
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:55
1793
- msgid "Contact form"
1794
- msgstr "Contact formulier"
1795
-
1796
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:87
1797
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:87
1798
- msgid "Send email"
1799
- msgstr "Verzend E-mail"
1800
-
1801
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1802
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1803
- msgid ""
1804
- "Your email was send, we will try to respond to you as soon as possible. "
1805
- "Thank you for support!"
1806
- msgstr ""
1807
- "Uw e-mail is verzonden, wij zullen uw vraag zo snel mogelijk beantwoorden. "
1808
- "Dank u voor uw steun!"
1809
-
1810
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:76
1811
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:76
1812
- msgid "Welcome to"
1813
- msgstr "Welkom bij"
1814
-
1815
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:84
1816
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:84
1817
- #, php-format
1818
- msgid "This is first start up of the %s plugin."
1819
- msgstr "Dit is de eerste ingebruikname van de %s plugin."
1820
-
1821
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:85
1822
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:85
1823
- msgid ""
1824
- "If you are newbie - check all features on that page, if you are guru - "
1825
- "please correct us."
1826
- msgstr ""
1827
- "Nieuwelingen - bekijk alle mogelijkheden op die pagina, gevorderden - "
1828
- "verbeter ons aub."
1829
-
1830
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:94
1831
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:94
1832
- msgid "Please, post url"
1833
- msgstr "Aub, verzend url"
1834
-
1835
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:108
1836
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:108
1837
- msgid "What to do next? Check below section"
1838
- msgstr "Wat nu? Kijk hieronder"
1839
-
1840
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:112
1841
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:112
1842
- msgid "Boost us"
1843
- msgstr "Boost ons"
1844
-
1845
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:113
1846
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:113
1847
- #, php-format
1848
- msgid ""
1849
- "It's amazing when you boost development with your feedback and ratings. So "
1850
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
1851
- "help us."
1852
- msgstr ""
1853
- "Het is verbazingwekkend wanneer u de ontwikkeling ondersteunt met uw "
1854
- "feedback en beoordelingen. Dus creëerden we de speciale <a target='_blank' "
1855
- "href='%s'>ondersteunings pagina</a> om u te ondersteunen in uw hulp voor ons."
1856
-
1857
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:117
1858
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:117
1859
- msgid "Documentation"
1860
- msgstr "Documentatie"
1861
-
1862
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:118
1863
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:118
1864
- #, php-format
1865
- msgid ""
1866
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
1867
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
1868
- msgstr ""
1869
- "Bekijk de <a target='_blank' href='%s'>documentatie</a> en FAQ sectie. Als u "
1870
- "uw probleem niet kan oplossen - <a target='_blank' href='%s'>contacteer ons</"
1871
- "a>."
1872
-
1873
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:122
1874
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:122
1875
- msgid "Full Features List"
1876
- msgstr "Volledige functie lijst"
1877
-
1878
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:123
1879
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:123
1880
- msgid "There are so many features, so we can't post it here. Like"
1881
- msgstr ""
1882
- "Er zijn zo veel functies dat we ze hier niet allen kunnen plaatsen. Like"
1883
-
1884
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:125
1885
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:125
1886
- msgid "Capcha for admin login"
1887
- msgstr "Captcha voor admin login"
1888
-
1889
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:126
1890
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:126
1891
- msgid "htaccess admin protect"
1892
- msgstr "htaccess admin bescherming"
1893
-
1894
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:127
1895
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:127
1896
- msgid "Hide directory files listing"
1897
- msgstr "Verberg map met bestandslijst"
1898
-
1899
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:128
1900
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:128
1901
- msgid "Check files and directories write permissions"
1902
- msgstr "Kijk de permissies van uw mappen en bestanden na."
1903
-
1904
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:130
1905
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:130
1906
- #, php-format
1907
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
1908
- msgstr ""
1909
- "Bekijk de volledige lijst met opties <a target='_blank' href='%s'>hier</a>."
1910
-
1911
- #: ../modules/gmap/mod.php:92
1912
- msgid "Slider"
1913
- msgstr "Slider"
1914
-
1915
- #: ../modules/gmap/mod.php:93
1916
- msgid "Slider - Title and Img"
1917
- msgstr "Slider - titel en img"
1918
-
1919
- #: ../modules/gmap/mod.php:94 ../modules/gmap/mod.php:96
1920
- msgid "Slider Vertical - Title and Img"
1921
- msgstr "Verticale slider - titel en img"
1922
-
1923
- #: ../modules/gmap/mod.php:95
1924
- msgid "Slider Vertical - Title and Description"
1925
- msgstr "Verticale slider - titel en beschrijving"
1926
-
1927
- #: ../modules/gmap/views/tpl/gmapEditMap.php:13
1928
- msgid "Map Properties"
1929
- msgstr "Kaart eigenschappen"
1930
-
1931
- #: ../modules/gmap/views/tpl/gmapEditMap.php:59
1932
- #: ../modules/gmap/views/tpl/gmapEditMap.php:84
1933
- msgid "Px"
1934
- msgstr "Px"
1935
-
1936
- #: ../modules/gmap/views/tpl/gmapEditMap.php:276
1937
- msgid "Traffic Layer"
1938
- msgstr "Verkeersinformatie laag"
1939
-
1940
- #: ../modules/gmap/views/tpl/gmapEditMap.php:278
1941
- msgid "Add real-time traffic information to your map."
1942
- msgstr "Voeg live verkeersinformatie toe aan uw kaart."
1943
-
1944
- #: ../modules/gmap/views/tpl/gmapEditMap.php:293
1945
- msgid "Transit Layer"
1946
- msgstr "Openbaar vervoer laag"
1947
-
1948
- #: ../modules/gmap/views/tpl/gmapEditMap.php:295
1949
- msgid ""
1950
- "Display the public transit network of a city on your map. When the Transit "
1951
- "Layer is enabled, and the map is centered on a city that supports transit "
1952
- "information, the map will display major transit lines as thick, colored "
1953
- "lines."
1954
- msgstr ""
1955
- "Toon het openbaar vervoer op uw kaart. Wanneer de openbaar vervoer laag is "
1956
- "ingeschakeld, en de kaart is gecentreerd op een stad die openbaar vervoer "
1957
- "informatie ondersteunt dan zal de kaart de hoofdlijnen van het openbaar "
1958
- "vervoer weergeven als dikke, gekleurde lijnen."
1959
-
1960
- #: ../modules/gmap/views/tpl/gmapEditMap.php:310
1961
- msgid "Bicycling Layer"
1962
- msgstr "Fiets laag"
1963
-
1964
- #: ../modules/gmap/views/tpl/gmapEditMap.php:312
1965
- msgid ""
1966
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1967
- "to bicycling usage on top of the given map.Dark green routes indicated "
1968
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1969
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1970
- "for bicycle usage."
1971
- msgstr ""
1972
- "Voeg een laag met fietspaden, voorgestelde fietsroutes en andere deklagen "
1973
- "specifiek voor fietsers bovenop de huidige kaart. Donkergroene routes geven "
1974
- "specifieke fiets routes aan. Lichtgroene routes geven straten aan met eigen "
1975
- "'fietspaden.' Gestreepte routes geven straten of paden aan die aanbevolen "
1976
- "zijn voor fietsers."
1977
-
1978
- #: ../modules/gmap/views/tpl/gmapEditMap.php:339
1979
- msgid "Get 300+ Themes with PRO"
1980
- msgstr "Verkrijg +300 thema's met PRO"
1981
-
1982
- #: ../modules/gmap/views/tpl/gmapEditMap.php:347
1983
- msgid "Markers List"
1984
- msgstr "Baken lijst"
1985
-
1986
- #: ../modules/gmap/views/tpl/gmapEditMap.php:349
1987
- msgid ""
1988
- "Display all map markers - as list bellow Your map. This will help your users "
1989
- "get more info about your markers and find required marker more faster."
1990
- msgstr ""
1991
- "Toon alle kaart bakens - als een lijst onder uw kaart. Dit zal uw gebruikers "
1992
- "helpen meer info te verkrijgen omtrent uw bakens en toelaten de gezochte "
1993
- "baken sneller te vinden."
1994
-
1995
- #: ../modules/gmap/views/tpl/gmapEditMap.php:356
1996
- msgid "Select Markers List type"
1997
- msgstr "Selecteer soort baken lijst"
1998
-
1999
- #: ../modules/gmap/views/tpl/gmapEditMap.php:497
2000
- msgid "PHP code"
2001
- msgstr "PHP code"
2002
-
2003
- #: ../modules/gmap/views/tpl/gmapEditMap.php:532
2004
- msgid "Delete Marker"
2005
- msgstr "Verwijder baken"
2006
-
2007
- #: ../modules/gmap/views/tpl/gmapEditMap.php:580
2008
- msgid "Show markers list with your map on frontend"
2009
- msgstr "Toon baken lijst met uw kaart op de voorgrond"
2010
-
2011
- #: ../modules/gmap/views/tpl/gmapEditMap.php:587
2012
- #: ../modules/gmap/views/tpl/gmapEditMap.php:588
2013
- msgid "Apply"
2014
- msgstr "Toepassen"
2015
-
2016
- #: ../modules/gmap/views/tpl/gmapEditMap.php:587
2017
- msgid "Selected"
2018
- msgstr "Geselecteerd"
2019
-
2020
- #: ../modules/gmap/views/tpl/gmapEditMap.php:588
2021
- msgid "Available in PRO"
2022
- msgstr "Beschikbaar in PRO"
2023
-
2024
- #: ../modules/options/views/tpl/optionsAdminPage.php:31
2025
- msgid "Improve Free version"
2026
- msgstr "Verbeter de gratis versie"
2027
-
2028
- #: ../modules/options/views/tpl/optionsAdminPage.php:33
2029
- #, php-format
2030
- msgid ""
2031
- "Please be advised that this option is available only in <a target='_blank' "
2032
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
2033
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
2034
- "PopUps!"
2035
- msgstr ""
2036
- "Let op: deze optie is enkel beschikbaar in de <a target='_blank' "
2037
- "href='%s'>PRO versie</a>. <a target='_blank' href='%s' class='button'>Bestel "
2038
- "PRO</a> vandaag en krijg deze en andere PRO opties voor je popups!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-pl_PL.mo DELETED
Binary file
lang/gmp_lng-pl_PL.po DELETED
@@ -1,3195 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy v1.0.9\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-01-09 12:44+0200\n"
6
- "PO-Revision-Date: 2018-01-09 13:03+0200\n"
7
- "Last-Translator: rob <iirc80@gmail.com>\n"
8
- "Language-Team: \n"
9
- "Language: pl_PL\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
14
- "X-Generator: Poedit 1.8.9\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
17
- "_nx_noop:4c,1,2\n"
18
- "X-Poedit-Basepath: ..\n"
19
- "X-Textdomain-Support: yes\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: js\n"
22
- "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
23
-
24
- # @ gmp_lng
25
- # @ default
26
- #: classes/controller.php:198 classes/controller.php:206 doc/google-maps-easy-pro/frontend_actions/controller.php:15
27
- #: doc/google-maps-easy-pro/frontend_actions/controller.php:38 doc/google-maps-easy-pro/heatmap/controller.php:9
28
- #: doc/google-maps-easy-pro/heatmap/controller.php:39 doc/google-maps-easy-pro/kml/controller.php:11
29
- #: doc/google-maps-easy-pro/license/controller.php:6 doc/google-maps-easy-pro/shape/controller.php:8
30
- #: doc/google-maps-easy-pro/shape/controller.php:46 doc/google-maps-easy-pro/shape/controller.php:61
31
- #: modules/adminmenu/controller.php:29 modules/csv/controller.php:190 modules/gmap/controller.php:55
32
- #: modules/gmap/controller.php:72 modules/gmap/controller.php:80 modules/marker/controller.php:8
33
- #: modules/marker/controller.php:46 modules/marker/controller.php:61 modules/marker/controller.php:101
34
- #: modules/marker_groups/controller.php:78 modules/options/controller.php:6
35
- msgid "Done"
36
- msgstr "Gotowe"
37
-
38
- # @ gmp_lng
39
- #: classes/field.php:131
40
- msgid "Select"
41
- msgstr "Wybierz"
42
-
43
- # @ gmp_lng
44
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
45
- msgid "N/A"
46
- msgstr "Niedostępne"
47
-
48
- # @ gmp_lng
49
- #: classes/field.php:277
50
- msgid "Add Checkbox"
51
- msgstr "Dodaj przycisk wyboru"
52
-
53
- # @ gmp_lng
54
- #: classes/field.php:282 classes/field.php:287
55
- msgid "Add Item"
56
- msgstr "Dodaj pozycję"
57
-
58
- # @ gmp_lng
59
- #: classes/field.php:293
60
- msgid "Add Radio Button"
61
- msgstr "Dodaj przycisk opcji"
62
-
63
- # @ gmp_lng
64
- #: classes/field.php:311
65
- msgid "Dimensions"
66
- msgstr "Wymiary"
67
-
68
- # @ gmp_lng
69
- #: classes/field.php:314
70
- msgid "width"
71
- msgstr "szerokość"
72
-
73
- # @ gmp_lng
74
- #: classes/field.php:316
75
- msgid "height"
76
- msgstr "wysokość"
77
-
78
- # @ gmp_lng
79
- #: classes/field.php:323
80
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
81
- msgstr "Kliknij aby ustawić &quot;id&quot; i &quot;class&quot;"
82
-
83
- # @ gmp_lng
84
- #: classes/field.php:324
85
- msgid "Attributes"
86
- msgstr "Atrybuty"
87
-
88
- # @ gmp_lng
89
- #: classes/field.php:402
90
- msgid "There are no configuration options for this module"
91
- msgstr "Nie ma możliwości konfigurowania tego modułu"
92
-
93
- # @ gmp_lng
94
- #: classes/fieldAdapter.php:93
95
- msgid "Apply To"
96
- msgstr "Dotyczy"
97
-
98
- # @ gmp_lng
99
- #: classes/fieldAdapter.php:95 doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:40
100
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:66 modules/gmap/views/tpl/gmapEditMap.php:334
101
- #: modules/gmap/views/tpl/gmapEditMap.php:1229 modules/gmap/views/tpl/gmapEditMap.php:1507
102
- msgid "Address"
103
- msgstr "Adres"
104
-
105
- # @ gmp_lng
106
- #: classes/fieldAdapter.php:96
107
- msgid "Destination"
108
- msgstr "Miejsce docelowe"
109
-
110
- # @ gmp_lng
111
- #: classes/fieldAdapter.php:97
112
- msgid "Country"
113
- msgstr "Kraj"
114
-
115
- # @ gmp_lng
116
- #: classes/fieldAdapter.php:100
117
- msgid "Categories"
118
- msgstr "Kategorie"
119
-
120
- # @ gmp_lng
121
- #: classes/fieldAdapter.php:101
122
- msgid "You have no categories"
123
- msgstr "Nie ma żadnej kategorii"
124
-
125
- # @ gmp_lng
126
- #: classes/fieldAdapter.php:102
127
- msgid "Brands"
128
- msgstr "Rodzaje"
129
-
130
- # @ gmp_lng
131
- #: classes/fieldAdapter.php:103
132
- msgid "You have no brands"
133
- msgstr "Nie ma żadnych rodzajów"
134
-
135
- # @ gmp_lng
136
- #: classes/fieldAdapter.php:105
137
- msgid "Tax Rate"
138
- msgstr "Stawka podatkowa"
139
-
140
- # @ gmp_lng
141
- #: classes/fieldAdapter.php:106
142
- msgid "Absolute"
143
- msgstr "Całkowity"
144
-
145
- # @ gmp_lng
146
- #: classes/fieldAdapter.php:134
147
- msgid "Not selected"
148
- msgstr "Nie wybrany"
149
-
150
- # @ gmp_lng
151
- #: classes/fieldAdapter.php:184
152
- msgid "class"
153
- msgstr "klasa"
154
-
155
- # @ gmp_lng
156
- #: classes/fieldAdapter.php:186
157
- msgid "id"
158
- msgstr "identyfikator"
159
-
160
- # @ gmp_lng
161
- #: classes/frame.php:137
162
- msgid "You have no permissions to view this page"
163
- msgstr "Nie masz uprawnień aby zobaczyć tą stronę"
164
-
165
- #: classes/html.php:207 modules/gmap/views/tpl/gmapEditMap.php:1360
166
- msgid "Upload"
167
- msgstr "Załaduj"
168
-
169
- # @ default
170
- #: classes/html.php:627
171
- msgid "ON"
172
- msgstr ""
173
-
174
- # @ default
175
- #: classes/html.php:628
176
- msgid "OFF"
177
- msgstr ""
178
-
179
- # @ gmp_lng
180
- #: classes/html.php:652
181
- #, php-format
182
- msgid "Select %s"
183
- msgstr "Wybierz %s"
184
-
185
- # @ default
186
- #: classes/modInstaller.php:34
187
- #, php-format
188
- msgid "Move files for %s failed"
189
- msgstr "Dla % s plików przenoszenie nie powiodło się"
190
-
191
- # @ default
192
- #: classes/modInstaller.php:37
193
- #, php-format
194
- msgid "%s is not plugin module"
195
- msgstr "%s nie jest modułem wtyczki"
196
-
197
- #: classes/modInstaller.php:76
198
- msgid "Can not create module directory. Try to set permission to "
199
- msgstr "Nie można utworzyć katalogu modułu. Spróbuj ustawić uprawnienia"
200
-
201
- # @ gmp_lng
202
- #: classes/modInstaller.php:103
203
- msgid "No modules were found in XML file"
204
- msgstr "Nie znaleziono modułu w pliku XML"
205
-
206
- # @ gmp_lng
207
- #: classes/modInstaller.php:107
208
- msgid "Invalid XML file"
209
- msgstr "Uszkodzony plik XML"
210
-
211
- # @ gmp_lng
212
- #: classes/modInstaller.php:109
213
- msgid "No XML file were found"
214
- msgstr "Nie znaleziono pliku XML"
215
-
216
- # @ default
217
- #: classes/modInstaller.php:128
218
- #, php-format
219
- msgid "Install %s failed"
220
- msgstr "Instalacja % s nie powiodła się"
221
-
222
- # @ gmp_lng
223
- #: classes/modInstaller.php:134
224
- msgid "Error Activate module"
225
- msgstr "Błąd aktywacji modułu"
226
-
227
- # @ gmp_lng
228
- #: classes/modInstaller.php:164
229
- msgid "Error Deactivation module"
230
- msgstr "Błąd wyłączania modułu"
231
-
232
- # @ gmp_lng
233
- #: classes/modInstaller.php:185
234
- msgid "Error Activating module"
235
- msgstr "Błąd aktywacji modułu"
236
-
237
- # @ gmp_lng
238
- #: classes/model.php:174 classes/model.php:186
239
- msgid "Database error detected"
240
- msgstr "Błąd bazy danych"
241
-
242
- # @ gmp_lng
243
- #: classes/model.php:176 modules/gmap/models/gmap.php:182 modules/icons/models/icons.php:149
244
- #: modules/marker/models/marker.php:281 modules/marker_groups/models/marker_groups.php:49
245
- msgid "Invalid ID"
246
- msgstr "Błędny identyfikator"
247
-
248
- # @ gmp_lng
249
- #: classes/model.php:209
250
- msgid "Empty or invalid ID"
251
- msgstr "Pusty lub uszkodzony identyfikator"
252
-
253
- # @ gmp_lng
254
- #: classes/table.php:277
255
- msgid "Nothig to update"
256
- msgstr "Brak aktualizacji"
257
-
258
- # @ gmp_lng
259
- #: classes/table.php:293
260
- msgid "Database error. Please contact your developer."
261
- msgstr "Błąd bazy danych. Skontaktuj się z dostarczycielem kodu."
262
-
263
- #: classes/tables/heatmaps.php:7
264
- msgid "Heatmap ID"
265
- msgstr "ID 'mapy ciepła'"
266
-
267
- #: classes/tables/heatmaps.php:8 classes/tables/marker.php:13 classes/tables/shapes.php:12
268
- msgid "Map Id"
269
- msgstr "ID mapy"
270
-
271
- #: classes/tables/heatmaps.php:9
272
- msgid "Heatmap coordinates list"
273
- msgstr "Lista współrzędnych 'mapy ciepła'"
274
-
275
- #: classes/tables/heatmaps.php:10 classes/tables/marker.php:17 classes/tables/modules.php:10 classes/tables/options.php:11
276
- #: classes/tables/shapes.php:15
277
- msgid "Params"
278
- msgstr "Paramtry"
279
-
280
- #: classes/tables/heatmaps.php:11 classes/tables/marker.php:19 classes/tables/shapes.php:13
281
- msgid "Creation date"
282
- msgstr "Data utworzenia"
283
-
284
- # @ default
285
- # @ gmp_lng
286
- #: classes/tables/marker.php:7
287
- msgid "Marker ID"
288
- msgstr "ID znacznika"
289
-
290
- # @ gmp_lng
291
- #: classes/tables/marker.php:8
292
- msgid "Marker name"
293
- msgstr "Nazwa znacznika"
294
-
295
- #: classes/tables/marker.php:9
296
- msgid "Description Of Marker"
297
- msgstr "Opis znacznika"
298
-
299
- #: classes/tables/marker.php:10
300
- msgid "X coordinate if marker(lng)"
301
- msgstr "koordynata X znacznika (lng)"
302
-
303
- #: classes/tables/marker.php:11
304
- msgid "Y coordinate of marker(lat)"
305
- msgstr "koordynata Y znacznika (lat)"
306
-
307
- #: classes/tables/marker.php:12
308
- msgid "Path of icon file"
309
- msgstr "Ścieżka do plików ikon"
310
-
311
- #: classes/tables/marker.php:14
312
- msgid "Marker Address"
313
- msgstr "Adres znacznika"
314
-
315
- #: classes/tables/marker.php:15
316
- msgid "Id of Marker's group"
317
- msgstr "ID grupy znacznika"
318
-
319
- #: classes/tables/marker.php:16 classes/tables/shapes.php:14
320
- msgid "Animation"
321
- msgstr "Animacja"
322
-
323
- #: classes/tables/marker.php:18 classes/tables/options.php:15 classes/tables/shapes.php:16
324
- msgid "Sort Order"
325
- msgstr "Porządek sortowania"
326
-
327
- #: classes/tables/marker.php:20
328
- msgid "User who created marker"
329
- msgstr "Użytkownik, który stworzył znacznik"
330
-
331
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8 classes/tables/options.php:10
332
- msgid "Label"
333
- msgstr "Etykieta"
334
-
335
- #: classes/tables/modules.php:8 classes/tables/options.php:13
336
- msgid "Type"
337
- msgstr "Typ"
338
-
339
- #: classes/tables/modules.php:9
340
- msgid "Active"
341
- msgstr "Aktywny"
342
-
343
- #: classes/tables/modules.php:11
344
- msgid "Has Tab"
345
- msgstr "Ma Tab"
346
-
347
- #: classes/tables/modules.php:12 classes/tables/options.php:12
348
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:67
349
- msgid "Description"
350
- msgstr "Dane kontaktowe"
351
-
352
- #: classes/tables/modules.php:13 classes/tables/options.php:8 classes/tables/usage.php:9
353
- msgid "Code"
354
- msgstr "Kod"
355
-
356
- #: classes/tables/modules.php:14
357
- msgid "External plugin directory"
358
- msgstr "Katalog wtyczek zewnętrznych"
359
-
360
- # @ default
361
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7 classes/tables/options_categories.php:7
362
- #: modules/gmap/views/gmap.php:240
363
- msgid "ID"
364
- msgstr ""
365
-
366
- #: classes/tables/options.php:9
367
- msgid "Value"
368
- msgstr "Wartość"
369
-
370
- #: classes/tables/options.php:14
371
- msgid "Category ID"
372
- msgstr "ID kategorii"
373
-
374
- #: classes/tables/options.php:16
375
- msgid "Value Type"
376
- msgstr "Typ wartości"
377
-
378
- #: classes/tables/options_categories.php:8
379
- msgid "Method"
380
- msgstr "Metoda"
381
-
382
- #: classes/tables/shapes.php:7
383
- msgid "Shape ID"
384
- msgstr "ID regionu"
385
-
386
- # @ gmp_lng
387
- #: classes/tables/shapes.php:8
388
- msgid "Shape name"
389
- msgstr "Nazwa regionu"
390
-
391
- #: classes/tables/shapes.php:9
392
- msgid "Description of Shape"
393
- msgstr "Opis regionu"
394
-
395
- #: classes/tables/shapes.php:10
396
- msgid "Shape coordinates list"
397
- msgstr "lista współrzędnych regionu"
398
-
399
- #: classes/tables/shapes.php:11
400
- msgid "Shape type"
401
- msgstr "Typ regionu"
402
-
403
- #: classes/tables/usage.php:8
404
- msgid "Usage id"
405
- msgstr "ID użycia"
406
-
407
- #: classes/tables/usage.php:10
408
- msgid "Visits Count"
409
- msgstr "Ilość wizyt"
410
-
411
- # @ default
412
- #: classes/validator.php:30
413
- #, php-format
414
- msgid "Invalid length for %s, max length is %s"
415
- msgstr "Nieprawidłowa długość dla % s, maksymalna długość to % s"
416
-
417
- # @ default
418
- #: classes/validator.php:43
419
- #, php-format
420
- msgid "Invalid numeric value for %s"
421
- msgstr "Nieprawidłowa wartość numeryczna dla % s"
422
-
423
- # @ default
424
- # @ gmp_lng
425
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
426
- #, php-format
427
- msgid "Please enter %s"
428
- msgstr "Proszę wpisać %s"
429
-
430
- # @ default
431
- # @ gmp_lng
432
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
433
- #, php-format
434
- msgid "Please select %s"
435
- msgstr "Proszę wybrać %s"
436
-
437
- # @ default
438
- #: classes/validator.php:85 classes/validator.php:101
439
- #, php-format
440
- msgid "Invalid %s"
441
- msgstr "Błędny %s"
442
-
443
- # @ default
444
- #: classes/validator.php:88
445
- #, php-format
446
- msgid "%s is already registered"
447
- msgstr "%s już jest zarejestrowany"
448
-
449
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
450
- msgid "Exit Full Screen"
451
- msgstr "Wyjdź z pełnego ekranu"
452
-
453
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
454
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
455
- msgid "Open Full Screen"
456
- msgstr "Otwórz pełen ekran"
457
-
458
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/printInfoWndBtn.php:8
459
- msgid "Print"
460
- msgstr "Drukuj"
461
-
462
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:54
463
- msgid "Search address..."
464
- msgstr "Wyszukaj adres..."
465
-
466
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:81
467
- msgid "Reset"
468
- msgstr ""
469
-
470
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:94
471
- msgid "Find"
472
- msgstr "Szukaj"
473
-
474
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:105
475
- msgid "Search area have no markers, please try to modify search criterias."
476
- msgstr "Zakres szukania nie zawiera znaczników, spróbuj zmodyfikować kryteria wyszukiwania."
477
-
478
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
479
- msgid "Get Direction"
480
- msgstr "Otrzymać instrukcje"
481
-
482
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:23
483
- msgid "Type the address..."
484
- msgstr "Wpisz adres..."
485
-
486
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:32
487
- msgid "or"
488
- msgstr "lub"
489
-
490
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:35
491
- msgid "Get current user position"
492
- msgstr "Pobierz aktualną pozycję użytkownika"
493
-
494
- # @ gmp_lng
495
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:45 modules/supsystic_promo/views/tpl/adminFooter.php:10
496
- msgid "Go"
497
- msgstr "Idź"
498
-
499
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
500
- msgid "The Geolocation service failed."
501
- msgstr "Usługa Geolokalizacja nie jest dostępna"
502
-
503
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
504
- msgid "Your browser does not support geolocation."
505
- msgstr "Twoja przeglądarka nie obsługuje geolokacji."
506
-
507
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
508
- msgid "Route could not be found. Please, try to select another address!"
509
- msgstr "Nie udało się znaleźć trasy. Spróbuj wybrać inny adres!"
510
-
511
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
512
- msgid "Please, select address from search list!"
513
- msgstr "Proszę wybrać adres z listy wyszukiwania!"
514
-
515
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsPanel.php:4
516
- #, fuzzy
517
- msgid "List of Direction's Steps will be here..."
518
- msgstr "Lista procedur będzie tutaj..."
519
-
520
- #: doc/google-maps-easy-pro/frontend_actions/controller.php:49
521
- msgid "Adding markers from the frontend is disabled for the Current Map"
522
- msgstr "Dodawanie znaczników z przedniego panelu jest wyłączone dla bieżącej mapy"
523
-
524
- #: doc/google-maps-easy-pro/frontend_actions/mod.php:24 doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:9
525
- msgid "Empty or Invalid Map ID. Please, check your Marker Form Shortcode."
526
- msgstr "Pusty lub nieprawidłowy ID mapy. Sprawdź kod skrótu na Formularzu Znacznika."
527
-
528
- #: doc/google-maps-easy-pro/frontend_actions/models/frontend_actions.php:33
529
- #, php-format
530
- msgid "You have exceeded the limit on adding markers from current IP address. Please try again after %s minutes."
531
- msgstr "Przekroczono limit dodawania znaczników z bieżącego adresu IP. Spróbuj ponownie za % s minut."
532
-
533
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:16
534
- msgid "Marker Form will be displayed only for logged in users."
535
- msgstr "Formularz Znacznika będzie wyświetlany jedynie dla zalogowanych użytkowników."
536
-
537
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:17
538
- msgid "Log In"
539
- msgstr "Zaloguj się"
540
-
541
- # @ gmp_lng
542
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:30 modules/gmap/views/gmap.php:278
543
- #: modules/gmap/views/gmap.php:279 modules/gmap/views/tpl/gmapEditMap.php:160 modules/gmap/views/tpl/gmapEditMap.php:189
544
- #: modules/gmap/views/tpl/gmapEditMap.php:464 modules/marker/mod.php:20 modules/marker_groups/views/marker_groups.php:17
545
- msgid "None"
546
- msgstr "Brak"
547
-
548
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:52
549
- msgid "Marker's Form is not displayed, because the option &quot;Add markers on frontend&quot; is disabled for the Current Map"
550
- msgstr "Formularz Markera nie jest wyświetlany bo opcja &quot;Dopisz znaczniki&quot; jest wyłączona dla aktualnej mapy"
551
-
552
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:20
553
- msgid "You need to use marker form on page with map"
554
- msgstr "Musisz użyć formularza znacznika na stronie z mapą"
555
-
556
- # @ gmp_lng
557
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:23
558
- msgid "Marker Form"
559
- msgstr "Formularz znacznika"
560
-
561
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:24
562
- msgid "Use this form to add markers to your map"
563
- msgstr "Użyj tego formularza by dodać znacznik do swojej mapy"
564
-
565
- # @ gmp_lng
566
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:27
567
- #: modules/gmap/views/tpl/gmapEditMap.php:1178
568
- msgid "Marker Name"
569
- msgstr "Nazwa znacznika"
570
-
571
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:32
572
- #: modules/gmap/views/tpl/gmapEditMap.php:1271
573
- msgid "Marker Category"
574
- msgstr "Kategoria znacznika"
575
-
576
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:46
577
- #: modules/gmap/views/tpl/gmapEditMap.php:1494
578
- msgid "Add by Click"
579
- msgstr "Dodaj przez Klik"
580
-
581
- # @ gmp_lng
582
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:49
583
- #: modules/gmap/views/tpl/gmapEditMap.php:1191
584
- msgid "Marker Description"
585
- msgstr "Opis znacznika"
586
-
587
- # @ gmp_lng
588
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:58
589
- #: modules/gmap/views/tpl/gmapEditMap.php:848 modules/gmap/views/tpl/gmapEditMap.php:1218
590
- msgid "Choose Icon"
591
- msgstr "Wybierz ikonkę"
592
-
593
- # @ gmp_lng
594
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:65
595
- #: modules/gmap/views/tpl/gmapEditMap.php:1708
596
- msgid "Save Marker"
597
- msgstr "Zapisz znacznik"
598
-
599
- # @ gmp_lng
600
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:90
601
- msgid "Choose the marker"
602
- msgstr "Wybierz znacznik"
603
-
604
- # @ gmp_lng
605
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:99
606
- #: modules/gmap/views/tpl/gmapEditMap.php:1714
607
- msgid "Delete Marker"
608
- msgstr "Usuń znacznik"
609
-
610
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:101
611
- msgid "You need to choose the marker"
612
- msgstr "Powinieneś wybrać znacznik"
613
-
614
- # @ gmp_lng
615
- #: doc/google-maps-easy-pro/heatmap/controller.php:28
616
- msgid "Empty or invalid Heatmap ID"
617
- msgstr "Pusty lub uszkodzony ID 'mapy ciepła'"
618
-
619
- # @ gmp_lng
620
- #: doc/google-maps-easy-pro/heatmap/controller.php:35
621
- msgid "Heatmap Not Found"
622
- msgstr "'Mapy ciepła' nie znaleziono"
623
-
624
- #: doc/google-maps-easy-pro/heatmap/controller.php:41
625
- msgid "Cannot remove Heatmap"
626
- msgstr "Nie mogę usunąć 'mapy ciepła'"
627
-
628
- #: doc/google-maps-easy-pro/kml/controller.php:18
629
- msgid "Security check failed"
630
- msgstr "Sprawdzenie zabezpieczeń nie powiodło się"
631
-
632
- #: doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:6
633
- msgid "KML Layers Filter"
634
- msgstr "Filtr warstw KML"
635
-
636
- #: doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:16
637
- msgid "KML data loading"
638
- msgstr "Ładowanie danych KML"
639
-
640
- #: doc/google-maps-easy-pro/license/mod.php:30
641
- #, php-format
642
- msgid ""
643
- "Your license is expired. Once you extend your license - you will be able to Update PRO version. To extend PRO version license "
644
- "- follow <a href='%s' target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc click on &quot;Re-"
645
- "activate&quot; button to re-activate your PRO version."
646
- msgstr ""
647
- "Twoja licencja wygasła. Po wydaniu licencji - będziesz mógł zaktualizować wersję PRO. Aby rozszerzyć licencję wersji PRO - "
648
- "wykonaj <a href='%s' target='_blank'> ten link </a>, a następnie przejdź do <a href='%s'>Licencja</a> i kliknij przycisk "
649
- "&quot;Ponownie uaktywnij&quot; [Re-Activate], aby ponownie aktywować wersję PRO."
650
-
651
- #: doc/google-maps-easy-pro/license/mod.php:39
652
- #, php-format
653
- msgid ""
654
- "Your plugin PRO license is expired. It means your PRO version will work as usual - with all features and options, but you "
655
- "will not be able to update the PRO version and use PRO support. To extend PRO version license - follow <a href='%s' "
656
- "target='_blank'>this link</a>"
657
- msgstr ""
658
-
659
- #: doc/google-maps-easy-pro/license/mod.php:44
660
- #, php-format
661
- msgid ""
662
- "You need to activate your copy of PRO version %s plugin. Go to <a href='%s'>License</a> tab and finish your software "
663
- "activation process."
664
- msgstr ""
665
-
666
- #: doc/google-maps-easy-pro/license/mod.php:70
667
- msgid "License"
668
- msgstr "Licencja"
669
-
670
- #: doc/google-maps-easy-pro/license/mod.php:93
671
- msgid "Activate License"
672
- msgstr "Aktywuj licencję"
673
-
674
- #: doc/google-maps-easy-pro/license/mod.php:95
675
- msgid "Renew License"
676
- msgstr "Odnów licencję"
677
-
678
- #: doc/google-maps-easy-pro/license/models/license.php:54
679
- msgid "Please enter your License Key"
680
- msgstr "Proszę wprowadzić klucz licencji"
681
-
682
- #: doc/google-maps-easy-pro/license/models/license.php:56
683
- msgid "Please enter your Email address"
684
- msgstr "Proszę wprowadź swój adres e-mail"
685
-
686
- #: doc/google-maps-easy-pro/license/models/license.php:138
687
- msgid "There was a problem with sending request to our autentification server. Please try latter."
688
- msgstr "Wystąpił problem podczas przesyłania żądania do naszego serwera uwierzytelniania. Proszę spróbuj później."
689
-
690
- #: doc/google-maps-easy-pro/license/models/license.php:178
691
- #, php-format
692
- msgid "License for plugin %s will expire today."
693
- msgstr "Licencja na wtyczkę % s wygasa dzisiaj."
694
-
695
- #: doc/google-maps-easy-pro/license/models/license.php:180
696
- #, php-format
697
- msgid "License for plugin %s will expire tomorrow."
698
- msgstr "Licencja na wtyczkę % s wygaśnie jutro."
699
-
700
- #: doc/google-maps-easy-pro/license/models/license.php:182
701
- #, php-format
702
- msgid "License for plugin %s will expire in %d days."
703
- msgstr "Licencja na wtyczkę % s wygaśnie za %d dni."
704
-
705
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
706
- #, php-format
707
- msgid "Congratulations! PRO version of %s plugin is activated and working fine!"
708
- msgstr "Gratulacje! Wersja PRO wtyczki %s jest aktywna i działa poprawnie."
709
-
710
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
711
- #, php-format
712
- msgid ""
713
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' target='_blank'>click here</a> to extend your "
714
- "license, then - click on &quot;Re-activate&quot; button to re-activate your PRO version."
715
- msgstr ""
716
- "Twoja licencja na wersję PRO wtyczki % s wygasła. aby przedłużyć licencję <a href='%s' target='_blank'> kliknij tutaj </a>, a "
717
- "następnie kliknij przycisk &quot;Ponownie uaktywnij&quot; [Re-Activate], aby ponownie aktywować wersję PRO."
718
-
719
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
720
- #, php-format
721
- msgid ""
722
- "Congratulations! You have successfully installed PRO version of %s plugin. Final step to finish Your PRO version setup - is "
723
- "to enter your Email and License Key on this page. This will activate Your copy of software on this site."
724
- msgstr ""
725
- "Gratulacje! Poprawnie zainstalowano wtyczkę %s w wersji PRO. Zakończenie instalacji wersji PRO wymaga podania adresu e-mail i "
726
- "klucza licencji. To uaktywni twoją kopię oprogramowania dla tej witryny."
727
-
728
- # @ gmp_lng
729
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20 modules/supsystic_promo/mod.php:215
730
- msgid "Email"
731
- msgstr "Email"
732
-
733
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
734
- #, php-format
735
- msgid "Your email address, used on checkout procedure on <a href='%s' target='_blank'>%s</a>"
736
- msgstr "Twój adres e-mail, używany w procedurze sprawdzenia na <a href='%s' target='_blank'>% s </a>"
737
-
738
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
739
- msgid "License Key"
740
- msgstr "Klucz licencji"
741
-
742
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
743
- #, php-format
744
- msgid "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
745
- msgstr "Twój klucz licencji dla twojego konta na <a href='%s' target='_blank'>%s</a>"
746
-
747
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
748
- msgid "Re-activate"
749
- msgstr "Ponowna aktywacja"
750
-
751
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
752
- msgid "Activate"
753
- msgstr "Aktywacja"
754
-
755
- # @ gmp_lng
756
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:17
757
- msgid "Uncategorized"
758
- msgstr "Bez kategorii"
759
-
760
- # @ default
761
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:65 modules/gmap/views/gmap.php:241
762
- msgid "Title"
763
- msgstr "Tytuł"
764
-
765
- # @ gmp_lng
766
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:69
767
- msgid "Directions"
768
- msgstr "Kierunek"
769
-
770
- #: doc/google-maps-easy-pro/poi/mod.php:9 doc/google-maps-easy-pro/poi/views/poi.php:7
771
- msgid "Empty or Invalid Map ID. Please, check your POI Toolbar Shortcode."
772
- msgstr ""
773
-
774
- #: doc/google-maps-easy-pro/shape/controller.php:42 doc/google-maps-easy-pro/shape/controller.php:57
775
- #, fuzzy
776
- msgid "Figure Not Found"
777
- msgstr "Nie znaleziono kształtu"
778
-
779
- #: doc/google-maps-easy-pro/shape/controller.php:48 doc/google-maps-easy-pro/shape/controller.php:63
780
- #, fuzzy
781
- msgid "Cannot remove figure"
782
- msgstr "Nie można usunąć kształtu"
783
-
784
- # @ gmp_lng
785
- #: doc/google-maps-easy-pro/shape/controller.php:99
786
- msgid "Empty or invalid figure ID"
787
- msgstr "Pusty lub uszkodzony ID kształtu"
788
-
789
- # @ default
790
- # @ gmp_lng
791
- #: doc/google-maps-easy-pro/shape/models/shape.php:43
792
- msgid "Please enter figure name"
793
- msgstr "Proszę wpisać nazwę kształtu"
794
-
795
- #: doc/google-maps-easy-pro/shape/models/shape.php:104 modules/marker/models/marker.php:213
796
- msgid "Address is empty or not match"
797
- msgstr "Adres jest pusty lub nie pasuje"
798
-
799
- # @ gmp_lng
800
- #: doc/google-maps-easy-pro/shape/models/shape.php:159
801
- msgid "Invalid Figure ID"
802
- msgstr "Błędny ID kształtu"
803
-
804
- # @ gmp_lng
805
- #: doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1 modules/gmap/mod.php:22
806
- #: modules/marker/views/tpl/markerListOperations.php:1 modules/marker_groups/mod.php:14
807
- msgid "Edit"
808
- msgstr "Zmień"
809
-
810
- # @ gmp_lng
811
- #: doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1 modules/marker/views/tpl/markerListOperations.php:1
812
- msgid "Delete"
813
- msgstr "Usuń"
814
-
815
- #: doc/google-maps-easy-pro/wpUpdater.php:70
816
- msgid ""
817
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' onclick='document.location.reload(); return "
818
- "false;'>Try again</a>"
819
- msgstr ""
820
- "Podczas żądania API wystąpił nieoczekiwany błąd HTTP. </p> <p><a href='?' onclick='document.location.reload(); return "
821
- "false;'>Spróbuj ponownie </a>"
822
-
823
- #: doc/google-maps-easy-pro/wpUpdater.php:75
824
- msgid "An unknown error occurred"
825
- msgstr "Wystąpił nieoczekiwany błąd"
826
-
827
- #: modules/adminmenu/controller.php:7
828
- #, fuzzy
829
- msgid "Your name field is required."
830
- msgstr "Wypełnienie pola twojego nazwiska jest wymagane."
831
-
832
- #: modules/adminmenu/controller.php:8
833
- #, fuzzy
834
- msgid "Your website field is required."
835
- msgstr "Wypełnienie pola twojej stony jest wymagane."
836
-
837
- #: modules/adminmenu/controller.php:9
838
- #, fuzzy
839
- msgid "Your e-mail field is required."
840
- msgstr "Wypełnienie pola twojego adresu e-mail jest wymagane."
841
-
842
- #: modules/adminmenu/controller.php:10
843
- #, fuzzy
844
- msgid "Subject field is required."
845
- msgstr "Wypełnienie pola tematu jest wymagane."
846
-
847
- #: modules/adminmenu/controller.php:11
848
- msgid "You must select a valid category."
849
- msgstr "Musisz wybrać prawidłową kategorię."
850
-
851
- #: modules/adminmenu/controller.php:12
852
- #, fuzzy
853
- msgid "Message field is required."
854
- msgstr "Wypełnienie pola komunikatu jest wymagane."
855
-
856
- #: modules/adminmenu/mod.php:13
857
- #, php-format
858
- msgid "Cool WordPress plugins from supsystic.com developers. I tried %s - and this was what I need! #supsystic.com"
859
- msgstr "Wtyczki Cool WordPress od dostawców supsystic.com. Próbowałem % s - i tego potrzebowałem! #supsystic.com"
860
-
861
- # @ gmp_lng
862
- #: modules/adminmenu/mod.php:14 modules/options/mod.php:13
863
- msgid "Settings"
864
- msgstr "Ustawienia"
865
-
866
- #: modules/adminmenu/mod.php:15
867
- msgid "More plugins for your WordPress site here!"
868
- msgstr "Więcej wtyczek do twojej strony na Wordpressie tutaj!"
869
-
870
- #: modules/adminmenu/mod.php:16 modules/adminmenu/mod.php:17 modules/adminmenu/mod.php:18
871
- msgid "Spread the word!"
872
- msgstr "Rozgłoś!"
873
-
874
- #: modules/csv/controller.php:7
875
- #, php-format
876
- msgid "Maps from %s - %s"
877
- msgstr "Mapy od %s - %s"
878
-
879
- #: modules/csv/controller.php:10
880
- msgid "You have no maps for now."
881
- msgstr "Na razie nie masz map."
882
-
883
- #: modules/csv/controller.php:55
884
- #, php-format
885
- msgid "Markers from %s"
886
- msgstr "Znaczniki od %s"
887
-
888
- #: modules/csv/controller.php:58
889
- msgid "You have no markers for now."
890
- msgstr "Na razie nie masz znaczników."
891
-
892
- #: modules/csv/controller.php:96
893
- msgid "Missing File"
894
- msgstr "Błędny plik"
895
-
896
- #: modules/csv/controller.php:98
897
- #, php-format
898
- msgid "File uploaded with error code %s"
899
- msgstr "Ładowanie pliku zwróciło błąd %s"
900
-
901
- #: modules/csv/controller.php:180
902
- msgid "File should contain more then 1 row, at least 1 row should be for headers"
903
- msgstr "Plik powinien zawierać więcej niż 1 wiersz, oprócz co najmniej jednego wiersza dla nagłówków"
904
-
905
- #: modules/csv/controller.php:182
906
- msgid "Empty data in file"
907
- msgstr "Brak danych w pliku"
908
-
909
- # @ gmp_lng
910
- #: modules/csv/mod.php:11
911
- msgid "Maps Import / Export"
912
- msgstr "Import / Eksport map"
913
-
914
- #: modules/csv/models/csv.php:133
915
- msgid "Can not detect import list type"
916
- msgstr "Nie można wykryć listy importów"
917
-
918
- #: modules/csv/models/csv.php:135
919
- msgid "Can not find fields names"
920
- msgstr "Nie można znaleźć nazw pól"
921
-
922
- # @ default
923
- #: modules/csv/views/tpl/csvTabContent.php:8
924
- msgid "Maps"
925
- msgstr "Mapy"
926
-
927
- # @ default
928
- #: modules/csv/views/tpl/csvTabContent.php:13 modules/csv/views/tpl/csvTabContent.php:34
929
- msgid "Export"
930
- msgstr "Eksport"
931
-
932
- # @ default
933
- #: modules/csv/views/tpl/csvTabContent.php:18 modules/csv/views/tpl/csvTabContent.php:39
934
- msgid "Import"
935
- msgstr "Import"
936
-
937
- # @ default
938
- # @ gmp_lng
939
- #: modules/csv/views/tpl/csvTabContent.php:29 modules/gmap/views/gmap.php:243 modules/gmap/views/tpl/gmapEditMap.php:41
940
- msgid "Markers"
941
- msgstr "Znaczniki"
942
-
943
- #: modules/csv/views/tpl/csvTabContent.php:51
944
- msgid "CSV Options"
945
- msgstr ""
946
-
947
- #: modules/csv/views/tpl/csvTabContent.php:57
948
- msgid "Delimiter"
949
- msgstr ""
950
-
951
- #: modules/csv/views/tpl/csvTabContent.php:73 modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:15
952
- #: modules/options/views/tpl/optionsSettingsTabContent.php:6
953
- msgid "Save"
954
- msgstr "Zachowaj"
955
-
956
- #: modules/gmap/controller.php:23
957
- msgid "Map data not found"
958
- msgstr "Brak danych mapy"
959
-
960
- # @ gmp_lng
961
- #: modules/gmap/mod.php:19
962
- msgid "Add Map"
963
- msgstr "Dodaj mapę"
964
-
965
- # @ gmp_lng
966
- #: modules/gmap/mod.php:25
967
- msgid "All Maps"
968
- msgstr "Wszystkie mapy"
969
-
970
- # @ gmp_lng
971
- #: modules/gmap/mod.php:35
972
- msgid "No Map Found"
973
- msgstr "Nie znaleziono żadnej mapy"
974
-
975
- # @ gmp_lng
976
- #: modules/gmap/mod.php:98
977
- msgid "Empty or Invalid Map ID"
978
- msgstr "Pusty lub uszkodzony identyfikator mapy"
979
-
980
- #: modules/gmap/mod.php:98
981
- msgid "Please, check your Map Shortcode."
982
- msgstr "Proszę wybrać skrót swojej mapy"
983
-
984
- # @ gmp_lng
985
- #: modules/gmap/mod.php:118
986
- msgid "Top Center"
987
- msgstr "Środek górnej krawędzi"
988
-
989
- # @ gmp_lng
990
- #: modules/gmap/mod.php:119
991
- msgid "Top Left"
992
- msgstr "Lewy górny narożnik"
993
-
994
- # @ gmp_lng
995
- #: modules/gmap/mod.php:120
996
- msgid "Top Right"
997
- msgstr "Prawy górny narożnik"
998
-
999
- # @ gmp_lng
1000
- #: modules/gmap/mod.php:121
1001
- msgid "Left Top"
1002
- msgstr "Lewy górny narożnik"
1003
-
1004
- # @ gmp_lng
1005
- #: modules/gmap/mod.php:122
1006
- msgid "Right Top"
1007
- msgstr "Prawy górny narożnik"
1008
-
1009
- # @ gmp_lng
1010
- #: modules/gmap/mod.php:123
1011
- msgid "Left Center"
1012
- msgstr "Środek lewej krawędzi"
1013
-
1014
- # @ gmp_lng
1015
- #: modules/gmap/mod.php:124
1016
- msgid "Right Center"
1017
- msgstr "Środek prawej krawędzi"
1018
-
1019
- # @ gmp_lng
1020
- #: modules/gmap/mod.php:125
1021
- msgid "Left Bottom"
1022
- msgstr "Lewy dolny narożnik"
1023
-
1024
- # @ gmp_lng
1025
- #: modules/gmap/mod.php:126
1026
- msgid "Right Bottom"
1027
- msgstr "Prawy dolny narożnik"
1028
-
1029
- # @ gmp_lng
1030
- #: modules/gmap/mod.php:127
1031
- msgid "Bottom Center"
1032
- msgstr "Środek dolnej krawędzi"
1033
-
1034
- # @ gmp_lng
1035
- #: modules/gmap/mod.php:128
1036
- msgid "Bottom Left"
1037
- msgstr "Lewy dolny narożnik"
1038
-
1039
- # @ gmp_lng
1040
- #: modules/gmap/mod.php:129
1041
- msgid "Bottom Right"
1042
- msgstr "Prawy dolny narożnik"
1043
-
1044
- # @ gmp_lng
1045
- #: modules/gmap/mod.php:155
1046
- msgid "Slider"
1047
- msgstr "Suwak"
1048
-
1049
- #: modules/gmap/mod.php:156
1050
- msgid "Slider - Title and Img"
1051
- msgstr "Suwak - tytuł i obraz"
1052
-
1053
- #: modules/gmap/mod.php:157 modules/gmap/mod.php:159
1054
- msgid "Slider Vertical - Title and Img"
1055
- msgstr "Suwak pionowy - tytuł i obraz"
1056
-
1057
- #: modules/gmap/mod.php:158
1058
- msgid "Slider Vertical - Title and Description"
1059
- msgstr "Suwak pionowy - tytuł i opis"
1060
-
1061
- # @ gmp_lng
1062
- #: modules/gmap/mod.php:160
1063
- #, fuzzy
1064
- msgid "Slider Table"
1065
- msgstr "Suwak tabeli"
1066
-
1067
- # @ gmp_lng
1068
- #: modules/gmap/mod.php:186
1069
- msgid "Google Map"
1070
- msgstr "Mapa Google"
1071
-
1072
- #: modules/gmap/models/gmap.php:90
1073
- msgid "Please enter Map Name"
1074
- msgstr "Proszę wprowadzić nazwę mapy"
1075
-
1076
- #: modules/gmap/models/gmap.php:119 modules/marker_groups/models/marker_groups.php:104
1077
- msgid "Empty Params"
1078
- msgstr "Brak parametru(ów)"
1079
-
1080
- # @ gmp_lng
1081
- #: modules/gmap/models/gmap.php:128 modules/gmap/models/gmap.php:226
1082
- msgid "Invalid Map ID"
1083
- msgstr "Błędny ID mapy"
1084
-
1085
- # @ gmp_lng
1086
- #: modules/gmap/views/gmap.php:89
1087
- #, php-format
1088
- msgid "Map with ID %d not found"
1089
- msgstr "Mapa o ID %d nie istnieje"
1090
-
1091
- # @ gmp_lng
1092
- #: modules/gmap/views/gmap.php:90
1093
- msgid "Map not found"
1094
- msgstr "Mapy nie istnieje"
1095
-
1096
- # @ default
1097
- #: modules/gmap/views/gmap.php:242
1098
- msgid "Html options"
1099
- msgstr "Opcje HTML"
1100
-
1101
- # @ default
1102
- #: modules/gmap/views/gmap.php:244
1103
- msgid "Operations"
1104
- msgstr "Operacje"
1105
-
1106
- #: modules/gmap/views/gmap.php:361
1107
- #, fuzzy
1108
- msgid "Error inside google maps plugin."
1109
- msgstr "Błąd wewnątrz wtyczki Mapy Google."
1110
-
1111
- #: modules/gmap/views/gmap.php:365 modules/gmap/views/gmap.php:370
1112
- msgid "To use this feature, You need to reactivate your Google Maps Easy plugin."
1113
- msgstr ""
1114
-
1115
- # @ gmp_lng
1116
- #: modules/gmap/views/tpl/gmapAdmin.php:5 modules/gmap/views/tpl/gmapAdmin.php:6 modules/marker_groups/views/tpl/mgrAdmin.php:21
1117
- #: modules/marker_groups/views/tpl/mgrAdmin.php:22
1118
- msgid "Search"
1119
- msgstr "Szukaj"
1120
-
1121
- # @ gmp_lng
1122
- #: modules/gmap/views/tpl/gmapAdmin.php:8 modules/gmap/views/tpl/gmapAdmin.php:11
1123
- msgid "Clone selected"
1124
- msgstr "Klonuj zaznaczone"
1125
-
1126
- # @ default
1127
- # @ gmp_lng
1128
- #: modules/gmap/views/tpl/gmapAdmin.php:14 modules/gmap/views/tpl/gmapAdmin.php:17
1129
- #: modules/marker_groups/views/tpl/mgrAdmin.php:10 modules/marker_groups/views/tpl/mgrAdmin.php:13
1130
- msgid "Delete selected"
1131
- msgstr "Usuń zaznaczone"
1132
-
1133
- # @ gmp_lng
1134
- #: modules/gmap/views/tpl/gmapAdmin.php:33
1135
- #, php-format
1136
- msgid "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</a> your first Map!"
1137
- msgstr "Na razie nie masz map. <a href='%s' style='font-style: italic;'>Stwórz</a> pierwszą mapę!"
1138
-
1139
- # @ gmp_lng
1140
- #: modules/gmap/views/tpl/gmapEditMap.php:4
1141
- #, php-format
1142
- msgid ""
1143
- "This option is available in <a target='_blank' href='%s'>PRO version</a> only, you can get it <a target='_blank' "
1144
- "href='%s'>here.</a>"
1145
- msgstr ""
1146
- "Ta opcja jest dostępna tylko w <a target='_blank' href='%s'>wersji PRO</a>, sprawdź <a target='_blank' href='%s'>tutaj.</a>"
1147
-
1148
- # @ gmp_lng
1149
- #: modules/gmap/views/tpl/gmapEditMap.php:13
1150
- msgid "Insert to Contact Form"
1151
- msgstr "Wstaw do Formularza kontaktowego"
1152
-
1153
- #: modules/gmap/views/tpl/gmapEditMap.php:19
1154
- msgid "Integrate with Membership"
1155
- msgstr ""
1156
-
1157
- #: modules/gmap/views/tpl/gmapEditMap.php:27
1158
- #, fuzzy
1159
- msgid "Enable for Membership"
1160
- msgstr "Gotowe do zgrupowania"
1161
-
1162
- # @ gmp_lng
1163
- #: modules/gmap/views/tpl/gmapEditMap.php:35
1164
- msgid "Map"
1165
- msgstr "Mapa"
1166
-
1167
- # @ gmp_lng
1168
- #: modules/gmap/views/tpl/gmapEditMap.php:43 modules/gmap/views/tpl/gmapEditMap.php:52
1169
- msgid "New"
1170
- msgstr "Nowe"
1171
-
1172
- #: modules/gmap/views/tpl/gmapEditMap.php:50 modules/supsystic_promo/mod.php:264
1173
- msgid "Figures"
1174
- msgstr "Regiony"
1175
-
1176
- #: modules/gmap/views/tpl/gmapEditMap.php:59
1177
- msgid "Heatmap Layer"
1178
- msgstr "Warstwa 'mapy ciepła'"
1179
-
1180
- # @ gmp_lng
1181
- #: modules/gmap/views/tpl/gmapEditMap.php:71
1182
- msgid "Map Name"
1183
- msgstr "Nazwa mapy"
1184
-
1185
- # @ gmp_lng
1186
- #: modules/gmap/views/tpl/gmapEditMap.php:73
1187
- msgid "Your map name"
1188
- msgstr "Nazwa twojej mapy"
1189
-
1190
- # @ gmp_lng
1191
- #: modules/gmap/views/tpl/gmapEditMap.php:85
1192
- msgid "Map Width"
1193
- msgstr "Szerokość mapy"
1194
-
1195
- # @ gmp_lng
1196
- #: modules/gmap/views/tpl/gmapEditMap.php:87
1197
- msgid "Your map width"
1198
- msgstr "Szerokość twojej mapy"
1199
-
1200
- # @ gmp_lng
1201
- #: modules/gmap/views/tpl/gmapEditMap.php:96 modules/gmap/views/tpl/gmapEditMap.php:128
1202
- #: modules/gmap/views/tpl/gmapEditMap.php:972 modules/gmap/views/tpl/gmapEditMap.php:1012
1203
- #: modules/gmap/views/tpl/gmapEditMap.php:1066 modules/gmap/views/tpl/gmapEditMap.php:1088
1204
- msgid "Pixels"
1205
- msgstr "pikseli"
1206
-
1207
- # @ gmp_lng
1208
- #: modules/gmap/views/tpl/gmapEditMap.php:99 modules/gmap/views/tpl/gmapEditMap.php:131
1209
- #: modules/gmap/views/tpl/gmapEditMap.php:978 modules/gmap/views/tpl/gmapEditMap.php:1018
1210
- #: modules/gmap/views/tpl/gmapEditMap.php:1070 modules/gmap/views/tpl/gmapEditMap.php:1092
1211
- msgid "Px"
1212
- msgstr "Px"
1213
-
1214
- # @ gmp_lng
1215
- #: modules/gmap/views/tpl/gmapEditMap.php:103
1216
- msgid "Percents"
1217
- msgstr "Procent"
1218
-
1219
- # @ gmp_lng
1220
- #: modules/gmap/views/tpl/gmapEditMap.php:110
1221
- msgid "Map Height"
1222
- msgstr "Wysokość mapy"
1223
-
1224
- #: modules/gmap/views/tpl/gmapEditMap.php:112
1225
- msgid ""
1226
- "Your map height.<br /><br />If Adapt map to screen height option is checked - map height will be recalculated on frontend and "
1227
- "can be equals to:<ul><li>1) your device screen height - height from top of page to top of map (if screen height > height from "
1228
- "top of page to top of map)</li><li>2) your device screen height (in other cases)</li></ul>Recalculation will be done for maps "
1229
- "in page content and widgets except of maps which displaying in Google Maps Easy widget popup (Display as image mode)."
1230
- msgstr ""
1231
- "Wysokość twojej mapy.<br /><br />Jeśli jest zaznaczona opcja 'Dopasuj mapę do wysokości ekranu' - to wysokość mapy zostanie "
1232
- "przeliczona i może być równa:<ul><li>1) Wysokość ekranu twojego urządzenia - wysokość od góry strony do góry mapy (jeśli "
1233
- "wysokość ekranu > wysokość od góry strony do góry mapy)</li><li>2) wysokość ekranu twojego urządzenia (w przeciwnym razie)</"
1234
- "li></ul>Przeliczenie zostanie wykonane dla map w treści strony i widgetach, za wyjątkiem map, które wyświetlają się w menu "
1235
- "podręcznym Google Maps Easy (Wyświetl jako tryb obrazu)."
1236
-
1237
- #: modules/gmap/views/tpl/gmapEditMap.php:139
1238
- msgid "Adapt map to screen height"
1239
- msgstr "Dopasuj mapę do wysokości ekranu"
1240
-
1241
- # @ gmp_lng
1242
- #: modules/gmap/views/tpl/gmapEditMap.php:153
1243
- msgid "Map type control"
1244
- msgstr "Przycisk typu mapy"
1245
-
1246
- # @ gmp_lng
1247
- #: modules/gmap/views/tpl/gmapEditMap.php:155
1248
- msgid "Control view for map type - you can see it in right upper corner by default"
1249
- msgstr "Kontrolka typu mapy - możesz zobaczyć podgląd w prawym górnym narożniku"
1250
-
1251
- # @ gmp_lng
1252
- #: modules/gmap/views/tpl/gmapEditMap.php:160
1253
- msgid "Dropdown Menu"
1254
- msgstr "Rozwijane menu"
1255
-
1256
- # @ gmp_lng
1257
- #: modules/gmap/views/tpl/gmapEditMap.php:160
1258
- msgid "Horizontal Bar"
1259
- msgstr "Belka pozioma"
1260
-
1261
- # @ gmp_lng
1262
- #: modules/gmap/views/tpl/gmapEditMap.php:166
1263
- msgid "Change type control position on map"
1264
- msgstr "Zmień pozycję kontrolki typu mapy"
1265
-
1266
- # @ gmp_lng
1267
- #: modules/gmap/views/tpl/gmapEditMap.php:173 modules/gmap/views/tpl/gmapEditMap.php:202
1268
- #: modules/gmap/views/tpl/gmapEditMap.php:235 modules/gmap/views/tpl/gmapEditMap.php:532
1269
- #: modules/gmap/views/tpl/gmapEditMap.php:558 modules/gmap/views/tpl/gmapEditMap.php:575
1270
- #: modules/gmap/views/tpl/gmapEditMap.php:592 modules/gmap/views/tpl/gmapEditMap.php:616
1271
- #: modules/gmap/views/tpl/gmapEditMap.php:678 modules/gmap/views/tpl/gmapEditMap.php:757
1272
- #: modules/gmap/views/tpl/gmapEditMap.php:774 modules/gmap/views/tpl/gmapEditMap.php:791
1273
- #: modules/gmap/views/tpl/gmapEditMap.php:834 modules/gmap/views/tpl/gmapEditMap.php:874
1274
- #: modules/gmap/views/tpl/gmapEditMap.php:1111 modules/gmap/views/tpl/gmapEditMap.php:1154
1275
- #: modules/options/views/tpl/optionsSettingsTabContent.php:70
1276
- msgid "PRO option"
1277
- msgstr "Opcja PRO"
1278
-
1279
- # @ gmp_lng
1280
- #: modules/gmap/views/tpl/gmapEditMap.php:181
1281
- msgid "Zoom control"
1282
- msgstr "Suwak powiększenia"
1283
-
1284
- #: modules/gmap/views/tpl/gmapEditMap.php:183
1285
- msgid "Zoom control type on your map. Note, to view Zoom control on the map the Custom Map Controls option must be disabled."
1286
- msgstr ""
1287
- "Typ sterowania powiększeniem na mapie. Zauważ, że aby wyświetlić kontrolę Zoom na mapie, należy wyłączyć opcję Custom Map "
1288
- "Controls."
1289
-
1290
- # @ gmp_lng
1291
- #: modules/gmap/views/tpl/gmapEditMap.php:189 modules/gmap/views/tpl/gmapEditMap.php:518
1292
- msgid "Default"
1293
- msgstr "Domyślny"
1294
-
1295
- # @ gmp_lng
1296
- #: modules/gmap/views/tpl/gmapEditMap.php:195
1297
- msgid "Change zoom control position on map"
1298
- msgstr "Zmień pozycję suwaka powiększenia"
1299
-
1300
- #: modules/gmap/views/tpl/gmapEditMap.php:206
1301
- #, fuzzy
1302
- msgid "Notice"
1303
- msgstr "Zauważ"
1304
-
1305
- #: modules/gmap/views/tpl/gmapEditMap.php:208
1306
- msgid "Standard Zoom control will not displaying for this map, because the Custom Map Controls option enabled now."
1307
- msgstr "Standardowa kontrola powiększenia nie będzie wyświetlana dla tej mapy, bo jest włączona opcja Custom Map Controls."
1308
-
1309
- # @ gmp_lng
1310
- #: modules/gmap/views/tpl/gmapEditMap.php:216
1311
- msgid "Street view control"
1312
- msgstr "Przycisk widoku ulicy"
1313
-
1314
- # @ gmp_lng
1315
- #: modules/gmap/views/tpl/gmapEditMap.php:218
1316
- msgid "Street view control usually is located on left upper corner of your map"
1317
- msgstr "Przycisk widoku ulicy jest zazwyczaj umieszczony w lewym górnym rogu mapy"
1318
-
1319
- # @ gmp_lng
1320
- #: modules/gmap/views/tpl/gmapEditMap.php:228
1321
- msgid "Change street view control position on map"
1322
- msgstr "Zmień pozycję przycisku widoku ulicy"
1323
-
1324
- # @ gmp_lng
1325
- #: modules/gmap/views/tpl/gmapEditMap.php:288
1326
- msgid "Draggable"
1327
- msgstr "Przeciągalny"
1328
-
1329
- # @ gmp_lng
1330
- #: modules/gmap/views/tpl/gmapEditMap.php:290
1331
- msgid "Enable or disable possibility to drag your map using mouse"
1332
- msgstr "Włącz lub wyłączyć możliwość przeciągania mapy za pomocą myszy"
1333
-
1334
- # @ gmp_lng
1335
- #: modules/gmap/views/tpl/gmapEditMap.php:301
1336
- msgid "Double click to zoom"
1337
- msgstr "Podwójne kliknięcie powiększa mapę"
1338
-
1339
- # @ gmp_lng
1340
- #: modules/gmap/views/tpl/gmapEditMap.php:303
1341
- msgid "By default double left click on map will zoom it in. But you can change this here."
1342
- msgstr "Domyślnie podwójne kliknięcie powiększa mapę. Możesz to zmienić tutaj."
1343
-
1344
- # @ gmp_lng
1345
- #: modules/gmap/views/tpl/gmapEditMap.php:314
1346
- #, fuzzy
1347
- msgid "Mouse wheel to zoom"
1348
- msgstr "Kółko myszy skaluje"
1349
-
1350
- # @ gmp_lng
1351
- #: modules/gmap/views/tpl/gmapEditMap.php:316
1352
- msgid ""
1353
- "Sometimes you need to disable possibility to zoom your map using mouse wheel. This can be required for example - if you need "
1354
- "to use your wheel for some other action, for example scroll your site even if mouse is over your map."
1355
- msgstr ""
1356
- "Czasami konieczne jest wyłączenie możliwości powiększania mapy za pomocą kółka myszy. Przykładowo: - jeśli musisz używać "
1357
- "kółka do innych działań, na przykład by móc przewijać witrynę, nawet jeśli mysz znajduje się nad twoją mapą."
1358
-
1359
- # @ gmp_lng
1360
- #: modules/gmap/views/tpl/gmapEditMap.php:327 modules/gmap_widget/views/tpl/form.php:44
1361
- msgid "Map Center"
1362
- msgstr "Środek mapy"
1363
-
1364
- #: modules/gmap/views/tpl/gmapEditMap.php:329
1365
- msgid ""
1366
- "Sets map center. You can set map center in next ways: type address to use its coords, type the coords' values in appropriate "
1367
- "fields or just drag the map on preview."
1368
- msgstr ""
1369
-
1370
- # @ gmp_lng
1371
- #: modules/gmap/views/tpl/gmapEditMap.php:343 modules/gmap/views/tpl/gmapEditMap.php:1243
1372
- #: modules/gmap/views/tpl/gmapEditMap.php:1516
1373
- msgid "Latitude"
1374
- msgstr "Szerokość geograficzna"
1375
-
1376
- # @ gmp_lng
1377
- #: modules/gmap/views/tpl/gmapEditMap.php:351 modules/gmap/views/tpl/gmapEditMap.php:1257
1378
- #: modules/gmap/views/tpl/gmapEditMap.php:1525
1379
- msgid "Longitude"
1380
- msgstr "Długość geograficzna"
1381
-
1382
- # @ gmp_lng
1383
- #: modules/gmap/views/tpl/gmapEditMap.php:362 modules/gmap_widget/views/tpl/form.php:56
1384
- msgid "Map Zoom"
1385
- msgstr "Powiększenie mapy"
1386
-
1387
- #: modules/gmap/views/tpl/gmapEditMap.php:364
1388
- msgid ""
1389
- "Sets map zoom.<br /><br />\n"
1390
- "<b>Preset Zoom</b> - sets zoom value for map. You can change this value just change zoom on the map preview.<br /><br />\n"
1391
- "<b>Fit Bounds</b> - map zoom will be changed on frontend in a way that all markers and figures will be visible.<br /><br />\n"
1392
- "<b>Min Zoom Level</b> - sets minimum zoom level (maximum estrangement), which can be applied for map.<br /><br />\n"
1393
- "<b>Max Zoom Level</b> - sets maximum zoom level (maximum approximation), which can be applied for map.\n"
1394
- msgstr ""
1395
-
1396
- #: modules/gmap/views/tpl/gmapEditMap.php:373
1397
- msgid "Preset Zoom"
1398
- msgstr ""
1399
-
1400
- #: modules/gmap/views/tpl/gmapEditMap.php:373
1401
- msgid "Fit Bounds"
1402
- msgstr ""
1403
-
1404
- #: modules/gmap/views/tpl/gmapEditMap.php:380
1405
- msgid "Zoom Level"
1406
- msgstr ""
1407
-
1408
- #: modules/gmap/views/tpl/gmapEditMap.php:390
1409
- msgid "Mobile Zoom Level"
1410
- msgstr ""
1411
-
1412
- #: modules/gmap/views/tpl/gmapEditMap.php:401
1413
- msgid "Min Zoom Level"
1414
- msgstr "Minimalny poziom powiększenia"
1415
-
1416
- #: modules/gmap/views/tpl/gmapEditMap.php:410
1417
- msgid "Max Zoom Level"
1418
- msgstr "Maksymalny poziom powiększenia"
1419
-
1420
- # @ gmp_lng
1421
- #: modules/gmap/views/tpl/gmapEditMap.php:424
1422
- msgid "Google Map Theme"
1423
- msgstr "Typ mapy"
1424
-
1425
- # @ gmp_lng
1426
- #: modules/gmap/views/tpl/gmapEditMap.php:426
1427
- msgid ""
1428
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or Terrain - here. By default your map will have Road Map "
1429
- "Google maps theme."
1430
- msgstr "Możesz zmienić typ mapy - Drogowa, Hybrydowa, Satelitarna lub Terenowa. Domyślnie jest mapa drogowa."
1431
-
1432
- # @ gmp_lng
1433
- #: modules/gmap/views/tpl/gmapEditMap.php:430
1434
- msgid "Road Map"
1435
- msgstr "Drogowa"
1436
-
1437
- # @ gmp_lng
1438
- #: modules/gmap/views/tpl/gmapEditMap.php:430
1439
- msgid "Hybrid"
1440
- msgstr "Hybrydowa"
1441
-
1442
- # @ gmp_lng
1443
- #: modules/gmap/views/tpl/gmapEditMap.php:430
1444
- msgid "Satellite"
1445
- msgstr "Satelitarna"
1446
-
1447
- # @ gmp_lng
1448
- #: modules/gmap/views/tpl/gmapEditMap.php:430
1449
- msgid "Terrain"
1450
- msgstr "Terenowa"
1451
-
1452
- # @ gmp_lng
1453
- #: modules/gmap/views/tpl/gmapEditMap.php:438
1454
- msgid "Map Stylization"
1455
- msgstr "Styl mapy"
1456
-
1457
- # @ gmp_lng
1458
- #: modules/gmap/views/tpl/gmapEditMap.php:440
1459
- msgid "Make your map unique with our Map Themes, just try to change it here - and you will see results on your Map Preview."
1460
- msgstr "Stwórz oryginalną mapę korzystając z naszych szablonów. Wybieraj i obserwuj zmiany w oknie podglądu."
1461
-
1462
- #: modules/gmap/views/tpl/gmapEditMap.php:450
1463
- msgid "Get 300+ Themes with PRO"
1464
- msgstr "Uzyskaj 300+ motywów dla PRO"
1465
-
1466
- # @ gmp_lng
1467
- #: modules/gmap/views/tpl/gmapEditMap.php:458
1468
- msgid "Markers Clusterization"
1469
- msgstr "Grupowanie znaczników"
1470
-
1471
- # @ gmp_lng
1472
- #: modules/gmap/views/tpl/gmapEditMap.php:460
1473
- msgid ""
1474
- "If you have many markers - you can have a problems with viewing them when zoom out for example: they will just cover each-"
1475
- "other. Marker clusterization can solve this problem by grouping your markers in groups when they are too close to each-other."
1476
- msgstr ""
1477
- "Jeśli masz wiele znaczników - możesz mieć problemy z wyświetlaniem ich, gdy np. pomniejszasz skalę: po prostu pokrywają się "
1478
- "nawzajem. Grupowanie znaczników może rozwiązać ten problem, poprzez łączenie znaczników w grupy, gdy są zbyt blisko siebie."
1479
-
1480
- # @ gmp_lng
1481
- #: modules/gmap/views/tpl/gmapEditMap.php:464
1482
- msgid "Base Clusterization"
1483
- msgstr "Grupowanie"
1484
-
1485
- #: modules/gmap/views/tpl/gmapEditMap.php:476
1486
- msgid "/gmap/img/m1.png"
1487
- msgstr ""
1488
-
1489
- #: modules/gmap/views/tpl/gmapEditMap.php:493 modules/gmap/views/tpl/gmapEditMap.php:849
1490
- #: modules/gmap/views/tpl/gmapEditMap.php:1219 modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:85
1491
- msgid "Upload Icon"
1492
- msgstr "Wczytaj ikonę"
1493
-
1494
- # @ gmp_lng
1495
- #: modules/gmap/views/tpl/gmapEditMap.php:494 modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:86
1496
- msgid "Default Icon"
1497
- msgstr "Domyślna ikona"
1498
-
1499
- # @ gmp_lng
1500
- #: modules/gmap/views/tpl/gmapEditMap.php:498 modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:60
1501
- msgid "Cluster Icon"
1502
- msgstr "Ikona klastra"
1503
-
1504
- #: modules/gmap/views/tpl/gmapEditMap.php:508
1505
- #, fuzzy
1506
- msgid "Cluster Area Size"
1507
- msgstr "Rozmiar obszaru klastra"
1508
-
1509
- #: modules/gmap/views/tpl/gmapEditMap.php:510
1510
- msgid "Sets the grid size of cluster. The higher the size - the more area of capture the markers to the cluster."
1511
- msgstr ""
1512
- "Ustawia rozmiar siatki klastra. Im większa wielkość, tym większa jest powierzchnia przechwytywania znaczników do klastra."
1513
-
1514
- # @ gmp_lng
1515
- #: modules/gmap/views/tpl/gmapEditMap.php:527
1516
- msgid "Markers List"
1517
- msgstr "Lista znaczników"
1518
-
1519
- # @ gmp_lng
1520
- #: modules/gmap/views/tpl/gmapEditMap.php:529
1521
- msgid ""
1522
- "Display all map markers - as list bellow Your map. This will help your users get more info about your markers and find "
1523
- "required marker more faster."
1524
- msgstr ""
1525
- "Wyświetl wszystkie znaczniki w formie listy pod mapą. Pomoże to użytkownikom uzyskać więcej informacji o znacznikach i "
1526
- "szybciej znaleźć potrzebny znacznik."
1527
-
1528
- # @ gmp_lng
1529
- #: modules/gmap/views/tpl/gmapEditMap.php:536
1530
- msgid "Select Markers List type"
1531
- msgstr "Wybierz typ listy znaczników"
1532
-
1533
- # @ gmp_lng
1534
- #: modules/gmap/views/tpl/gmapEditMap.php:542
1535
- msgid "Markers List Color"
1536
- msgstr "Kolor listy znaczników"
1537
-
1538
- #: modules/gmap/views/tpl/gmapEditMap.php:553
1539
- msgid "Traffic Layer"
1540
- msgstr "Warstwa natężenia ruchu"
1541
-
1542
- #: modules/gmap/views/tpl/gmapEditMap.php:555
1543
- msgid "Add real-time traffic information to your map."
1544
- msgstr "Dodaj do mapy informacje o natężeniu ruchu w czasie rzeczywistym."
1545
-
1546
- #: modules/gmap/views/tpl/gmapEditMap.php:570
1547
- msgid "Transit Layer"
1548
- msgstr "Warstwa dróg tranzytowych"
1549
-
1550
- #: modules/gmap/views/tpl/gmapEditMap.php:572
1551
- msgid ""
1552
- "Display the public transit network of a city on your map. When the Transit Layer is enabled, and the map is centered on a "
1553
- "city that supports transit information, the map will display major transit lines as thick, colored lines."
1554
- msgstr ""
1555
- "Wyświetl na mapie sieć publicznej sieci tranzytowej miasta. Gdy włączona jest warstwa dróg tranzytowych [Transit Layer], a "
1556
- "mapa jest wyśrodkowana w mieście obsługującym informacje o przejazdach, na mapie będą wyświetlane główne linie tranzytowe w "
1557
- "postaci grubych, kolorowych linii."
1558
-
1559
- #: modules/gmap/views/tpl/gmapEditMap.php:587
1560
- msgid "Bicycling Layer"
1561
- msgstr "Warstwa ścieżek rowerowych"
1562
-
1563
- #: modules/gmap/views/tpl/gmapEditMap.php:589
1564
- msgid ""
1565
- "Add a layer of bike paths, suggested bike routes and other overlays specific to bicycling usage on top of the given map.Dark "
1566
- "green routes indicated dedicated bicycle routes. Light green routes indicate streets with dedicated bike lanes. Dashed routes "
1567
- "indicate streets or paths otherwise recommended for bicycle usage."
1568
- msgstr ""
1569
- "Dodaje warstwy ścieżek rowerowych, sugerowanych tras rowerowych i inne nakładki używane do jazdy na rowerze na górze danej "
1570
- "mapy. Ciemno zielone szlaki wskazują trasy rowerowe, jasnozielone szlaki ulice z dedykowanymi pasami rowerowymi. Drogi "
1571
- "kreskowane wskazują na ulice lub ścieżki, które są zalecane dla celów rowerowych."
1572
-
1573
- #: modules/gmap/views/tpl/gmapEditMap.php:607
1574
- msgid "Add KML layers"
1575
- msgstr "Dodaj warstwy KML"
1576
-
1577
- #: modules/gmap/views/tpl/gmapEditMap.php:609
1578
- msgid ""
1579
- "Add KML files to display custom layers on the map. Additional options:<br /><br /><b>Enable KML layers filter</b> - add form "
1580
- "to map for dynamically enable / disable KML layers and sublayers."
1581
- msgstr ""
1582
- "Dodaj pliki KML do wyświetlania niestandardowych warstw na mapie. Dodatkowe opcje:<br /><br /><b>Włącz filtry warstw KML</b> "
1583
- "- dodaj formularz do mapy, aby dynamicznie włączać / wyłączać warstwy i podwarstwy KML."
1584
-
1585
- #: modules/gmap/views/tpl/gmapEditMap.php:625
1586
- msgid "Enable KML layers filter"
1587
- msgstr "Włącz filtr warstw KML"
1588
-
1589
- #: modules/gmap/views/tpl/gmapEditMap.php:630
1590
- msgid "Enter KML file URL"
1591
- msgstr "Wprowadź URL pliku KML"
1592
-
1593
- #: modules/gmap/views/tpl/gmapEditMap.php:633
1594
- msgid "Hide Sublayers at KML filter"
1595
- msgstr "Ukryj podwarstwy w filtrze KML"
1596
-
1597
- #: modules/gmap/views/tpl/gmapEditMap.php:636
1598
- msgid "Remove KML field"
1599
- msgstr "Usuń pole KML"
1600
-
1601
- #: modules/gmap/views/tpl/gmapEditMap.php:652
1602
- msgid "or Upload KML file"
1603
- msgstr "lub wczytaj plik KML"
1604
-
1605
- #: modules/gmap/views/tpl/gmapEditMap.php:657
1606
- msgid "Add more files"
1607
- msgstr "Dodaj więcej plików"
1608
-
1609
- #: modules/gmap/views/tpl/gmapEditMap.php:667
1610
- #, fuzzy
1611
- msgid "Custom Map Controls"
1612
- msgstr "Ustaw kontrolki mapy"
1613
-
1614
- #: modules/gmap/views/tpl/gmapEditMap.php:672
1615
- msgid "Add custom map controls to the map."
1616
- msgstr "Dodaj własne kontrolki do mapy."
1617
-
1618
- #: modules/gmap/views/tpl/gmapEditMap.php:688
1619
- msgid "Controls type"
1620
- msgstr "Typ kontrolek"
1621
-
1622
- #: modules/gmap/views/tpl/gmapEditMap.php:691
1623
- msgid "Square"
1624
- msgstr "Kwadrat"
1625
-
1626
- #: modules/gmap/views/tpl/gmapEditMap.php:691
1627
- msgid "Rounded edges"
1628
- msgstr "Zaokrąglone krawędzie"
1629
-
1630
- #: modules/gmap/views/tpl/gmapEditMap.php:691
1631
- msgid "Round"
1632
- msgstr "Okrągły"
1633
-
1634
- #: modules/gmap/views/tpl/gmapEditMap.php:697
1635
- msgid "Background color"
1636
- msgstr "Kolor tła"
1637
-
1638
- #: modules/gmap/views/tpl/gmapEditMap.php:705
1639
- msgid "Text color"
1640
- msgstr "Kolor tekstu"
1641
-
1642
- #: modules/gmap/views/tpl/gmapEditMap.php:713
1643
- msgid "Controls position"
1644
- msgstr "Pozycja kontrolek"
1645
-
1646
- #: modules/gmap/views/tpl/gmapEditMap.php:723
1647
- msgid "Min Search Radius (in meters):"
1648
- msgstr "Minimalny promień poszukiwań [m]:"
1649
-
1650
- #: modules/gmap/views/tpl/gmapEditMap.php:731
1651
- msgid "Max Search Radius (in meters):"
1652
- msgstr "Maksymalny promień poszukiwań [m]:"
1653
-
1654
- # @ gmp_lng
1655
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1656
- #, fuzzy
1657
- msgid "Search Country"
1658
- msgstr "Przeszukaj kraj"
1659
-
1660
- #: modules/gmap/views/tpl/gmapEditMap.php:752
1661
- msgid "Full Screen Button"
1662
- msgstr "Przycisk pełnego ekran"
1663
-
1664
- #: modules/gmap/views/tpl/gmapEditMap.php:754
1665
- msgid "Add a button on map to open it full screen."
1666
- msgstr "Dodaj na mapę przycisk otwarcia na pełnym ekranie."
1667
-
1668
- #: modules/gmap/views/tpl/gmapEditMap.php:769
1669
- msgid "Hide POI"
1670
- msgstr "Ukryj POI"
1671
-
1672
- #: modules/gmap/views/tpl/gmapEditMap.php:771
1673
- msgid ""
1674
- "Hide the Points Of Interest - landmark or other object, the marked points on the map, for example: hotels, campsites, fuel "
1675
- "stations etc."
1676
- msgstr ""
1677
- "Ukryj POI (ciekawe miejsca) - punkt orientacyjny lub inny obiekt, zaznaczone punkty na mapie, na przykład: hotele, kempingi, "
1678
- "stacje paliw itp."
1679
-
1680
- #: modules/gmap/views/tpl/gmapEditMap.php:786
1681
- msgid "Hide Countries"
1682
- msgstr "Ukryj kraje"
1683
-
1684
- #: modules/gmap/views/tpl/gmapEditMap.php:788
1685
- msgid "Hide all administrative data about countries: names, borders ets."
1686
- msgstr "Ukryj wszystkie dane administracyjne o krajach: nazwy, granice itp."
1687
-
1688
- #: modules/gmap/views/tpl/gmapEditMap.php:803
1689
- msgid "Hide Tooltips of Markers"
1690
- msgstr "Ukryj podpowiedzi znaczników"
1691
-
1692
- #: modules/gmap/views/tpl/gmapEditMap.php:805
1693
- msgid "Hide the tooltips, which displayed by mouse hover on markers' icons."
1694
- msgstr "Ukryj podpowiedzi, które są wyświetlane przy przesuwaniu kursora nad ikonami znaczników."
1695
-
1696
- #: modules/gmap/views/tpl/gmapEditMap.php:816
1697
- msgid "Center on current opened marker"
1698
- msgstr "Wycentruj na właśnie otwartym znaczniku"
1699
-
1700
- #: modules/gmap/views/tpl/gmapEditMap.php:818
1701
- #, fuzzy
1702
- msgid "On frontend the map will be centered on current marker with opened info window."
1703
- msgstr "Na początku mapa będzie wyśrodkowana na bieżącym znaczniku z otwartym oknem informacyjnym."
1704
-
1705
- #: modules/gmap/views/tpl/gmapEditMap.php:829
1706
- msgid "Center on current user location"
1707
- msgstr "Wyśrodkowane na lokalizacji aktualnego użytkownika"
1708
-
1709
- #: modules/gmap/views/tpl/gmapEditMap.php:831
1710
- msgid "On frontend map will be centered on current user location."
1711
- msgstr "Na początku mapa będzie wyśrodkowana na lokalizacji aktualnego użytkownika."
1712
-
1713
- # @ gmp_lng
1714
- #: modules/gmap/views/tpl/gmapEditMap.php:860
1715
- msgid "Add markers on frontend"
1716
- msgstr "Dodaj znacznik"
1717
-
1718
- #: modules/gmap/views/tpl/gmapEditMap.php:862
1719
- msgid ""
1720
- "You can add markers at the current map with the frontend using the form, which can be displayed using the shortcode (it "
1721
- "placed below preview map). Additional options that affect the operation of the form:<br /><br /><b>Logged In Users Only</b> - "
1722
- "form will be displayed only for logged in users.<br /><br /><b>Disable WP Editor</b> - disable / enable WP Editor for the "
1723
- "Marker Description field of the form.<br /><br /><b>Delete markers</b> - disable / enable interface for deleting markers on "
1724
- "frontend. Each user can delete only his own markers.<br /><br /><b>Use markers categories</b> - disable / enable interface "
1725
- "for choose the marker category on frontend.<br /><br /><b>Use limits for marker's adding</b> - allows you to limit the number "
1726
- "of markers, which user can add from one IP address at the current map for a certain amount of time.<br /><br /><b>Max "
1727
- "marker's count</b> - the maximum number of markers, which can be added over certain amount of time.<br /><br /><b>For "
1728
- "allotted time (minutes)</b> - the number of minutes, during which you can add the maximum number of markers.<br /><br />For "
1729
- "example, during three minutes you can add only two markers at the map. If you try to add a third marker - the form will not "
1730
- "be saved and you will see the notice with amount of time you must wait. After the right amount of time will pass - you can "
1731
- "add next two markers, etc.<br /><br />Important! If map and form for add markers at this map are placed on one page - this "
1732
- "page will be overload after marker adding."
1733
- msgstr ""
1734
- "Możesz dodać znaczniki na bieżącej mapie za pomocą formularza, który może być wyświetlany przy użyciu krótkiego kodu "
1735
- "(umieszczonego poniżej podglądu mapy). Dodatkowe opcje wpływające na działanie formularza:<br /><br /><b>Tylko zarejestrowani "
1736
- "użytkownicy</b> - formularz zostanie wyświetlony tylko dla zalogowanych użytkowników.<br /><br /><b>Wyłącz Edytor WP</b> - "
1737
- "wyłącz/włącz Edytor WP dla pola Opis znacznika formularza.<br /><br /><b>Usuwanie znaczników</b> - wyłącz/włącz interfejs "
1738
- "usuwania znaczników. Każdy użytkownik może usunąć tylko własne markery.<br /><br /><b>Użyj limitu dodawania znaczników</b> - "
1739
- "pozwala ograniczyć liczbę znaczników, które użytkownicy mogą dodawać z jednego adresu IP na bieżącej mapie przez określony "
1740
- "czas.<br /><br /><b>Liczba znaczników</b> - maksymalna liczba znaczników, które można dodawać przez określony czas.<br /><br /"
1741
- "><b>Przydzielony czas (minuty)</b> - podczas którego można dodać maksymalną liczbę znaczników.<br /><br />Na przykład w "
1742
- "czasie trzech minut możesz dodać tylko dwa znaczniki na mapie. Jeśli spróbujesz dodać trzeci znacznik - formularz nie "
1743
- "zostanie zapisany, a zobaczysz informację o czasie, który musisz poczekać. Po upływie odpowiedniej tego czasu - możesz dodać "
1744
- "kolejne dwa znaczniki itd.<br /><br />Ważne! Jeśli mapa i formularz dodawania markerów na tej mapie są umieszczone na jednej "
1745
- "stronie - ta strona będzie przeciążona po dodaniu znaczników."
1746
-
1747
- #: modules/gmap/views/tpl/gmapEditMap.php:888
1748
- msgid "Logged In Users Only"
1749
- msgstr "Wyłącznie dla zalogowanych użytkowników"
1750
-
1751
- #: modules/gmap/views/tpl/gmapEditMap.php:895
1752
- msgid "Disable WP Editor"
1753
- msgstr "Wyłącz edytor WP"
1754
-
1755
- # @ gmp_lng
1756
- #: modules/gmap/views/tpl/gmapEditMap.php:902
1757
- msgid "Delete markers"
1758
- msgstr "Usuń znaczniki"
1759
-
1760
- #: modules/gmap/views/tpl/gmapEditMap.php:909
1761
- msgid "Use markers categories"
1762
- msgstr ""
1763
-
1764
- #: modules/gmap/views/tpl/gmapEditMap.php:916
1765
- msgid "Use limits for marker's adding"
1766
- msgstr "Użyj limitów dodawania znaczników"
1767
-
1768
- # @ gmp_lng
1769
- #: modules/gmap/views/tpl/gmapEditMap.php:921
1770
- msgid "Max marker's count"
1771
- msgstr "Maksymalna ilość znaczników"
1772
-
1773
- #: modules/gmap/views/tpl/gmapEditMap.php:929
1774
- msgid "For allotted time (minutes)"
1775
- msgstr "Dla przydzielonego czasu (minuty)"
1776
-
1777
- #: modules/gmap/views/tpl/gmapEditMap.php:942
1778
- msgid "Info Window"
1779
- msgstr "Okno informacyjne"
1780
-
1781
- #: modules/gmap/views/tpl/gmapEditMap.php:944
1782
- msgid "Parameters of markers / shapes info-window PopUp"
1783
- msgstr "Parametry znaczników/kształtów okna PopUp z informacjami"
1784
-
1785
- # @ gmp_lng
1786
- #: modules/gmap/views/tpl/gmapEditMap.php:951
1787
- msgid "Width"
1788
- msgstr "Szerokość"
1789
-
1790
- #: modules/gmap/views/tpl/gmapEditMap.php:953
1791
- msgid "Width of info window"
1792
- msgstr "Szerokość okna z informacjami"
1793
-
1794
- #: modules/gmap/views/tpl/gmapEditMap.php:967 modules/gmap/views/tpl/gmapEditMap.php:1007
1795
- msgid "Auto"
1796
- msgstr ""
1797
-
1798
- # @ gmp_lng
1799
- #: modules/gmap/views/tpl/gmapEditMap.php:991
1800
- msgid "Height"
1801
- msgstr ""
1802
- "W\n"
1803
- "ysokość"
1804
-
1805
- #: modules/gmap/views/tpl/gmapEditMap.php:993
1806
- msgid "Height of info window"
1807
- msgstr "Wysokość okna z informacjami"
1808
-
1809
- #: modules/gmap/views/tpl/gmapEditMap.php:1031
1810
- msgid "Title Color"
1811
- msgstr "Kolor tytułu"
1812
-
1813
- #: modules/gmap/views/tpl/gmapEditMap.php:1033
1814
- msgid "You can set your info window title color here"
1815
- msgstr "Tutaj możesz ustawić kolor tytułu twojego okna z informacjami"
1816
-
1817
- #: modules/gmap/views/tpl/gmapEditMap.php:1043 modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:49
1818
- msgid "Background Color"
1819
- msgstr "Kolor tła"
1820
-
1821
- #: modules/gmap/views/tpl/gmapEditMap.php:1045
1822
- msgid "You can set your info window background color here"
1823
- msgstr "Tutaj możesz ustawić kolor tła twojego okna z informacjami"
1824
-
1825
- #: modules/gmap/views/tpl/gmapEditMap.php:1055
1826
- msgid "Title Font Size"
1827
- msgstr "Rozmiar czcionki tytułu"
1828
-
1829
- #: modules/gmap/views/tpl/gmapEditMap.php:1057
1830
- msgid "You can set your info window title font size here"
1831
- msgstr "Tutaj możesz ustawić rozmiar czcionki twojego okna z informacjami"
1832
-
1833
- #: modules/gmap/views/tpl/gmapEditMap.php:1077
1834
- msgid "Description Font Size"
1835
- msgstr "Rozmiar czcionki opisu"
1836
-
1837
- #: modules/gmap/views/tpl/gmapEditMap.php:1079
1838
- msgid "You can set your info window description font size here"
1839
- msgstr "Tutaj możesz ustawić rozmiar czcionki twojego okna z opisem informacji"
1840
-
1841
- #: modules/gmap/views/tpl/gmapEditMap.php:1102
1842
- msgid "Directions Button"
1843
- msgstr "Przycisk wskazówek"
1844
-
1845
- #: modules/gmap/views/tpl/gmapEditMap.php:1105
1846
- msgid ""
1847
- "Add a button at marker info window to get direction from the entered address to the marker. If Show route data option is "
1848
- "enabled - the total route time and distance will be shown by click on the route polyline."
1849
- msgstr ""
1850
- "Dodaj przycisk w oknie informacyjnym znacznika, aby uzyskać link od wprowadzonego adresu do znacznika. Jeśli włączona jest "
1851
- "opcja Pokaż dane trasy - całkowity czas i odległość trasy zostaną wyświetlone po kliknięciu na polilinię trasy."
1852
-
1853
- #: modules/gmap/views/tpl/gmapEditMap.php:1124
1854
- msgid "Show alternate routes"
1855
- msgstr "Pokaż trasy alternatywne"
1856
-
1857
- #: modules/gmap/views/tpl/gmapEditMap.php:1132
1858
- msgid "Show route data"
1859
- msgstr "Pokaż dane trasy"
1860
-
1861
- #: modules/gmap/views/tpl/gmapEditMap.php:1140
1862
- msgid "Show route steps"
1863
- msgstr "Pokaż kroki trasy"
1864
-
1865
- #: modules/gmap/views/tpl/gmapEditMap.php:1149
1866
- msgid "Print Button"
1867
- msgstr "Przycisk Drukowania"
1868
-
1869
- #: modules/gmap/views/tpl/gmapEditMap.php:1151
1870
- msgid "Add Print button to markers info window"
1871
- msgstr "Dodaj Przycisk Drukuj do okna informacyjnego znaczników"
1872
-
1873
- # @ gmp_lng
1874
- #: modules/gmap/views/tpl/gmapEditMap.php:1180
1875
- msgid "Your marker title"
1876
- msgstr "Nazwa znacznika"
1877
-
1878
- # @ gmp_lng
1879
- #: modules/gmap/views/tpl/gmapEditMap.php:1193
1880
- msgid "Write here all text, that you want to appear in marker info-window PopUp"
1881
- msgstr "Wpisz tutaj cały tekst, który chcesz połączyć z oknem informacyjnym PopUp znacznika"
1882
-
1883
- # @ gmp_lng
1884
- #: modules/gmap/views/tpl/gmapEditMap.php:1209
1885
- msgid "Icon"
1886
- msgstr "Ikonka"
1887
-
1888
- # @ gmp_lng
1889
- #: modules/gmap/views/tpl/gmapEditMap.php:1211
1890
- msgid "Your marker Icon, that will appear on your map for this marker"
1891
- msgstr "Ikonka znacznika która pojawi się na mapie"
1892
-
1893
- # @ gmp_lng
1894
- #: modules/gmap/views/tpl/gmapEditMap.php:1231
1895
- msgid "Search your location by address, just start typing here"
1896
- msgstr "By wyszukaj lokalizację po adresie, po prostu zacznij pisać tutaj"
1897
-
1898
- # @ gmp_lng
1899
- #: modules/gmap/views/tpl/gmapEditMap.php:1245
1900
- msgid "Latitude for your marker"
1901
- msgstr "Szerokość geograficzna znacznika"
1902
-
1903
- # @ gmp_lng
1904
- #: modules/gmap/views/tpl/gmapEditMap.php:1259
1905
- msgid "Longitude for your marker"
1906
- msgstr "Długość geograficzna znacznika"
1907
-
1908
- #: modules/gmap/views/tpl/gmapEditMap.php:1273
1909
- msgid "Choose marker category"
1910
- msgstr "Wybierz kategorię znacznika"
1911
-
1912
- #: modules/gmap/views/tpl/gmapEditMap.php:1287
1913
- msgid "Marker Link"
1914
- msgstr "Link znacznika"
1915
-
1916
- #: modules/gmap/views/tpl/gmapEditMap.php:1289
1917
- msgid "Link for opening by click on the marker"
1918
- msgstr "Link do otwarcia po kliknięciu na znacznik"
1919
-
1920
- #: modules/gmap/views/tpl/gmapEditMap.php:1305
1921
- msgid "Open in new window"
1922
- msgstr "Otwórz w nowym oknie"
1923
-
1924
- #: modules/gmap/views/tpl/gmapEditMap.php:1313
1925
- msgid "Show description by default"
1926
- msgstr "Pokaż opis domyślnie"
1927
-
1928
- #: modules/gmap/views/tpl/gmapEditMap.php:1315
1929
- msgid "Open marker description when map load"
1930
- msgstr "Otwórz opis znacznika podczas ładowania mapy"
1931
-
1932
- #: modules/gmap/views/tpl/gmapEditMap.php:1325
1933
- msgid "Show description by mouse hover"
1934
- msgstr "Pokaż opis po najechaniu myszą"
1935
-
1936
- #: modules/gmap/views/tpl/gmapEditMap.php:1327
1937
- msgid "Open marker description by mouse hover"
1938
- msgstr "Otwórz opis znacznika po najechaniu myszą"
1939
-
1940
- #: modules/gmap/views/tpl/gmapEditMap.php:1337
1941
- msgid "Hide description on mouse leave"
1942
- msgstr "Ukryj opis po odsunięciu wskaźnika myszy"
1943
-
1944
- #: modules/gmap/views/tpl/gmapEditMap.php:1339
1945
- msgid "Hide description when mouse leaves the marker area"
1946
- msgstr "Ukryj opis po odsunięciu wskaźnika myszy z nad powierzchni znacznika"
1947
-
1948
- #: modules/gmap/views/tpl/gmapEditMap.php:1349
1949
- msgid "Marker List Default Image"
1950
- msgstr "Domyślny obraz listy znaczników"
1951
-
1952
- #: modules/gmap/views/tpl/gmapEditMap.php:1351
1953
- msgid "If there is no image tag in the marker description - this image will be used for displaying in the map's markers list"
1954
- msgstr "Jeśli w opisie znacznika nie ma wskaźnika obrazu - ten obraz będzie używany do wyświetlania na liście znaczników mapy"
1955
-
1956
- # @ gmp_lng
1957
- #: modules/gmap/views/tpl/gmapEditMap.php:1394
1958
- msgid "Figure Name"
1959
- msgstr "Nazwa regionu"
1960
-
1961
- # @ gmp_lng
1962
- #: modules/gmap/views/tpl/gmapEditMap.php:1396
1963
- msgid "Your figure title"
1964
- msgstr "Tytuł twojego regionu"
1965
-
1966
- #: modules/gmap/views/tpl/gmapEditMap.php:1407
1967
- msgid "Figure Type"
1968
- msgstr "Typ regionu"
1969
-
1970
- #: modules/gmap/views/tpl/gmapEditMap.php:1409
1971
- msgid ""
1972
- "Type of your figure:<br /><br /><b>Polyline</b> - a series of straight segments on the map.<br /><br /><b>Polygon</b> - area "
1973
- "enclosed by a closed path (or loop), which is defined by a series of coordinates.<br /><br /><b>Circle</b> - circle shape,"
1974
- "defined by center coordinates and radius."
1975
- msgstr ""
1976
- "Typ granicy regionu:<br /><br /><b>Polilinia</b> - seria prostych, połączonych ze sobą segmentów, na mapie.<br /><br /"
1977
- "><b>Wielokąt</b> - ścieżka zamknięta (lub pętla) określona przez szereg współrzędnych.<br /><br /><b>Circle</b> - okrąg "
1978
- "opisany przez współrzędne środka i promień."
1979
-
1980
- #: modules/gmap/views/tpl/gmapEditMap.php:1417
1981
- msgid "Polyline"
1982
- msgstr "Polilinia"
1983
-
1984
- #: modules/gmap/views/tpl/gmapEditMap.php:1418
1985
- msgid "Polygon"
1986
- msgstr "Wiolokąt"
1987
-
1988
- #: modules/gmap/views/tpl/gmapEditMap.php:1419
1989
- msgid "Circle"
1990
- msgstr "Okrąg"
1991
-
1992
- #: modules/gmap/views/tpl/gmapEditMap.php:1428
1993
- msgid "Line Color"
1994
- msgstr "Kolor linii"
1995
-
1996
- #: modules/gmap/views/tpl/gmapEditMap.php:1435
1997
- msgid "Line Opacity"
1998
- msgstr "Nieprzezroczystość linii"
1999
-
2000
- #: modules/gmap/views/tpl/gmapEditMap.php:1446
2001
- msgid "Line Weight"
2002
- msgstr "Grubość linii"
2003
-
2004
- #: modules/gmap/views/tpl/gmapEditMap.php:1454
2005
- msgid "Fill Color"
2006
- msgstr "Przypisz kolor"
2007
-
2008
- #: modules/gmap/views/tpl/gmapEditMap.php:1461
2009
- msgid "Fill Opacity"
2010
- msgstr "Przypisz nieprzezroczystość"
2011
-
2012
- # @ gmp_lng
2013
- #: modules/gmap/views/tpl/gmapEditMap.php:1474
2014
- msgid "Fugure Description"
2015
- msgstr "Opis regionu"
2016
-
2017
- # @ gmp_lng
2018
- #: modules/gmap/views/tpl/gmapEditMap.php:1476
2019
- msgid "Write here all text, that you want to appear in shape info-window PopUp"
2020
- msgstr "Wpisz tutaj cały tekst, który chcesz połączyć z oknem informacyjnym PopUp regionu"
2021
-
2022
- #: modules/gmap/views/tpl/gmapEditMap.php:1488 modules/gmap/views/tpl/gmapEditMap.php:1566
2023
- msgid "Points"
2024
- msgstr "Punkty"
2025
-
2026
- #: modules/gmap/views/tpl/gmapEditMap.php:1490
2027
- msgid ""
2028
- "Figure's points list: you can search the point by address (just start typing in Address field), type the Latitude and "
2029
- "Longitude of point in appropriate fields or activate Add by Click button, and then draw figure on the map by clicking on it. "
2030
- "Important! You must deactivate Add by Click button after ending of the draw."
2031
- msgstr ""
2032
- "Lista punktów regionu: możesz wyszukać punkt według adresu (wystarczy zacząć pisać w polu adresu), wpisz szerokość "
2033
- "geograficzną i długość geograficzną punktu w odpowiednich polach lub uaktywnij przycisk Dodaj przez kliknięcie, a następnie "
2034
- "rysuj rysunek na mapie, klikając na niej. Ważne! Musisz wyłączyć przycisk Dodaj przez kliknięcie po zakończeniu rysowania."
2035
-
2036
- #: modules/gmap/views/tpl/gmapEditMap.php:1497
2037
- msgid "Add New Point"
2038
- msgstr "Dodaj nowy punkt"
2039
-
2040
- #: modules/gmap/views/tpl/gmapEditMap.php:1534 modules/gmap/views/tpl/gmapEditMap.php:1590
2041
- msgid "Radius"
2042
- msgstr "Promień"
2043
-
2044
- #: modules/gmap/views/tpl/gmapEditMap.php:1541 modules/gmap/views/tpl/gmapEditMap.php:1576
2045
- msgid "Remove Point"
2046
- msgstr "Usuń punkt"
2047
-
2048
- #: modules/gmap/views/tpl/gmapEditMap.php:1568
2049
- msgid ""
2050
- "To add Heatmap Layer points you need to activate Add Points button and draw each point by click on map. To remove points you "
2051
- "need to activate Remove Points button and delete necessary point by click on it or just click on Delete Heatmap Layer button "
2052
- "to remove all Heatmap Layer points. Important! You must to deactivate Add by Click and Remove by Click buttons after ending "
2053
- "of the add / remove points."
2054
- msgstr ""
2055
- "Aby dodać punkty do warstwy 'mapy ciepła', musisz włączyć opcję Dodaj punkty i narysować wszystkie punkty, klikając na mapę. "
2056
- "Aby usunąć punkty, musisz włączyć opcję Usuń punkty i usuń określony punkt, klikając przycisk lub kliknij przycisk Usuń "
2057
- "warstwę 'mapy ciepła', aby usunąć wszystkie punkty tej warstwy. Ważne! Musisz dezaktywować przyciski 'Dodaj przez kliknięcie' "
2058
- "i 'Usuń przez kliknięcie' po zakończeniu dodawania/usuwania punktów."
2059
-
2060
- #: modules/gmap/views/tpl/gmapEditMap.php:1573
2061
- msgid "Add Point"
2062
- msgstr "Dodaj punkt"
2063
-
2064
- #: modules/gmap/views/tpl/gmapEditMap.php:1581
2065
- msgid "Points Count"
2066
- msgstr "Ilość punktów"
2067
-
2068
- #: modules/gmap/views/tpl/gmapEditMap.php:1592
2069
- msgid "Heatmap Layer points radius in pixels"
2070
- msgstr "Promień punktu 'mapy ciepła' [px]"
2071
-
2072
- #: modules/gmap/views/tpl/gmapEditMap.php:1603
2073
- msgid "Opacity"
2074
- msgstr "Nieprzezroczystość"
2075
-
2076
- #: modules/gmap/views/tpl/gmapEditMap.php:1605
2077
- msgid "Heatmap Layer points opacity"
2078
- msgstr "Nieprzezroczystość punktów warstwy 'mapy ciepła'"
2079
-
2080
- #: modules/gmap/views/tpl/gmapEditMap.php:1620
2081
- msgid "Gradient"
2082
- msgstr ""
2083
-
2084
- #: modules/gmap/views/tpl/gmapEditMap.php:1622
2085
- msgid "Heatmap Layer points color gradient."
2086
- msgstr ""
2087
-
2088
- #: modules/gmap/views/tpl/gmapEditMap.php:1626
2089
- msgid "Add Color"
2090
- msgstr ""
2091
-
2092
- # @ gmp_lng
2093
- #: modules/gmap/views/tpl/gmapEditMap.php:1629 modules/marker_groups/views/tpl/mgrAdmin.php:18
2094
- msgid "Clear"
2095
- msgstr "Czyść"
2096
-
2097
- #: modules/gmap/views/tpl/gmapEditMap.php:1633
2098
- msgid "Remove Color"
2099
- msgstr ""
2100
-
2101
- # @ gmp_lng
2102
- #: modules/gmap/views/tpl/gmapEditMap.php:1665
2103
- msgid "Map shortcode"
2104
- msgstr "Skrót do mapy"
2105
-
2106
- #: modules/gmap/views/tpl/gmapEditMap.php:1670
2107
- msgid "PHP code"
2108
- msgstr "Kod PHP"
2109
-
2110
- # @ gmp_lng
2111
- #: modules/gmap/views/tpl/gmapEditMap.php:1677
2112
- msgid "Marker Form shortcode"
2113
- msgstr "Skrót do Formularza znacznika"
2114
-
2115
- # @ gmp_lng
2116
- #: modules/gmap/views/tpl/gmapEditMap.php:1685
2117
- msgid "Shortcode will appear after you save map."
2118
- msgstr "Skrót pojawi się po zapisaniu mapy."
2119
-
2120
- # @ gmp_lng
2121
- #: modules/gmap/views/tpl/gmapEditMap.php:1693
2122
- msgid "Save Map"
2123
- msgstr "Zapisz mapę"
2124
-
2125
- # @ gmp_lng
2126
- #: modules/gmap/views/tpl/gmapEditMap.php:1699
2127
- msgid "Delete Map"
2128
- msgstr "Usuń mapę"
2129
-
2130
- # @ gmp_lng
2131
- #: modules/gmap/views/tpl/gmapEditMap.php:1723
2132
- msgid "Save Figure"
2133
- msgstr "Zapisz region"
2134
-
2135
- # @ gmp_lng
2136
- #: modules/gmap/views/tpl/gmapEditMap.php:1729
2137
- msgid "Delete Figure"
2138
- msgstr "Usuń rejon"
2139
-
2140
- #: modules/gmap/views/tpl/gmapEditMap.php:1738
2141
- msgid "Save Heatmap Layer"
2142
- msgstr "Zapisz warstwę 'mapy ciepła'"
2143
-
2144
- # @ gmp_lng
2145
- #: modules/gmap/views/tpl/gmapEditMap.php:1744
2146
- msgid "Delete Heatmap Layer"
2147
- msgstr "Usuń warstwę 'mapy ciepła'"
2148
-
2149
- # @ gmp_lng
2150
- #: modules/gmap/views/tpl/gmapEditMap.php:1750
2151
- msgid "Search by name"
2152
- msgstr "Szukaj po nazwie"
2153
-
2154
- # @ gmp_lng
2155
- #: modules/gmap/views/tpl/gmapEditMap.php:1808
2156
- msgid "Show markers list with your map on frontend"
2157
- msgstr "Pokaz listę znaczników z mapą na przodzie"
2158
-
2159
- # @ gmp_lng
2160
- #: modules/gmap/views/tpl/gmapEditMap.php:1815 modules/gmap/views/tpl/gmapEditMap.php:1816
2161
- msgid "Apply"
2162
- msgstr "Zastosuj"
2163
-
2164
- # @ gmp_lng
2165
- #: modules/gmap/views/tpl/gmapEditMap.php:1815
2166
- msgid "Selected"
2167
- msgstr "Wybrano"
2168
-
2169
- # @ gmp_lng
2170
- #: modules/gmap/views/tpl/gmapEditMap.php:1816
2171
- msgid "Available in PRO"
2172
- msgstr "Dostępne w wersji PRO"
2173
-
2174
- # @ gmp_lng
2175
- #: modules/gmap/views/tpl/gmapEditMap.php:1824
2176
- msgid "Select Contact Form"
2177
- msgstr "Zaznacz Formularz kontaktowy"
2178
-
2179
- #: modules/gmap/views/tpl/gmapEditMap.php:1847
2180
- msgid "Oops! Something went wrong..."
2181
- msgstr ""
2182
-
2183
- #: modules/gmap/views/tpl/gmapEditMap.php:1850
2184
- #, php-format
2185
- msgid ""
2186
- "Map can not be loaded completely. Probably, you are using our base Google Map API key.<br /><br />\n"
2187
- "This key is used by default for all our users in accordance with <a target=\"_blank\" href=\"%s\">Google Maps APIs Standard "
2188
- "Plan</a>.\n"
2189
- "But each API key has fixed limits on count of maps loads per day.<br /><br />\n"
2190
- "You can create <a target=\"_blank\" href=\"%s\">your own Google Maps API key</a> and type it on <a target=\"_blank\" href=\"%s"
2191
- "\">Settings tab</a>.\n"
2192
- "It's free, takes 10-20 minutes of your time and lets to apply your own API key only for your sites.\n"
2193
- "If you already use own Google Maps API key - you should open <a target=\"_blank\" href=\"%s\">Google Developer console</a> "
2194
- "and check:\n"
2195
- "<ul style=\"padding-left: 20px; list-style: decimal;\">\n"
2196
- "<li>Have you set correct settings to use your Google Map API key?</li>\n"
2197
- "<li>Have you paste correct Google Map API key on the <a target=\"_blank\" href=\"%s\">Settings tab</a>?</li>\n"
2198
- "<li>Open <a target=\"_blank\" href=\"%s\">browser console</a>, find Google Map API error and read its description in <a "
2199
- "target=\"_blank\" href=\"%s\">Map API Errors table</a>.</li>\n"
2200
- "</ul>"
2201
- msgstr ""
2202
-
2203
- #: modules/gmap/views/tpl/gmapListMarkers.php:22
2204
- #, php-format
2205
- msgid "and %s more"
2206
- msgstr "i %s więcej"
2207
-
2208
- #: modules/gmap_widget/mod.php:18
2209
- msgid "Displays Most Viewed Products"
2210
- msgstr "Wyświetla najczęściej oglądane produkty"
2211
-
2212
- #: modules/gmap_widget/views/gmap_widget.php:19
2213
- msgid "You have no maps"
2214
- msgstr "Nie masz map"
2215
-
2216
- # @ default
2217
- #: modules/gmap_widget/views/tpl/form.php:8
2218
- msgid "Select map"
2219
- msgstr "Zaznacz mapę"
2220
-
2221
- # @ default
2222
- #: modules/gmap_widget/views/tpl/form.php:20
2223
- #, fuzzy
2224
- msgid "Widget Map width"
2225
- msgstr "Szerokość Widget Map"
2226
-
2227
- #: modules/gmap_widget/views/tpl/form.php:27
2228
- #, php-format
2229
- msgid "in % or px, for example, 100% or 200px"
2230
- msgstr "w % lub px, np. 100% lub 200px"
2231
-
2232
- # @ default
2233
- #: modules/gmap_widget/views/tpl/form.php:32
2234
- #, fuzzy
2235
- msgid "Widget Map height"
2236
- msgstr "Wysokość Widget Map"
2237
-
2238
- #: modules/gmap_widget/views/tpl/form.php:39
2239
- msgid "in px, for example, 200 or 400"
2240
- msgstr "w px, np. 200 lub 400"
2241
-
2242
- #: modules/gmap_widget/views/tpl/form.php:51
2243
- msgid "Set coords, separated by semicolons or marker id"
2244
- msgstr "Ustaw współrzędne, oddzielone średnikami lub ID znacznika"
2245
-
2246
- #: modules/gmap_widget/views/tpl/form.php:63
2247
- msgid "Set zoom level from 1 to 21"
2248
- msgstr "Ustaw poziom powiększenia od 1 do 21"
2249
-
2250
- # @ default
2251
- #: modules/gmap_widget/views/tpl/form.php:68
2252
- msgid "Display as image"
2253
- msgstr "Wyświetl jako obraz"
2254
-
2255
- # @ default
2256
- #: modules/gmap_widget/views/tpl/form.php:76
2257
- msgid "Map will be displayed as image at sidebar, on click - will be opened in popup"
2258
- msgstr "Mapa będzie wyświetlana jako obraz na pasku bocznym, ko kliknięciu będzie otwarta jako PopUp"
2259
-
2260
- # @ default
2261
- #: modules/gmap_widget/views/tpl/form.php:79
2262
- msgid "Image width (in px)"
2263
- msgstr "Szerokość obrazu [px]"
2264
-
2265
- # @ default
2266
- #: modules/gmap_widget/views/tpl/form.php:86
2267
- msgid "Image height (in px)"
2268
- msgstr "Wysokość obrazu [px]"
2269
-
2270
- #: modules/icons/controller.php:20
2271
- msgid "Empty url"
2272
- msgstr "Pusty URL"
2273
-
2274
- #: modules/icons/models/icons.php:43
2275
- msgid "Icon no found"
2276
- msgstr "Ikona nie istnieje"
2277
-
2278
- #: modules/icons/models/icons.php:95
2279
- msgid "File not found"
2280
- msgstr "Plik nie istnieje"
2281
-
2282
- #: modules/icons/models/icons.php:100
2283
- msgid "Cannot get image"
2284
- msgstr "Nie mogę pobrać obrazu"
2285
-
2286
- #: modules/icons/models/icons.php:111
2287
- msgid "cannot insert to table"
2288
- msgstr "nie mogę wstawić do tabeli"
2289
-
2290
- # @ default
2291
- #: modules/mail/mod.php:33
2292
- msgid "Can not send email - problem with send server"
2293
- msgstr "Nie mogę wysłać maila - problem z serwerem wysyłającym"
2294
-
2295
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
2296
- msgid "Marker Not Found"
2297
- msgstr "Znacznik nie istnieje"
2298
-
2299
- #: modules/marker/controller.php:48
2300
- msgid "Cannot remove marker"
2301
- msgstr "Nie mogę usunąć znacznika"
2302
-
2303
- #: modules/marker/controller.php:63
2304
- msgid "Cannot remove markers"
2305
- msgstr "Nie mogę usunąć znaczników"
2306
-
2307
- #: modules/marker/controller.php:144
2308
- msgid "Empty or invalid marker ID"
2309
- msgstr "Pusty lub błędny ID znacznika"
2310
-
2311
- #: modules/marker/mod.php:21
2312
- msgid "Drop"
2313
- msgstr "Upuść"
2314
-
2315
- #: modules/marker/mod.php:22
2316
- msgid "Bounce"
2317
- msgstr "Odbij"
2318
-
2319
- #: modules/marker/models/marker.php:49
2320
- msgid "Please enter marker name"
2321
- msgstr "Proszę wprowadzić nazwę znacznika"
2322
-
2323
- # @ default
2324
- #: modules/marker/models/marker.php:270
2325
- msgid "Invalid Marker ID"
2326
- msgstr "Błędny ID znacznika"
2327
-
2328
- #: modules/marker_groups/controller.php:51
2329
- msgid "Marker Category data not found"
2330
- msgstr "Nie istnieją dane kategorii markera"
2331
-
2332
- #: modules/marker_groups/mod.php:8
2333
- msgid "Marker Categories"
2334
- msgstr "Kategorie znacznika"
2335
-
2336
- #: modules/marker_groups/mod.php:11
2337
- msgid "Add New"
2338
- msgstr "Dodaj nowy"
2339
-
2340
- #: modules/marker_groups/mod.php:24
2341
- msgid "No Marker Category Found"
2342
- msgstr "Nie istnieją Kategorie Markerów"
2343
-
2344
- #: modules/marker_groups/models/marker_groups.php:78
2345
- msgid "Please enter Marker Category"
2346
- msgstr "Proszę wprowadzić kategorie markera."
2347
-
2348
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5 modules/marker_groups/views/tpl/mgrAdmin.php:7
2349
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:11
2350
- msgid "Add Category"
2351
- msgstr "Dodaj kategorię"
2352
-
2353
- # @ default
2354
- #: modules/marker_groups/views/tpl/mgrAdmin.php:16
2355
- msgid "Clear All"
2356
- msgstr "Czyść wszystko"
2357
-
2358
- #: modules/marker_groups/views/tpl/mgrAdmin.php:31
2359
- #, php-format
2360
- msgid "You have no Marker Categories for now. <a href='%s' style='font-style: italic;'>Create</a> your first Marker Category!"
2361
- msgstr ""
2362
- "Na razie nie masz Kategorii znaczników. <a href='%s' style='font-style: italic;'>Utwórz</a> swoją pierwszą kategorię "
2363
- "znaczników!"
2364
-
2365
- # @ gmp_lng
2366
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:22
2367
- msgid "Category Title"
2368
- msgstr "Tytuł Kategorii"
2369
-
2370
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:35
2371
- msgid "Parent Category"
2372
- msgstr ""
2373
-
2374
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:70
2375
- msgid "gmap/img/m1.png"
2376
- msgstr ""
2377
-
2378
- # @ gmp_lng
2379
- #: modules/options/mod.php:108
2380
- msgid "General"
2381
- msgstr "Ogólny"
2382
-
2383
- #: modules/options/mod.php:110
2384
- msgid "API Domain"
2385
- msgstr ""
2386
-
2387
- #: modules/options/mod.php:110
2388
- msgid "Sets domain for google API scripts"
2389
- msgstr ""
2390
-
2391
- #: modules/options/mod.php:111
2392
- msgid "User API key"
2393
- msgstr "Klucz API użytkownika"
2394
-
2395
- #: modules/options/mod.php:111
2396
- msgid ""
2397
- "You can use your own Google API key, check the <a href='//supsystic.com/google-maps-api-key/' target='_blank'>instruction</a> "
2398
- "how to create it. To use plugin's default API key leave this field blank."
2399
- msgstr ""
2400
- "Możesz użyć własnego klucza API Google, sprawdź <a href='//supsystic.com/google-maps-api-key/' target='_blank'>instruction</"
2401
- "a> jak go utworzyć. Aby używać domyślnego klucza API dla wtyczki, pozostaw to pole puste."
2402
-
2403
- # @ gmp_lng
2404
- #: modules/options/mod.php:112
2405
- msgid "Send usage statistics"
2406
- msgstr "Wysyłaj statystyki użytkowania"
2407
-
2408
- #: modules/options/mod.php:112
2409
- msgid "Send information about what plugin options you prefer to use, this will help us make our solution better for You."
2410
- msgstr ""
2411
- "Wyślij informacje o preferowanych przez ciebie opcjach wtyczki, a pomoże to nam przygotować lepsze rozwiązania dla Ciebie."
2412
-
2413
- #: modules/options/mod.php:113
2414
- #, fuzzy
2415
- msgid "Enable promo link"
2416
- msgstr "Włącz łącze promocyjne"
2417
-
2418
- #: modules/options/mod.php:113
2419
- msgid ""
2420
- "We are trying to make our plugin better for you, and you can help us with this. Just check this option - and small promotion "
2421
- "link will be added in the bottom of your Google Maps. This is easy for you - but very helpful for us!"
2422
- msgstr ""
2423
- "Próbujemy tworzyć coraz lepsze wtyczki dla ciebie i możesz nam w tym pomóc. Zaznacz tę opcję -i mały promocyjny link będzie "
2424
- "dodany a na dole Twoich map Google. To dla ciebie proste - ale dla nas bardzo pomocne!"
2425
-
2426
- #: modules/options/mod.php:114
2427
- #, fuzzy
2428
- msgid "User role can use plugin"
2429
- msgstr "Uprawniony użytkownik może używać wtyczki"
2430
-
2431
- #: modules/options/mod.php:114
2432
- #, fuzzy
2433
- msgid "User with next roles will have access to whole plugin from admin area."
2434
- msgstr "Użytkownik z następującymi uprawnieniami będzie miał dostęp do całej wtyczki z obszaru administratora."
2435
-
2436
- # @ gmp_lng
2437
- #: modules/options/models/modules.php:35
2438
- msgid "Module Updated"
2439
- msgstr "Moduł uaktualniony"
2440
-
2441
- # @ gmp_lng
2442
- #: modules/options/models/modules.php:50
2443
- msgid "Module Update Failed"
2444
- msgstr "Błąd aktualizacji modułu"
2445
-
2446
- # @ gmp_lng
2447
- #: modules/options/models/modules.php:53
2448
- msgid "Error module ID"
2449
- msgstr "Błąd ID modułu"
2450
-
2451
- # @ gmp_lng
2452
- #: modules/options/models/options.php:64
2453
- msgid "Empty data to save option"
2454
- msgstr "Brak danych opcji do zapisania"
2455
-
2456
- # @ gmp_lng
2457
- #: modules/options/views/tpl/optionsAdminMain.php:18
2458
- msgid "Main page Go here!!!!"
2459
- msgstr "Strona główna"
2460
-
2461
- #: modules/options/views/tpl/optionsAdminPage.php:31
2462
- msgid "Improve Free version"
2463
- msgstr "Udoskonalaj wersję darmową"
2464
-
2465
- #: modules/options/views/tpl/optionsAdminPage.php:33
2466
- #, php-format
2467
- msgid ""
2468
- "Please be advised that this option is available only in <a target='_blank' href='%s'>PRO version</a>. You can <a "
2469
- "target='_blank' href='%s' class='button'>Get PRO</a> today and get this and other PRO option for your PopUps!"
2470
- msgstr ""
2471
- "Należy pamiętać, że ta opcja jest dostępna tylko w <a target='_blank' href='%s'>wersji PRO</a>. Teraz możesz <a "
2472
- "target='_blank' href='%s' class='button'>uzyskać PRO</a> dzisiaj oraz uzyskać tę i inną opcję PRO dla swoich PopUps!"
2473
-
2474
- # @ gmp_lng
2475
- #: modules/options/views/tpl/optionsSettingsTabContent.php:3
2476
- msgid "Save all options"
2477
- msgstr "Zachowaj wszystkie opcje"
2478
-
2479
- #: modules/options/views/tpl/optionsSettingsTabContent.php:62
2480
- #, php-format
2481
- msgid "Turned On %s"
2482
- msgstr "Włączone %s"
2483
-
2484
- #: modules/options/views/tpl/optionsSettingsTabContent.php:63
2485
- #, php-format
2486
- msgid "Turned Off %s"
2487
- msgstr "Wyłączone %s"
2488
-
2489
- # @ gmp_lng
2490
- #: modules/supsystic_promo/controller.php:7
2491
- msgid "Information was saved. Thank you!"
2492
- msgstr "Informacje zapisane. Dziękuję!"
2493
-
2494
- # @ default
2495
- #: modules/supsystic_promo/controller.php:23
2496
- msgid "Please don't send contact requests so often - wait for response for your previous requests."
2497
- msgstr "Prosimy nie wysyłać tak często zapytań - czekaj na odpowiedź na poprzednie wnioski."
2498
-
2499
- # @ gmp_lng
2500
- #: modules/supsystic_promo/controller.php:45
2501
- msgid "Please enter valid email address"
2502
- msgstr "Wpisz poprawny adres e-mail"
2503
-
2504
- #: modules/supsystic_promo/mod.php:32
2505
- #, php-format
2506
- msgid ""
2507
- "Please, set your own Google API key in Google Maps Easy plugin <a href='%s'>Settings</a>! More info about Maps and API keys "
2508
- "you can find <a href='%s' target='_blank'>here</a>."
2509
- msgstr ""
2510
- "Proszę ustawić własny klucz API Google w <a href='%s'>Ustawieniach</a> wtyczki Google Maps Easy! Więcej informacji o mapach i "
2511
- "kluczach API znajdziesz <a href='%s' target='_blank'>tutaj</a>."
2512
-
2513
- #: modules/supsystic_promo/mod.php:56
2514
- #, php-format
2515
- msgid ""
2516
- "<h3>Hey, I noticed you just use %s over a week - that's awesome!</h3><p>Could you please do me a BIG favor and give it a 5-"
2517
- "star rating on WordPress? Just to help us spread the word and boost our motivation.</p>"
2518
- msgstr ""
2519
- "<h3>Hej, zauważyłem, że używasz %s w ciągu tygodnia - to niesamowite!</h3><p>Czy mógłbyś zrobić mi DUŻĄ przysługę i dać jej 5-"
2520
- "gwiazdkową ocenę na WordPress? Po prostu pomóż nam rozpowszechniać słowo i zwiększyć motywację.</p>"
2521
-
2522
- #: modules/supsystic_promo/mod.php:57 modules/supsystic_promo/mod.php:63
2523
- msgid "Ok, you deserve it"
2524
- msgstr "Ok, zasługujesz na to"
2525
-
2526
- #: modules/supsystic_promo/mod.php:58 modules/supsystic_promo/mod.php:64
2527
- msgid "Nope, maybe later"
2528
- msgstr "Niestety, może później"
2529
-
2530
- #: modules/supsystic_promo/mod.php:59
2531
- msgid "I already did"
2532
- msgstr "Już zrobiłem"
2533
-
2534
- #: modules/supsystic_promo/mod.php:60
2535
- #, php-format
2536
- msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
2537
- msgstr "<h3>Więcej niż jedenaście dni z naszą wtyczką %s - Gratulacje!</h3>"
2538
-
2539
- #: modules/supsystic_promo/mod.php:61
2540
- msgid ""
2541
- "<p>On behalf of the entire <a href='https://supsystic.com/' target='_blank'>supsystic.com</a> company I would like to thank "
2542
- "you for been with us, and I really hope that our software helped you.</p>"
2543
- msgstr ""
2544
- "<p>W imieniu całej firmy <a href='https://supsystic.com/' target='_blank'>supsystic.com</a> hciałbym podziękować, że byłeś z "
2545
- "nami i naprawdę mam nadzieję, że nasze oprogramowanie Ci pomogło.</p>"
2546
-
2547
- #: modules/supsystic_promo/mod.php:62
2548
- msgid ""
2549
- "<p>And today, if you want, - you can help us. This is really simple - you can just add small promo link to our site under "
2550
- "your maps. This is small step for you, but a big help for us! Sure, if you don't want - just skip this and continue enjoy our "
2551
- "software!</p>"
2552
- msgstr ""
2553
- "<p>A dzisiaj, jeśli chcesz, - możesz nam pomóc. To jest naprawdę proste - możesz po prostu dodać mały link promocyjny do "
2554
- "naszej witryny pod Twoimi mapami. To dla ciebie mały krok, a dla nas wielka pomoc! Oczywiście, jeśli tego nie chcesz - po "
2555
- "prostu pomiń to i nadal korzystaj z naszego oprogramowania!</p>"
2556
-
2557
- #: modules/supsystic_promo/mod.php:65
2558
- msgid "Skip"
2559
- msgstr "Pomiń"
2560
-
2561
- #: modules/supsystic_promo/mod.php:67
2562
- #, php-format
2563
- msgid ""
2564
- "Check out <a href='%s' target='_blank' class='button button-primary' data-statistic-code='hide'>our other Plugins</a>! Years "
2565
- "of experience in WordPress plugins developers made those list unbreakable!"
2566
- msgstr ""
2567
- "Sprawdź <a href='%s' target='_blank' class='button button-primary' data-statistic-code='hide'>inne nasze wtyczki</a>! Lata "
2568
- "doświadczeń w tworzeniu wtyczek do WordPressa uczyniły tę listę niepowtarzalną!"
2569
-
2570
- # @ gmp_lng
2571
- #: modules/supsystic_promo/mod.php:116
2572
- msgid "Overview"
2573
- msgstr "Przegląd"
2574
-
2575
- #: modules/supsystic_promo/mod.php:119
2576
- msgid "Featured Plugins"
2577
- msgstr "Polecane wtyczki"
2578
-
2579
- # @ gmp_lng
2580
- #: modules/supsystic_promo/mod.php:145
2581
- msgid "Welcome to Supsystic Secure"
2582
- msgstr "Witamy w Supsystic Secure"
2583
-
2584
- # @ gmp_lng
2585
- #: modules/supsystic_promo/mod.php:214
2586
- msgid "Name"
2587
- msgstr "Imię"
2588
-
2589
- # @ gmp_lng
2590
- #: modules/supsystic_promo/mod.php:216
2591
- msgid "Website"
2592
- msgstr "Strona"
2593
-
2594
- # @ gmp_lng
2595
- #: modules/supsystic_promo/mod.php:217
2596
- msgid "Subject"
2597
- msgstr "Temat"
2598
-
2599
- # @ gmp_lng
2600
- #: modules/supsystic_promo/mod.php:218
2601
- msgid "Topic"
2602
- msgstr "Dotyczy"
2603
-
2604
- # @ gmp_lng
2605
- #: modules/supsystic_promo/mod.php:219
2606
- msgid "Plugin options"
2607
- msgstr "Opcje wtyczki"
2608
-
2609
- # @ gmp_lng
2610
- #: modules/supsystic_promo/mod.php:220
2611
- msgid "Report a bug"
2612
- msgstr "Zgłoszenie błędu"
2613
-
2614
- # @ gmp_lng
2615
- #: modules/supsystic_promo/mod.php:221
2616
- msgid "Require a new functionallity"
2617
- msgstr "Wymaga nowej funkcjonalności"
2618
-
2619
- # @ gmp_lng
2620
- #: modules/supsystic_promo/mod.php:222
2621
- msgid "Other"
2622
- msgstr "Inne"
2623
-
2624
- # @ gmp_lng
2625
- #: modules/supsystic_promo/mod.php:224
2626
- msgid "Message"
2627
- msgstr "Wiadomość"
2628
-
2629
- # @ gmp_lng
2630
- #: modules/supsystic_promo/mod.php:224
2631
- msgid "Hello Supsystic Team!"
2632
- msgstr "Hello Supsystic Team!"
2633
-
2634
- #: modules/supsystic_promo/mod.php:269
2635
- #, fuzzy
2636
- msgid "Heatmap"
2637
- msgstr "'Mapa ciepła'"
2638
-
2639
- #: modules/supsystic_promo/views/supsystic_promo.php:32
2640
- msgid "How to create Google Maps API Key?"
2641
- msgstr "Jak utworzyć klucz API Google Maps?"
2642
-
2643
- #: modules/supsystic_promo/views/supsystic_promo.php:33
2644
- msgid ""
2645
- "Your map suddenly stopped working and you get the following error?<blockquote style='color: gray; font-style: italic;'>Oops! "
2646
- "Something went wrong.This page didn't load Google Maps correctly. See the JavaScript console for technical details.</"
2647
- "blockquote>Please check you browser console, if you'll see such error <blockquote style='color: gray; font-style: "
2648
- "italic;'>This site has exceeded its daily quota for maps.</blockquote> - this <a href='//supsystic.com/google-maps-api-key/' "
2649
- "target='_blank'>article</a> is written for you and required for reading."
2650
- msgstr ""
2651
- "Twoja mapa przestała działać i wystąpił następujący błąd?<blockquote style='color: gray; font-style: italic;'>Ups! Coś poszło "
2652
- "źle. Ta strona nie załadowała poprawnie Map Google. Szczegółowe informacje można znaleźć w konsoli JavaScript. </"
2653
- "blockquote>Sprawdź proszę konsolę twojej przeglądarki, czy pokazuje ten błąd.<blockquote style='color: gray; font-style: "
2654
- "italic;'>Witryna przekroczyła dzienny limit map.</blockquote> - ten <a href='//supsystic.com/google-maps-api-key/' "
2655
- "target='_blank'>artykuł</a> jest napisany z sugestią przeczytania przez Ciebie."
2656
-
2657
- #: modules/supsystic_promo/views/supsystic_promo.php:37
2658
- msgid "How to use Google Maps Easy Widget?"
2659
- msgstr "Jak używać widgetu Google Maps Easy?"
2660
-
2661
- #: modules/supsystic_promo/views/supsystic_promo.php:38
2662
- msgid ""
2663
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. Find the Google Maps Easy in the list of available "
2664
- "widgets.<br />3. Drag the Google Maps Easy widget to widget area, which you need.<br />4. Choose the map for widget and "
2665
- "configure the settings - Widget Map width and height.<br />5. Click 'Save'."
2666
- msgstr ""
2667
- "1. 1. Przejdź do Wygląd->Widżety (Appearance->Widgets) w menu nawigacyjnym WordPress.<br />2. Znajdź Google Maps Easy na "
2668
- "liście dostępnych widżetów.<br />3. Przeciągnij widżet Google Maps Easy do obszaru widżetu, który potrzebujesz. <br />4. "
2669
- "Wybierz mapę dla widżetu i skonfiguruj ustawienia - szerokość i wysokość map Widżetu.<br />5. Kliknij przycisk 'Zachowaj'."
2670
-
2671
- #: modules/supsystic_promo/views/supsystic_promo.php:39
2672
- msgid "How to add map into the site content?"
2673
- msgstr "Jak wstawić mapę na stronę?"
2674
-
2675
- #: modules/supsystic_promo/views/supsystic_promo.php:40
2676
- msgid ""
2677
- "You can add a map in the site content via shortcode or php code. Learn more about how to do this <a href='http://supsystic."
2678
- "com/add-map-into-site-content/'>here</a>."
2679
- msgstr ""
2680
- "Możesz umieścić mapę w treści witryny za pomocą skrótu lub kodu PHP. <a href='http://supsystic.com/add-map-into-site-"
2681
- "content/'>Tutaj</a> dowiesz się więcej o tym, jak to zrobić."
2682
-
2683
- #: modules/supsystic_promo/views/supsystic_promo.php:41
2684
- msgid "How to add map in popup window?"
2685
- msgstr "Jak dodać mapę w oknie PopUp?"
2686
-
2687
- #: modules/supsystic_promo/views/supsystic_promo.php:42
2688
- msgid ""
2689
- "You can add a map in popup window by inserting map shortcode in any popup text field. Learn more about how to do this <a "
2690
- "href='http://supsystic.com/add-map-in-popup-window/'>here</a>."
2691
- msgstr ""
2692
- "Możesz dodać mapę w oknie podręcznym, wstawiając skrót do mapy w dowolnym polu tekstowym. Dowiedz się więcej o tym, jak to "
2693
- "zrobić <a href='http://supsystic.com/add-map-in-popup-window/'>tutaj</a>."
2694
-
2695
- #: modules/supsystic_promo/views/supsystic_promo.php:43
2696
- msgid "How to zoom and center the initial map on markers ?"
2697
- msgstr "Jak powiększyć i wyśrodkować początkową mapę znaczników?"
2698
-
2699
- #: modules/supsystic_promo/views/supsystic_promo.php:44
2700
- msgid ""
2701
- "There is a few different ways to zoom and centralize map. The easiest one is to drag your map using mouse - 'Draggable' "
2702
- "option must be enabled, or with pan controller help in live preview. <a href='http://supsystic.com/how-to-zoom-and-center-the-"
2703
- "initial-map-on-markers/'>Read more..</a>"
2704
- msgstr ""
2705
- "Istnieje kilka sposobów powiększania i centralizowania mapy. Najłatwiejsze jest przeciąganie mapy za pomocą myszy - opcja "
2706
- "'Przeciągalny' (Draggable) musi być włączona - lub z pomocą panelu kontrolnego w podglądzie na żywo. <a href='http://"
2707
- "supsystic.com/how-to-zoom-and-center-the-initial-map-on-markers/'>Czytaj dalej...</a>"
2708
-
2709
- # @ gmp_lng
2710
- #: modules/supsystic_promo/views/supsystic_promo.php:45
2711
- msgid "How to get PRO version of plugin for FREE?"
2712
- msgstr "Jak zdobyć wersję PRO za darmo?"
2713
-
2714
- #: modules/supsystic_promo/views/supsystic_promo.php:45
2715
- #, php-format
2716
- msgid ""
2717
- "You have an incredible opportunity to get PRO version for free. Make Translation of plugin! It will be amazing if you take "
2718
- "advantage of this offer! More info you can find here <a target='_blank' href='%s'>Get PRO version of any plugin for FREE'</a>"
2719
- msgstr ""
2720
- "Wyjątkowa okazja aby zdobyć wersję PRO za darmo. Stwórz tłumaczenie! Więcej informacji tutaj <a target='_blank' "
2721
- "href='%s'>'Zdobądź wersję PRO'</a>"
2722
-
2723
- # @ gmp_lng
2724
- #: modules/supsystic_promo/views/supsystic_promo.php:46
2725
- msgid "Translation"
2726
- msgstr "Tłumaczenie"
2727
-
2728
- #: modules/supsystic_promo/views/supsystic_promo.php:46
2729
- #, php-format
2730
- msgid ""
2731
- "All available languages are provided with the Supsystic Google Maps plugin. If your language isn't available, your plugin "
2732
- "will be in English by default.<br /><b>Available Translations: English, Polish, German, Spanish, Russian</b><br />Translate "
2733
- "or update a translation Google Maps WordPress plugin in your language and get a Premium license for FREE. <a target='_blank' "
2734
- "href='%s'>Contact us</a>."
2735
- msgstr ""
2736
- "Wszystkie dostępne języki są dostarczane z wtyczką Supsystic Google Maps. Jeśli język nie jest dostępny, wtyczka domyślnie "
2737
- "będzie w języku angielskim. <br /> <b> Dostępne tłumaczenia: angielski, polski, niemiecki, hiszpański, rosyjski </b> <br /> "
2738
- "Przetłumacz lub zaktualizuj tłumaczenie Google Maps WordPress w Twoim języku i pobierz bezpłatną licencję Premium. <a "
2739
- "target='_blank' href='%s'> Skontaktuj się z nami.</a>."
2740
-
2741
- # @ gmp_lng
2742
- #: modules/supsystic_promo/views/supsystic_promo.php:62
2743
- #, php-format
2744
- msgid ""
2745
- "There were some problem while trying to retrive our news, but you can always check all list <a target='_blank' "
2746
- "href='%s'>here</a>."
2747
- msgstr ""
2748
- "Wystąpił problem podczas próby otwarcia naszych nowinek ale zawsze sam możesz sprawdzić całą listę <a target='_blank' "
2749
- "href='%s'>tutaj</a>."
2750
-
2751
- # @ gmp_lng
2752
- #: modules/supsystic_promo/views/supsystic_promo.php:73 modules/supsystic_promo/views/supsystic_promo.php:78
2753
- #: modules/supsystic_promo/views/supsystic_promo.php:80 modules/supsystic_promo/views/supsystic_promo.php:81
2754
- msgid "Yes"
2755
- msgstr "Tak"
2756
-
2757
- # @ gmp_lng
2758
- #: modules/supsystic_promo/views/supsystic_promo.php:73 modules/supsystic_promo/views/supsystic_promo.php:78
2759
- #: modules/supsystic_promo/views/supsystic_promo.php:80 modules/supsystic_promo/views/supsystic_promo.php:81
2760
- msgid "No"
2761
- msgstr "Nie"
2762
-
2763
- #: modules/supsystic_promo/views/supsystic_promo.php:98
2764
- msgid "Popup Plugin"
2765
- msgstr "Wtyczka PopUp"
2766
-
2767
- #: modules/supsystic_promo/views/supsystic_promo.php:98
2768
- msgid ""
2769
- "The Best WordPress PopUp option plugin to help you gain more subscribers, social followers or advertisement. Responsive pop-"
2770
- "ups with friendly options."
2771
- msgstr ""
2772
- "Najlepsza wtyczka opcji PopUp do WordPress pozwalająca uzyskać więcej subskrybentów, społecznych zwolenników lub reklamy. "
2773
- "Odpowiednie PopUpy z przyjaznymi opcjami."
2774
-
2775
- #: modules/supsystic_promo/views/supsystic_promo.php:99
2776
- msgid "Photo Gallery Plugin"
2777
- msgstr "Wtyczka Fotogalerii"
2778
-
2779
- #: modules/supsystic_promo/views/supsystic_promo.php:99
2780
- msgid ""
2781
- "Photo Gallery Plugin with a great number of layouts will help you to create quality respectable portfolios and image "
2782
- "galleries."
2783
- msgstr "Wtyczka fotogalerii z dużą ilością wieloma strukturami pomagającymi Ci tworzyć wartościowe portfolio i galerie obrazów."
2784
-
2785
- # @ gmp_lng
2786
- #: modules/supsystic_promo/views/supsystic_promo.php:100
2787
- msgid "Contact Form Plugin"
2788
- msgstr "Wtyczka Formularza kontaktowego"
2789
-
2790
- #: modules/supsystic_promo/views/supsystic_promo.php:100
2791
- msgid ""
2792
- "One of the best plugin for creating Contact Forms on your WordPress site. Changeable fonts, backgrounds, an option for adding "
2793
- "fields etc."
2794
- msgstr ""
2795
- "Jedna z najlepszych wtyczek do tworzenia formularza kontaktowego na twojej Wordpressowej stronie. Dostępna zmiana fontów, "
2796
- "tła, opcje dodawania pól itp."
2797
-
2798
- #: modules/supsystic_promo/views/supsystic_promo.php:101
2799
- msgid "Newsletter Plugin"
2800
- msgstr "Wtyczka biuletynu"
2801
-
2802
- #: modules/supsystic_promo/views/supsystic_promo.php:101
2803
- msgid ""
2804
- "Supsystic Newsletter plugin for automatic mailing of your letters. You will have no need to control it or send them manually. "
2805
- "No coding, hard skills or long hours of customizing are required."
2806
- msgstr ""
2807
- "Wtyczka biuletynów od Supsystic do automatycznego wysyłania listów. Nie będziesz musiał kontrolować ani wysyłać ich ręcznie. "
2808
- "Bez kodowania, nerwów i długich godzin przygotowań."
2809
-
2810
- #: modules/supsystic_promo/views/supsystic_promo.php:102
2811
- msgid "Membership by Supsystic"
2812
- msgstr "Członkostwo przez Supsystic"
2813
-
2814
- #: modules/supsystic_promo/views/supsystic_promo.php:102
2815
- msgid ""
2816
- "Create online membership community with custom user profiles, roles, FrontEnd registration and login. Members Directory, "
2817
- "activity, groups, messages."
2818
- msgstr ""
2819
- "Utwórz społeczność członkowską online z niestandardowymi profilami użytkowników, rolami, z możliwością rejestracji i "
2820
- "logowania. Katalog członków, aktywność, grupy, wiadomości."
2821
-
2822
- #: modules/supsystic_promo/views/supsystic_promo.php:103
2823
- msgid "Data Tables Generator"
2824
- msgstr "Generator tabel danych {Data Tables Generator}"
2825
-
2826
- #: modules/supsystic_promo/views/supsystic_promo.php:103
2827
- msgid "Create and manage beautiful data tables with custom design. No HTML knowledge is required."
2828
- msgstr "Tworzenie i zarządzanie pięknymi tabelami danych z niestandardowym wzorem. Nie jest potrzebna znajomość HTML."
2829
-
2830
- # @ gmp_lng
2831
- #: modules/supsystic_promo/views/supsystic_promo.php:104
2832
- msgid "Slider Plugin"
2833
- msgstr "Wtyczka Slajdy {Slider)"
2834
-
2835
- #: modules/supsystic_promo/views/supsystic_promo.php:104
2836
- msgid ""
2837
- "Creating slideshows with Slider plugin is fast and easy. Simply select images from your WordPress Media Library, Flickr, "
2838
- "Instagram or Facebook, set slide captions, links and SEO fields all from one page."
2839
- msgstr ""
2840
- "Tworzenie pokazów slajdów za pomocą wtyczki Slider jest szybkie i łatwe. Wystarczy wybrać obrazy z WordPress Media Library, "
2841
- "Flickra, Instagrama lub Facebooka, ustawić napisy slajdów, linki i pola SEO wszystko na jednej stronie."
2842
-
2843
- #: modules/supsystic_promo/views/supsystic_promo.php:105
2844
- msgid "Social Share Buttons"
2845
- msgstr "Przyciski Udostępniania Społecznośiowego {Social Share Buttons}"
2846
-
2847
- #: modules/supsystic_promo/views/supsystic_promo.php:105
2848
- msgid ""
2849
- "Social share buttons to increase social traffic and popularity. Social sharing to Facebook, Twitter and other social networks."
2850
- msgstr ""
2851
- "Przyciski Udostępniania Społecznościowego do zwiększenia ruchu społecznego i popularności. Udostępnianie na Facebooku, "
2852
- "Twitterze i innych sieciach społecznościowych."
2853
-
2854
- #: modules/supsystic_promo/views/supsystic_promo.php:106
2855
- msgid "Live Chat Plugin"
2856
- msgstr "Wtyczka Rozmowy na żywo {Live Chat}"
2857
-
2858
- #: modules/supsystic_promo/views/supsystic_promo.php:106
2859
- msgid ""
2860
- "Be closer to your visitors and customers with Live Chat Support by Supsystic. Help you visitors, support them in real-time "
2861
- "with exceptional Live Chat WordPress plugin by Supsystic."
2862
- msgstr ""
2863
- "Bądź bliżej swoich gości i klientów z pomocą Live Chat Support firmy Supsystic. Pomóż swoim użytkownikom, wspieraj ich w "
2864
- "czasie rzeczywistym dzięki wyjątkowej wtyczce Live Chat WordPress firmy Supsystic."
2865
-
2866
- #: modules/supsystic_promo/views/supsystic_promo.php:107
2867
- msgid "Pricing Table"
2868
- msgstr "Tablica cen {Pricing Table}"
2869
-
2870
- #: modules/supsystic_promo/views/supsystic_promo.php:107
2871
- msgid ""
2872
- "It's never been so easy to create and manage pricing and comparison tables with table builder. Any element of the table can "
2873
- "be customise with mouse click."
2874
- msgstr ""
2875
- "Nigdy nie było tak łatwo tworzyć i zarządzać cenami i tabelami porównawczymi z konstruktorem tabel. Każdy element tabeli "
2876
- "można dostosować za pomocą kliknięcia myszą."
2877
-
2878
- #: modules/supsystic_promo/views/supsystic_promo.php:108
2879
- msgid "Coming Soon Plugin"
2880
- msgstr "Wtyczka Wkrótce {Coming Soon}"
2881
-
2882
- #: modules/supsystic_promo/views/supsystic_promo.php:108
2883
- msgid ""
2884
- "Coming soon page with drag-and-drop builder or under construction | maintenance mode to notify visitors and collects emails."
2885
- msgstr ""
2886
- "Strona 'Wkrótce' z konstruktorem przeciągnij i upuść lub w budowie | tryb konserwacji, aby powiadomić użytkowników i zbierać "
2887
- "e-maile."
2888
-
2889
- #: modules/supsystic_promo/views/supsystic_promo.php:109
2890
- msgid "Backup Plugin"
2891
- msgstr "Wtyczka Kopii Zapasowej {Backup}"
2892
-
2893
- #: modules/supsystic_promo/views/supsystic_promo.php:109
2894
- msgid ""
2895
- "Backup and Restore WordPress Plugin by Supsystic provides quick and unhitched DropBox, FTP, Amazon S3, Google Drive backup "
2896
- "for your WordPress website."
2897
- msgstr ""
2898
- "Wtyczka Kopi zapasowej i Przywracania WordPressa firmy Supsystic zapewnia tworzenie kopii zapasowej witryny Wordpressa na "
2899
- "DropBox, FTP, Amazon S3, Dysku Google."
2900
-
2901
- # @ gmp_lng
2902
- #: modules/supsystic_promo/views/supsystic_promo.php:110
2903
- msgid "Google Maps Easy"
2904
- msgstr "Google Maps Easy"
2905
-
2906
- #: modules/supsystic_promo/views/supsystic_promo.php:110
2907
- msgid ""
2908
- "Display custom Google Maps. Set markers and locations with text, images, categories and links. Customize google map in a "
2909
- "simple and intuitive way."
2910
- msgstr ""
2911
- "Wyświetla niestandardowe Mapy Google. Ustawia znaczniki i lokalizacje z tekstem, zdjęciami, kategoriami i linkami. Dostosuj "
2912
- "mapę Google w prosty i intuicyjny sposób."
2913
-
2914
- #: modules/supsystic_promo/views/supsystic_promo.php:111
2915
- msgid "Digital Publication Plugin"
2916
- msgstr ""
2917
-
2918
- #: modules/supsystic_promo/views/supsystic_promo.php:111
2919
- msgid ""
2920
- "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, Portfolios. Convert images, posts, PDF to the page "
2921
- "flip book."
2922
- msgstr ""
2923
- "Wtyczka publikacji cyfrowych dla WordPressa firmy Supsystic dla czasopism, katalogów, portfolio. Konwertuj obrazy, posty, PDF "
2924
- "do odwzorowanej strony książki."
2925
-
2926
- # @ gmp_lng
2927
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4 modules/supsystic_promo/views/tpl/welcomePage.php:78
2928
- msgid "Version"
2929
- msgstr "Wersja"
2930
-
2931
- # @ gmp_lng
2932
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
2933
- msgid "PRO"
2934
- msgstr "PRO"
2935
-
2936
- # @ gmp_lng
2937
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
2938
- msgid "Support"
2939
- msgstr "Wsparcie"
2940
-
2941
- # @ gmp_lng
2942
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
2943
- msgid "Add your"
2944
- msgstr "Dodaj swój"
2945
-
2946
- #: modules/supsystic_promo/views/tpl/adminPromoTabContent.php:5
2947
- msgid "Get it now!"
2948
- msgstr "Zdobądź to teraz!"
2949
-
2950
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:3
2951
- msgid "Get plugins bundle today and save over 80%"
2952
- msgstr "Pobierz dzisiaj pakiet wtyczek i zaoszczędź ponad 80%"
2953
-
2954
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:6
2955
- msgid "Check It out"
2956
- msgstr "Sprawdź to"
2957
-
2958
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:31
2959
- msgid "More info"
2960
- msgstr "Więcej informacji"
2961
-
2962
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:34
2963
- msgid "Download"
2964
- msgstr "Pobieranie"
2965
-
2966
- # @ gmp_lng
2967
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
2968
- msgid "FAQ and Documentation"
2969
- msgstr "FAQ i dokumentacja"
2970
-
2971
- # @ gmp_lng
2972
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
2973
- msgid "Check all FAQs"
2974
- msgstr "Sprawdź wszystkie FAQ"
2975
-
2976
- # @ gmp_lng
2977
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22 modules/supsystic_promo/views/tpl/welcomePage.php:102
2978
- msgid "Video tutorial"
2979
- msgstr "Film instruktażowy"
2980
-
2981
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
2982
- msgid "PRO Features"
2983
- msgstr "Cechy PRO"
2984
-
2985
- # @ gmp_lng
2986
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
2987
- msgid "Server Settings"
2988
- msgstr "Ustawienia serwera"
2989
-
2990
- # @ gmp_lng
2991
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
2992
- msgid "News"
2993
- msgstr "Nowości"
2994
-
2995
- # @ gmp_lng
2996
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
2997
- msgid "All news and info"
2998
- msgstr "Wszystkie nowinki i informacje"
2999
-
3000
- # @ gmp_lng
3001
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
3002
- msgid "Contact form"
3003
- msgstr "Formularz kontaktowy"
3004
-
3005
- # @ gmp_lng
3006
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
3007
- msgid "Send email"
3008
- msgstr "Wyślij email"
3009
-
3010
- # @ gmp_lng
3011
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
3012
- msgid "Your email was send, we will try to respond to you as soon as possible. Thank you for support!"
3013
- msgstr "Twój email został wysłany, spróbujemy odpowiedzieć tak szybko jak to możliwe. Dziękujemy za wsparcie!"
3014
-
3015
- # @ gmp_lng
3016
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
3017
- msgid "Welcome to"
3018
- msgstr "Witamy w"
3019
-
3020
- # @ gmp_lng
3021
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
3022
- #, php-format
3023
- msgid "This is first start up of the %s plugin."
3024
- msgstr "To jest pierwsze uruchomienie wtyczki: %s."
3025
-
3026
- # @ gmp_lng
3027
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
3028
- msgid "If you are newbie - check all features on that page, if you are guru - please correct us."
3029
- msgstr "Jeśli jesteś nowicjuszem - sprawdź wszystkie funkcje na tej stronie, jeśli jesteś guru - prosimy o korektę."
3030
-
3031
- # @ gmp_lng
3032
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
3033
- msgid "Please, post url"
3034
- msgstr "Proszę, zamieść adres URL"
3035
-
3036
- # @ gmp_lng
3037
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
3038
- msgid "What to do next? Check below section"
3039
- msgstr "Co zrobić dalej? Sprawdź sekcję poniżej"
3040
-
3041
- # @ gmp_lng
3042
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
3043
- #, fuzzy
3044
- msgid "Boost us"
3045
- msgstr "Zachęć nas"
3046
-
3047
- # @ gmp_lng
3048
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
3049
- #, php-format
3050
- msgid ""
3051
- "It's amazing when you boost development with your feedback and ratings. So we create special <a target='_blank' "
3052
- "href='%s'>boost page</a> to help you to help us."
3053
- msgstr ""
3054
- "Wspaniale kiedy dostajemy informacje zwrotne i ocenę naszej pracy. Dlatego stworzyliśmy <a target='_blank' href='%s'>stronę</"
3055
- "a> aby ułatwić Ci wyrażanie opinii."
3056
-
3057
- # @ gmp_lng
3058
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
3059
- msgid "Documentation"
3060
- msgstr "Dokumentacja"
3061
-
3062
- # @ gmp_lng
3063
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
3064
- #, php-format
3065
- msgid ""
3066
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you can't solve your problems - <a target='_blank' "
3067
- "href='%s'>contact us</a>."
3068
- msgstr ""
3069
- "Sprawdź <a target='_blank' href='%s'>dokumentację</a> i sekcję FAQ. Jeśli nie znajdziesz rozwiązania twojego problemu - <a "
3070
- "target='_blank' href='%s'>skontaktuj się z nami</a>."
3071
-
3072
- # @ gmp_lng
3073
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
3074
- msgid "Full Features List"
3075
- msgstr "Pełna lista funkcji"
3076
-
3077
- # @ gmp_lng
3078
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
3079
- msgid "There are so many features, so we can't post it here. Like"
3080
- msgstr "Mnogość funkcji, w tym m.in."
3081
-
3082
- # @ gmp_lng
3083
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
3084
- msgid "Capcha for admin login"
3085
- msgstr "Zabezpieczenie Capcha przy logowaniu się administratora"
3086
-
3087
- # @ gmp_lng
3088
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
3089
- msgid "htaccess admin protect"
3090
- msgstr "Zabezpieczenie htaccess"
3091
-
3092
- # @ gmp_lng
3093
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
3094
- msgid "Hide directory files listing"
3095
- msgstr "Ukrywanie listy plików"
3096
-
3097
- # @ gmp_lng
3098
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
3099
- msgid "Check files and directories write permissions"
3100
- msgstr "Sprawdź uprawnienia do zapisu plików"
3101
-
3102
- # @ gmp_lng
3103
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
3104
- #, php-format
3105
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
3106
- msgstr "Możesz sprawdzić pełną listę funkcji <a target='_blank' href='%s'>tutaj</a>."
3107
-
3108
- #~ msgid "You need to reactivate your Google Maps Easy plugin."
3109
- #~ msgstr "Powinieneś reaktywować swoją wtyczkę Google Maps Easy."
3110
-
3111
- # @ gmp_lng
3112
- #, fuzzy
3113
- #~| msgid "So check full features list <a target='_blank' href='%s'>here</a>."
3114
- #~ msgid "Integrate with <a target='_blank' href='%s'>Membership</a>"
3115
- #~ msgstr "Możesz sprawdzić pełną listę funkcji <a target='_blank' href='%s'>tutaj</a>."
3116
-
3117
- #~ msgid "Sets min zoom level for map."
3118
- #~ msgstr "Ustawia minimalny poziom powiększenia mapy."
3119
-
3120
- #~ msgid "Sets max zoom level for map."
3121
- #~ msgstr "Ustawia maksymalny poziom powiększenia mapy."
3122
-
3123
- # @ gmp_lng
3124
- #~ msgid "Map Properties"
3125
- #~ msgstr "Właściwości mapy"
3126
-
3127
- # @ gmp_lng
3128
- #~ msgid "Add New Marker"
3129
- #~ msgstr "Dodaj nowy znacznik"
3130
-
3131
- # @ gmp_lng
3132
- #~ msgid "Your map height"
3133
- #~ msgstr "Wysokość mapy w pikselach"
3134
-
3135
- # @ gmp_lng
3136
- #~ msgid "Zoom control type on your map"
3137
- #~ msgstr "Zoom control type on your map"
3138
-
3139
- # @ gmp_lng
3140
- #~ msgid "Large"
3141
- #~ msgstr "Duży"
3142
-
3143
- # @ gmp_lng
3144
- #~ msgid "Small"
3145
- #~ msgstr "Mały"
3146
-
3147
- # @ gmp_lng
3148
- #~ msgid "Pan control"
3149
- #~ msgstr "Przycisk przesuwania"
3150
-
3151
- # @ gmp_lng
3152
- #~ msgid "Pan control - allow you to pan over your map using mouse, usually is located on left upper corner of your map"
3153
- #~ msgstr "Przycisk przesuwania zazwyczaj umieszczony jest w lewym górnym rogu mapy"
3154
-
3155
- # @ gmp_lng
3156
- #~ msgid "Change pan control position on map"
3157
- #~ msgstr "Zmień pozycję przycisku przesuwania na mapie"
3158
-
3159
- # @ gmp_lng
3160
- #~ msgid "Overview control"
3161
- #~ msgstr "Mapka poglądowa"
3162
-
3163
- # @ gmp_lng
3164
- #~ msgid "Overview control for your map, by default is disabled, and if enabled - is located on the right bottom corner"
3165
- #~ msgstr "Mapka poglądowa (jeśli włączona) znajduje się zazwyczaj w prawym dolnym narożniku mapy"
3166
-
3167
- # @ gmp_lng
3168
- #~ msgid "Opened"
3169
- #~ msgstr "Otwarty"
3170
-
3171
- # @ gmp_lng
3172
- #~ msgid "Collapsed"
3173
- #~ msgstr "Zwinięty"
3174
-
3175
- # @ gmp_lng
3176
- #~ msgid "Get 300+ Themes"
3177
- #~ msgstr "300 szablonów"
3178
-
3179
- # @ gmp_lng
3180
- #~ msgid ""
3181
- #~ "Please be advised that this option is available only in <a target='_blank' href='%s'>PRO version</a>. You can <a "
3182
- #~ "target='_blank' href='%s' class='button'>Get PRO</a> today and get this and other PRO option for your Maps!"
3183
- #~ msgstr ""
3184
- #~ "Zwróć uwagę, że ta funkcja dostępna jest tylko w <a target='_blank' href='%s'>wersji PRO</a>. Możesz <a target='_blank' "
3185
- #~ "href='%s' class='button'>nabyć wersję PRO</a> i cieszyć się dodatkowymi funkcjami na swoich mapach!"
3186
-
3187
- # @ gmp_lng
3188
- #~ msgid ""
3189
- #~ "All available languages are provided with the Supsystic Google Maps plugin. If your language isn't available, your plugin "
3190
- #~ "will be in English by default.<br /><b>Available Translations: English</b><br />Translate or update a translation Google "
3191
- #~ "Maps WordPress plugin in your language and get a Premium license for FREE. <a target='_blank' href='%s'>Contact us</a>."
3192
- #~ msgstr ""
3193
- #~ "Wszystkie dostępne tłumaczenia dostępne są z wtyczką Supsystic Google Maps. Jeśli go nie ma, wtyczka korzystać będzie "
3194
- #~ "domyślnie z języka angielskiego.<br /><b>Dostępne tłumaczenia: Angielski</b><br />Stwórz tłumaczenie tej wtyczki i zdobądź "
3195
- #~ "wersję premium za darmo. <a target='_blank' href='%s'>Skontaktuj się z nami</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-pt_PT.mo DELETED
Binary file
lang/gmp_lng-pt_PT.po DELETED
@@ -1,1933 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-07-31 12:15+0300\n"
6
- "PO-Revision-Date: 2017-12-15 13:21+0200\n"
7
- "Last-Translator: \n"
8
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
9
- "Language: en\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Loco-Source-Locale: pt_PT\n"
16
- "X-Generator: Poedit 1.8.9\n"
17
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
18
- "X-Poedit-Basepath: ..\n"
19
- "X-Loco-Parser: loco_parse_po\n"
20
- "X-Loco-Target-Locale: en_GB\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: js\n"
23
- "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
24
-
25
- #: classes/controller.php:198 classes/controller.php:206
26
- #: doc/google-maps-easy-pro/license/controller.php:6
27
- #: modules/adminmenu/controller.php:29 modules/gmap/controller.php:40
28
- #: modules/gmap/controller.php:57 modules/marker/controller.php:8
29
- #: modules/marker/controller.php:46 modules/marker/controller.php:61
30
- #: modules/marker/controller.php:101 modules/marker_groups/controller.php:58
31
- #: modules/options/controller.php:6
32
- msgid "Done"
33
- msgstr "Concluído"
34
-
35
- #: classes/field.php:131
36
- msgid "Select"
37
- msgstr "Seleccionar"
38
-
39
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
40
- msgid "N/A"
41
- msgstr "N/A"
42
-
43
- #: classes/field.php:277
44
- msgid "Add Checkbox"
45
- msgstr "Adicionar Caixa de Selecção"
46
-
47
- #: classes/field.php:282 classes/field.php:287
48
- msgid "Add Item"
49
- msgstr "Adicionar Item"
50
-
51
- #: classes/field.php:293
52
- msgid "Add Radio Button"
53
- msgstr "Adicionar Botão Rádio"
54
-
55
- #: classes/field.php:311
56
- msgid "Dimensions"
57
- msgstr "Dimensões"
58
-
59
- #: classes/field.php:314
60
- msgid "width"
61
- msgstr "Largura"
62
-
63
- #: classes/field.php:316
64
- msgid "height"
65
- msgstr "Altura"
66
-
67
- #: classes/field.php:323
68
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
69
- msgstr "Click para definir o campo &quot;id&quot; e &quot;class&quot;"
70
-
71
- #: classes/field.php:324
72
- msgid "Attributes"
73
- msgstr "Atributos"
74
-
75
- #: classes/field.php:402
76
- msgid "There are no configuration options for this module"
77
- msgstr "Não existem opções de configuração para este módulo"
78
-
79
- #: classes/fieldAdapter.php:93
80
- msgid "Apply To"
81
- msgstr "Aplicar a"
82
-
83
- #: classes/fieldAdapter.php:95 modules/gmap/views/tpl/gmapEditMap.php:523
84
- msgid "Address"
85
- msgstr "Endereço"
86
-
87
- #: classes/fieldAdapter.php:96
88
- msgid "Destination"
89
- msgstr "Destino"
90
-
91
- #: classes/fieldAdapter.php:97
92
- msgid "Country"
93
- msgstr "País"
94
-
95
- #: classes/fieldAdapter.php:100
96
- msgid "Categories"
97
- msgstr "Categorias"
98
-
99
- #: classes/fieldAdapter.php:101
100
- msgid "You have no categories"
101
- msgstr "Você não tem categorias"
102
-
103
- #: classes/fieldAdapter.php:102
104
- msgid "Brands"
105
- msgstr "Marcas"
106
-
107
- #: classes/fieldAdapter.php:103
108
- msgid "You have no brands"
109
- msgstr "Você não tem marcas"
110
-
111
- #: classes/fieldAdapter.php:105
112
- msgid "Tax Rate"
113
- msgstr "IVA"
114
-
115
- #: classes/fieldAdapter.php:106
116
- msgid "Absolute"
117
- msgstr "Abosluto"
118
-
119
- #: classes/fieldAdapter.php:134
120
- msgid "Not selected"
121
- msgstr "Não selecionada"
122
-
123
- #: classes/fieldAdapter.php:184
124
- msgid "class"
125
- msgstr "classe"
126
-
127
- #: classes/fieldAdapter.php:186
128
- msgid "id"
129
- msgstr "id"
130
-
131
- #: classes/frame.php:135
132
- msgid "You have no permissions to view this page"
133
- msgstr "Não tem permissões para visualizar esta página"
134
-
135
- #: classes/html.php:207
136
- msgid "Upload"
137
- msgstr "Carregar"
138
-
139
- #: classes/html.php:611
140
- msgid "ON"
141
- msgstr "Ligado"
142
-
143
- #: classes/html.php:612
144
- msgid "OFF"
145
- msgstr "Desligado"
146
-
147
- #: classes/html.php:636
148
- #, php-format
149
- msgid "Select %s"
150
- msgstr "Seleccionar %s"
151
-
152
- #: classes/modInstaller.php:34
153
- #, php-format
154
- msgid "Move files for %s failed"
155
- msgstr "Mover ficheiros para %s falhou"
156
-
157
- #: classes/modInstaller.php:37
158
- #, php-format
159
- msgid "%s is not plugin module"
160
- msgstr "%s não é um plugin do módulo"
161
-
162
- #: classes/modInstaller.php:76
163
- msgid "Can not create module directory. Try to set permission to "
164
- msgstr ""
165
- "Impossibilidade de criar directoria do modulo. Tente alterar as permissões "
166
- "para"
167
-
168
- #: classes/modInstaller.php:103
169
- msgid "No modules were found in XML file"
170
- msgstr "Não foram encontrados módulos no ficheiro XML"
171
-
172
- #: classes/modInstaller.php:107
173
- msgid "Invalid XML file"
174
- msgstr "Ficheiro XML Inválido"
175
-
176
- #: classes/modInstaller.php:109
177
- msgid "No XML file were found"
178
- msgstr "Não foi encontrado o ficheiro XML"
179
-
180
- #: classes/modInstaller.php:128
181
- #, php-format
182
- msgid "Install %s failed"
183
- msgstr "A instalação de %s falhou"
184
-
185
- #: classes/modInstaller.php:134
186
- msgid "Error Activate module"
187
- msgstr "Erro Activar modulo"
188
-
189
- #: classes/modInstaller.php:164
190
- msgid "Error Deactivation module"
191
- msgstr "Erro Desactivar módulo"
192
-
193
- #: classes/modInstaller.php:185
194
- msgid "Error Activating module"
195
- msgstr "Erro ao Activar modulo"
196
-
197
- #: classes/model.php:174 classes/model.php:186
198
- msgid "Database error detected"
199
- msgstr "Erro detectado na base de dados"
200
-
201
- #: classes/model.php:176 modules/gmap/models/gmap.php:105
202
- #: modules/icons/models/icons.php:148
203
- #: modules/marker_groups/models/marker_groups.php:30
204
- msgid "Invalid ID"
205
- msgstr "ID Inválido"
206
-
207
- #: classes/model.php:209
208
- msgid "Empty or invalid ID"
209
- msgstr "ID vaziou ou inválido"
210
-
211
- #: classes/table.php:277
212
- msgid "Nothig to update"
213
- msgstr "Nada para actualizar"
214
-
215
- #: classes/table.php:293
216
- msgid "Database error. Please contact your developer."
217
- msgstr "Erro na base de dados. Por favor contacte o desenvolvedor."
218
-
219
- #: classes/tables/marker.php:7 classes/tables/marker_groups.php:8
220
- msgid "Map ID"
221
- msgstr "Mapa ID"
222
-
223
- #: classes/tables/marker.php:8 classes/tables/marker_groups.php:9
224
- msgid "File name"
225
- msgstr "Nome do ficheiro"
226
-
227
- #: classes/tables/marker.php:9 classes/tables/marker_groups.php:10
228
- msgid "Description Of Map"
229
- msgstr "Descrição do Mapa"
230
-
231
- #: classes/tables/marker.php:10
232
- msgid "X coordinate if marker(lng)"
233
- msgstr "Coordenadas X se estiver a utilizar um marcador"
234
-
235
- #: classes/tables/marker.php:11
236
- msgid "Y coordinate of marker(lat)"
237
- msgstr "Coordenadas Y se estiver a utilizar um marcador"
238
-
239
- #: classes/tables/marker.php:12
240
- msgid "Path of icon file"
241
- msgstr "Localização de ficheiro icon"
242
-
243
- #: classes/tables/marker.php:13
244
- msgid "Map Id"
245
- msgstr "Id Mapa"
246
-
247
- #: classes/tables/marker.php:14
248
- msgid "Marker Address"
249
- msgstr "Endereço de Marcador"
250
-
251
- #: classes/tables/marker.php:15
252
- msgid "Id of Marker's group"
253
- msgstr "Id de grupo de Marcadores"
254
-
255
- #: classes/tables/marker.php:16
256
- msgid "Animation"
257
- msgstr "Animação"
258
-
259
- #: classes/tables/marker.php:17 classes/tables/modules.php:10
260
- #: classes/tables/options.php:11
261
- msgid "Params"
262
- msgstr "Parâmetros"
263
-
264
- #: classes/tables/marker.php:18 classes/tables/options.php:15
265
- msgid "Sort Order"
266
- msgstr "Ordenação"
267
-
268
- #: classes/tables/marker.php:19
269
- msgid "Creation date"
270
- msgstr "Data de criação"
271
-
272
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8
273
- #: classes/tables/options.php:10
274
- msgid "Label"
275
- msgstr "Etiqueta"
276
-
277
- #: classes/tables/modules.php:8 classes/tables/options.php:13
278
- msgid "Type"
279
- msgstr "Tipo"
280
-
281
- #: classes/tables/modules.php:9
282
- msgid "Active"
283
- msgstr "Activo"
284
-
285
- #: classes/tables/modules.php:11
286
- msgid "Has Tab"
287
- msgstr "Tem Separador"
288
-
289
- #: classes/tables/modules.php:12 classes/tables/options.php:12
290
- msgid "Description"
291
- msgstr "Descrição"
292
-
293
- #: classes/tables/modules.php:13 classes/tables/options.php:8
294
- #: classes/tables/usage.php:9
295
- msgid "Code"
296
- msgstr "Código"
297
-
298
- #: classes/tables/modules.php:14
299
- msgid "External plugin directory"
300
- msgstr "Directoria externa de plugin"
301
-
302
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7
303
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:122
304
- msgid "ID"
305
- msgstr "ID"
306
-
307
- #: classes/tables/options.php:9
308
- msgid "Value"
309
- msgstr "Valor"
310
-
311
- #: classes/tables/options.php:14
312
- msgid "Category ID"
313
- msgstr "ID Categoria"
314
-
315
- #: classes/tables/options.php:16
316
- msgid "Value Type"
317
- msgstr "Tipo de Valor"
318
-
319
- #: classes/tables/options_categories.php:8
320
- msgid "Method"
321
- msgstr "Método"
322
-
323
- #: classes/tables/usage.php:8
324
- msgid "Usage id"
325
- msgstr "Utilização id"
326
-
327
- #: classes/tables/usage.php:10
328
- msgid "Visits Count"
329
- msgstr "Contagem visitas"
330
-
331
- #: classes/validator.php:30
332
- #, php-format
333
- msgid "Invalid length for %s, max length is %s"
334
- msgstr "Comprimento inválido em %s, o comprimento máximo é %s"
335
-
336
- #: classes/validator.php:43
337
- #, php-format
338
- msgid "Invalid numeric value for %s"
339
- msgstr "Valor numérico inválido em %s"
340
-
341
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
342
- #, php-format
343
- msgid "Please enter %s"
344
- msgstr "Por favor insira %s"
345
-
346
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
347
- #, php-format
348
- msgid "Please select %s"
349
- msgstr "Por favor seleccione %s"
350
-
351
- #: classes/validator.php:85 classes/validator.php:101
352
- #, php-format
353
- msgid "Invalid %s"
354
- msgstr "Inválido %s"
355
-
356
- #: classes/validator.php:88
357
- #, php-format
358
- msgid "%s is already registered"
359
- msgstr "%s já se encontra registado"
360
-
361
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
362
- msgid "Exit Full Screen"
363
- msgstr ""
364
-
365
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
366
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
367
- msgid "Open Full Screen"
368
- msgstr ""
369
-
370
- #: doc/google-maps-easy-pro/license/mod.php:28
371
- #, php-format
372
- msgid ""
373
- "Your license is expired. Once you extend your license - you will be able to "
374
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
375
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
376
- "click on 'Re-activate' button to re-activate your PRO version."
377
- msgstr ""
378
- "A sua licença expirou. Assim que renovar a sua licença - conseguirá "
379
- "actualizar para a versão PRO. Para renovar a sua licença para a versão PRO - "
380
- "visite \n"
381
- "<a href='%s' target='_blank'>este link</a>, e depois - vá até ao separador \n"
382
- "<a href='%s'>Licença</a> e carregue no botão 'Reactivar' para reactivar a "
383
- "sua versão PRO."
384
-
385
- #: doc/google-maps-easy-pro/license/mod.php:36
386
- #, php-format
387
- msgid ""
388
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
389
- "target='_blank'>click here</a> to extend your license, then - go to <a "
390
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
391
- "your PRO version."
392
- msgstr ""
393
- "A sua licença para a sua versão PRO do plugin %s - expirou. Pode \n"
394
- "<a href='%s' target='_blank'>carregar aqui</a> \n"
395
- "para renovar a sua licença, de seguida - vá até ao separador <a "
396
- "href='%s'>Licença</a> e carregue no botão 'Reactivar' para reactivar a sua "
397
- "versão PRO."
398
-
399
- #: doc/google-maps-easy-pro/license/mod.php:49
400
- msgid "License"
401
- msgstr "Licença"
402
-
403
- #: doc/google-maps-easy-pro/license/mod.php:72
404
- msgid "Activate License"
405
- msgstr ""
406
-
407
- #: doc/google-maps-easy-pro/license/mod.php:74
408
- msgid "Renew License"
409
- msgstr ""
410
-
411
- #: doc/google-maps-easy-pro/license/models/license.php:54
412
- msgid "Please enter your License Key"
413
- msgstr "Por favor insira a chave da sua Licença"
414
-
415
- #: doc/google-maps-easy-pro/license/models/license.php:56
416
- msgid "Please enter your Email address"
417
- msgstr "Por favor insira o seu Endereço de email"
418
-
419
- #: doc/google-maps-easy-pro/license/models/license.php:131
420
- msgid ""
421
- "There was a problem with sending request to our autentification server. "
422
- "Please try latter."
423
- msgstr ""
424
- "Ocorreu um erro ao enviar o pedido de autenticação ao nosso servidor. Por "
425
- "favor tente novamente mais tarde."
426
-
427
- #: doc/google-maps-easy-pro/license/models/license.php:154
428
- #, php-format
429
- msgid "License for plugin %s will expire today."
430
- msgstr "A licença para o plugin %s vai expirar hoje."
431
-
432
- #: doc/google-maps-easy-pro/license/models/license.php:156
433
- #, php-format
434
- msgid "License for plugin %s will expire tomorrow."
435
- msgstr "A licença para o plugin %s vai expirar amanhã."
436
-
437
- #: doc/google-maps-easy-pro/license/models/license.php:158
438
- #, php-format
439
- msgid "License for plugin %s will expire in %d days."
440
- msgstr "A licença para o plugin %s vai expirar dentro de %d dias."
441
-
442
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
443
- #, php-format
444
- msgid ""
445
- "Congratulations! PRO version of %s plugin is activated and working fine!"
446
- msgstr ""
447
-
448
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
449
- #, php-format
450
- msgid ""
451
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
452
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
453
- "activate' button to re-activate your PRO version."
454
- msgstr ""
455
- "A sua licença para a sua versão PRO do plugin %s - expirou. Pode \n"
456
- "<a href='%s' target='_blank'>carregar aqui</a> para renovar a sua licença, "
457
- "de seguida - carregue no botão 'Reactivar' para reactivar a sua versão PRO."
458
-
459
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
460
- #, php-format
461
- msgid ""
462
- "Congratulations! You have successfully installed PRO version of %s plugin. "
463
- "Final step to finish Your PRO version setup - is to enter your Email and "
464
- "License Key on this page. This will activate Your copy of software on this "
465
- "site."
466
- msgstr ""
467
-
468
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
469
- #: modules/supsystic_promo/mod.php:132
470
- msgid "Email"
471
- msgstr "Endereço de email"
472
-
473
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
474
- #, php-format
475
- msgid ""
476
- "Your email address, used on checkout procedure on <a href='%s' "
477
- "target='_blank'>%s</a>"
478
- msgstr ""
479
- "O seu endereço de email, utilizado no procedimento de checkout em\n"
480
- " <a href='%s' target='_blank'>%s</a>"
481
-
482
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
483
- msgid "License Key"
484
- msgstr "Chave da Licença"
485
-
486
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
487
- #, php-format
488
- msgid ""
489
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
490
- msgstr ""
491
- "A chave da Licença proveniente da sua conta em <a href='%s' target='_blank'>"
492
- "%s</a>"
493
-
494
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
495
- msgid "Re-activate"
496
- msgstr "Reactivar"
497
-
498
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
499
- msgid "Activate"
500
- msgstr "Activar"
501
-
502
- #: doc/google-maps-easy-pro/wpUpdater.php:68
503
- msgid ""
504
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
505
- "onclick='document.location.reload(); return false;'>Try again</a>"
506
- msgstr ""
507
- "Ocorreu um erro HTTP inexperado durante o pedido da API.\n"
508
- "</p> <p><a href='?' onclick='document.location.reload(); return "
509
- "false;'>Tentar Novamente\n"
510
- "</a>"
511
-
512
- #: doc/google-maps-easy-pro/wpUpdater.php:73
513
- msgid "An unknown error occurred"
514
- msgstr "Ocorreu um erro desconhecido"
515
-
516
- #: modules/adminmenu/controller.php:7
517
- msgid "Your name field is required."
518
- msgstr "O campo com o seu nome é necessário."
519
-
520
- #: modules/adminmenu/controller.php:8
521
- msgid "Your website field is required."
522
- msgstr "O campo com o seu endereço do seu website é necessário."
523
-
524
- #: modules/adminmenu/controller.php:9
525
- msgid "Your e-mail field is required."
526
- msgstr "O campo com o seu endereço de email é necessário."
527
-
528
- #: modules/adminmenu/controller.php:10
529
- msgid "Subject field is required."
530
- msgstr "O campo com o assunto é necessário."
531
-
532
- #: modules/adminmenu/controller.php:11
533
- msgid "You must select a valid category."
534
- msgstr "Deve seleccionar uma categoria válida."
535
-
536
- #: modules/adminmenu/controller.php:12
537
- msgid "Message field is required."
538
- msgstr "O campo de mensagem é necessário."
539
-
540
- #: modules/adminmenu/mod.php:12
541
- msgid "Settings"
542
- msgstr "Definições"
543
-
544
- #: modules/csv/controller.php:45
545
- #, php-format
546
- msgid "Maps from %s - %s"
547
- msgstr ""
548
-
549
- #: modules/csv/controller.php:48
550
- msgid "You have no maps for now."
551
- msgstr ""
552
-
553
- #: modules/csv/controller.php:87
554
- #, php-format
555
- msgid "Markers from %s"
556
- msgstr ""
557
-
558
- #: modules/csv/controller.php:90
559
- msgid "You have no markers for now."
560
- msgstr ""
561
-
562
- #: modules/csv/controller.php:124
563
- msgid "Missing File"
564
- msgstr "Ficheiro em Falta"
565
-
566
- #: modules/csv/controller.php:126
567
- #, php-format
568
- msgid "File uploaded with error code %s"
569
- msgstr "Ficheiro carregado com o código de erro %s"
570
-
571
- #: modules/csv/controller.php:208
572
- msgid ""
573
- "File should contain more then 1 row, at least 1 row should be for headers"
574
- msgstr ""
575
- "O ficheiro deve conter mais que 1 linha, ou conter pelo menos 1 linha para "
576
- "cabeçalhos"
577
-
578
- #: modules/csv/controller.php:210
579
- msgid "Empty data in file"
580
- msgstr "O ficheiro não contêm informação"
581
-
582
- #: modules/csv/mod.php:11
583
- msgid "Maps Import / Export"
584
- msgstr "Importar / Exportar Mapas"
585
-
586
- #: modules/csv/models/csv.php:133
587
- msgid "Can not detect import list type"
588
- msgstr "Não foi possível detectar o tipo de lista a ser importado"
589
-
590
- #: modules/csv/models/csv.php:135
591
- msgid "Can not find fields names"
592
- msgstr "Não foi possível encontrar os nomes dos campos"
593
-
594
- #: modules/csv/views/tpl/csvTabContent.php:9
595
- msgid "Maps"
596
- msgstr "Mapas"
597
-
598
- #: modules/csv/views/tpl/csvTabContent.php:14
599
- #: modules/csv/views/tpl/csvTabContent.php:35
600
- msgid "Export"
601
- msgstr "Exportar"
602
-
603
- #: modules/csv/views/tpl/csvTabContent.php:19
604
- #: modules/csv/views/tpl/csvTabContent.php:40
605
- msgid "Import"
606
- msgstr "Importar"
607
-
608
- #: modules/csv/views/tpl/csvTabContent.php:30 modules/gmap/views/gmap.php:125
609
- #: modules/gmap/views/tpl/gmapEditMap.php:17
610
- msgid "Markers"
611
- msgstr "Marcadores"
612
-
613
- #: modules/gmap/controller.php:23
614
- msgid "Map data not found"
615
- msgstr "Informação do mapa não encontrada"
616
-
617
- #: modules/gmap/mod.php:13
618
- msgid "Add Map"
619
- msgstr "Adicionar Mapa"
620
-
621
- #: modules/gmap/mod.php:16 modules/gmap/views/tpl/gmapEditMap.php:701
622
- #: modules/marker_groups/mod.php:14
623
- msgid "Edit"
624
- msgstr "Editar"
625
-
626
- #: modules/gmap/mod.php:19
627
- msgid "All Maps"
628
- msgstr "Todos os Mapas"
629
-
630
- #: modules/gmap/mod.php:29
631
- msgid "No Map Found"
632
- msgstr "Mapa Não Encontrado"
633
-
634
- #: modules/gmap/mod.php:39
635
- msgid "Empty or Invalid Map ID"
636
- msgstr "Id de Mapa inválido ou vazio"
637
-
638
- #: modules/gmap/mod.php:58
639
- msgid "Top Center"
640
- msgstr "Topo e Centro"
641
-
642
- #: modules/gmap/mod.php:59
643
- msgid "Top Left"
644
- msgstr "Topo e Esquerda"
645
-
646
- #: modules/gmap/mod.php:60
647
- msgid "Top Right"
648
- msgstr "Topo e Direita"
649
-
650
- #: modules/gmap/mod.php:61
651
- msgid "Left Top"
652
- msgstr "Superior Esquerdo"
653
-
654
- #: modules/gmap/mod.php:62
655
- msgid "Right Top"
656
- msgstr "Superior Direito"
657
-
658
- #: modules/gmap/mod.php:63
659
- msgid "Left Center"
660
- msgstr "Esquerda Centro"
661
-
662
- #: modules/gmap/mod.php:64
663
- msgid "Right Center"
664
- msgstr "Direita Centro"
665
-
666
- #: modules/gmap/mod.php:65
667
- msgid "Left Bottom"
668
- msgstr "Esquerda Inferior"
669
-
670
- #: modules/gmap/mod.php:66
671
- msgid "Right Bottom"
672
- msgstr "Direita Inferior"
673
-
674
- #: modules/gmap/mod.php:67
675
- msgid "Bottom Center"
676
- msgstr "Inferior Centro"
677
-
678
- #: modules/gmap/mod.php:68
679
- msgid "Bottom Left"
680
- msgstr "Inferior Esquerda"
681
-
682
- #: modules/gmap/mod.php:69
683
- msgid "Bottom Right"
684
- msgstr "Inferior Direita"
685
-
686
- #: modules/gmap/mod.php:92
687
- msgid "Slider"
688
- msgstr "Slider"
689
-
690
- #: modules/gmap/mod.php:93
691
- msgid "Slider - Title and Img"
692
- msgstr "Slider - Título e Imagem"
693
-
694
- #: modules/gmap/mod.php:94 modules/gmap/mod.php:96
695
- msgid "Slider Vertical - Title and Img"
696
- msgstr "Slider Vertical - Título e Imagem"
697
-
698
- #: modules/gmap/mod.php:95
699
- msgid "Slider Vertical - Title and Description"
700
- msgstr "Slider Vertical - Título e Descrição"
701
-
702
- #: modules/gmap/models/gmap.php:67
703
- msgid "Please enter Map Name"
704
- msgstr "Por favor insira o Nome do Mapa"
705
-
706
- #: modules/gmap/models/gmap.php:96
707
- #: modules/marker_groups/models/marker_groups.php:63
708
- msgid "Empty Params"
709
- msgstr "Parâmetros Vazios"
710
-
711
- #: modules/gmap/views/gmap.php:123
712
- msgid "Title"
713
- msgstr "Títulos"
714
-
715
- #: modules/gmap/views/gmap.php:124
716
- msgid "Html options"
717
- msgstr "Opções HTML"
718
-
719
- #: modules/gmap/views/gmap.php:126
720
- msgid "Operations"
721
- msgstr "Operações"
722
-
723
- #: modules/gmap/views/gmap.php:163 modules/gmap/views/gmap.php:169
724
- #: modules/gmap/views/tpl/gmapEditMap.php:104
725
- #: modules/gmap/views/tpl/gmapEditMap.php:132
726
- #: modules/gmap/views/tpl/gmapEditMap.php:214
727
- #: modules/gmap/views/tpl/gmapEditMap.php:370 modules/marker/mod.php:20
728
- msgid "None"
729
- msgstr "Nenhum"
730
-
731
- #: modules/gmap/views/tpl/gmapAdmin.php:5
732
- #: modules/gmap/views/tpl/gmapAdmin.php:8
733
- #: modules/marker_groups/views/tpl/mgrAdmin.php:9
734
- #: modules/marker_groups/views/tpl/mgrAdmin.php:12
735
- msgid "Delete selected"
736
- msgstr "Apagar Selecção"
737
-
738
- #: modules/gmap/views/tpl/gmapAdmin.php:11
739
- #: modules/marker_groups/views/tpl/mgrAdmin.php:15
740
- msgid "Clear All"
741
- msgstr "Limpar Tudo"
742
-
743
- #: modules/gmap/views/tpl/gmapAdmin.php:13
744
- #: modules/marker_groups/views/tpl/mgrAdmin.php:17
745
- msgid "Clear"
746
- msgstr "Limpar"
747
-
748
- #: modules/gmap/views/tpl/gmapAdmin.php:16
749
- #: modules/gmap/views/tpl/gmapAdmin.php:17
750
- #: modules/marker_groups/views/tpl/mgrAdmin.php:20
751
- #: modules/marker_groups/views/tpl/mgrAdmin.php:21
752
- msgid "Search"
753
- msgstr "Procurar"
754
-
755
- #: modules/gmap/views/tpl/gmapAdmin.php:26
756
- #, php-format
757
- msgid ""
758
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
759
- "a> your first Map!"
760
- msgstr ""
761
- "Não tem mapas criados até ao momento. \n"
762
- "<a href='%s' style='font-style: italic;'>Crie</a> o seu primeiro Mapa!"
763
-
764
- #: modules/gmap/views/tpl/gmapDrawMap.php:3
765
- msgid "Map not found"
766
- msgstr "Mapa não encontrado"
767
-
768
- #: modules/gmap/views/tpl/gmapEditMap.php:2
769
- #, php-format
770
- msgid ""
771
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
772
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
773
- msgstr ""
774
- "Esta opção apenas se encontra disponível na \n"
775
- "<a target='_blank' href='%s'>versão PRO</a>, pode obtê-la \n"
776
- "<a target='_blank' href='%s'>aqui.</a>"
777
-
778
- #: modules/gmap/views/tpl/gmapEditMap.php:13
779
- msgid "Map Properties"
780
- msgstr "Propriedades do Mapa"
781
-
782
- #: modules/gmap/views/tpl/gmapEditMap.php:20
783
- msgid "Add New Marker"
784
- msgstr "Adicionar Novo Marcador"
785
-
786
- #: modules/gmap/views/tpl/gmapEditMap.php:31
787
- msgid "Map Name"
788
- msgstr "Nome do Mapa"
789
-
790
- #: modules/gmap/views/tpl/gmapEditMap.php:33
791
- msgid "Your map name"
792
- msgstr "O nome do seu mapa"
793
-
794
- #: modules/gmap/views/tpl/gmapEditMap.php:45
795
- msgid "Map Width"
796
- msgstr "Largura do Mapa"
797
-
798
- #: modules/gmap/views/tpl/gmapEditMap.php:47
799
- msgid "Your map width"
800
- msgstr "A largura do seu mapa"
801
-
802
- #: modules/gmap/views/tpl/gmapEditMap.php:56
803
- #: modules/gmap/views/tpl/gmapEditMap.php:81
804
- msgid "Pixels"
805
- msgstr "Pixeis"
806
-
807
- #: modules/gmap/views/tpl/gmapEditMap.php:59
808
- #: modules/gmap/views/tpl/gmapEditMap.php:84
809
- msgid "Px"
810
- msgstr "Px"
811
-
812
- #: modules/gmap/views/tpl/gmapEditMap.php:63
813
- msgid "Percents"
814
- msgstr "Percentagem"
815
-
816
- #: modules/gmap/views/tpl/gmapEditMap.php:70
817
- msgid "Map Height"
818
- msgstr "Altura do Mapa"
819
-
820
- #: modules/gmap/views/tpl/gmapEditMap.php:72
821
- msgid "Your map height"
822
- msgstr "Altura do seu mapa"
823
-
824
- #: modules/gmap/views/tpl/gmapEditMap.php:97
825
- msgid "Map type control"
826
- msgstr "Controlos de tipo de Mapa"
827
-
828
- #: modules/gmap/views/tpl/gmapEditMap.php:99
829
- msgid ""
830
- "Control view for map type - you can see it in right upper corner by default"
831
- msgstr ""
832
- "Controlar vista para tipo de mapa - por defeito pode vê-lo no canto superior "
833
- "direito."
834
-
835
- #: modules/gmap/views/tpl/gmapEditMap.php:104
836
- msgid "Dropdown Menu"
837
- msgstr "Menu em Cascata"
838
-
839
- #: modules/gmap/views/tpl/gmapEditMap.php:104
840
- msgid "Horizontal Bar"
841
- msgstr "Barra Horizontal"
842
-
843
- #: modules/gmap/views/tpl/gmapEditMap.php:110
844
- msgid "Change type control position on map"
845
- msgstr "Alterar posição de tipo de controlo no mapa"
846
-
847
- #: modules/gmap/views/tpl/gmapEditMap.php:117
848
- #: modules/gmap/views/tpl/gmapEditMap.php:145
849
- #: modules/gmap/views/tpl/gmapEditMap.php:172
850
- #: modules/gmap/views/tpl/gmapEditMap.php:199
851
- #: modules/gmap/views/tpl/gmapEditMap.php:281
852
- #: modules/gmap/views/tpl/gmapEditMap.php:298
853
- #: modules/gmap/views/tpl/gmapEditMap.php:315
854
- #: modules/gmap/views/tpl/gmapEditMap.php:352
855
- #: modules/gmap/views/tpl/gmapEditMap.php:383
856
- #: modules/gmap/views/tpl/gmapEditMap.php:412
857
- msgid "PRO option"
858
- msgstr "Opção PRO"
859
-
860
- #: modules/gmap/views/tpl/gmapEditMap.php:125
861
- msgid "Zoom control"
862
- msgstr "Controlo de Zoom"
863
-
864
- #: modules/gmap/views/tpl/gmapEditMap.php:127
865
- msgid "Zoom control type on your map"
866
- msgstr "Tipo de controlo de Zoom no seu mapa"
867
-
868
- #: modules/gmap/views/tpl/gmapEditMap.php:132
869
- msgid "Default"
870
- msgstr "Pré-Definição"
871
-
872
- #: modules/gmap/views/tpl/gmapEditMap.php:132
873
- msgid "Large"
874
- msgstr "Grande"
875
-
876
- #: modules/gmap/views/tpl/gmapEditMap.php:132
877
- msgid "Small"
878
- msgstr "Pequeno"
879
-
880
- #: modules/gmap/views/tpl/gmapEditMap.php:138
881
- msgid "Change zoom control position on map"
882
- msgstr "Alterar posição do controlo de Zoom no mapa"
883
-
884
- #: modules/gmap/views/tpl/gmapEditMap.php:153
885
- msgid "Street view control"
886
- msgstr "Controlo do Street view"
887
-
888
- #: modules/gmap/views/tpl/gmapEditMap.php:155
889
- msgid "Street view control usually is located on left upper corner of your map"
890
- msgstr ""
891
- "O controlo de Street view normalmente encontra-se localizado na parte "
892
- "esquerda superior do seu mapa"
893
-
894
- #: modules/gmap/views/tpl/gmapEditMap.php:165
895
- msgid "Change street view control position on map"
896
- msgstr "Alterar posição do controlo de Street view no mapa"
897
-
898
- #: modules/gmap/views/tpl/gmapEditMap.php:180
899
- msgid "Pan control"
900
- msgstr "Controlo transladação"
901
-
902
- #: modules/gmap/views/tpl/gmapEditMap.php:182
903
- msgid ""
904
- "Pan control - allow you to pan over your map using mouse, usually is located "
905
- "on left upper corner of your map"
906
- msgstr ""
907
- "Controlo transladação - permitir a utilização do rato para transladar a "
908
- "posição do mapa, por defeito pode ser encontrado no canto superior esquerdo "
909
- "no seu mapa."
910
-
911
- #: modules/gmap/views/tpl/gmapEditMap.php:192
912
- msgid "Change pan control position on map"
913
- msgstr "Alterar posição do controlo de transladação no mapa"
914
-
915
- #: modules/gmap/views/tpl/gmapEditMap.php:207
916
- msgid "Overview control"
917
- msgstr "Controlo de visão geral"
918
-
919
- #: modules/gmap/views/tpl/gmapEditMap.php:209
920
- msgid ""
921
- "Overview control for your map, by default is disabled, and if enabled - is "
922
- "located on the right bottom corner"
923
- msgstr ""
924
- "O controlo de visão geral para o seu mapa, encontra-se por defeito "
925
- "desligado, e se for ligado - encontrar-se-á no canto inferior direito"
926
-
927
- #: modules/gmap/views/tpl/gmapEditMap.php:214
928
- msgid "Opened"
929
- msgstr "Aberto"
930
-
931
- #: modules/gmap/views/tpl/gmapEditMap.php:214
932
- msgid "Collapsed"
933
- msgstr "Colapsado"
934
-
935
- #: modules/gmap/views/tpl/gmapEditMap.php:223
936
- msgid "Draggable"
937
- msgstr "Arrastável"
938
-
939
- #: modules/gmap/views/tpl/gmapEditMap.php:225
940
- msgid "Enable or disable possibility to drag your map using mouse"
941
- msgstr "Ligar ou Desligar a possibilidade de arrastar o mapa utilizando o rato"
942
-
943
- #: modules/gmap/views/tpl/gmapEditMap.php:236
944
- msgid "Double click to zoom"
945
- msgstr "Duplo click para fazer zoom"
946
-
947
- #: modules/gmap/views/tpl/gmapEditMap.php:238
948
- msgid ""
949
- "By default double left click on map will zoom it in. But you can change this "
950
- "here."
951
- msgstr ""
952
- "Por defeito um duplo click no mapa irá fazer zoom no mesmo. Mas pode alterar "
953
- "isso aqui."
954
-
955
- #: modules/gmap/views/tpl/gmapEditMap.php:249
956
- msgid "Mouse wheel to zoom"
957
- msgstr "Roda do rato para fazer zoom"
958
-
959
- #: modules/gmap/views/tpl/gmapEditMap.php:251
960
- msgid ""
961
- "Sometimes you need to disable possibility to zoom your map using mouse "
962
- "wheel. This can be required for example - if you need to use your wheel for "
963
- "some other action, for example scroll your site even if mouse is over your "
964
- "map."
965
- msgstr ""
966
- "Por vezes pode ser necessário desligar a função de fazer zoom com a roda do "
967
- "rato. Esta opção pode ser necessária por exemplo - para utilizar a roda do "
968
- "rato para outra opção, como fazer scroll da página web mesmo se o rato "
969
- "estiver por cima do seu mapa."
970
-
971
- #: modules/gmap/views/tpl/gmapEditMap.php:262
972
- msgid "Google Map Theme"
973
- msgstr "Tema do Mapa Google"
974
-
975
- #: modules/gmap/views/tpl/gmapEditMap.php:264
976
- msgid ""
977
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
978
- "Terrain - here. By default your map will have Road Map Google maps theme."
979
- msgstr ""
980
- "Pode seleccionar aqui o tema do Seu Mapa Google - Mapa Estrada, Híbrido, "
981
- "Satélite ou Terreno - Aqui. Por defeito o seu mapa terá o tema Mapa Estrada "
982
- "activo."
983
-
984
- #: modules/gmap/views/tpl/gmapEditMap.php:268
985
- msgid "Road Map"
986
- msgstr "Mapa Estrada"
987
-
988
- #: modules/gmap/views/tpl/gmapEditMap.php:268
989
- msgid "Hybrid"
990
- msgstr "Híbrido "
991
-
992
- #: modules/gmap/views/tpl/gmapEditMap.php:268
993
- msgid "Satellite"
994
- msgstr "Satélite"
995
-
996
- #: modules/gmap/views/tpl/gmapEditMap.php:268
997
- msgid "Terrain"
998
- msgstr "Terreno"
999
-
1000
- #: modules/gmap/views/tpl/gmapEditMap.php:276
1001
- msgid "Traffic Layer"
1002
- msgstr "Camada de Tráfego"
1003
-
1004
- #: modules/gmap/views/tpl/gmapEditMap.php:278
1005
- msgid "Add real-time traffic information to your map."
1006
- msgstr "Adicionar informação de trânsito em tempo real ao seu mapa."
1007
-
1008
- #: modules/gmap/views/tpl/gmapEditMap.php:293
1009
- msgid "Transit Layer"
1010
- msgstr "Camada de Transportes"
1011
-
1012
- #: modules/gmap/views/tpl/gmapEditMap.php:295
1013
- msgid ""
1014
- "Display the public transit network of a city on your map. When the Transit "
1015
- "Layer is enabled, and the map is centered on a city that supports transit "
1016
- "information, the map will display major transit lines as thick, colored "
1017
- "lines."
1018
- msgstr ""
1019
- "Mostra a rede de transportes públicos de uma cidade no seu mapa. Quando a "
1020
- "camada de transportes se encontra ligada, e o mapa se encontra centrado em "
1021
- "uma cidade que suporte essa informação, será apresentado no mapa os "
1022
- "principais trajectos dos transportes públicos com linhas grossas coloridas."
1023
-
1024
- #: modules/gmap/views/tpl/gmapEditMap.php:310
1025
- msgid "Bicycling Layer"
1026
- msgstr "Camada de Ciclismo"
1027
-
1028
- #: modules/gmap/views/tpl/gmapEditMap.php:312
1029
- msgid ""
1030
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1031
- "to bicycling usage on top of the given map.Dark green routes indicated "
1032
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1033
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1034
- "for bicycle usage."
1035
- msgstr ""
1036
- "Adiciona uma camada com caminhos para ciclistas, as rotas sugeridas para "
1037
- "ciclistas e outras vias especificas para ciclistas em qualquer tipo de mapa. "
1038
- "Rotas Verde escuras indicam rotas dedicadas a bicicletas. Rotas Verde claras "
1039
- "indicam ruas com vias reservadas a ciclistas. Rotas tracejadas indicam ruas "
1040
- "ou caminhos recomendados para a utilização de bicicletas."
1041
-
1042
- #: modules/gmap/views/tpl/gmapEditMap.php:327
1043
- msgid "Map Stylization"
1044
- msgstr "Estilo do Mapa"
1045
-
1046
- #: modules/gmap/views/tpl/gmapEditMap.php:329
1047
- msgid ""
1048
- "Make your map unique with our Map Themes, just try to change it here - and "
1049
- "you will see results on your Map Preview."
1050
- msgstr ""
1051
- "Torne o seu mapa em algo único utilizando os nosso Temas de Mapa, "
1052
- "experimente altera-los aqui - e verá o resultado na sua Pré-visualização de "
1053
- "Mapa."
1054
-
1055
- #: modules/gmap/views/tpl/gmapEditMap.php:339
1056
- msgid "Get 300+ Themes with PRO"
1057
- msgstr "Obtenha mais de 300 Temas com serviço PRO"
1058
-
1059
- #: modules/gmap/views/tpl/gmapEditMap.php:347
1060
- msgid "Markers List"
1061
- msgstr "Lista de Marcadores"
1062
-
1063
- #: modules/gmap/views/tpl/gmapEditMap.php:349
1064
- msgid ""
1065
- "Display all map markers - as list bellow Your map. This will help your users "
1066
- "get more info about your markers and find required marker more faster."
1067
- msgstr ""
1068
- "Mostrar todos os marcadores do mapa - como mostrado a baixo no seu mapa. "
1069
- "Isto irá ajudar os seus utilizadores a obter mais informação sobre os seus "
1070
- "marcadores e encontrar o marcador pretendido mais rapidamente."
1071
-
1072
- #: modules/gmap/views/tpl/gmapEditMap.php:356
1073
- msgid "Select Markers List type"
1074
- msgstr "Seleccionar apresentação da lista de Marcadores"
1075
-
1076
- #: modules/gmap/views/tpl/gmapEditMap.php:364
1077
- msgid "Markers Clusterization"
1078
- msgstr "Aglomeração de Marcadores"
1079
-
1080
- #: modules/gmap/views/tpl/gmapEditMap.php:366
1081
- msgid ""
1082
- "If you have many markers - you can have a problems with viewing them when "
1083
- "zoom out for example: they will just cover each-other. Marker clusterization "
1084
- "can solve this problem by grouping your markers in groups when they are too "
1085
- "close to each-other."
1086
- msgstr ""
1087
- "Se tem muitos marcadores - pode ter problemas em visualiza-los todos quando "
1088
- "faz zoom out, por exemplo: podem se sobrepor uns aos outros. A aglomeração "
1089
- "de marcadores resolve esse problema agrupando os seus marcadores em grupos "
1090
- "quando estão próximos uns dos outros."
1091
-
1092
- #: modules/gmap/views/tpl/gmapEditMap.php:370
1093
- msgid "Base Clusterization"
1094
- msgstr "Aglomeração Base"
1095
-
1096
- #: modules/gmap/views/tpl/gmapEditMap.php:378
1097
- msgid "Full Screen Button"
1098
- msgstr ""
1099
-
1100
- #: modules/gmap/views/tpl/gmapEditMap.php:380
1101
- msgid "Add a button on map to open it full screen."
1102
- msgstr ""
1103
-
1104
- #: modules/gmap/views/tpl/gmapEditMap.php:395
1105
- msgid "Marker Title color"
1106
- msgstr ""
1107
-
1108
- #: modules/gmap/views/tpl/gmapEditMap.php:397
1109
- msgid "You can set your markers title color here"
1110
- msgstr ""
1111
-
1112
- #: modules/gmap/views/tpl/gmapEditMap.php:407
1113
- msgid "Custom Map Controls"
1114
- msgstr ""
1115
-
1116
- #: modules/gmap/views/tpl/gmapEditMap.php:409
1117
- msgid "Add custom map controls to the map."
1118
- msgstr ""
1119
-
1120
- #: modules/gmap/views/tpl/gmapEditMap.php:422
1121
- msgid "Controls type"
1122
- msgstr ""
1123
-
1124
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1125
- msgid "Round"
1126
- msgstr ""
1127
-
1128
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1129
- msgid "Square"
1130
- msgstr ""
1131
-
1132
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1133
- msgid "Square with rounded edges"
1134
- msgstr ""
1135
-
1136
- #: modules/gmap/views/tpl/gmapEditMap.php:431
1137
- msgid "Background color"
1138
- msgstr ""
1139
-
1140
- #: modules/gmap/views/tpl/gmapEditMap.php:438
1141
- msgid "Text color"
1142
- msgstr ""
1143
-
1144
- #: modules/gmap/views/tpl/gmapEditMap.php:445
1145
- msgid "Controls position"
1146
- msgstr ""
1147
-
1148
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1149
- msgid "Marker Name"
1150
- msgstr "Nome do Marcador"
1151
-
1152
- #: modules/gmap/views/tpl/gmapEditMap.php:474
1153
- msgid "Your marker title"
1154
- msgstr "O título do seu marcador"
1155
-
1156
- #: modules/gmap/views/tpl/gmapEditMap.php:485
1157
- msgid "Marker Description"
1158
- msgstr "Descrição do Marcador"
1159
-
1160
- #: modules/gmap/views/tpl/gmapEditMap.php:487
1161
- msgid ""
1162
- "Write here all text, that you want to appear in marker info-window PopUp"
1163
- msgstr ""
1164
- "Escreva aqui todo o texto que pretende que apareça na janela de informação "
1165
- "do seu marcador"
1166
-
1167
- #: modules/gmap/views/tpl/gmapEditMap.php:503
1168
- msgid "Icon"
1169
- msgstr "Icon"
1170
-
1171
- #: modules/gmap/views/tpl/gmapEditMap.php:505
1172
- msgid "Your marker Icon, that will appear on your map for this marker"
1173
- msgstr "O Icon utilizado para identificar o seu marcador"
1174
-
1175
- #: modules/gmap/views/tpl/gmapEditMap.php:512
1176
- msgid "Choose Icon"
1177
- msgstr "Escolher Icon"
1178
-
1179
- #: modules/gmap/views/tpl/gmapEditMap.php:513
1180
- msgid "Upload Icon"
1181
- msgstr ""
1182
-
1183
- #: modules/gmap/views/tpl/gmapEditMap.php:525
1184
- msgid "Search your location by address, just start typing here"
1185
- msgstr "Procurar a sua localização por endereço, comece a escrever aqui"
1186
-
1187
- #: modules/gmap/views/tpl/gmapEditMap.php:537
1188
- msgid "Latitude"
1189
- msgstr "Latitude"
1190
-
1191
- #: modules/gmap/views/tpl/gmapEditMap.php:539
1192
- msgid "Latitude for your marker"
1193
- msgstr "Latitude para o seu marcador"
1194
-
1195
- #: modules/gmap/views/tpl/gmapEditMap.php:551
1196
- msgid "Longitude"
1197
- msgstr "Longitude"
1198
-
1199
- #: modules/gmap/views/tpl/gmapEditMap.php:553
1200
- msgid "Longitude for your marker"
1201
- msgstr "Longitude para o seu marcador"
1202
-
1203
- #: modules/gmap/views/tpl/gmapEditMap.php:565
1204
- msgid "Show description by default"
1205
- msgstr ""
1206
-
1207
- #: modules/gmap/views/tpl/gmapEditMap.php:567
1208
- msgid "Open marker description when map load"
1209
- msgstr ""
1210
-
1211
- #: modules/gmap/views/tpl/gmapEditMap.php:577
1212
- msgid "Marker Link"
1213
- msgstr ""
1214
-
1215
- #: modules/gmap/views/tpl/gmapEditMap.php:579
1216
- msgid "Link for opening by click on the marker"
1217
- msgstr ""
1218
-
1219
- #: modules/gmap/views/tpl/gmapEditMap.php:594
1220
- msgid "Open in new window"
1221
- msgstr ""
1222
-
1223
- #: modules/gmap/views/tpl/gmapEditMap.php:602
1224
- msgid "Show description by mouse hover"
1225
- msgstr ""
1226
-
1227
- #: modules/gmap/views/tpl/gmapEditMap.php:604
1228
- msgid "Open marker description by mouse hover"
1229
- msgstr ""
1230
-
1231
- #: modules/gmap/views/tpl/gmapEditMap.php:614
1232
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:10
1233
- msgid "Marker Category"
1234
- msgstr ""
1235
-
1236
- #: modules/gmap/views/tpl/gmapEditMap.php:616
1237
- msgid "Choose marker category"
1238
- msgstr ""
1239
-
1240
- #: modules/gmap/views/tpl/gmapEditMap.php:643
1241
- msgid "Map shortcode"
1242
- msgstr "Shortcode do Mapa"
1243
-
1244
- #: modules/gmap/views/tpl/gmapEditMap.php:648
1245
- msgid "PHP code"
1246
- msgstr "Código PHP"
1247
-
1248
- #: modules/gmap/views/tpl/gmapEditMap.php:654
1249
- msgid "Shortcode will appear after you save map."
1250
- msgstr "O shortcode será apresentado após guardar o seu mapa."
1251
-
1252
- #: modules/gmap/views/tpl/gmapEditMap.php:662
1253
- msgid "Save Map"
1254
- msgstr "Guardar Mapa"
1255
-
1256
- #: modules/gmap/views/tpl/gmapEditMap.php:668
1257
- msgid "Delete Map"
1258
- msgstr "Apagar Mapa"
1259
-
1260
- #: modules/gmap/views/tpl/gmapEditMap.php:677
1261
- msgid "Save Marker"
1262
- msgstr "Guardar Marcador"
1263
-
1264
- #: modules/gmap/views/tpl/gmapEditMap.php:683
1265
- msgid "Delete Marker"
1266
- msgstr "Apagar Marcador"
1267
-
1268
- #: modules/gmap/views/tpl/gmapEditMap.php:704
1269
- msgid "Delete"
1270
- msgstr "Apagar"
1271
-
1272
- #: modules/gmap/views/tpl/gmapEditMap.php:731
1273
- msgid "Show markers list with your map on frontend"
1274
- msgstr "Mostrar lista de marcadores encontrados no seu mapa no website"
1275
-
1276
- #: modules/gmap/views/tpl/gmapEditMap.php:738
1277
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1278
- msgid "Apply"
1279
- msgstr "APlicar"
1280
-
1281
- #: modules/gmap/views/tpl/gmapEditMap.php:738
1282
- msgid "Selected"
1283
- msgstr "Seleccionado "
1284
-
1285
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1286
- msgid "Available in PRO"
1287
- msgstr "Disponível no PRO"
1288
-
1289
- #: modules/gmap/views/tpl/gmapListMarkers.php:20
1290
- #, php-format
1291
- msgid "and %s more"
1292
- msgstr "e mais %s"
1293
-
1294
- #: modules/gmap_widget/mod.php:18
1295
- msgid "Displays Most Viewed Products"
1296
- msgstr "Mostra os Produtos Mais Visualizados"
1297
-
1298
- #: modules/gmap_widget/views/gmap_widget.php:15
1299
- msgid "You have no maps"
1300
- msgstr "Você não tem mapas"
1301
-
1302
- #: modules/gmap_widget/views/tpl/form.php:10
1303
- msgid "Select map"
1304
- msgstr "Seleccionar mapa"
1305
-
1306
- #: modules/gmap_widget/views/tpl/form.php:18
1307
- msgid "Widget Map width"
1308
- msgstr "Largura do Widget do Mapa"
1309
-
1310
- #: modules/gmap_widget/views/tpl/form.php:25
1311
- msgid "Widget Map height"
1312
- msgstr "Altura do Widget do Mapa"
1313
-
1314
- #: modules/gmap_widget/views/tpl/form.php:32
1315
- msgid "Display as image"
1316
- msgstr "Mostrar como imagem"
1317
-
1318
- #: modules/gmap_widget/views/tpl/form.php:40
1319
- msgid ""
1320
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1321
- msgstr ""
1322
- "O mapa será mostrado como uma imagem na barra lateral, ao clickar - será "
1323
- "aberto uma nova janela"
1324
-
1325
- #: modules/gmap_widget/views/tpl/form.php:42
1326
- msgid "Image width (in px)"
1327
- msgstr "Largura da imagem (em px)"
1328
-
1329
- #: modules/gmap_widget/views/tpl/form.php:49
1330
- msgid "Image height (in px)"
1331
- msgstr "Altura da imagem (em px)"
1332
-
1333
- #: modules/icons/controller.php:20
1334
- msgid "Empty url"
1335
- msgstr "Url vazio"
1336
-
1337
- #: modules/icons/models/icons.php:43
1338
- msgid "Icon no found"
1339
- msgstr "Icon não encontrado"
1340
-
1341
- #: modules/icons/models/icons.php:95
1342
- msgid "File not found"
1343
- msgstr "Ficheiro não encontrado"
1344
-
1345
- #: modules/icons/models/icons.php:100
1346
- msgid "Cannot get image"
1347
- msgstr "Impossibilidade de obter imagem"
1348
-
1349
- #: modules/icons/models/icons.php:111
1350
- msgid "cannot insert to table"
1351
- msgstr "impossibilidade de inserir na tablea"
1352
-
1353
- #: modules/mail/mod.php:33
1354
- msgid "Can not send email - problem with send server"
1355
- msgstr "Impossibilidade de enviar email - problema no servidor de envio"
1356
-
1357
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
1358
- msgid "Marker Not Found"
1359
- msgstr "Marcador Não Encontrado"
1360
-
1361
- #: modules/marker/controller.php:48
1362
- msgid "Cannot remove marker"
1363
- msgstr "Impossibilidade de remover marcador"
1364
-
1365
- #: modules/marker/controller.php:63
1366
- msgid "Cannot remove markers"
1367
- msgstr "Impossibilidade de remover marcadores"
1368
-
1369
- #: modules/marker/controller.php:144
1370
- msgid "Empty or invalid marker ID"
1371
- msgstr "ID marcador inválido ou vazio"
1372
-
1373
- #: modules/marker/mod.php:21
1374
- msgid "Drop"
1375
- msgstr "Largar"
1376
-
1377
- #: modules/marker/mod.php:22
1378
- msgid "Bounce"
1379
- msgstr "Pular"
1380
-
1381
- #: modules/marker/models/marker.php:49
1382
- msgid "Please enter marker name"
1383
- msgstr "Por favor insira o nome do marcador"
1384
-
1385
- #: modules/marker/models/marker.php:192
1386
- msgid "Address is empty or not match"
1387
- msgstr ""
1388
- "O endereço encontra-se vazio ou não foi encontrada nenhuma correspondência "
1389
-
1390
- #: modules/marker/models/marker.php:248
1391
- msgid "Invalid Marker ID"
1392
- msgstr "ID do Marcador Inválido"
1393
-
1394
- #: modules/marker_groups/controller.php:31
1395
- msgid "Marker Category data not found"
1396
- msgstr ""
1397
-
1398
- #: modules/marker_groups/mod.php:8
1399
- msgid "Marker Categories"
1400
- msgstr ""
1401
-
1402
- #: modules/marker_groups/mod.php:11
1403
- msgid "Add New"
1404
- msgstr "Adicionar Novo"
1405
-
1406
- #: modules/marker_groups/mod.php:24
1407
- msgid "No Marker Category Found"
1408
- msgstr ""
1409
-
1410
- #: modules/marker_groups/models/marker_groups.php:39
1411
- msgid "Please enter Marker Category"
1412
- msgstr ""
1413
-
1414
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5
1415
- msgid "Add Category"
1416
- msgstr ""
1417
-
1418
- #: modules/marker_groups/views/tpl/mgrAdmin.php:30
1419
- #, php-format
1420
- msgid ""
1421
- "You have no Marker Categories for now. <a href='%s' style='font-style: "
1422
- "italic;'>Create</a> your first Marker Category!"
1423
- msgstr ""
1424
-
1425
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:20
1426
- msgid "Save"
1427
- msgstr "Guardar"
1428
-
1429
- #: modules/options/mod.php:84
1430
- msgid "General"
1431
- msgstr "Geral"
1432
-
1433
- #: modules/options/mod.php:86
1434
- msgid "Send usage statistics"
1435
- msgstr "Enviar estatísticas de utilização"
1436
-
1437
- #: modules/options/models/modules.php:32
1438
- msgid "Module Updated"
1439
- msgstr "Módulo Actualizado"
1440
-
1441
- #: modules/options/models/modules.php:47
1442
- msgid "Module Update Failed"
1443
- msgstr "A Actualização do Módulo Falhou"
1444
-
1445
- #: modules/options/models/modules.php:50
1446
- msgid "Error module ID"
1447
- msgstr "Erro no ID do módulo"
1448
-
1449
- #: modules/options/models/options.php:63
1450
- msgid "Empty data to save option"
1451
- msgstr "Apagar informação para guardar opção"
1452
-
1453
- #: modules/options/views/tpl/optionsAdminMain.php:18
1454
- msgid "Main page Go here!!!!"
1455
- msgstr "Página Principal acesse aqui!!!!"
1456
-
1457
- #: modules/options/views/tpl/optionsAdminPage.php:31
1458
- msgid "Improve Free version"
1459
- msgstr "Melhorar versão grátis"
1460
-
1461
- #: modules/options/views/tpl/optionsAdminPage.php:33
1462
- #, php-format
1463
- msgid ""
1464
- "Please be advised that this option is available only in <a target='_blank' "
1465
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1466
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1467
- "PopUps!"
1468
- msgstr ""
1469
- "Por favor tenha em atenção que esta opção apenas se encontra disponível na "
1470
- "<a target='_blank' href='%s'>versão PRO</a>. Pode <a target='_blank' "
1471
- "href='%s' class='button'>obter a versão PRO</a> hoje e obter esta e outras "
1472
- "opções PRO para os seus PopUps!"
1473
-
1474
- #: modules/supsystic_promo/controller.php:7
1475
- msgid "Information was saved. Thank you!"
1476
- msgstr "A informações foi guardada. Obrigado!"
1477
-
1478
- #: modules/supsystic_promo/controller.php:23
1479
- msgid ""
1480
- "Please don't send contact requests so often - wait for response for your "
1481
- "previous requests."
1482
- msgstr ""
1483
- "Por favor não envie pedidos de contacto tão frequentemente - aguarde pela "
1484
- "resposta dos seus pedidos anteriores."
1485
-
1486
- #: modules/supsystic_promo/controller.php:45
1487
- msgid "Please enter valid email address"
1488
- msgstr "Por favor insira um endereço de email válido"
1489
-
1490
- #: modules/supsystic_promo/mod.php:24
1491
- msgid "Overview"
1492
- msgstr "Visão geral"
1493
-
1494
- #: modules/supsystic_promo/mod.php:50
1495
- msgid "Welcome to Supsystic Secure"
1496
- msgstr ""
1497
- "Bem vindo ao \n"
1498
- "Supsystic Secure"
1499
-
1500
- #: modules/supsystic_promo/mod.php:131
1501
- msgid "Name"
1502
- msgstr "Nome"
1503
-
1504
- #: modules/supsystic_promo/mod.php:133
1505
- msgid "Website"
1506
- msgstr "Website"
1507
-
1508
- #: modules/supsystic_promo/mod.php:134
1509
- msgid "Subject"
1510
- msgstr "Assunto"
1511
-
1512
- #: modules/supsystic_promo/mod.php:135
1513
- msgid "Topic"
1514
- msgstr "Tópico"
1515
-
1516
- #: modules/supsystic_promo/mod.php:136
1517
- msgid "Plugin options"
1518
- msgstr "Opções de Plugin"
1519
-
1520
- #: modules/supsystic_promo/mod.php:137
1521
- msgid "Report a bug"
1522
- msgstr "Reportar um bug"
1523
-
1524
- #: modules/supsystic_promo/mod.php:138
1525
- msgid "Require a new functionallity"
1526
- msgstr "Pedir nova funcionalidade"
1527
-
1528
- #: modules/supsystic_promo/mod.php:139
1529
- msgid "Other"
1530
- msgstr "Outro"
1531
-
1532
- #: modules/supsystic_promo/mod.php:141
1533
- msgid "Message"
1534
- msgstr "Mensagem"
1535
-
1536
- #: modules/supsystic_promo/mod.php:141
1537
- msgid "Hello Supsystic Team!"
1538
- msgstr "Olá Equipa Supsystic!"
1539
-
1540
- #: modules/supsystic_promo/views/supsystic_promo.php:30
1541
- msgid "How to use Google Maps Easy Widget?"
1542
- msgstr ""
1543
-
1544
- #: modules/supsystic_promo/views/supsystic_promo.php:31
1545
- msgid ""
1546
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
1547
- "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
1548
- "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
1549
- "map for widget and configure the settings - Widget Map width and height.<br /"
1550
- ">5. Click 'Save'."
1551
- msgstr ""
1552
-
1553
- #: modules/supsystic_promo/views/supsystic_promo.php:32
1554
- msgid "How to add map into the site content?"
1555
- msgstr ""
1556
-
1557
- #: modules/supsystic_promo/views/supsystic_promo.php:33
1558
- msgid ""
1559
- "You can add a map in the site content via shortcode or php code. Learn more "
1560
- "about how to do this <a href='http://supsystic.com/add-map-into-site-"
1561
- "content/'>here</a>."
1562
- msgstr ""
1563
-
1564
- #: modules/supsystic_promo/views/supsystic_promo.php:34
1565
- msgid "How to add map in popup window?"
1566
- msgstr ""
1567
-
1568
- #: modules/supsystic_promo/views/supsystic_promo.php:35
1569
- msgid ""
1570
- "You can add a map in popup window by inserting map shortcode in any popup "
1571
- "text field. Learn more about how to do this <a href='http://supsystic.com/"
1572
- "add-map-in-popup-window/'>here</a>."
1573
- msgstr ""
1574
-
1575
- #: modules/supsystic_promo/views/supsystic_promo.php:36
1576
- msgid "How to zoom and center the initial map on markers ?"
1577
- msgstr ""
1578
-
1579
- #: modules/supsystic_promo/views/supsystic_promo.php:37
1580
- msgid ""
1581
- "There is a few different ways to zoom and centralize map. The easiest one is "
1582
- "to drag your map using mouse - 'Draggable' option must be enabled, or with "
1583
- "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
1584
- "zoom-and-center-the-initial-map-on-markers/'>Read more..</a>"
1585
- msgstr ""
1586
-
1587
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1588
- msgid "How to get PRO version of plugin for FREE?"
1589
- msgstr "Como conseguir a versão PRO do plugin de GRAÇA?"
1590
-
1591
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1592
- #, php-format
1593
- msgid ""
1594
- "You have an incredible opportunity to get PRO version for free. Make "
1595
- "Translation of plugin! It will be amazing if you take advantage of this "
1596
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
1597
- "version of any plugin for FREE'</a>"
1598
- msgstr ""
1599
- "Tem uma oportunidade incrivel de obter a versão PRO de graça. Faça a "
1600
- "tradução do plugin! Será fantástico se aproveitar esta oportunidade! Pode "
1601
- "encontrar mais informações aqui \n"
1602
- "<a target='_blank' href='%s'>'Obter versão PRO de qualquer plugin de GRAÇA'</"
1603
- "a>"
1604
-
1605
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1606
- msgid "Translation"
1607
- msgstr "Tradução"
1608
-
1609
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1610
- #, php-format
1611
- msgid ""
1612
- "All available languages are provided with the Supsystic Google Maps plugin. "
1613
- "If your language isn't available, your plugin will be in English by default."
1614
- "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
1615
- "b><br />Translate or update a translation Google Maps WordPress plugin in "
1616
- "your language and get a Premium license for FREE. <a target='_blank' "
1617
- "href='%s'>Contact us</a>."
1618
- msgstr ""
1619
-
1620
- #: modules/supsystic_promo/views/supsystic_promo.php:55
1621
- #, php-format
1622
- msgid ""
1623
- "There were some problem while trying to retrive our news, but you can always "
1624
- "check all list <a target='_blank' href='%s'>here</a>."
1625
- msgstr ""
1626
- "Existiu um problema ao tentar receber a actualização de noticias, pode "
1627
- "sempre verificar a lista de noticias \n"
1628
- "<a target='_blank' href='%s'>aqui</a>."
1629
-
1630
- #: modules/supsystic_promo/views/supsystic_promo.php:65
1631
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1632
- #: modules/supsystic_promo/views/supsystic_promo.php:71
1633
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1634
- #: modules/supsystic_promo/views/supsystic_promo.php:74
1635
- msgid "Yes"
1636
- msgstr "Sim"
1637
-
1638
- #: modules/supsystic_promo/views/supsystic_promo.php:65
1639
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1640
- #: modules/supsystic_promo/views/supsystic_promo.php:71
1641
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1642
- #: modules/supsystic_promo/views/supsystic_promo.php:74
1643
- msgid "No"
1644
- msgstr "Não"
1645
-
1646
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
1647
- #: modules/supsystic_promo/views/tpl/welcomePage.php:78
1648
- msgid "Version"
1649
- msgstr "Versão"
1650
-
1651
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1652
- msgid "Go"
1653
- msgstr "Ir"
1654
-
1655
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1656
- msgid "PRO"
1657
- msgstr "PRO"
1658
-
1659
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
1660
- msgid "Support"
1661
- msgstr "Suporte"
1662
-
1663
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
1664
- msgid "Add your"
1665
- msgstr "Adicionar o seu"
1666
-
1667
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1668
- msgid "FAQ and Documentation"
1669
- msgstr "FAQ e Documentação"
1670
-
1671
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1672
- msgid "Check all FAQs"
1673
- msgstr "Verificar todas as FAQs"
1674
-
1675
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1676
- #: modules/supsystic_promo/views/tpl/welcomePage.php:102
1677
- msgid "Video tutorial"
1678
- msgstr "Tutorial em video"
1679
-
1680
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1681
- msgid "PRO Features"
1682
- msgstr ""
1683
-
1684
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
1685
- msgid "Server Settings"
1686
- msgstr "Definições do servidor"
1687
-
1688
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
1689
- msgid "News"
1690
- msgstr "Noticias"
1691
-
1692
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
1693
- msgid "All news and info"
1694
- msgstr "Todas as noticias e informações"
1695
-
1696
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
1697
- msgid "Contact form"
1698
- msgstr "Formulário de contacto"
1699
-
1700
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1701
- msgid "Send email"
1702
- msgstr "Enviar Email"
1703
-
1704
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
1705
- msgid ""
1706
- "Your email was send, we will try to respond to you as soon as possible. "
1707
- "Thank you for support!"
1708
- msgstr ""
1709
- "O seu email foi enviado, tentaremos responder o mais rapidamente possível. "
1710
- "Obrigado pelo seu apoio!"
1711
-
1712
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
1713
- msgid "Welcome to"
1714
- msgstr "Bem-Vindo ao"
1715
-
1716
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
1717
- #, php-format
1718
- msgid "This is first start up of the %s plugin."
1719
- msgstr "Este é o primeiro arranque do %s plugin"
1720
-
1721
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
1722
- msgid ""
1723
- "If you are newbie - check all features on that page, if you are guru - "
1724
- "please correct us."
1725
- msgstr ""
1726
- "Se é um iniciante - verifique todas as características na página, se for um "
1727
- "entendido na matéria - por favor corrija-nos."
1728
-
1729
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
1730
- msgid "Please, post url"
1731
- msgstr "Por favor, insira o url"
1732
-
1733
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
1734
- msgid "What to do next? Check below section"
1735
- msgstr "O que fazer a seguir? Verifique a secção a baixo"
1736
-
1737
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
1738
- msgid "Boost us"
1739
- msgstr "Impulsionar-nos"
1740
-
1741
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
1742
- #, php-format
1743
- msgid ""
1744
- "It's amazing when you boost development with your feedback and ratings. So "
1745
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
1746
- "help us."
1747
- msgstr ""
1748
- "É incrível quando o desenvolvimento é impulsionado pelo feedback e "
1749
- "pontuações. Criámos então uma \n"
1750
- "<a target='_blank' href='%s'>página de impulsão</a> para ajudá-lo a ajudar-"
1751
- "nos."
1752
-
1753
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
1754
- msgid "Documentation"
1755
- msgstr "Documentação"
1756
-
1757
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
1758
- #, php-format
1759
- msgid ""
1760
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
1761
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
1762
- msgstr ""
1763
- "Verifique a \n"
1764
- "<a target='_blank' href='%s'>documetação</a> e a secção FAQ. Se não "
1765
- "conseguir resolver os seus problemas - \n"
1766
- "<a target='_blank' href='%s'>contacte-nos</a>."
1767
-
1768
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
1769
- msgid "Full Features List"
1770
- msgstr "Lista Completa de Características"
1771
-
1772
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
1773
- msgid "There are so many features, so we can't post it here. Like"
1774
- msgstr "Existem tantas características, que não podemos por todas aqui. Goste"
1775
-
1776
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
1777
- msgid "Capcha for admin login"
1778
- msgstr "Captcha para login de admin"
1779
-
1780
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
1781
- msgid "htaccess admin protect"
1782
- msgstr "proteger htaccess de admin"
1783
-
1784
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
1785
- msgid "Hide directory files listing"
1786
- msgstr "Esconder listagem de directório de ficheiros"
1787
-
1788
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
1789
- msgid "Check files and directories write permissions"
1790
- msgstr "Verifique as permissões dos ficheiros e das directorias"
1791
-
1792
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
1793
- #, php-format
1794
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
1795
- msgstr ""
1796
- "Então verifique a lista completa das características <a target='_blank' "
1797
- "href='%s'>aqui</a>."
1798
-
1799
- #~ msgid ""
1800
- #~ "Congradulations! PRO version of %s plugin is activated and working fine!"
1801
- #~ msgstr ""
1802
- #~ "Parabéns! A versão PRO do plugin %s encontra-se activada e a funcionar "
1803
- #~ "correctamente!"
1804
-
1805
- #~ msgid ""
1806
- #~ "Congradulations! You have successfully installed PRO version of %s "
1807
- #~ "plugin. Final step to finish Your PRO version setup - is to enter your "
1808
- #~ "Email and License Key on this page. This will activate Your copy of "
1809
- #~ "software on this site."
1810
- #~ msgstr ""
1811
- #~ "Parabéns! Instalou com sucesso a versão PRO do plugin %s. O passo final "
1812
- #~ "para configurar a sua versão PRO - é inserir o seu Endereço de email e a "
1813
- #~ "chave da sua Licença nesta página. Esta acção irá activar o software "
1814
- #~ "neste website."
1815
-
1816
- #~ msgid "Icon ID"
1817
- #~ msgstr "ID do Icon"
1818
-
1819
- #~ msgid "Icon Title"
1820
- #~ msgstr "Título do Icon"
1821
-
1822
- #~ msgid "Icon Description"
1823
- #~ msgstr "Descrição do Icon"
1824
-
1825
- #~ msgid "File Path"
1826
- #~ msgstr "Localização do Ficheiro"
1827
-
1828
- #~ msgid "Html Parametrs"
1829
- #~ msgstr "Parâmetros HTML"
1830
-
1831
- #~ msgid "Create Date"
1832
- #~ msgstr "Criar Data"
1833
-
1834
- #~ msgid "Additional Params"
1835
- #~ msgstr "Parâmetros Adicionais"
1836
-
1837
- #~ msgid "Marker"
1838
- #~ msgstr "Marcador"
1839
-
1840
- #~ msgid "Added %s maps"
1841
- #~ msgstr "Adicionar %s mapas"
1842
-
1843
- #~ msgid "Updated %s maps"
1844
- #~ msgstr "Actualizados %s mapas"
1845
-
1846
- #~ msgid "Added %s markers"
1847
- #~ msgstr "Adicionados %s marcadores"
1848
-
1849
- #~ msgid "Updated %s markers"
1850
- #~ msgstr "Actualizados %s marcadores"
1851
-
1852
- #~ msgid "Extended Options"
1853
- #~ msgstr "Opções Avançadas"
1854
-
1855
- #~ msgid "Get 300+ Themes"
1856
- #~ msgstr "Obtenha mais de 300 Temas"
1857
-
1858
- #~ msgid ""
1859
- #~ "Please be advised that this option is available only in <a "
1860
- #~ "target='_blank' href='%s'>PRO version</a>. You can <a target='_blank' "
1861
- #~ "href='%s' class='button'>Get PRO</a> today and get this and other PRO "
1862
- #~ "option for your Maps!"
1863
- #~ msgstr ""
1864
- #~ "Esta opção apenas se encontra disponível na \n"
1865
- #~ "<a target='_blank' href='%s'>versão PRO</a>. Pode \n"
1866
- #~ "<a target='_blank' href='%s' class='button'>Obter PRO</a> ainda hoje pode "
1867
- #~ "ter esta e outras opções PRO para os seus Mapas!"
1868
-
1869
- #~ msgid "Group"
1870
- #~ msgstr "Grupo"
1871
-
1872
- #~ msgid "Creation Date"
1873
- #~ msgstr "Data de Criação"
1874
-
1875
- #~ msgid "Uses On Map"
1876
- #~ msgstr "Utilizações no Mapa"
1877
-
1878
- #~ msgid "Back To Markers List"
1879
- #~ msgstr "Regressar à lista de Marcadores"
1880
-
1881
- #~ msgid "Remove"
1882
- #~ msgstr "Remover"
1883
-
1884
- #~ msgid "No maps contain this marker"
1885
- #~ msgstr "Nenhum mapa contem este marcador"
1886
-
1887
- #~ msgid "Remove selected"
1888
- #~ msgstr "Remover selecionados"
1889
-
1890
- #~ msgid "Nothing To Save"
1891
- #~ msgstr "Nada para guardar"
1892
-
1893
- #~ msgid "Cannot Save Group"
1894
- #~ msgstr "Impossibilidade de Guardar Grupo"
1895
-
1896
- #~ msgid "Group Not Found"
1897
- #~ msgstr "Grupo Não Encontrado"
1898
-
1899
- #~ msgid "Cannot remove group"
1900
- #~ msgstr "Impossibilidade de remover grupo"
1901
-
1902
- #~ msgid "Save Group"
1903
- #~ msgstr "Guardar Grupo"
1904
-
1905
- #~ msgid "Group Title"
1906
- #~ msgstr "Título de Grupo"
1907
-
1908
- #~ msgid "Title For Group"
1909
- #~ msgstr "Título Para Grupo"
1910
-
1911
- #~ msgid "Group Description"
1912
- #~ msgstr "Descrição do Grupo"
1913
-
1914
- #~ msgid "Description For Goup"
1915
- #~ msgstr "Descrição para o Grupo"
1916
-
1917
- #~ msgid "Reset"
1918
- #~ msgstr "Restaurar"
1919
-
1920
- #~ msgid ""
1921
- #~ "All available languages are provided with the Supsystic Google Maps "
1922
- #~ "plugin. If your language isn't available, your plugin will be in English "
1923
- #~ "by default.<br /><b>Available Translations: English</b><br />Translate or "
1924
- #~ "update a translation Google Maps WordPress plugin in your language and "
1925
- #~ "get a Premium license for FREE. <a target='_blank' href='%s'>Contact us</"
1926
- #~ "a>."
1927
- #~ msgstr ""
1928
- #~ "Todas as linguagens disponíveis são providenciadas com o plugin \n"
1929
- #~ "Supsystic Google Map. Se a sua linguagem não se encontrar disponível, o "
1930
- #~ "plugin será apresentado em Inglês por pré-definição.\n"
1931
- #~ "<br /><b>Traduções Disponíveis: Inglês</b><br />Traduza ou Actualize a "
1932
- #~ "tradução do Google Maps WordPress plugin e receba uma licença Premium de "
1933
- #~ "GRAÇA. <a target='_blank' href='%s'>Contacte-nos</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-ru_RU.mo DELETED
Binary file
lang/gmp_lng-ru_RU.po DELETED
@@ -1,1882 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2015-07-31 12:35+0300\n"
5
- "PO-Revision-Date: 2017-12-15 13:21+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language: en\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.9\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
- "X-Poedit-SearchPathExcluded-0: js\n"
17
- "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
18
-
19
- #: classes/controller.php:198 classes/controller.php:206
20
- #: doc/google-maps-easy-pro/license/controller.php:6
21
- #: modules/adminmenu/controller.php:29 modules/gmap/controller.php:40
22
- #: modules/gmap/controller.php:57 modules/marker/controller.php:8
23
- #: modules/marker/controller.php:46 modules/marker/controller.php:61
24
- #: modules/marker/controller.php:101 modules/marker_groups/controller.php:58
25
- #: modules/options/controller.php:6
26
- msgid "Done"
27
- msgstr "Готово"
28
-
29
- #: classes/field.php:131
30
- msgid "Select"
31
- msgstr "Выбрать"
32
-
33
- #: classes/field.php:170 classes/field.php:179 classes/field.php:184
34
- msgid "N/A"
35
- msgstr "N/A"
36
-
37
- #: classes/field.php:277
38
- msgid "Add Checkbox"
39
- msgstr "Добавить чекбокс"
40
-
41
- #: classes/field.php:282 classes/field.php:287
42
- msgid "Add Item"
43
- msgstr "Добавить пункт"
44
-
45
- #: classes/field.php:293
46
- msgid "Add Radio Button"
47
- msgstr "Добавить радио кнопку"
48
-
49
- #: classes/field.php:311
50
- msgid "Dimensions"
51
- msgstr "Размеры"
52
-
53
- #: classes/field.php:314
54
- msgid "width"
55
- msgstr "ширина"
56
-
57
- #: classes/field.php:316
58
- msgid "height"
59
- msgstr "высота"
60
-
61
- #: classes/field.php:323
62
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
63
- msgstr "Нажмите, чтобы установить поля &quot;id&quot; и &quot;class&quot;"
64
-
65
- #: classes/field.php:324
66
- msgid "Attributes"
67
- msgstr "Атрибут"
68
-
69
- #: classes/field.php:402
70
- msgid "There are no configuration options for this module"
71
- msgstr "Нету опции конфигурации для этого модуля"
72
-
73
- #: classes/fieldAdapter.php:93
74
- msgid "Apply To"
75
- msgstr "Применить к"
76
-
77
- #: classes/fieldAdapter.php:95 modules/gmap/views/tpl/gmapEditMap.php:523
78
- msgid "Address"
79
- msgstr "Адрес"
80
-
81
- #: classes/fieldAdapter.php:96
82
- msgid "Destination"
83
- msgstr "Предназначение"
84
-
85
- #: classes/fieldAdapter.php:97
86
- msgid "Country"
87
- msgstr "Страна"
88
-
89
- #: classes/fieldAdapter.php:100
90
- msgid "Categories"
91
- msgstr "Категории"
92
-
93
- #: classes/fieldAdapter.php:101
94
- msgid "You have no categories"
95
- msgstr "У Вас нету категорий"
96
-
97
- #: classes/fieldAdapter.php:102
98
- msgid "Brands"
99
- msgstr "Бренды"
100
-
101
- #: classes/fieldAdapter.php:103
102
- msgid "You have no brands"
103
- msgstr "У Вас нету брендов"
104
-
105
- #: classes/fieldAdapter.php:105
106
- msgid "Tax Rate"
107
- msgstr "Налоговая ставка"
108
-
109
- #: classes/fieldAdapter.php:106
110
- msgid "Absolute"
111
- msgstr "Абсолютный"
112
-
113
- #: classes/fieldAdapter.php:134
114
- msgid "Not selected"
115
- msgstr "Не выбрано"
116
-
117
- #: classes/fieldAdapter.php:184
118
- msgid "class"
119
- msgstr "Класс"
120
-
121
- #: classes/fieldAdapter.php:186
122
- msgid "id"
123
- msgstr "ID"
124
-
125
- #: classes/frame.php:135
126
- msgid "You have no permissions to view this page"
127
- msgstr "У Вас нету прав для просмотра этой страницы"
128
-
129
- #: classes/html.php:207
130
- msgid "Upload"
131
- msgstr "Загрузить"
132
-
133
- #: classes/html.php:611
134
- msgid "ON"
135
- msgstr "Вкл"
136
-
137
- #: classes/html.php:612
138
- msgid "OFF"
139
- msgstr "Выкл"
140
-
141
- #: classes/html.php:636
142
- #, php-format
143
- msgid "Select %s"
144
- msgstr "Выбрать %s"
145
-
146
- #: classes/modInstaller.php:34
147
- #, php-format
148
- msgid "Move files for %s failed"
149
- msgstr "Перемещение файлов %s не удалось"
150
-
151
- #: classes/modInstaller.php:37
152
- #, php-format
153
- msgid "%s is not plugin module"
154
- msgstr "%s не модуль плагина"
155
-
156
- #: classes/modInstaller.php:76
157
- msgid "Can not create module directory. Try to set permission to "
158
- msgstr "Невозможно создать каталог модуля. Попробуйте установить доступы"
159
-
160
- #: classes/modInstaller.php:103
161
- msgid "No modules were found in XML file"
162
- msgstr "В XML файле модули не найдены"
163
-
164
- #: classes/modInstaller.php:107
165
- msgid "Invalid XML file"
166
- msgstr "Неверный XML файл"
167
-
168
- #: classes/modInstaller.php:109
169
- msgid "No XML file were found"
170
- msgstr "XML файл не найден"
171
-
172
- #: classes/modInstaller.php:128
173
- #, php-format
174
- msgid "Install %s failed"
175
- msgstr "Установка %s не удалось"
176
-
177
- #: classes/modInstaller.php:134
178
- msgid "Error Activate module"
179
- msgstr "Ошибка Активации модуля"
180
-
181
- #: classes/modInstaller.php:164
182
- msgid "Error Deactivation module"
183
- msgstr "Ошибка деактивации модуля"
184
-
185
- #: classes/modInstaller.php:185
186
- msgid "Error Activating module"
187
- msgstr "Ошибка Активации модуля"
188
-
189
- #: classes/model.php:174 classes/model.php:186
190
- msgid "Database error detected"
191
- msgstr "Обнаружена ошибка базы данных"
192
-
193
- #: classes/model.php:176 modules/gmap/models/gmap.php:105
194
- #: modules/icons/models/icons.php:148
195
- #: modules/marker_groups/models/marker_groups.php:30
196
- msgid "Invalid ID"
197
- msgstr "Неверный ID"
198
-
199
- #: classes/model.php:209
200
- msgid "Empty or invalid ID"
201
- msgstr "Пустой или неверный ID"
202
-
203
- #: classes/table.php:277
204
- msgid "Nothig to update"
205
- msgstr "Нечего обновлять"
206
-
207
- #: classes/table.php:293
208
- msgid "Database error. Please contact your developer."
209
- msgstr "Ошибка базы данных. Пожалуйста обратитесь с Вашим разработчиком"
210
-
211
- #: classes/tables/marker.php:7 classes/tables/marker_groups.php:8
212
- msgid "Map ID"
213
- msgstr "ID карты"
214
-
215
- #: classes/tables/marker.php:8 classes/tables/marker_groups.php:9
216
- msgid "File name"
217
- msgstr "Имя файла"
218
-
219
- #: classes/tables/marker.php:9 classes/tables/marker_groups.php:10
220
- msgid "Description Of Map"
221
- msgstr "Описание карты"
222
-
223
- #: classes/tables/marker.php:10
224
- msgid "X coordinate if marker(lng)"
225
- msgstr "Координаты Х если маркер (lng)"
226
-
227
- #: classes/tables/marker.php:11
228
- msgid "Y coordinate of marker(lat)"
229
- msgstr "Y координата маркера (lat)"
230
-
231
- #: classes/tables/marker.php:12
232
- msgid "Path of icon file"
233
- msgstr "Путь значок файла"
234
-
235
- #: classes/tables/marker.php:13
236
- msgid "Map Id"
237
- msgstr "Id карты"
238
-
239
- #: classes/tables/marker.php:14
240
- msgid "Marker Address"
241
- msgstr "Адрес маркера"
242
-
243
- #: classes/tables/marker.php:15
244
- msgid "Id of Marker's group"
245
- msgstr "ID группы маркеров"
246
-
247
- #: classes/tables/marker.php:16
248
- msgid "Animation"
249
- msgstr "Анимация"
250
-
251
- #: classes/tables/marker.php:17 classes/tables/modules.php:10
252
- #: classes/tables/options.php:11
253
- msgid "Params"
254
- msgstr "Параметры"
255
-
256
- #: classes/tables/marker.php:18 classes/tables/options.php:15
257
- msgid "Sort Order"
258
- msgstr "Сортировка"
259
-
260
- #: classes/tables/marker.php:19
261
- msgid "Creation date"
262
- msgstr "Дата создания"
263
-
264
- #: classes/tables/modules.php:7 classes/tables/modules_type.php:8
265
- #: classes/tables/options.php:10
266
- msgid "Label"
267
- msgstr ""
268
-
269
- #: classes/tables/modules.php:8 classes/tables/options.php:13
270
- msgid "Type"
271
- msgstr "Тип"
272
-
273
- #: classes/tables/modules.php:9
274
- msgid "Active"
275
- msgstr "Активный"
276
-
277
- #: classes/tables/modules.php:11
278
- msgid "Has Tab"
279
- msgstr "Имеет вкладку"
280
-
281
- #: classes/tables/modules.php:12 classes/tables/options.php:12
282
- msgid "Description"
283
- msgstr "Описание"
284
-
285
- #: classes/tables/modules.php:13 classes/tables/options.php:8
286
- #: classes/tables/usage.php:9
287
- msgid "Code"
288
- msgstr "Код"
289
-
290
- #: classes/tables/modules.php:14
291
- msgid "External plugin directory"
292
- msgstr "Внешний каталог плагина"
293
-
294
- #: classes/tables/modules_type.php:7 classes/tables/options.php:7
295
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:122
296
- msgid "ID"
297
- msgstr "ID "
298
-
299
- #: classes/tables/options.php:9
300
- msgid "Value"
301
- msgstr "Значение"
302
-
303
- #: classes/tables/options.php:14
304
- msgid "Category ID"
305
- msgstr "ID категории"
306
-
307
- #: classes/tables/options.php:16
308
- msgid "Value Type"
309
- msgstr "Значение типа"
310
-
311
- #: classes/tables/options_categories.php:8
312
- msgid "Method"
313
- msgstr "Метод"
314
-
315
- #: classes/tables/usage.php:8
316
- msgid "Usage id"
317
- msgstr "Использование ID"
318
-
319
- #: classes/tables/usage.php:10
320
- msgid "Visits Count"
321
- msgstr "Количество посещений"
322
-
323
- #: classes/validator.php:30
324
- #, php-format
325
- msgid "Invalid length for %s, max length is %s"
326
- msgstr "Недопустимая длина для %s, максимальная длина составляет %s"
327
-
328
- #: classes/validator.php:43
329
- #, php-format
330
- msgid "Invalid numeric value for %s"
331
- msgstr "Неверное числовое значение для %s"
332
-
333
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
334
- #, php-format
335
- msgid "Please enter %s"
336
- msgstr "Пожалуйста, введите %s"
337
-
338
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
339
- #, php-format
340
- msgid "Please select %s"
341
- msgstr "Пожалуйста, выберете %s"
342
-
343
- #: classes/validator.php:85 classes/validator.php:101
344
- #, php-format
345
- msgid "Invalid %s"
346
- msgstr "Недопустимый %s"
347
-
348
- #: classes/validator.php:88
349
- #, php-format
350
- msgid "%s is already registered"
351
- msgstr "%s уже зарегистрирован"
352
-
353
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
354
- msgid "Exit Full Screen"
355
- msgstr ""
356
-
357
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
358
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
359
- msgid "Open Full Screen"
360
- msgstr ""
361
-
362
- #: doc/google-maps-easy-pro/license/mod.php:28
363
- #, php-format
364
- msgid ""
365
- "Your license is expired. Once you extend your license - you will be able to "
366
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
367
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
368
- "click on 'Re-activate' button to re-activate your PRO version."
369
- msgstr ""
370
- "Лицензия истекла. После того, как вы продлите лицензию - Вы сможете обновить "
371
- "ПРО версию. Чтобы продлить лицензию ПРО версии - следуйте по <a href='%s' "
372
- "target='_blank'>этой ссылке</a>, затем - перейдите к <a href='%s'>Лицензии</"
373
- "a> и нажмите на кнопку 'Активировать повторно' ."
374
-
375
- #: doc/google-maps-easy-pro/license/mod.php:36
376
- #, php-format
377
- msgid ""
378
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
379
- "target='_blank'>click here</a> to extend your license, then - go to <a "
380
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
381
- "your PRO version."
382
- msgstr ""
383
- "Ваша лицензия на ПРО версию плагина %s истекла. Вы можете <a href='%s' "
384
- "target='_blank'>нажать здесь</a> чтобы продлить лицензию, затем - перейти к "
385
- "<a href='%s'>Лицензии</a> и нажать на 'Активировать повторно'чтобы продлить "
386
- "лицензию."
387
-
388
- #: doc/google-maps-easy-pro/license/mod.php:49
389
- msgid "License"
390
- msgstr "Лицензия"
391
-
392
- #: doc/google-maps-easy-pro/license/mod.php:72
393
- msgid "Activate License"
394
- msgstr ""
395
-
396
- #: doc/google-maps-easy-pro/license/mod.php:74
397
- msgid "Renew License"
398
- msgstr ""
399
-
400
- #: doc/google-maps-easy-pro/license/models/license.php:54
401
- msgid "Please enter your License Key"
402
- msgstr "Пожалуйста, введите ключ лицензии"
403
-
404
- #: doc/google-maps-easy-pro/license/models/license.php:56
405
- msgid "Please enter your Email address"
406
- msgstr "Пожалуйста, введите Ваш Email"
407
-
408
- #: doc/google-maps-easy-pro/license/models/license.php:131
409
- msgid ""
410
- "There was a problem with sending request to our autentification server. "
411
- "Please try latter."
412
- msgstr ""
413
- "Был проблема с отправкой запроса на нашем сервере аутентификации. "
414
- "Пожалуйста, попробуйте позже."
415
-
416
- #: doc/google-maps-easy-pro/license/models/license.php:154
417
- #, php-format
418
- msgid "License for plugin %s will expire today."
419
- msgstr "Лицензия на плагин %s истекает сегодня."
420
-
421
- #: doc/google-maps-easy-pro/license/models/license.php:156
422
- #, php-format
423
- msgid "License for plugin %s will expire tomorrow."
424
- msgstr "Лицензия на плагин %s истекает завтра."
425
-
426
- #: doc/google-maps-easy-pro/license/models/license.php:158
427
- #, php-format
428
- msgid "License for plugin %s will expire in %d days."
429
- msgstr "Лицензия на плагин %s истекает через %d дней"
430
-
431
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
432
- #, php-format
433
- msgid ""
434
- "Congratulations! PRO version of %s plugin is activated and working fine!"
435
- msgstr ""
436
-
437
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
438
- #, php-format
439
- msgid ""
440
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
441
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
442
- "activate' button to re-activate your PRO version."
443
- msgstr ""
444
- "Ваша лицензия на PRO версию плагина %s истекла. Вы можете <a href='%s' "
445
- "target='_blank'>нажать здесь</a> чтобы продлить лицензию, затем - нажмите на "
446
- "кнопку 'Активировать повторно' чтобы активировать заново ПРО версию."
447
-
448
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
449
- #, php-format
450
- msgid ""
451
- "Congratulations! You have successfully installed PRO version of %s plugin. "
452
- "Final step to finish Your PRO version setup - is to enter your Email and "
453
- "License Key on this page. This will activate Your copy of software on this "
454
- "site."
455
- msgstr ""
456
-
457
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
458
- #: modules/supsystic_promo/mod.php:132
459
- msgid "Email"
460
- msgstr "Email"
461
-
462
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
463
- #, php-format
464
- msgid ""
465
- "Your email address, used on checkout procedure on <a href='%s' "
466
- "target='_blank'>%s</a>"
467
- msgstr ""
468
- "Ваш адрес электронной почты, используемый по процедуре оформления заказа "
469
- "на<a href='%s' target='_blank'>%s</a>"
470
-
471
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
472
- msgid "License Key"
473
- msgstr "Ключ лицензии"
474
-
475
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
476
- #, php-format
477
- msgid ""
478
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
479
- msgstr ""
480
- "Ваш ключ лицензии с Вашего аккаунта <a href='%s' target='_blank'>%s</a>"
481
-
482
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
483
- msgid "Re-activate"
484
- msgstr "Активировать повторно"
485
-
486
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
487
- msgid "Activate"
488
- msgstr "Активировать"
489
-
490
- #: doc/google-maps-easy-pro/wpUpdater.php:68
491
- msgid ""
492
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
493
- "onclick='document.location.reload(); return false;'>Try again</a>"
494
- msgstr ""
495
- "Произошла непредвиденная HTTP-ошибка во время API запроса.</p> <p><a "
496
- "href='?' onclick='document.location.reload(); return false;'>Попробуйте еще "
497
- "раз</a>"
498
-
499
- #: doc/google-maps-easy-pro/wpUpdater.php:73
500
- msgid "An unknown error occurred"
501
- msgstr "Произошла неизвестная ошибка"
502
-
503
- #: modules/adminmenu/controller.php:7
504
- msgid "Your name field is required."
505
- msgstr "Поле ИМЯ является обязательным"
506
-
507
- #: modules/adminmenu/controller.php:8
508
- msgid "Your website field is required."
509
- msgstr "Поле САЙТ является обязательным"
510
-
511
- #: modules/adminmenu/controller.php:9
512
- msgid "Your e-mail field is required."
513
- msgstr "Поле e-mail является обязательным"
514
-
515
- #: modules/adminmenu/controller.php:10
516
- msgid "Subject field is required."
517
- msgstr "Поле ТЕМА является обязательным"
518
-
519
- #: modules/adminmenu/controller.php:11
520
- msgid "You must select a valid category."
521
- msgstr "Вы должны выбрать правильную категорию."
522
-
523
- #: modules/adminmenu/controller.php:12
524
- msgid "Message field is required."
525
- msgstr "Поле СООБЩЕНИЕ является обязательным"
526
-
527
- #: modules/adminmenu/mod.php:12
528
- msgid "Settings"
529
- msgstr "Настройки"
530
-
531
- #: modules/csv/controller.php:45
532
- #, php-format
533
- msgid "Maps from %s - %s"
534
- msgstr ""
535
-
536
- #: modules/csv/controller.php:48
537
- msgid "You have no maps for now."
538
- msgstr ""
539
-
540
- #: modules/csv/controller.php:87
541
- #, php-format
542
- msgid "Markers from %s"
543
- msgstr ""
544
-
545
- #: modules/csv/controller.php:90
546
- msgid "You have no markers for now."
547
- msgstr ""
548
-
549
- #: modules/csv/controller.php:124
550
- msgid "Missing File"
551
- msgstr "Файл отсутствует"
552
-
553
- #: modules/csv/controller.php:126
554
- #, php-format
555
- msgid "File uploaded with error code %s"
556
- msgstr "Файл загружен с кодом ошибки %s"
557
-
558
- #: modules/csv/controller.php:208
559
- msgid ""
560
- "File should contain more then 1 row, at least 1 row should be for headers"
561
- msgstr ""
562
- "Файл должен содержать более 1 строки, по крайней мере, 1 строка должна быть "
563
- "для заголовков"
564
-
565
- #: modules/csv/controller.php:210
566
- msgid "Empty data in file"
567
- msgstr "Пустые данные в файле"
568
-
569
- #: modules/csv/mod.php:11
570
- msgid "Maps Import / Export"
571
- msgstr ""
572
-
573
- #: modules/csv/models/csv.php:133
574
- msgid "Can not detect import list type"
575
- msgstr "Не удаётся обнаружить список импорта"
576
-
577
- #: modules/csv/models/csv.php:135
578
- msgid "Can not find fields names"
579
- msgstr "Невозможно найти имена полей"
580
-
581
- #: modules/csv/views/tpl/csvTabContent.php:9
582
- msgid "Maps"
583
- msgstr "Карты"
584
-
585
- #: modules/csv/views/tpl/csvTabContent.php:14
586
- #: modules/csv/views/tpl/csvTabContent.php:35
587
- msgid "Export"
588
- msgstr "Экспорт "
589
-
590
- #: modules/csv/views/tpl/csvTabContent.php:19
591
- #: modules/csv/views/tpl/csvTabContent.php:40
592
- msgid "Import"
593
- msgstr "импорт"
594
-
595
- #: modules/csv/views/tpl/csvTabContent.php:30 modules/gmap/views/gmap.php:125
596
- #: modules/gmap/views/tpl/gmapEditMap.php:17
597
- msgid "Markers"
598
- msgstr "Маркеры"
599
-
600
- #: modules/gmap/controller.php:23
601
- msgid "Map data not found"
602
- msgstr "Данные карты не найдены"
603
-
604
- #: modules/gmap/mod.php:13
605
- msgid "Add Map"
606
- msgstr "Добавить карту"
607
-
608
- #: modules/gmap/mod.php:16 modules/gmap/views/tpl/gmapEditMap.php:701
609
- #: modules/marker_groups/mod.php:14
610
- msgid "Edit"
611
- msgstr "Редактировать"
612
-
613
- #: modules/gmap/mod.php:19
614
- msgid "All Maps"
615
- msgstr "Все карты"
616
-
617
- #: modules/gmap/mod.php:29
618
- msgid "No Map Found"
619
- msgstr "Карта не найдена"
620
-
621
- #: modules/gmap/mod.php:39
622
- msgid "Empty or Invalid Map ID"
623
- msgstr "Пустой или неверный ID карты"
624
-
625
- #: modules/gmap/mod.php:58
626
- msgid "Top Center"
627
- msgstr "Вверху по центру"
628
-
629
- #: modules/gmap/mod.php:59
630
- msgid "Top Left"
631
- msgstr "Вверху слева"
632
-
633
- #: modules/gmap/mod.php:60
634
- msgid "Top Right"
635
- msgstr "Вверху справа"
636
-
637
- #: modules/gmap/mod.php:61
638
- msgid "Left Top"
639
- msgstr "Слева вверху"
640
-
641
- #: modules/gmap/mod.php:62
642
- msgid "Right Top"
643
- msgstr "Справа вверху"
644
-
645
- #: modules/gmap/mod.php:63
646
- msgid "Left Center"
647
- msgstr "Слева по центру"
648
-
649
- #: modules/gmap/mod.php:64
650
- msgid "Right Center"
651
- msgstr "Справа по центру"
652
-
653
- #: modules/gmap/mod.php:65
654
- msgid "Left Bottom"
655
- msgstr "Слева внизу"
656
-
657
- #: modules/gmap/mod.php:66
658
- msgid "Right Bottom"
659
- msgstr "Справа внизу"
660
-
661
- #: modules/gmap/mod.php:67
662
- msgid "Bottom Center"
663
- msgstr "Внизу по центру"
664
-
665
- #: modules/gmap/mod.php:68
666
- msgid "Bottom Left"
667
- msgstr "Внизу слева"
668
-
669
- #: modules/gmap/mod.php:69
670
- msgid "Bottom Right"
671
- msgstr "Внизу справа"
672
-
673
- #: modules/gmap/mod.php:92
674
- msgid "Slider"
675
- msgstr "Слайдер"
676
-
677
- #: modules/gmap/mod.php:93
678
- msgid "Slider - Title and Img"
679
- msgstr ""
680
-
681
- #: modules/gmap/mod.php:94 modules/gmap/mod.php:96
682
- msgid "Slider Vertical - Title and Img"
683
- msgstr ""
684
-
685
- #: modules/gmap/mod.php:95
686
- msgid "Slider Vertical - Title and Description"
687
- msgstr ""
688
-
689
- #: modules/gmap/models/gmap.php:67
690
- msgid "Please enter Map Name"
691
- msgstr "Пожалуйста, введите имя карты"
692
-
693
- #: modules/gmap/models/gmap.php:96
694
- #: modules/marker_groups/models/marker_groups.php:63
695
- msgid "Empty Params"
696
- msgstr "Пустые параметры"
697
-
698
- #: modules/gmap/views/gmap.php:123
699
- msgid "Title"
700
- msgstr "Заголовок "
701
-
702
- #: modules/gmap/views/gmap.php:124
703
- msgid "Html options"
704
- msgstr "Html опции"
705
-
706
- #: modules/gmap/views/gmap.php:126
707
- msgid "Operations"
708
- msgstr "Операции"
709
-
710
- #: modules/gmap/views/gmap.php:163 modules/gmap/views/gmap.php:169
711
- #: modules/gmap/views/tpl/gmapEditMap.php:104
712
- #: modules/gmap/views/tpl/gmapEditMap.php:132
713
- #: modules/gmap/views/tpl/gmapEditMap.php:214
714
- #: modules/gmap/views/tpl/gmapEditMap.php:370 modules/marker/mod.php:20
715
- msgid "None"
716
- msgstr "Нету"
717
-
718
- #: modules/gmap/views/tpl/gmapAdmin.php:5
719
- #: modules/gmap/views/tpl/gmapAdmin.php:8
720
- #: modules/marker_groups/views/tpl/mgrAdmin.php:9
721
- #: modules/marker_groups/views/tpl/mgrAdmin.php:12
722
- msgid "Delete selected"
723
- msgstr "Удалить выбранное"
724
-
725
- #: modules/gmap/views/tpl/gmapAdmin.php:11
726
- #: modules/marker_groups/views/tpl/mgrAdmin.php:15
727
- msgid "Clear All"
728
- msgstr "Очистить все"
729
-
730
- #: modules/gmap/views/tpl/gmapAdmin.php:13
731
- #: modules/marker_groups/views/tpl/mgrAdmin.php:17
732
- msgid "Clear"
733
- msgstr "Очистить"
734
-
735
- #: modules/gmap/views/tpl/gmapAdmin.php:16
736
- #: modules/gmap/views/tpl/gmapAdmin.php:17
737
- #: modules/marker_groups/views/tpl/mgrAdmin.php:20
738
- #: modules/marker_groups/views/tpl/mgrAdmin.php:21
739
- msgid "Search"
740
- msgstr "Поиск"
741
-
742
- #: modules/gmap/views/tpl/gmapAdmin.php:26
743
- #, php-format
744
- msgid ""
745
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
746
- "a> your first Map!"
747
- msgstr ""
748
- "У вас нет карты в настоящее время. <a href='%s' style='font-style: "
749
- "italic;'>Создать </a> свою первую карту!"
750
-
751
- #: modules/gmap/views/tpl/gmapDrawMap.php:3
752
- msgid "Map not found"
753
- msgstr "Карта не найдена"
754
-
755
- #: modules/gmap/views/tpl/gmapEditMap.php:2
756
- #, php-format
757
- msgid ""
758
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
759
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
760
- msgstr ""
761
- "Эта опция доступна в <a target='_blank' href='%s'>ПРО версии</a> только, вы "
762
- "можете получить его <a target='_blank' href='%s'>здесь.</a>"
763
-
764
- #: modules/gmap/views/tpl/gmapEditMap.php:13
765
- msgid "Map Properties"
766
- msgstr "Настройки карты"
767
-
768
- #: modules/gmap/views/tpl/gmapEditMap.php:20
769
- msgid "Add New Marker"
770
- msgstr "Добавить новый маркер"
771
-
772
- #: modules/gmap/views/tpl/gmapEditMap.php:31
773
- msgid "Map Name"
774
- msgstr "Имя карты"
775
-
776
- #: modules/gmap/views/tpl/gmapEditMap.php:33
777
- msgid "Your map name"
778
- msgstr "Имя Вашей карты"
779
-
780
- #: modules/gmap/views/tpl/gmapEditMap.php:45
781
- msgid "Map Width"
782
- msgstr "Ширина карты"
783
-
784
- #: modules/gmap/views/tpl/gmapEditMap.php:47
785
- msgid "Your map width"
786
- msgstr "Ширина Вашей карты"
787
-
788
- #: modules/gmap/views/tpl/gmapEditMap.php:56
789
- #: modules/gmap/views/tpl/gmapEditMap.php:81
790
- msgid "Pixels"
791
- msgstr "Пикселей"
792
-
793
- #: modules/gmap/views/tpl/gmapEditMap.php:59
794
- #: modules/gmap/views/tpl/gmapEditMap.php:84
795
- msgid "Px"
796
- msgstr "Px"
797
-
798
- #: modules/gmap/views/tpl/gmapEditMap.php:63
799
- msgid "Percents"
800
- msgstr "Процентов"
801
-
802
- #: modules/gmap/views/tpl/gmapEditMap.php:70
803
- msgid "Map Height"
804
- msgstr "Высота карты"
805
-
806
- #: modules/gmap/views/tpl/gmapEditMap.php:72
807
- msgid "Your map height"
808
- msgstr "Высота карты"
809
-
810
- #: modules/gmap/views/tpl/gmapEditMap.php:97
811
- msgid "Map type control"
812
- msgstr "Тип управления Карта"
813
-
814
- #: modules/gmap/views/tpl/gmapEditMap.php:99
815
- msgid ""
816
- "Control view for map type - you can see it in right upper corner by default"
817
- msgstr ""
818
- "Вид управления для отображения типа - вы можете увидеть его в правом верхнем "
819
- "углу по умолчанию"
820
-
821
- #: modules/gmap/views/tpl/gmapEditMap.php:104
822
- msgid "Dropdown Menu"
823
- msgstr "Выпадающее меню"
824
-
825
- #: modules/gmap/views/tpl/gmapEditMap.php:104
826
- msgid "Horizontal Bar"
827
- msgstr ""
828
-
829
- #: modules/gmap/views/tpl/gmapEditMap.php:110
830
- msgid "Change type control position on map"
831
- msgstr "Изменить тип управления позиции на карте"
832
-
833
- #: modules/gmap/views/tpl/gmapEditMap.php:117
834
- #: modules/gmap/views/tpl/gmapEditMap.php:145
835
- #: modules/gmap/views/tpl/gmapEditMap.php:172
836
- #: modules/gmap/views/tpl/gmapEditMap.php:199
837
- #: modules/gmap/views/tpl/gmapEditMap.php:281
838
- #: modules/gmap/views/tpl/gmapEditMap.php:298
839
- #: modules/gmap/views/tpl/gmapEditMap.php:315
840
- #: modules/gmap/views/tpl/gmapEditMap.php:352
841
- #: modules/gmap/views/tpl/gmapEditMap.php:383
842
- #: modules/gmap/views/tpl/gmapEditMap.php:412
843
- msgid "PRO option"
844
- msgstr "ПРО опция"
845
-
846
- #: modules/gmap/views/tpl/gmapEditMap.php:125
847
- msgid "Zoom control"
848
- msgstr "Управление зумом"
849
-
850
- #: modules/gmap/views/tpl/gmapEditMap.php:127
851
- msgid "Zoom control type on your map"
852
- msgstr "Тип управления зумом на карте"
853
-
854
- #: modules/gmap/views/tpl/gmapEditMap.php:132
855
- msgid "Default"
856
- msgstr "По умолчанию"
857
-
858
- #: modules/gmap/views/tpl/gmapEditMap.php:132
859
- msgid "Large"
860
- msgstr "Большой"
861
-
862
- #: modules/gmap/views/tpl/gmapEditMap.php:132
863
- msgid "Small"
864
- msgstr "Маленький"
865
-
866
- #: modules/gmap/views/tpl/gmapEditMap.php:138
867
- msgid "Change zoom control position on map"
868
- msgstr "Изменить положение зума управления на карте"
869
-
870
- #: modules/gmap/views/tpl/gmapEditMap.php:153
871
- msgid "Street view control"
872
- msgstr ""
873
-
874
- #: modules/gmap/views/tpl/gmapEditMap.php:155
875
- msgid "Street view control usually is located on left upper corner of your map"
876
- msgstr ""
877
-
878
- #: modules/gmap/views/tpl/gmapEditMap.php:165
879
- msgid "Change street view control position on map"
880
- msgstr ""
881
-
882
- #: modules/gmap/views/tpl/gmapEditMap.php:180
883
- msgid "Pan control"
884
- msgstr "Панорамирование управления"
885
-
886
- #: modules/gmap/views/tpl/gmapEditMap.php:182
887
- msgid ""
888
- "Pan control - allow you to pan over your map using mouse, usually is located "
889
- "on left upper corner of your map"
890
- msgstr ""
891
- "Панорамирование управления - позволяют перемещаться на карту с помощью мыши, "
892
- "как правило, расположен на левом верхнем углу карты"
893
-
894
- #: modules/gmap/views/tpl/gmapEditMap.php:192
895
- msgid "Change pan control position on map"
896
- msgstr "Изменить позицию панорамирования управления на карте"
897
-
898
- #: modules/gmap/views/tpl/gmapEditMap.php:207
899
- msgid "Overview control"
900
- msgstr "Обзор управления"
901
-
902
- #: modules/gmap/views/tpl/gmapEditMap.php:209
903
- msgid ""
904
- "Overview control for your map, by default is disabled, and if enabled - is "
905
- "located on the right bottom corner"
906
- msgstr ""
907
- "Обзор управления для вашей карты, по умолчанию отключена, а если включена - "
908
- "находится в правом нижнем углу"
909
-
910
- #: modules/gmap/views/tpl/gmapEditMap.php:214
911
- msgid "Opened"
912
- msgstr "Открытый"
913
-
914
- #: modules/gmap/views/tpl/gmapEditMap.php:214
915
- msgid "Collapsed"
916
- msgstr "Свернутый"
917
-
918
- #: modules/gmap/views/tpl/gmapEditMap.php:223
919
- msgid "Draggable"
920
- msgstr "Перетаскивание"
921
-
922
- #: modules/gmap/views/tpl/gmapEditMap.php:225
923
- msgid "Enable or disable possibility to drag your map using mouse"
924
- msgstr "Включить или отключить возможность перетаскивать карту с помощью мыши"
925
-
926
- #: modules/gmap/views/tpl/gmapEditMap.php:236
927
- msgid "Double click to zoom"
928
- msgstr "Дважды щелкните, чтобы увеличить"
929
-
930
- #: modules/gmap/views/tpl/gmapEditMap.php:238
931
- msgid ""
932
- "By default double left click on map will zoom it in. But you can change this "
933
- "here."
934
- msgstr ""
935
- "По умолчанию двойной левой кнопкой мыши на карте будет увеличить его. Но вы "
936
- "можете изменить это здесь."
937
-
938
- #: modules/gmap/views/tpl/gmapEditMap.php:249
939
- msgid "Mouse wheel to zoom"
940
- msgstr "Колесико для увеличения"
941
-
942
- #: modules/gmap/views/tpl/gmapEditMap.php:251
943
- msgid ""
944
- "Sometimes you need to disable possibility to zoom your map using mouse "
945
- "wheel. This can be required for example - if you need to use your wheel for "
946
- "some other action, for example scroll your site even if mouse is over your "
947
- "map."
948
- msgstr ""
949
- "Иногда нужно отключить возможность изменения масштаба карты с помощью колеса "
950
- "мыши. Это может потребоваться, например, - если вам нужно использовать "
951
- "колесо для некоторых других действий, например, прокручивать ваш сайт, даже "
952
- "если мышь находится над вашей карте."
953
-
954
- #: modules/gmap/views/tpl/gmapEditMap.php:262
955
- msgid "Google Map Theme"
956
- msgstr "Тема Google карты"
957
-
958
- #: modules/gmap/views/tpl/gmapEditMap.php:264
959
- msgid ""
960
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
961
- "Terrain - here. By default your map will have Road Map Google maps theme."
962
- msgstr ""
963
- "Вы можете выбрать тему Google Map - Дорожная карта, Гибрид, Спутниковый или "
964
- "Рельеф- здесь. По умолчанию ваша карта будет иметь карт тему Дорожная карта "
965
- "Google."
966
-
967
- #: modules/gmap/views/tpl/gmapEditMap.php:268
968
- msgid "Road Map"
969
- msgstr "Дорожная карта"
970
-
971
- #: modules/gmap/views/tpl/gmapEditMap.php:268
972
- msgid "Hybrid"
973
- msgstr "Гибридный"
974
-
975
- #: modules/gmap/views/tpl/gmapEditMap.php:268
976
- msgid "Satellite"
977
- msgstr "Спутниковое"
978
-
979
- #: modules/gmap/views/tpl/gmapEditMap.php:268
980
- msgid "Terrain"
981
- msgstr "Рельеф"
982
-
983
- #: modules/gmap/views/tpl/gmapEditMap.php:276
984
- msgid "Traffic Layer"
985
- msgstr "Слой трафика"
986
-
987
- #: modules/gmap/views/tpl/gmapEditMap.php:278
988
- msgid "Add real-time traffic information to your map."
989
- msgstr ""
990
-
991
- #: modules/gmap/views/tpl/gmapEditMap.php:293
992
- msgid "Transit Layer"
993
- msgstr "Слой метро"
994
-
995
- #: modules/gmap/views/tpl/gmapEditMap.php:295
996
- msgid ""
997
- "Display the public transit network of a city on your map. When the Transit "
998
- "Layer is enabled, and the map is centered on a city that supports transit "
999
- "information, the map will display major transit lines as thick, colored "
1000
- "lines."
1001
- msgstr ""
1002
-
1003
- #: modules/gmap/views/tpl/gmapEditMap.php:310
1004
- msgid "Bicycling Layer"
1005
- msgstr "Велосипедный слой"
1006
-
1007
- #: modules/gmap/views/tpl/gmapEditMap.php:312
1008
- msgid ""
1009
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1010
- "to bicycling usage on top of the given map.Dark green routes indicated "
1011
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1012
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1013
- "for bicycle usage."
1014
- msgstr ""
1015
-
1016
- #: modules/gmap/views/tpl/gmapEditMap.php:327
1017
- msgid "Map Stylization"
1018
- msgstr "Стилизация карты"
1019
-
1020
- #: modules/gmap/views/tpl/gmapEditMap.php:329
1021
- msgid ""
1022
- "Make your map unique with our Map Themes, just try to change it here - and "
1023
- "you will see results on your Map Preview."
1024
- msgstr ""
1025
- "Сделайте карту уникальной с нашими темами, попробуйте изменить их здесь, - и "
1026
- "вы увидите результаты на вашей карте предварительно."
1027
-
1028
- #: modules/gmap/views/tpl/gmapEditMap.php:339
1029
- msgid "Get 300+ Themes with PRO"
1030
- msgstr "Получить 300+ тем с ПРО"
1031
-
1032
- #: modules/gmap/views/tpl/gmapEditMap.php:347
1033
- msgid "Markers List"
1034
- msgstr "Список маркеров"
1035
-
1036
- #: modules/gmap/views/tpl/gmapEditMap.php:349
1037
- msgid ""
1038
- "Display all map markers - as list bellow Your map. This will help your users "
1039
- "get more info about your markers and find required marker more faster."
1040
- msgstr ""
1041
-
1042
- #: modules/gmap/views/tpl/gmapEditMap.php:356
1043
- msgid "Select Markers List type"
1044
- msgstr ""
1045
-
1046
- #: modules/gmap/views/tpl/gmapEditMap.php:364
1047
- msgid "Markers Clusterization"
1048
- msgstr "Markers Clusterization"
1049
-
1050
- #: modules/gmap/views/tpl/gmapEditMap.php:366
1051
- msgid ""
1052
- "If you have many markers - you can have a problems with viewing them when "
1053
- "zoom out for example: they will just cover each-other. Marker clusterization "
1054
- "can solve this problem by grouping your markers in groups when they are too "
1055
- "close to each-other."
1056
- msgstr ""
1057
- "Если у вас есть много маркеров - вы можете иметь проблемы с просмотром их, "
1058
- "при уменьшении зума, например: они просто будут накладываться друг друга,. "
1059
- "Маркер кластеризации может решить эту проблему путем группирования своих "
1060
- "маркеров в группах, когда они находятся слишком близко друг к другу,."
1061
-
1062
- #: modules/gmap/views/tpl/gmapEditMap.php:370
1063
- msgid "Base Clusterization"
1064
- msgstr "Base Clusterization"
1065
-
1066
- #: modules/gmap/views/tpl/gmapEditMap.php:378
1067
- msgid "Full Screen Button"
1068
- msgstr ""
1069
-
1070
- #: modules/gmap/views/tpl/gmapEditMap.php:380
1071
- msgid "Add a button on map to open it full screen."
1072
- msgstr ""
1073
-
1074
- #: modules/gmap/views/tpl/gmapEditMap.php:395
1075
- msgid "Marker Title color"
1076
- msgstr ""
1077
-
1078
- #: modules/gmap/views/tpl/gmapEditMap.php:397
1079
- msgid "You can set your markers title color here"
1080
- msgstr ""
1081
-
1082
- #: modules/gmap/views/tpl/gmapEditMap.php:407
1083
- msgid "Custom Map Controls"
1084
- msgstr ""
1085
-
1086
- #: modules/gmap/views/tpl/gmapEditMap.php:409
1087
- msgid "Add custom map controls to the map."
1088
- msgstr ""
1089
-
1090
- #: modules/gmap/views/tpl/gmapEditMap.php:422
1091
- msgid "Controls type"
1092
- msgstr ""
1093
-
1094
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1095
- msgid "Round"
1096
- msgstr ""
1097
-
1098
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1099
- msgid "Square"
1100
- msgstr ""
1101
-
1102
- #: modules/gmap/views/tpl/gmapEditMap.php:425
1103
- msgid "Square with rounded edges"
1104
- msgstr ""
1105
-
1106
- #: modules/gmap/views/tpl/gmapEditMap.php:431
1107
- msgid "Background color"
1108
- msgstr ""
1109
-
1110
- #: modules/gmap/views/tpl/gmapEditMap.php:438
1111
- msgid "Text color"
1112
- msgstr ""
1113
-
1114
- #: modules/gmap/views/tpl/gmapEditMap.php:445
1115
- msgid "Controls position"
1116
- msgstr ""
1117
-
1118
- #: modules/gmap/views/tpl/gmapEditMap.php:472
1119
- msgid "Marker Name"
1120
- msgstr "Имя маркера"
1121
-
1122
- #: modules/gmap/views/tpl/gmapEditMap.php:474
1123
- msgid "Your marker title"
1124
- msgstr "Ваш заголовок маркера"
1125
-
1126
- #: modules/gmap/views/tpl/gmapEditMap.php:485
1127
- msgid "Marker Description"
1128
- msgstr "Описание маркера"
1129
-
1130
- #: modules/gmap/views/tpl/gmapEditMap.php:487
1131
- msgid ""
1132
- "Write here all text, that you want to appear in marker info-window PopUp"
1133
- msgstr ""
1134
- "Напишите здесь весь текст, который вы хотите, чтобы он появиться в "
1135
- "всплывающем окне"
1136
-
1137
- #: modules/gmap/views/tpl/gmapEditMap.php:503
1138
- msgid "Icon"
1139
- msgstr "Иконка"
1140
-
1141
- #: modules/gmap/views/tpl/gmapEditMap.php:505
1142
- msgid "Your marker Icon, that will appear on your map for this marker"
1143
- msgstr ""
1144
- "Ваш маркер Иконка, которая будет отображаться на карте для данного маркера"
1145
-
1146
- #: modules/gmap/views/tpl/gmapEditMap.php:512
1147
- msgid "Choose Icon"
1148
- msgstr "Выбрать иконку"
1149
-
1150
- #: modules/gmap/views/tpl/gmapEditMap.php:513
1151
- msgid "Upload Icon"
1152
- msgstr ""
1153
-
1154
- #: modules/gmap/views/tpl/gmapEditMap.php:525
1155
- msgid "Search your location by address, just start typing here"
1156
- msgstr "Поиск вашего местоположения по адресу, просто наберите здесь"
1157
-
1158
- #: modules/gmap/views/tpl/gmapEditMap.php:537
1159
- msgid "Latitude"
1160
- msgstr "Широта"
1161
-
1162
- #: modules/gmap/views/tpl/gmapEditMap.php:539
1163
- msgid "Latitude for your marker"
1164
- msgstr "Широта для Вашего маркера"
1165
-
1166
- #: modules/gmap/views/tpl/gmapEditMap.php:551
1167
- msgid "Longitude"
1168
- msgstr "Долгота"
1169
-
1170
- #: modules/gmap/views/tpl/gmapEditMap.php:553
1171
- msgid "Longitude for your marker"
1172
- msgstr "Долгота для Вашего маркера"
1173
-
1174
- #: modules/gmap/views/tpl/gmapEditMap.php:565
1175
- msgid "Show description by default"
1176
- msgstr ""
1177
-
1178
- #: modules/gmap/views/tpl/gmapEditMap.php:567
1179
- msgid "Open marker description when map load"
1180
- msgstr ""
1181
-
1182
- #: modules/gmap/views/tpl/gmapEditMap.php:577
1183
- msgid "Marker Link"
1184
- msgstr ""
1185
-
1186
- #: modules/gmap/views/tpl/gmapEditMap.php:579
1187
- msgid "Link for opening by click on the marker"
1188
- msgstr ""
1189
-
1190
- #: modules/gmap/views/tpl/gmapEditMap.php:594
1191
- msgid "Open in new window"
1192
- msgstr ""
1193
-
1194
- #: modules/gmap/views/tpl/gmapEditMap.php:602
1195
- msgid "Show description by mouse hover"
1196
- msgstr ""
1197
-
1198
- #: modules/gmap/views/tpl/gmapEditMap.php:604
1199
- msgid "Open marker description by mouse hover"
1200
- msgstr ""
1201
-
1202
- #: modules/gmap/views/tpl/gmapEditMap.php:614
1203
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:10
1204
- msgid "Marker Category"
1205
- msgstr ""
1206
-
1207
- #: modules/gmap/views/tpl/gmapEditMap.php:616
1208
- msgid "Choose marker category"
1209
- msgstr ""
1210
-
1211
- #: modules/gmap/views/tpl/gmapEditMap.php:643
1212
- msgid "Map shortcode"
1213
- msgstr "Шорткод карты"
1214
-
1215
- #: modules/gmap/views/tpl/gmapEditMap.php:648
1216
- msgid "PHP code"
1217
- msgstr "PHP код"
1218
-
1219
- #: modules/gmap/views/tpl/gmapEditMap.php:654
1220
- msgid "Shortcode will appear after you save map."
1221
- msgstr "Шорткод появится после сохранения карты."
1222
-
1223
- #: modules/gmap/views/tpl/gmapEditMap.php:662
1224
- msgid "Save Map"
1225
- msgstr "Сохранить карту"
1226
-
1227
- #: modules/gmap/views/tpl/gmapEditMap.php:668
1228
- msgid "Delete Map"
1229
- msgstr "Удалить карту"
1230
-
1231
- #: modules/gmap/views/tpl/gmapEditMap.php:677
1232
- msgid "Save Marker"
1233
- msgstr "Сохранить маркер"
1234
-
1235
- #: modules/gmap/views/tpl/gmapEditMap.php:683
1236
- msgid "Delete Marker"
1237
- msgstr "Удалить маркер"
1238
-
1239
- #: modules/gmap/views/tpl/gmapEditMap.php:704
1240
- msgid "Delete"
1241
- msgstr "Удалить"
1242
-
1243
- #: modules/gmap/views/tpl/gmapEditMap.php:731
1244
- msgid "Show markers list with your map on frontend"
1245
- msgstr ""
1246
-
1247
- #: modules/gmap/views/tpl/gmapEditMap.php:738
1248
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1249
- msgid "Apply"
1250
- msgstr "Применить"
1251
-
1252
- #: modules/gmap/views/tpl/gmapEditMap.php:738
1253
- msgid "Selected"
1254
- msgstr "Выбрано"
1255
-
1256
- #: modules/gmap/views/tpl/gmapEditMap.php:739
1257
- msgid "Available in PRO"
1258
- msgstr "Доступно в ПРО"
1259
-
1260
- #: modules/gmap/views/tpl/gmapListMarkers.php:20
1261
- #, php-format
1262
- msgid "and %s more"
1263
- msgstr "и %s более"
1264
-
1265
- #: modules/gmap_widget/mod.php:18
1266
- msgid "Displays Most Viewed Products"
1267
- msgstr "Отображает наиболее просматриваемые продукты"
1268
-
1269
- #: modules/gmap_widget/views/gmap_widget.php:15
1270
- msgid "You have no maps"
1271
- msgstr "У Вас нету карт"
1272
-
1273
- #: modules/gmap_widget/views/tpl/form.php:10
1274
- msgid "Select map"
1275
- msgstr "Выбрать карту"
1276
-
1277
- #: modules/gmap_widget/views/tpl/form.php:18
1278
- msgid "Widget Map width"
1279
- msgstr "Ширина карты виджета"
1280
-
1281
- #: modules/gmap_widget/views/tpl/form.php:25
1282
- msgid "Widget Map height"
1283
- msgstr "Высота карты виджета"
1284
-
1285
- #: modules/gmap_widget/views/tpl/form.php:32
1286
- msgid "Display as image"
1287
- msgstr "Отображать как картинку"
1288
-
1289
- #: modules/gmap_widget/views/tpl/form.php:40
1290
- msgid ""
1291
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1292
- msgstr ""
1293
- "Карта будет отображаться в виде изображения в боковой панели, по нажатию - "
1294
- "будет открыт в всплывающем окне"
1295
-
1296
- #: modules/gmap_widget/views/tpl/form.php:42
1297
- msgid "Image width (in px)"
1298
- msgstr "Ширина картинки (в px)"
1299
-
1300
- #: modules/gmap_widget/views/tpl/form.php:49
1301
- msgid "Image height (in px)"
1302
- msgstr "Высота картинки (в px)"
1303
-
1304
- #: modules/icons/controller.php:20
1305
- msgid "Empty url"
1306
- msgstr "Пустая ссылка"
1307
-
1308
- #: modules/icons/models/icons.php:43
1309
- msgid "Icon no found"
1310
- msgstr "Иконка не найдена"
1311
-
1312
- #: modules/icons/models/icons.php:95
1313
- msgid "File not found"
1314
- msgstr "Файл не найден"
1315
-
1316
- #: modules/icons/models/icons.php:100
1317
- msgid "Cannot get image"
1318
- msgstr "Невозможно получить картинку"
1319
-
1320
- #: modules/icons/models/icons.php:111
1321
- msgid "cannot insert to table"
1322
- msgstr "не может вставить в таблицу"
1323
-
1324
- #: modules/mail/mod.php:33
1325
- msgid "Can not send email - problem with send server"
1326
- msgstr ""
1327
- "Вы не можете отправлять электронную почту - проблема с сервером отправки"
1328
-
1329
- #: modules/marker/controller.php:42 modules/marker/controller.php:57
1330
- msgid "Marker Not Found"
1331
- msgstr "Маркер не найден"
1332
-
1333
- #: modules/marker/controller.php:48
1334
- msgid "Cannot remove marker"
1335
- msgstr "Невозможно удалить маркер"
1336
-
1337
- #: modules/marker/controller.php:63
1338
- msgid "Cannot remove markers"
1339
- msgstr "Невозможно удалить маркеры"
1340
-
1341
- #: modules/marker/controller.php:144
1342
- msgid "Empty or invalid marker ID"
1343
- msgstr "Пустой или недействительный ID маркера"
1344
-
1345
- #: modules/marker/mod.php:21
1346
- msgid "Drop"
1347
- msgstr "Drop"
1348
-
1349
- #: modules/marker/mod.php:22
1350
- msgid "Bounce"
1351
- msgstr "Bounce"
1352
-
1353
- #: modules/marker/models/marker.php:49
1354
- msgid "Please enter marker name"
1355
- msgstr "Пожалуйста, введите имя маркера"
1356
-
1357
- #: modules/marker/models/marker.php:192
1358
- msgid "Address is empty or not match"
1359
- msgstr "Адрес пуст или не соответствует"
1360
-
1361
- #: modules/marker/models/marker.php:248
1362
- msgid "Invalid Marker ID"
1363
- msgstr "Неверный ID маркера"
1364
-
1365
- #: modules/marker_groups/controller.php:31
1366
- msgid "Marker Category data not found"
1367
- msgstr ""
1368
-
1369
- #: modules/marker_groups/mod.php:8
1370
- msgid "Marker Categories"
1371
- msgstr ""
1372
-
1373
- #: modules/marker_groups/mod.php:11
1374
- msgid "Add New"
1375
- msgstr "Добавить новый"
1376
-
1377
- #: modules/marker_groups/mod.php:24
1378
- msgid "No Marker Category Found"
1379
- msgstr ""
1380
-
1381
- #: modules/marker_groups/models/marker_groups.php:39
1382
- msgid "Please enter Marker Category"
1383
- msgstr ""
1384
-
1385
- #: modules/marker_groups/views/tpl/mgrAdmin.php:5
1386
- msgid "Add Category"
1387
- msgstr ""
1388
-
1389
- #: modules/marker_groups/views/tpl/mgrAdmin.php:30
1390
- #, php-format
1391
- msgid ""
1392
- "You have no Marker Categories for now. <a href='%s' style='font-style: "
1393
- "italic;'>Create</a> your first Marker Category!"
1394
- msgstr ""
1395
-
1396
- #: modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:20
1397
- msgid "Save"
1398
- msgstr "Сохранить"
1399
-
1400
- #: modules/options/mod.php:84
1401
- msgid "General"
1402
- msgstr "Общее"
1403
-
1404
- #: modules/options/mod.php:86
1405
- msgid "Send usage statistics"
1406
- msgstr "Отправить статистику использования"
1407
-
1408
- #: modules/options/models/modules.php:32
1409
- msgid "Module Updated"
1410
- msgstr "Модуль обновлен"
1411
-
1412
- #: modules/options/models/modules.php:47
1413
- msgid "Module Update Failed"
1414
- msgstr "Обновление модуля не удалось"
1415
-
1416
- #: modules/options/models/modules.php:50
1417
- msgid "Error module ID"
1418
- msgstr "Ошибка ID модуля"
1419
-
1420
- #: modules/options/models/options.php:63
1421
- msgid "Empty data to save option"
1422
- msgstr "Данные пустые чтобы сохранить опцию"
1423
-
1424
- #: modules/options/views/tpl/optionsAdminMain.php:18
1425
- msgid "Main page Go here!!!!"
1426
- msgstr "Главная страница здесь !!!!"
1427
-
1428
- #: modules/options/views/tpl/optionsAdminPage.php:31
1429
- msgid "Improve Free version"
1430
- msgstr "Улучшить Бесплатную версию"
1431
-
1432
- #: modules/options/views/tpl/optionsAdminPage.php:33
1433
- #, php-format
1434
- msgid ""
1435
- "Please be advised that this option is available only in <a target='_blank' "
1436
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1437
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1438
- "PopUps!"
1439
- msgstr ""
1440
-
1441
- #: modules/supsystic_promo/controller.php:7
1442
- msgid "Information was saved. Thank you!"
1443
- msgstr "Информация сохранена. Спасибо!"
1444
-
1445
- #: modules/supsystic_promo/controller.php:23
1446
- msgid ""
1447
- "Please don't send contact requests so often - wait for response for your "
1448
- "previous requests."
1449
- msgstr ""
1450
- "Пожалуйста, не присылайте контактные запросы так часто - ждите ответ на ваши "
1451
- "предыдущие запросов."
1452
-
1453
- #: modules/supsystic_promo/controller.php:45
1454
- msgid "Please enter valid email address"
1455
- msgstr "Пожалуйста, введите действительный адрес электронной почты"
1456
-
1457
- #: modules/supsystic_promo/mod.php:24
1458
- msgid "Overview"
1459
- msgstr "Обзор"
1460
-
1461
- #: modules/supsystic_promo/mod.php:50
1462
- msgid "Welcome to Supsystic Secure"
1463
- msgstr "Добро пожаловать к Supsystic Secure"
1464
-
1465
- #: modules/supsystic_promo/mod.php:131
1466
- msgid "Name"
1467
- msgstr "Имя"
1468
-
1469
- #: modules/supsystic_promo/mod.php:133
1470
- msgid "Website"
1471
- msgstr "Сайт"
1472
-
1473
- #: modules/supsystic_promo/mod.php:134
1474
- msgid "Subject"
1475
- msgstr "Тема"
1476
-
1477
- #: modules/supsystic_promo/mod.php:135
1478
- msgid "Topic"
1479
- msgstr "Раздел"
1480
-
1481
- #: modules/supsystic_promo/mod.php:136
1482
- msgid "Plugin options"
1483
- msgstr "Опции плагина"
1484
-
1485
- #: modules/supsystic_promo/mod.php:137
1486
- msgid "Report a bug"
1487
- msgstr "Сообщить об ошибке"
1488
-
1489
- #: modules/supsystic_promo/mod.php:138
1490
- msgid "Require a new functionallity"
1491
- msgstr "Предложить новый функционал"
1492
-
1493
- #: modules/supsystic_promo/mod.php:139
1494
- msgid "Other"
1495
- msgstr "Другое"
1496
-
1497
- #: modules/supsystic_promo/mod.php:141
1498
- msgid "Message"
1499
- msgstr "Сообщение"
1500
-
1501
- #: modules/supsystic_promo/mod.php:141
1502
- msgid "Hello Supsystic Team!"
1503
- msgstr "Привет Supsystic Team!"
1504
-
1505
- #: modules/supsystic_promo/views/supsystic_promo.php:30
1506
- msgid "How to use Google Maps Easy Widget?"
1507
- msgstr ""
1508
-
1509
- #: modules/supsystic_promo/views/supsystic_promo.php:31
1510
- msgid ""
1511
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
1512
- "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
1513
- "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
1514
- "map for widget and configure the settings - Widget Map width and height.<br /"
1515
- ">5. Click 'Save'."
1516
- msgstr ""
1517
-
1518
- #: modules/supsystic_promo/views/supsystic_promo.php:32
1519
- msgid "How to add map into the site content?"
1520
- msgstr ""
1521
-
1522
- #: modules/supsystic_promo/views/supsystic_promo.php:33
1523
- msgid ""
1524
- "You can add a map in the site content via shortcode or php code. Learn more "
1525
- "about how to do this <a href='http://supsystic.com/add-map-into-site-"
1526
- "content/'>here</a>."
1527
- msgstr ""
1528
-
1529
- #: modules/supsystic_promo/views/supsystic_promo.php:34
1530
- msgid "How to add map in popup window?"
1531
- msgstr ""
1532
-
1533
- #: modules/supsystic_promo/views/supsystic_promo.php:35
1534
- msgid ""
1535
- "You can add a map in popup window by inserting map shortcode in any popup "
1536
- "text field. Learn more about how to do this <a href='http://supsystic.com/"
1537
- "add-map-in-popup-window/'>here</a>."
1538
- msgstr ""
1539
-
1540
- #: modules/supsystic_promo/views/supsystic_promo.php:36
1541
- msgid "How to zoom and center the initial map on markers ?"
1542
- msgstr ""
1543
-
1544
- #: modules/supsystic_promo/views/supsystic_promo.php:37
1545
- msgid ""
1546
- "There is a few different ways to zoom and centralize map. The easiest one is "
1547
- "to drag your map using mouse - 'Draggable' option must be enabled, or with "
1548
- "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
1549
- "zoom-and-center-the-initial-map-on-markers/'>Read more..</a>"
1550
- msgstr ""
1551
-
1552
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1553
- msgid "How to get PRO version of plugin for FREE?"
1554
- msgstr "Как получить PRO версию плагина БЕСПЛАТНО?"
1555
-
1556
- #: modules/supsystic_promo/views/supsystic_promo.php:38
1557
- #, php-format
1558
- msgid ""
1559
- "You have an incredible opportunity to get PRO version for free. Make "
1560
- "Translation of plugin! It will be amazing if you take advantage of this "
1561
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
1562
- "version of any plugin for FREE'</a>"
1563
- msgstr ""
1564
- "У вас есть невероятная возможность получить PRO версию бесплатно. Сделайте "
1565
- "перевод плагина! Это будет удивительно, если вы воспользоваться этим "
1566
- "предложением! Подробнее вы можете найти здесь <a target='_blank' "
1567
- "href='%s'>'Получить PRO версию любого плагина бесплатно'</a>"
1568
-
1569
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1570
- msgid "Translation"
1571
- msgstr "Перевод"
1572
-
1573
- #: modules/supsystic_promo/views/supsystic_promo.php:39
1574
- #, php-format
1575
- msgid ""
1576
- "All available languages are provided with the Supsystic Google Maps plugin. "
1577
- "If your language isn't available, your plugin will be in English by default."
1578
- "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
1579
- "b><br />Translate or update a translation Google Maps WordPress plugin in "
1580
- "your language and get a Premium license for FREE. <a target='_blank' "
1581
- "href='%s'>Contact us</a>."
1582
- msgstr ""
1583
-
1584
- #: modules/supsystic_promo/views/supsystic_promo.php:55
1585
- #, php-format
1586
- msgid ""
1587
- "There were some problem while trying to retrive our news, but you can always "
1588
- "check all list <a target='_blank' href='%s'>here</a>."
1589
- msgstr ""
1590
- "Были некоторые проблемы, пытаясь получить наши новости, но вы всегда можете "
1591
- "проверить весь список <a target='_blank' href='%s'>here</a>."
1592
-
1593
- #: modules/supsystic_promo/views/supsystic_promo.php:65
1594
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1595
- #: modules/supsystic_promo/views/supsystic_promo.php:71
1596
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1597
- #: modules/supsystic_promo/views/supsystic_promo.php:74
1598
- msgid "Yes"
1599
- msgstr "Да"
1600
-
1601
- #: modules/supsystic_promo/views/supsystic_promo.php:65
1602
- #: modules/supsystic_promo/views/supsystic_promo.php:66
1603
- #: modules/supsystic_promo/views/supsystic_promo.php:71
1604
- #: modules/supsystic_promo/views/supsystic_promo.php:73
1605
- #: modules/supsystic_promo/views/supsystic_promo.php:74
1606
- msgid "No"
1607
- msgstr "Нет"
1608
-
1609
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
1610
- #: modules/supsystic_promo/views/tpl/welcomePage.php:78
1611
- msgid "Version"
1612
- msgstr "Версия"
1613
-
1614
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1615
- msgid "Go"
1616
- msgstr "Вперед"
1617
-
1618
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
1619
- msgid "PRO"
1620
- msgstr "ПРО"
1621
-
1622
- #: modules/supsystic_promo/views/tpl/adminFooter.php:15
1623
- msgid "Support"
1624
- msgstr "Поддержка"
1625
-
1626
- #: modules/supsystic_promo/views/tpl/adminFooter.php:19
1627
- msgid "Add your"
1628
- msgstr "Добавить ваш"
1629
-
1630
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1631
- msgid "FAQ and Documentation"
1632
- msgstr "Часто задаваемые вопросы и документация"
1633
-
1634
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1635
- msgid "Check all FAQs"
1636
- msgstr "Часто задаваемые вопросы"
1637
-
1638
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1639
- #: modules/supsystic_promo/views/tpl/welcomePage.php:102
1640
- msgid "Video tutorial"
1641
- msgstr "Видео инструкция"
1642
-
1643
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1644
- msgid "PRO Features"
1645
- msgstr ""
1646
-
1647
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:40
1648
- msgid "Server Settings"
1649
- msgstr "Настройки сервера"
1650
-
1651
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:53
1652
- msgid "News"
1653
- msgstr "Новости"
1654
-
1655
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:59
1656
- msgid "All news and info"
1657
- msgstr "Все новости"
1658
-
1659
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:64
1660
- msgid "Contact form"
1661
- msgstr "Контактная форма"
1662
-
1663
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1664
- msgid "Send email"
1665
- msgstr "Отправить письмо"
1666
-
1667
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:105
1668
- msgid ""
1669
- "Your email was send, we will try to respond to you as soon as possible. "
1670
- "Thank you for support!"
1671
- msgstr ""
1672
-
1673
- #: modules/supsystic_promo/views/tpl/welcomePage.php:76
1674
- msgid "Welcome to"
1675
- msgstr "Добро пожаловать"
1676
-
1677
- #: modules/supsystic_promo/views/tpl/welcomePage.php:84
1678
- #, php-format
1679
- msgid "This is first start up of the %s plugin."
1680
- msgstr ""
1681
-
1682
- #: modules/supsystic_promo/views/tpl/welcomePage.php:85
1683
- msgid ""
1684
- "If you are newbie - check all features on that page, if you are guru - "
1685
- "please correct us."
1686
- msgstr ""
1687
-
1688
- #: modules/supsystic_promo/views/tpl/welcomePage.php:94
1689
- msgid "Please, post url"
1690
- msgstr ""
1691
-
1692
- #: modules/supsystic_promo/views/tpl/welcomePage.php:108
1693
- msgid "What to do next? Check below section"
1694
- msgstr ""
1695
-
1696
- #: modules/supsystic_promo/views/tpl/welcomePage.php:112
1697
- msgid "Boost us"
1698
- msgstr ""
1699
-
1700
- #: modules/supsystic_promo/views/tpl/welcomePage.php:113
1701
- #, php-format
1702
- msgid ""
1703
- "It's amazing when you boost development with your feedback and ratings. So "
1704
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
1705
- "help us."
1706
- msgstr ""
1707
-
1708
- #: modules/supsystic_promo/views/tpl/welcomePage.php:117
1709
- msgid "Documentation"
1710
- msgstr ""
1711
-
1712
- #: modules/supsystic_promo/views/tpl/welcomePage.php:118
1713
- #, php-format
1714
- msgid ""
1715
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
1716
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
1717
- msgstr ""
1718
-
1719
- #: modules/supsystic_promo/views/tpl/welcomePage.php:122
1720
- msgid "Full Features List"
1721
- msgstr ""
1722
-
1723
- #: modules/supsystic_promo/views/tpl/welcomePage.php:123
1724
- msgid "There are so many features, so we can't post it here. Like"
1725
- msgstr ""
1726
-
1727
- #: modules/supsystic_promo/views/tpl/welcomePage.php:125
1728
- msgid "Capcha for admin login"
1729
- msgstr ""
1730
-
1731
- #: modules/supsystic_promo/views/tpl/welcomePage.php:126
1732
- msgid "htaccess admin protect"
1733
- msgstr ""
1734
-
1735
- #: modules/supsystic_promo/views/tpl/welcomePage.php:127
1736
- msgid "Hide directory files listing"
1737
- msgstr ""
1738
-
1739
- #: modules/supsystic_promo/views/tpl/welcomePage.php:128
1740
- msgid "Check files and directories write permissions"
1741
- msgstr ""
1742
-
1743
- #: modules/supsystic_promo/views/tpl/welcomePage.php:130
1744
- #, php-format
1745
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
1746
- msgstr ""
1747
-
1748
- #~ msgid ""
1749
- #~ "Congradulations! PRO version of %s plugin is activated and working fine!"
1750
- #~ msgstr ""
1751
- #~ "Поздравляем! ПРО версия плагина %s активирована и работает нормально!"
1752
-
1753
- #~ msgid ""
1754
- #~ "Congradulations! You have successfully installed PRO version of %s "
1755
- #~ "plugin. Final step to finish Your PRO version setup - is to enter your "
1756
- #~ "Email and License Key on this page. This will activate Your copy of "
1757
- #~ "software on this site."
1758
- #~ msgstr ""
1759
- #~ "Поздравляем! Вы успешно установили ПРО версию %s плагина. Для завершения "
1760
- #~ "установки ПРО версии - введите Ваш Email и ключ лицензии на этой "
1761
- #~ "странице. "
1762
-
1763
- #~ msgid "Icon ID"
1764
- #~ msgstr "ID иконки"
1765
-
1766
- #~ msgid "Icon Title"
1767
- #~ msgstr "Заголовок иконки"
1768
-
1769
- #~ msgid "Icon Description"
1770
- #~ msgstr "Описание иконки"
1771
-
1772
- #~ msgid "File Path"
1773
- #~ msgstr "Путь файла"
1774
-
1775
- #~ msgid "Html Parametrs"
1776
- #~ msgstr "Html параметры"
1777
-
1778
- #~ msgid "Create Date"
1779
- #~ msgstr "Дата создания"
1780
-
1781
- #~ msgid "Additional Params"
1782
- #~ msgstr "Дополнительные параметры"
1783
-
1784
- #~ msgid "Marker"
1785
- #~ msgstr "Маркер"
1786
-
1787
- #~ msgid "Added %s maps"
1788
- #~ msgstr "Добавить %s карті"
1789
-
1790
- #~ msgid "Updated %s maps"
1791
- #~ msgstr "Карты %s обновлены"
1792
-
1793
- #~ msgid "Added %s markers"
1794
- #~ msgstr "Маркеры %s добавлены"
1795
-
1796
- #~ msgid "Updated %s markers"
1797
- #~ msgstr "Маркеры %s обновлены"
1798
-
1799
- #~ msgid "CSV Import and Export"
1800
- #~ msgstr "CSV Импорт и Экспорт"
1801
-
1802
- #~ msgid "Extended Options"
1803
- #~ msgstr "Расширенные параметры"
1804
-
1805
- #~ msgid "Get 300+ Themes"
1806
- #~ msgstr "Получить 300+ шаблонов"
1807
-
1808
- #~ msgid ""
1809
- #~ "Please be advised that this option is available only in <a "
1810
- #~ "target='_blank' href='%s'>PRO version</a>. You can <a target='_blank' "
1811
- #~ "href='%s' class='button'>Get PRO</a> today and get this and other PRO "
1812
- #~ "option for your Maps!"
1813
- #~ msgstr ""
1814
- #~ "Обратите внимание, что эта опция доступна только в <a target='_blank' "
1815
- #~ "href='%s'>ПРО версии</a>. Вы можете <a target='_blank' href='%s' "
1816
- #~ "class='button'>Получить ПРО</a> сегодня и получить эту и другие ПРО опции "
1817
- #~ "для Вашей карты"
1818
-
1819
- #~ msgid "Group"
1820
- #~ msgstr "Группа"
1821
-
1822
- #~ msgid "Creation Date"
1823
- #~ msgstr "Дата создания"
1824
-
1825
- #~ msgid "Uses On Map"
1826
- #~ msgstr "Использует на карте"
1827
-
1828
- #~ msgid "Back To Markers List"
1829
- #~ msgstr "Вернуться к списку маркеров"
1830
-
1831
- #~ msgid "Remove"
1832
- #~ msgstr "Удалить "
1833
-
1834
- #~ msgid "No maps contain this marker"
1835
- #~ msgstr "Нету карты которая содержит этот маркер"
1836
-
1837
- #~ msgid "Remove selected"
1838
- #~ msgstr "Удалить выбранное"
1839
-
1840
- #~ msgid "Nothing To Save"
1841
- #~ msgstr "Нечего сохранять"
1842
-
1843
- #~ msgid "Cannot Save Group"
1844
- #~ msgstr "Невозможно сохранить группу"
1845
-
1846
- #~ msgid "Group Not Found"
1847
- #~ msgstr "Группа не найдена"
1848
-
1849
- #~ msgid "Cannot remove group"
1850
- #~ msgstr "Невозможно удалить группу"
1851
-
1852
- #~ msgid "Save Group"
1853
- #~ msgstr "Сохранить группу"
1854
-
1855
- #~ msgid "Group Title"
1856
- #~ msgstr "Заголовок группы"
1857
-
1858
- #~ msgid "Title For Group"
1859
- #~ msgstr "Заголовок для группы"
1860
-
1861
- #~ msgid "Group Description"
1862
- #~ msgstr "Описание группы"
1863
-
1864
- #~ msgid "Description For Goup"
1865
- #~ msgstr "Описание для группы"
1866
-
1867
- #~ msgid "Reset"
1868
- #~ msgstr "Сбросить"
1869
-
1870
- #~ msgid ""
1871
- #~ "All available languages are provided with the Supsystic Google Maps "
1872
- #~ "plugin. If your language isn't available, your plugin will be in English "
1873
- #~ "by default.<br /><b>Available Translations: English</b><br />Translate or "
1874
- #~ "update a translation Google Maps WordPress plugin in your language and "
1875
- #~ "get a Premium license for FREE. <a target='_blank' href='%s'>Contact us</"
1876
- #~ "a>."
1877
- #~ msgstr ""
1878
- #~ "Все доступные языки обеспечиваются плагином Supsystic Google Maps. Если "
1879
- #~ "ваш язык не доступен, ваш плагин будет на английском языке по умолчанию."
1880
- #~ "<br /><b>Доступные переводы: English, Polish, German, Spanish, Russian</"
1881
- #~ "b><br /> Переведите плагин WordPress на ваш родной язык и получите "
1882
- #~ "лицензию БЕСПЛАТНО. <a target='_blank' href='%s'>Свяжитесь с нами</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/gmp_lng-sq.mo DELETED
Binary file
lang/gmp_lng-zh_TW.mo DELETED
Binary file
lang/gmp_lng-zh_TW.po DELETED
@@ -1,1992 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2015-04-12 19:26+0200\n"
5
- "PO-Revision-Date: 2017-12-15 13:21+0200\n"
6
- "Last-Translator: Sam <a9100a9957@gmail.com>\n"
7
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language: zh_TW\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.9\n"
13
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SearchPath-0: ..\n"
16
-
17
- #: ../classes/controller.php:198 ../classes/controller.php:206
18
- #: ../doc/google-maps-easy-pro/license/controller.php:6
19
- #: ../doc/old-version/classes/controller.php:198
20
- #: ../doc/old-version/classes/controller.php:206
21
- #: ../doc/old-version/modules/adminmenu/controller.php:29
22
- #: ../doc/old-version/modules/gmap/controller.php:39
23
- #: ../doc/old-version/modules/gmap/controller.php:56
24
- #: ../doc/old-version/modules/marker/controller.php:8
25
- #: ../doc/old-version/modules/marker/controller.php:46
26
- #: ../doc/old-version/modules/marker/controller.php:61
27
- #: ../doc/old-version/modules/marker/controller.php:101
28
- #: ../doc/old-version/modules/marker_groups/controller.php:18
29
- #: ../doc/old-version/modules/marker_groups/controller.php:33
30
- #: ../doc/old-version/modules/options/controller.php:6
31
- #: ../modules/adminmenu/controller.php:29 ../modules/gmap/controller.php:39
32
- #: ../modules/gmap/controller.php:56 ../modules/marker/controller.php:8
33
- #: ../modules/marker/controller.php:46 ../modules/marker/controller.php:61
34
- #: ../modules/marker/controller.php:101
35
- #: ../modules/marker_groups/controller.php:18
36
- #: ../modules/marker_groups/controller.php:33
37
- #: ../modules/options/controller.php:6
38
- msgid "Done"
39
- msgstr "完成"
40
-
41
- #: ../classes/field.php:131 ../doc/old-version/classes/field.php:131
42
- msgid "Select"
43
- msgstr "選擇"
44
-
45
- #: ../classes/field.php:170 ../classes/field.php:179 ../classes/field.php:184
46
- #: ../doc/old-version/classes/field.php:170
47
- #: ../doc/old-version/classes/field.php:179
48
- #: ../doc/old-version/classes/field.php:184
49
- msgid "N/A"
50
- msgstr "N/A"
51
-
52
- #: ../classes/field.php:277 ../doc/old-version/classes/field.php:277
53
- msgid "Add Checkbox"
54
- msgstr "新增選取方塊"
55
-
56
- #: ../classes/field.php:282 ../classes/field.php:287
57
- #: ../doc/old-version/classes/field.php:282
58
- #: ../doc/old-version/classes/field.php:287
59
- msgid "Add Item"
60
- msgstr "新增項目"
61
-
62
- #: ../classes/field.php:293 ../doc/old-version/classes/field.php:293
63
- msgid "Add Radio Button"
64
- msgstr "新增核取方塊"
65
-
66
- #: ../classes/field.php:311 ../doc/old-version/classes/field.php:311
67
- msgid "Dimensions"
68
- msgstr "尺寸"
69
-
70
- #: ../classes/field.php:314 ../doc/old-version/classes/field.php:314
71
- msgid "width"
72
- msgstr "寬度"
73
-
74
- #: ../classes/field.php:316 ../doc/old-version/classes/field.php:316
75
- msgid "height"
76
- msgstr "高度"
77
-
78
- #: ../classes/field.php:323 ../doc/old-version/classes/field.php:323
79
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
80
- msgstr "點這邊來設定欄位 &quot;id&quot; 和&quot;class&quot;"
81
-
82
- #: ../classes/field.php:324 ../doc/old-version/classes/field.php:324
83
- msgid "Attributes"
84
- msgstr "屬性"
85
-
86
- #: ../classes/field.php:402 ../doc/old-version/classes/field.php:402
87
- msgid "There are no configuration options for this module"
88
- msgstr "這個模組沒有任何設定選項"
89
-
90
- #: ../classes/fieldAdapter.php:93
91
- #: ../doc/old-version/classes/fieldAdapter.php:93
92
- msgid "Apply To"
93
- msgstr "套用到"
94
-
95
- #: ../classes/fieldAdapter.php:95
96
- #: ../doc/old-version/classes/fieldAdapter.php:95
97
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:349
98
- #: ../doc/old-version/modules/marker/views/marker.php:35
99
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:64
100
- #: ../modules/gmap/views/tpl/gmapEditMap.php:437
101
- msgid "Address"
102
- msgstr "地址"
103
-
104
- #: ../classes/fieldAdapter.php:96
105
- #: ../doc/old-version/classes/fieldAdapter.php:96
106
- msgid "Destination"
107
- msgstr "目的地"
108
-
109
- #: ../classes/fieldAdapter.php:97
110
- #: ../doc/old-version/classes/fieldAdapter.php:97
111
- msgid "Country"
112
- msgstr "國家"
113
-
114
- #: ../classes/fieldAdapter.php:100
115
- #: ../doc/old-version/classes/fieldAdapter.php:100
116
- msgid "Categories"
117
- msgstr "分類"
118
-
119
- #: ../classes/fieldAdapter.php:101
120
- #: ../doc/old-version/classes/fieldAdapter.php:101
121
- msgid "You have no categories"
122
- msgstr "您沒有分類"
123
-
124
- #: ../classes/fieldAdapter.php:102
125
- #: ../doc/old-version/classes/fieldAdapter.php:102
126
- msgid "Brands"
127
- msgstr "商標"
128
-
129
- #: ../classes/fieldAdapter.php:103
130
- #: ../doc/old-version/classes/fieldAdapter.php:103
131
- msgid "You have no brands"
132
- msgstr "您沒有商標"
133
-
134
- #: ../classes/fieldAdapter.php:105
135
- #: ../doc/old-version/classes/fieldAdapter.php:105
136
- msgid "Tax Rate"
137
- msgstr "稅率"
138
-
139
- #: ../classes/fieldAdapter.php:106
140
- #: ../doc/old-version/classes/fieldAdapter.php:106
141
- msgid "Absolute"
142
- msgstr "絕對值"
143
-
144
- #: ../classes/fieldAdapter.php:134
145
- #: ../doc/old-version/classes/fieldAdapter.php:134
146
- msgid "Not selected"
147
- msgstr "沒有選取"
148
-
149
- #: ../classes/fieldAdapter.php:184
150
- #: ../doc/old-version/classes/fieldAdapter.php:184
151
- msgid "class"
152
- msgstr "class"
153
-
154
- #: ../classes/fieldAdapter.php:186
155
- #: ../doc/old-version/classes/fieldAdapter.php:186
156
- msgid "id"
157
- msgstr "id"
158
-
159
- #: ../classes/frame.php:135 ../doc/old-version/classes/frame.php:135
160
- msgid "You have no permissions to view this page"
161
- msgstr "您沒有權限檢視這個頁面"
162
-
163
- #: ../classes/html.php:207 ../doc/old-version/classes/html.php:207
164
- msgid "Upload"
165
- msgstr "上傳"
166
-
167
- #: ../classes/html.php:611 ../doc/old-version/classes/html.php:611
168
- msgid "ON"
169
- msgstr "ON"
170
-
171
- #: ../classes/html.php:612 ../doc/old-version/classes/html.php:612
172
- msgid "OFF"
173
- msgstr "OFF"
174
-
175
- #: ../classes/html.php:636 ../doc/old-version/classes/html.php:636
176
- #, php-format
177
- msgid "Select %s"
178
- msgstr "選擇 %s"
179
-
180
- #: ../classes/model.php:174 ../classes/model.php:186
181
- #: ../doc/old-version/classes/model.php:174
182
- #: ../doc/old-version/classes/model.php:186
183
- msgid "Database error detected"
184
- msgstr "檢測到資料庫錯誤"
185
-
186
- #: ../classes/model.php:176 ../doc/old-version/classes/model.php:176
187
- #: ../doc/old-version/modules/gmap/models/gmap.php:103
188
- #: ../doc/old-version/modules/icons/models/icons.php:133
189
- #: ../modules/gmap/models/gmap.php:105 ../modules/icons/models/icons.php:133
190
- msgid "Invalid ID"
191
- msgstr "不正確的 ID"
192
-
193
- #: ../classes/model.php:209 ../doc/old-version/classes/model.php:209
194
- msgid "Empty or invalid ID"
195
- msgstr "空的或不正確的 ID"
196
-
197
- #: ../classes/modInstaller.php:34
198
- #: ../doc/old-version/classes/modInstaller.php:34
199
- #, php-format
200
- msgid "Move files for %s failed"
201
- msgstr "移動檔案 %s 失敗"
202
-
203
- #: ../classes/modInstaller.php:37
204
- #: ../doc/old-version/classes/modInstaller.php:37
205
- #, php-format
206
- msgid "%s is not plugin module"
207
- msgstr "%s 不是外掛模組"
208
-
209
- #: ../classes/modInstaller.php:76
210
- #: ../doc/old-version/classes/modInstaller.php:76
211
- msgid "Can not create module directory. Try to set permission to "
212
- msgstr "無法建立模組資料夾. 請嘗試設定權限到"
213
-
214
- #: ../classes/modInstaller.php:103
215
- #: ../doc/old-version/classes/modInstaller.php:103
216
- msgid "No modules were found in XML file"
217
- msgstr "沒有在XML檔案找到模組"
218
-
219
- #: ../classes/modInstaller.php:107
220
- #: ../doc/old-version/classes/modInstaller.php:107
221
- msgid "Invalid XML file"
222
- msgstr "不正確的XML檔案"
223
-
224
- #: ../classes/modInstaller.php:109
225
- #: ../doc/old-version/classes/modInstaller.php:109
226
- msgid "No XML file were found"
227
- msgstr "沒有發現任何XML檔案"
228
-
229
- #: ../classes/modInstaller.php:128
230
- #: ../doc/old-version/classes/modInstaller.php:128
231
- #, php-format
232
- msgid "Install %s failed"
233
- msgstr "安裝 %s 失敗"
234
-
235
- #: ../classes/modInstaller.php:134
236
- #: ../doc/old-version/classes/modInstaller.php:134
237
- msgid "Error Activate module"
238
- msgstr "啟用模組錯誤"
239
-
240
- #: ../classes/modInstaller.php:164
241
- #: ../doc/old-version/classes/modInstaller.php:164
242
- msgid "Error Deactivation module"
243
- msgstr "停用模組錯誤"
244
-
245
- #: ../classes/modInstaller.php:185
246
- #: ../doc/old-version/classes/modInstaller.php:185
247
- msgid "Error Activating module"
248
- msgstr "啟用模組錯誤"
249
-
250
- #: ../classes/table.php:277 ../doc/old-version/classes/table.php:277
251
- msgid "Nothig to update"
252
- msgstr "沒有任何更新"
253
-
254
- #: ../classes/table.php:293 ../doc/old-version/classes/table.php:293
255
- msgid "Database error. Please contact your developer."
256
- msgstr "資料庫錯誤. 請聯絡您的開發者"
257
-
258
- #: ../classes/validator.php:30 ../doc/old-version/classes/validator.php:30
259
- #, php-format
260
- msgid "Invalid length for %s, max length is %s"
261
- msgstr "%s 錯誤的長度, 最大長度為 %s"
262
-
263
- #: ../classes/validator.php:43 ../doc/old-version/classes/validator.php:43
264
- #, php-format
265
- msgid "Invalid numeric value for %s"
266
- msgstr "%s是不正確的數字資料"
267
-
268
- #: ../classes/validator.php:71 ../doc/old-version/classes/validator.php:71
269
- #: ../doc/old-version/modules/supsystic_promo/controller.php:39
270
- #: ../modules/supsystic_promo/controller.php:39
271
- #, php-format
272
- msgid "Please enter %s"
273
- msgstr "請輸入 %s"
274
-
275
- #: ../classes/validator.php:78 ../doc/old-version/classes/validator.php:78
276
- #: ../doc/old-version/modules/supsystic_promo/controller.php:39
277
- #: ../modules/supsystic_promo/controller.php:39
278
- #, php-format
279
- msgid "Please select %s"
280
- msgstr "請選擇 %s"
281
-
282
- #: ../classes/validator.php:85 ../classes/validator.php:101
283
- #: ../doc/old-version/classes/validator.php:85
284
- #: ../doc/old-version/classes/validator.php:101
285
- #, php-format
286
- msgid "Invalid %s"
287
- msgstr "不正確 %s"
288
-
289
- #: ../classes/validator.php:88 ../doc/old-version/classes/validator.php:88
290
- #, php-format
291
- msgid "%s is already registered"
292
- msgstr "%s 已經註冊"
293
-
294
- #: ../classes/tables/marker.php:7 ../classes/tables/marker_groups.php:8
295
- #: ../doc/old-version/classes/tables/maps.php:8
296
- #: ../doc/old-version/classes/tables/marker.php:7
297
- #: ../doc/old-version/classes/tables/marker_groups.php:8
298
- msgid "Map ID"
299
- msgstr "地圖 ID"
300
-
301
- #: ../classes/tables/marker.php:8 ../classes/tables/marker_groups.php:9
302
- #: ../doc/old-version/classes/tables/maps.php:9
303
- #: ../doc/old-version/classes/tables/marker.php:8
304
- #: ../doc/old-version/classes/tables/marker_groups.php:9
305
- msgid "File name"
306
- msgstr "檔案名稱"
307
-
308
- #: ../classes/tables/marker.php:9 ../classes/tables/marker_groups.php:10
309
- #: ../doc/old-version/classes/tables/maps.php:10
310
- #: ../doc/old-version/classes/tables/marker.php:9
311
- #: ../doc/old-version/classes/tables/marker_groups.php:10
312
- msgid "Description Of Map"
313
- msgstr "地圖的描述"
314
-
315
- #: ../classes/tables/marker.php:10
316
- #: ../doc/old-version/classes/tables/marker.php:10
317
- msgid "X coordinate if marker(lng)"
318
- msgstr "X座標 (經度)"
319
-
320
- #: ../classes/tables/marker.php:11
321
- #: ../doc/old-version/classes/tables/marker.php:11
322
- msgid "Y coordinate of marker(lat)"
323
- msgstr "Y座標 (緯度)"
324
-
325
- #: ../classes/tables/marker.php:12
326
- #: ../doc/old-version/classes/tables/marker.php:12
327
- msgid "Path of icon file"
328
- msgstr "小圖示檔案路徑"
329
-
330
- #: ../classes/tables/marker.php:13
331
- #: ../doc/old-version/classes/tables/marker.php:13
332
- msgid "Map Id"
333
- msgstr "地圖 Id"
334
-
335
- #: ../classes/tables/marker.php:14
336
- #: ../doc/old-version/classes/tables/marker.php:14
337
- msgid "Marker Address"
338
- msgstr "地標地址"
339
-
340
- #: ../classes/tables/marker.php:15
341
- #: ../doc/old-version/classes/tables/marker.php:15
342
- msgid "Id of Marker's group"
343
- msgstr "地標群組 Id"
344
-
345
- #: ../classes/tables/marker.php:16
346
- #: ../doc/old-version/classes/tables/marker.php:16
347
- msgid "Animation"
348
- msgstr "動畫"
349
-
350
- #: ../classes/tables/marker.php:17 ../classes/tables/modules.php:10
351
- #: ../classes/tables/options.php:11
352
- #: ../doc/old-version/classes/tables/marker.php:17
353
- #: ../doc/old-version/classes/tables/modules.php:10
354
- #: ../doc/old-version/classes/tables/options.php:11
355
- msgid "Params"
356
- msgstr "參數"
357
-
358
- #: ../classes/tables/marker.php:18
359
- #: ../doc/old-version/classes/tables/marker.php:18
360
- msgid "Creation date"
361
- msgstr "建立日期"
362
-
363
- #: ../classes/tables/modules.php:7 ../classes/tables/modules_type.php:8
364
- #: ../classes/tables/options.php:10
365
- #: ../doc/old-version/classes/tables/modules.php:7
366
- #: ../doc/old-version/classes/tables/modules_type.php:8
367
- #: ../doc/old-version/classes/tables/options.php:10
368
- msgid "Label"
369
- msgstr "標籤"
370
-
371
- #: ../classes/tables/modules.php:8 ../classes/tables/options.php:13
372
- #: ../doc/old-version/classes/tables/modules.php:8
373
- #: ../doc/old-version/classes/tables/options.php:13
374
- msgid "Type"
375
- msgstr "類型"
376
-
377
- #: ../classes/tables/modules.php:9
378
- #: ../doc/old-version/classes/tables/modules.php:9
379
- msgid "Active"
380
- msgstr "啟用"
381
-
382
- #: ../classes/tables/modules.php:11
383
- #: ../doc/old-version/classes/tables/modules.php:11
384
- msgid "Has Tab"
385
- msgstr "Has Tab"
386
-
387
- #: ../classes/tables/modules.php:12 ../classes/tables/options.php:12
388
- #: ../doc/old-version/classes/tables/modules.php:12
389
- #: ../doc/old-version/classes/tables/options.php:12
390
- #: ../doc/old-version/modules/marker/views/marker.php:32
391
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:10
392
- msgid "Description"
393
- msgstr "描述"
394
-
395
- #: ../classes/tables/modules.php:13 ../classes/tables/options.php:8
396
- #: ../classes/tables/usage.php:9
397
- #: ../doc/old-version/classes/tables/modules.php:13
398
- #: ../doc/old-version/classes/tables/options.php:8
399
- #: ../doc/old-version/classes/tables/usage.php:9
400
- msgid "Code"
401
- msgstr "Code"
402
-
403
- #: ../classes/tables/modules.php:14
404
- #: ../doc/old-version/classes/tables/modules.php:14
405
- msgid "External plugin directory"
406
- msgstr "外部外掛資料夾"
407
-
408
- #: ../classes/tables/modules_type.php:7 ../classes/tables/options.php:7
409
- #: ../classes/tables/options_categories.php:7
410
- #: ../doc/old-version/classes/tables/modules_type.php:7
411
- #: ../doc/old-version/classes/tables/options.php:7
412
- #: ../doc/old-version/classes/tables/options_categories.php:7
413
- #: ../doc/old-version/modules/gmap/views/gmap.php:154
414
- #: ../doc/old-version/modules/marker/views/marker.php:29
415
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:7
416
- #: ../modules/gmap/views/gmap.php:122
417
- msgid "ID"
418
- msgstr "ID"
419
-
420
- #: ../classes/tables/options.php:9
421
- #: ../doc/old-version/classes/tables/options.php:9
422
- msgid "Value"
423
- msgstr "值"
424
-
425
- #: ../classes/tables/options.php:14
426
- #: ../doc/old-version/classes/tables/options.php:14
427
- msgid "Category ID"
428
- msgstr "分類 ID"
429
-
430
- #: ../classes/tables/options.php:15
431
- #: ../doc/old-version/classes/tables/options.php:15
432
- msgid "Sort Order"
433
- msgstr "排序"
434
-
435
- #: ../classes/tables/options.php:16
436
- #: ../doc/old-version/classes/tables/options.php:16
437
- msgid "Value Type"
438
- msgstr "資料型態"
439
-
440
- #: ../classes/tables/options_categories.php:8
441
- #: ../doc/old-version/classes/tables/options_categories.php:8
442
- msgid "Method"
443
- msgstr "方法"
444
-
445
- #: ../classes/tables/usage.php:8 ../doc/old-version/classes/tables/usage.php:8
446
- msgid "Usage id"
447
- msgstr "使用ID"
448
-
449
- #: ../classes/tables/usage.php:10
450
- #: ../doc/old-version/classes/tables/usage.php:10
451
- msgid "Visits Count"
452
- msgstr "瀏覽次數"
453
-
454
- #: ../doc/google-maps-easy-pro/wpUpdater.php:68
455
- msgid ""
456
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
457
- "onclick='document.location.reload(); return false;'>Try again</a>"
458
- msgstr ""
459
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
460
- "onclick='document.location.reload(); return false;'>Try again</a>"
461
-
462
- #: ../doc/google-maps-easy-pro/wpUpdater.php:73
463
- msgid "An unknown error occurred"
464
- msgstr "未知的錯誤"
465
-
466
- #: ../doc/google-maps-easy-pro/license/mod.php:23
467
- #, php-format
468
- msgid ""
469
- "Your license is expired. Once you extend your license - you will be able to "
470
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
471
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
472
- "click on 'Re-activate' button to re-activate your PRO version."
473
- msgstr ""
474
- "您的授權已經到期. 一旦您延展您的授權, 您將可以再次更新到 PRO 版本.要延展您"
475
- "的 PRO版本授權, 請點<a href='%s' target='_blank'>這個連結</a> ,接著到 <a "
476
- "href='%s'>授權</a>標籤按下'重新啟用'按鈕來重新啟用您的 PRO版本"
477
-
478
- #: ../doc/google-maps-easy-pro/license/mod.php:31
479
- #, php-format
480
- msgid ""
481
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
482
- "target='_blank'>click here</a> to extend your license, then - go to <a "
483
- "href='%s'>License</a> tab anc click on 'Re-activate' button to re-activate "
484
- "your PRO version."
485
- msgstr ""
486
- "您的 %s 外掛PRO 版本已經到期. 您可以 <a href='%s' target='_blank'>點擊這邊</"
487
- "a> 來延展您的授權, 然後到 <a href='%s'>授權</a> 標籤並且點擊'重新啟用' 按鈕來"
488
- "重新啟動您的 PRO 版本"
489
-
490
- #: ../doc/google-maps-easy-pro/license/mod.php:44
491
- msgid "License"
492
- msgstr "授權"
493
-
494
- #: ../doc/google-maps-easy-pro/license/models/license.php:54
495
- msgid "Please enter your License Key"
496
- msgstr "請輸入您的授權碼"
497
-
498
- #: ../doc/google-maps-easy-pro/license/models/license.php:56
499
- msgid "Please enter your Email address"
500
- msgstr "請輸入您的 Email 地址"
501
-
502
- #: ../doc/google-maps-easy-pro/license/models/license.php:130
503
- msgid ""
504
- "There was a problem with sending request to our autentification server. "
505
- "Please try latter."
506
- msgstr ""
507
- "There was a problem with sending request to our autentification server. "
508
- "Please try latter."
509
-
510
- #: ../doc/google-maps-easy-pro/license/models/license.php:153
511
- #, php-format
512
- msgid "License for plugin %s will expire today."
513
- msgstr "%s 外掛授權碼將在今天到期"
514
-
515
- #: ../doc/google-maps-easy-pro/license/models/license.php:155
516
- #, php-format
517
- msgid "License for plugin %s will expire tomorrow."
518
- msgstr "%s 外掛授權碼將在明天到期"
519
-
520
- #: ../doc/google-maps-easy-pro/license/models/license.php:157
521
- #, php-format
522
- msgid "License for plugin %s will expire in %d days."
523
- msgstr "%s 外掛授權碼將於 %d 天內到期"
524
-
525
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
526
- #, php-format
527
- msgid ""
528
- "Congradulations! PRO version of %s plugin is activated and working fine!"
529
- msgstr "恭喜 %s 外掛 PRO 版本已經啟用並且正常運作!"
530
-
531
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
532
- #, php-format
533
- msgid ""
534
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
535
- "target='_blank'>click here</a> to extend your license, then - click on 'Re-"
536
- "activate' button to re-activate your PRO version."
537
- msgstr ""
538
- "您的 %s 外掛 PRO授權碼已經到期. 您可以<a href='%s' target='_blank'>點擊這裡</"
539
- "a> 來延長您的授權,然後 -點擊 '重新啟用' 按鈕來重新啟用您的PRO版本"
540
-
541
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
542
- #, php-format
543
- msgid ""
544
- "Congradulations! You have successfully installed PRO version of %s plugin. "
545
- "Final step to finish Your PRO version setup - is to enter your Email and "
546
- "License Key on this page. This will activate Your copy of software on this "
547
- "site."
548
- msgstr ""
549
- "恭喜! 您已經成功安裝 %s 外掛的 PRO 版本. 最後一個完成的步驟是在本頁面輸入您"
550
- "的Emai 與 授權碼, 系統將會在這個頁面啟用您的軟體副本"
551
-
552
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
553
- #: ../doc/old-version/modules/supsystic_promo/mod.php:124
554
- #: ../modules/supsystic_promo/mod.php:124
555
- msgid "Email"
556
- msgstr "Email"
557
-
558
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
559
- msgid ""
560
- "Your email address, used on checkout procedure on <a href='%' "
561
- "target='_blank'>%s</a>"
562
- msgstr "您的 Email 地址使用在<a href='%' target='_blank'>%s</a>驗證過程"
563
-
564
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
565
- msgid "License Key"
566
- msgstr "授權碼"
567
-
568
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
569
- msgid ""
570
- "Your License Key from your account on <a href='%' target='_blank'>%s</a>"
571
- msgstr ""
572
- "Your License Key from your account on <a href='%' target='_blank'>%s</a>"
573
-
574
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
575
- msgid "Re-activate"
576
- msgstr "重新啟用"
577
-
578
- #: ../doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
579
- msgid "Activate"
580
- msgstr "啟用"
581
-
582
- #: ../doc/old-version/classes/tables/icons.php:8
583
- msgid "Icon ID"
584
- msgstr "小圖示 ID"
585
-
586
- #: ../doc/old-version/classes/tables/icons.php:9
587
- msgid "Icon Title"
588
- msgstr "小圖示名稱"
589
-
590
- #: ../doc/old-version/classes/tables/icons.php:10
591
- msgid "Icon Description"
592
- msgstr "小圖示描述"
593
-
594
- #: ../doc/old-version/classes/tables/icons.php:11
595
- msgid "File Path"
596
- msgstr "檔案路徑"
597
-
598
- #: ../doc/old-version/classes/tables/maps.php:11
599
- msgid "Html Parametrs"
600
- msgstr "Html 參數"
601
-
602
- #: ../doc/old-version/classes/tables/maps.php:12
603
- msgid "Create Date"
604
- msgstr "建立日期"
605
-
606
- #: ../doc/old-version/classes/tables/maps.php:13
607
- msgid "Additional Params"
608
- msgstr "額外的參數"
609
-
610
- #: ../doc/old-version/modules/adminmenu/controller.php:7
611
- #: ../modules/adminmenu/controller.php:7
612
- msgid "Your name field is required."
613
- msgstr "您的姓名欄位是必填"
614
-
615
- #: ../doc/old-version/modules/adminmenu/controller.php:8
616
- #: ../modules/adminmenu/controller.php:8
617
- msgid "Your website field is required."
618
- msgstr "您的網址欄位是必填"
619
-
620
- #: ../doc/old-version/modules/adminmenu/controller.php:9
621
- #: ../modules/adminmenu/controller.php:9
622
- msgid "Your e-mail field is required."
623
- msgstr "您的 e-mail 欄位是必填"
624
-
625
- #: ../doc/old-version/modules/adminmenu/controller.php:10
626
- #: ../modules/adminmenu/controller.php:10
627
- msgid "Subject field is required."
628
- msgstr "主旨欄位是必填"
629
-
630
- #: ../doc/old-version/modules/adminmenu/controller.php:11
631
- #: ../modules/adminmenu/controller.php:11
632
- msgid "You must select a valid category."
633
- msgstr "您必須選擇一個分類"
634
-
635
- #: ../doc/old-version/modules/adminmenu/controller.php:12
636
- #: ../modules/adminmenu/controller.php:12
637
- msgid "Message field is required."
638
- msgstr "訊息欄位是必填"
639
-
640
- #: ../doc/old-version/modules/adminmenu/mod.php:12
641
- #: ../modules/adminmenu/mod.php:12
642
- msgid "Settings"
643
- msgstr "設定"
644
-
645
- #: ../doc/old-version/modules/csv/controller.php:11
646
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:9
647
- #: ../modules/csv/controller.php:11
648
- #: ../modules/csv/views/tpl/csvTabContent.php:9
649
- msgid "Maps"
650
- msgstr "地圖"
651
-
652
- #: ../doc/old-version/modules/csv/controller.php:47
653
- #: ../modules/csv/controller.php:47
654
- msgid "Marker"
655
- msgstr "地標"
656
-
657
- #: ../doc/old-version/modules/csv/controller.php:100
658
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:30
659
- #: ../doc/old-version/modules/gmap/views/gmap.php:158
660
- #: ../modules/csv/controller.php:100
661
- #: ../modules/csv/views/tpl/csvTabContent.php:30
662
- #: ../modules/gmap/views/gmap.php:125
663
- #: ../modules/gmap/views/tpl/gmapEditMap.php:17
664
- msgid "Markers"
665
- msgstr "地標"
666
-
667
- #: ../doc/old-version/modules/csv/controller.php:133
668
- #: ../modules/csv/controller.php:133
669
- msgid "Missing File"
670
- msgstr "遺失檔案"
671
-
672
- #: ../doc/old-version/modules/csv/controller.php:135
673
- #: ../modules/csv/controller.php:135
674
- #, php-format
675
- msgid "File uploaded with error code %s"
676
- msgstr "檔案已上傳但有錯誤代碼 %s"
677
-
678
- #: ../doc/old-version/modules/csv/controller.php:154
679
- #: ../modules/csv/controller.php:154
680
- #, php-format
681
- msgid "Added %s maps"
682
- msgstr "已經新增 %s 地圖"
683
-
684
- #: ../doc/old-version/modules/csv/controller.php:156
685
- #: ../modules/csv/controller.php:156
686
- #, php-format
687
- msgid "Updated %s maps"
688
- msgstr "已經更新 %s 地圖"
689
-
690
- #: ../doc/old-version/modules/csv/controller.php:158
691
- #: ../modules/csv/controller.php:158
692
- #, php-format
693
- msgid "Added %s markers"
694
- msgstr "已經新增 %s 地標"
695
-
696
- #: ../doc/old-version/modules/csv/controller.php:160
697
- #: ../modules/csv/controller.php:160
698
- #, php-format
699
- msgid "Updated %s markers"
700
- msgstr "已經更新 %s 地標"
701
-
702
- #: ../doc/old-version/modules/csv/controller.php:164
703
- #: ../modules/csv/controller.php:164
704
- msgid ""
705
- "File should contain more then 1 row, at least 1 row should be for headers"
706
- msgstr "檔案至少應該要包含1個以上的資料列, 至少一列應該是檔頭"
707
-
708
- #: ../doc/old-version/modules/csv/controller.php:166
709
- #: ../modules/csv/controller.php:166
710
- msgid "Empty data in file"
711
- msgstr "檔案是空的"
712
-
713
- #: ../doc/old-version/modules/csv/mod.php:11 ../modules/csv/mod.php:11
714
- msgid "Maps Import / Export"
715
- msgstr "地圖 <br /> 匯出 / 匯入"
716
-
717
- #: ../doc/old-version/modules/csv/models/csv.php:133
718
- #: ../modules/csv/models/csv.php:133
719
- msgid "Can not detect import list type"
720
- msgstr "無法檢測導入列表的類型"
721
-
722
- #: ../doc/old-version/modules/csv/models/csv.php:135
723
- #: ../modules/csv/models/csv.php:135
724
- msgid "Can not find fields names"
725
- msgstr "無法找到欄位名稱"
726
-
727
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:14
728
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:35
729
- #: ../modules/csv/views/tpl/csvTabContent.php:14
730
- #: ../modules/csv/views/tpl/csvTabContent.php:35
731
- msgid "Export"
732
- msgstr "匯出"
733
-
734
- #: ../doc/old-version/modules/csv/views/tpl/csvTabContent.php:38
735
- #: ../modules/csv/views/tpl/csvTabContent.php:38
736
- msgid "Import"
737
- msgstr "匯入"
738
-
739
- #: ../doc/old-version/modules/gmap/controller.php:23
740
- #: ../modules/gmap/controller.php:23
741
- msgid "Map data not found"
742
- msgstr "找不到地圖資料"
743
-
744
- #: ../doc/old-version/modules/gmap/mod.php:12 ../modules/gmap/mod.php:13
745
- msgid "Add Map"
746
- msgstr "新增地圖"
747
-
748
- #: ../doc/old-version/modules/gmap/mod.php:15
749
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:409
750
- #: ../doc/old-version/modules/marker/views/tpl/markerListOperations.php:3
751
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:35
752
- #: ../modules/gmap/mod.php:16 ../modules/gmap/views/tpl/gmapEditMap.php:550
753
- msgid "Edit"
754
- msgstr "編輯"
755
-
756
- #: ../doc/old-version/modules/gmap/mod.php:18 ../modules/gmap/mod.php:19
757
- msgid "All Maps"
758
- msgstr "所有地圖"
759
-
760
- #: ../doc/old-version/modules/gmap/mod.php:28 ../modules/gmap/mod.php:29
761
- msgid "No Map Found"
762
- msgstr "找不到地圖"
763
-
764
- #: ../doc/old-version/modules/gmap/mod.php:38 ../modules/gmap/mod.php:39
765
- msgid "Empty or Invalid Map ID"
766
- msgstr "空的或不正確的地圖 ID"
767
-
768
- #: ../doc/old-version/modules/gmap/mod.php:57 ../modules/gmap/mod.php:58
769
- msgid "Top Center"
770
- msgstr "上中"
771
-
772
- #: ../doc/old-version/modules/gmap/mod.php:58 ../modules/gmap/mod.php:59
773
- msgid "Top Left"
774
- msgstr "上左"
775
-
776
- #: ../doc/old-version/modules/gmap/mod.php:59 ../modules/gmap/mod.php:60
777
- msgid "Top Right"
778
- msgstr "上右"
779
-
780
- #: ../doc/old-version/modules/gmap/mod.php:60 ../modules/gmap/mod.php:61
781
- msgid "Left Top"
782
- msgstr "左上"
783
-
784
- #: ../doc/old-version/modules/gmap/mod.php:61 ../modules/gmap/mod.php:62
785
- msgid "Right Top"
786
- msgstr "右上"
787
-
788
- #: ../doc/old-version/modules/gmap/mod.php:62 ../modules/gmap/mod.php:63
789
- msgid "Left Center"
790
- msgstr "左中"
791
-
792
- #: ../doc/old-version/modules/gmap/mod.php:63 ../modules/gmap/mod.php:64
793
- msgid "Right Center"
794
- msgstr "右中"
795
-
796
- #: ../doc/old-version/modules/gmap/mod.php:64 ../modules/gmap/mod.php:65
797
- msgid "Left Bottom"
798
- msgstr "左下"
799
-
800
- #: ../doc/old-version/modules/gmap/mod.php:65 ../modules/gmap/mod.php:66
801
- msgid "Right Bottom"
802
- msgstr "右下"
803
-
804
- #: ../doc/old-version/modules/gmap/mod.php:66 ../modules/gmap/mod.php:67
805
- msgid "Bottom Center"
806
- msgstr "下中"
807
-
808
- #: ../doc/old-version/modules/gmap/mod.php:67 ../modules/gmap/mod.php:68
809
- msgid "Bottom Left"
810
- msgstr "下左"
811
-
812
- #: ../doc/old-version/modules/gmap/mod.php:68 ../modules/gmap/mod.php:69
813
- msgid "Bottom Right"
814
- msgstr "下右"
815
-
816
- #: ../doc/old-version/modules/gmap/models/gmap.php:65
817
- #: ../modules/gmap/models/gmap.php:67
818
- msgid "Please enter Map Name"
819
- msgstr "請輸入地圖名稱"
820
-
821
- #: ../doc/old-version/modules/gmap/models/gmap.php:94
822
- #: ../modules/gmap/models/gmap.php:96
823
- msgid "Empty Params"
824
- msgstr "空的參數"
825
-
826
- #: ../doc/old-version/modules/gmap/views/gmap.php:155
827
- #: ../doc/old-version/modules/marker/views/marker.php:31
828
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:8
829
- #: ../modules/gmap/views/gmap.php:123
830
- msgid "Title"
831
- msgstr "標題"
832
-
833
- #: ../doc/old-version/modules/gmap/views/gmap.php:157
834
- #: ../modules/gmap/views/gmap.php:124
835
- msgid "Html options"
836
- msgstr "Html 選項"
837
-
838
- #: ../doc/old-version/modules/gmap/views/gmap.php:159
839
- #: ../doc/old-version/modules/marker/views/marker.php:37
840
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:13
841
- #: ../modules/gmap/views/gmap.php:126
842
- msgid "Operations"
843
- msgstr "操作"
844
-
845
- #: ../doc/old-version/modules/gmap/views/gmap.php:192
846
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:89
847
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:114
848
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:187
849
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:275
850
- #: ../doc/old-version/modules/marker/mod.php:20
851
- #: ../modules/gmap/views/gmap.php:161
852
- #: ../modules/gmap/views/tpl/gmapEditMap.php:104
853
- #: ../modules/gmap/views/tpl/gmapEditMap.php:132
854
- #: ../modules/gmap/views/tpl/gmapEditMap.php:214
855
- #: ../modules/gmap/views/tpl/gmapEditMap.php:370 ../modules/marker/mod.php:20
856
- msgid "None"
857
- msgstr "無"
858
-
859
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:5
860
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:8
861
- #: ../modules/gmap/views/tpl/gmapAdmin.php:5
862
- #: ../modules/gmap/views/tpl/gmapAdmin.php:8
863
- msgid "Delete selected"
864
- msgstr "刪除所選"
865
-
866
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:11
867
- #: ../modules/gmap/views/tpl/gmapAdmin.php:11
868
- msgid "Clear All"
869
- msgstr "全部清除"
870
-
871
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:13
872
- #: ../modules/gmap/views/tpl/gmapAdmin.php:13
873
- msgid "Clear"
874
- msgstr "清除"
875
-
876
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:16
877
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:17
878
- #: ../modules/gmap/views/tpl/gmapAdmin.php:16
879
- #: ../modules/gmap/views/tpl/gmapAdmin.php:17
880
- msgid "Search"
881
- msgstr "搜尋"
882
-
883
- #: ../doc/old-version/modules/gmap/views/tpl/gmapAdmin.php:26
884
- #: ../modules/gmap/views/tpl/gmapAdmin.php:26
885
- #, php-format
886
- msgid ""
887
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
888
- "a> your first Map!"
889
- msgstr ""
890
- "您目前沒有任何地圖 <a href='%s' style='font-style: italic;'>建立</a> 您的地"
891
- "圖!"
892
-
893
- #: ../doc/old-version/modules/gmap/views/tpl/gmapDrawMap.php:3
894
- #: ../modules/gmap/views/tpl/gmapDrawMap.php:3
895
- msgid "Map not found"
896
- msgstr "找不到地圖"
897
-
898
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:2
899
- #: ../modules/gmap/views/tpl/gmapEditMap.php:2
900
- #, php-format
901
- msgid ""
902
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
903
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
904
- msgstr ""
905
- "這個選項只能用在<a target='_blank' href='%s'>PRO 版本</a> 您可以在 <a "
906
- "target='_blank' href='%s'>這裡</a> 取得"
907
-
908
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:4
909
- #: ../modules/gmap/views/tpl/gmapEditMap.php:117
910
- #: ../modules/gmap/views/tpl/gmapEditMap.php:145
911
- #: ../modules/gmap/views/tpl/gmapEditMap.php:172
912
- #: ../modules/gmap/views/tpl/gmapEditMap.php:199
913
- #: ../modules/gmap/views/tpl/gmapEditMap.php:281
914
- #: ../modules/gmap/views/tpl/gmapEditMap.php:298
915
- #: ../modules/gmap/views/tpl/gmapEditMap.php:315
916
- #: ../modules/gmap/views/tpl/gmapEditMap.php:352
917
- msgid "PRO option"
918
- msgstr "專業選項"
919
-
920
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:16
921
- #: ../modules/gmap/views/tpl/gmapEditMap.php:31
922
- msgid "Map Name"
923
- msgstr "地圖名稱"
924
-
925
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:18
926
- #: ../modules/gmap/views/tpl/gmapEditMap.php:33
927
- msgid "Your map name"
928
- msgstr "您的地圖名稱"
929
-
930
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:30
931
- #: ../modules/gmap/views/tpl/gmapEditMap.php:45
932
- msgid "Map Width"
933
- msgstr "地圖寬度"
934
-
935
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:32
936
- #: ../modules/gmap/views/tpl/gmapEditMap.php:47
937
- msgid "Your map width"
938
- msgstr "您的地圖寬度"
939
-
940
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:44
941
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:69
942
- #: ../modules/gmap/views/tpl/gmapEditMap.php:56
943
- #: ../modules/gmap/views/tpl/gmapEditMap.php:81
944
- msgid "Pixels"
945
- msgstr "像素 (px)"
946
-
947
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:48
948
- #: ../modules/gmap/views/tpl/gmapEditMap.php:63
949
- msgid "Percents"
950
- msgstr "百分比 (%)"
951
-
952
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:55
953
- #: ../modules/gmap/views/tpl/gmapEditMap.php:70
954
- msgid "Map Height"
955
- msgstr "地圖高度"
956
-
957
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:57
958
- #: ../modules/gmap/views/tpl/gmapEditMap.php:72
959
- msgid "Your map height"
960
- msgstr "您的地圖高度"
961
-
962
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:75
963
- msgid "Extended Options"
964
- msgstr "額外的選項"
965
-
966
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:82
967
- #: ../modules/gmap/views/tpl/gmapEditMap.php:97
968
- msgid "Map type control"
969
- msgstr "地圖類型控制"
970
-
971
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:84
972
- #: ../modules/gmap/views/tpl/gmapEditMap.php:99
973
- msgid ""
974
- "Control view for map type - you can see it in right upper corner by default"
975
- msgstr "控制地圖顯示類型, 預設您可以在右上角看到"
976
-
977
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:89
978
- #: ../modules/gmap/views/tpl/gmapEditMap.php:104
979
- msgid "Dropdown Menu"
980
- msgstr "下拉式選單"
981
-
982
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:89
983
- #: ../modules/gmap/views/tpl/gmapEditMap.php:104
984
- msgid "Horizontal Bar"
985
- msgstr "水平桿"
986
-
987
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:94
988
- #: ../modules/gmap/views/tpl/gmapEditMap.php:110
989
- msgid "Change type control position on map"
990
- msgstr "改變地圖控制類型位置"
991
-
992
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:107
993
- #: ../modules/gmap/views/tpl/gmapEditMap.php:125
994
- msgid "Zoom control"
995
- msgstr "縮放控制"
996
-
997
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:109
998
- #: ../modules/gmap/views/tpl/gmapEditMap.php:127
999
- msgid "Zoom control type on your map"
1000
- msgstr "您的地圖縮放控制類型"
1001
-
1002
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:114
1003
- #: ../modules/gmap/views/tpl/gmapEditMap.php:132
1004
- msgid "Default"
1005
- msgstr "預設"
1006
-
1007
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:114
1008
- #: ../modules/gmap/views/tpl/gmapEditMap.php:132
1009
- msgid "Large"
1010
- msgstr "大"
1011
-
1012
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:114
1013
- #: ../modules/gmap/views/tpl/gmapEditMap.php:132
1014
- msgid "Small"
1015
- msgstr "小"
1016
-
1017
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:119
1018
- #: ../modules/gmap/views/tpl/gmapEditMap.php:138
1019
- msgid "Change zoom control position on map"
1020
- msgstr "改變地圖縮放控制位置"
1021
-
1022
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:132
1023
- #: ../modules/gmap/views/tpl/gmapEditMap.php:153
1024
- msgid "Street view control"
1025
- msgstr "街景控制"
1026
-
1027
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:134
1028
- #: ../modules/gmap/views/tpl/gmapEditMap.php:155
1029
- msgid "Street view control usually is located on left upper corner of your map"
1030
- msgstr "街景控制通常顯示於您的地圖左上方"
1031
-
1032
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:143
1033
- #: ../modules/gmap/views/tpl/gmapEditMap.php:165
1034
- msgid "Change street view control position on map"
1035
- msgstr "改變地圖街景控制位置"
1036
-
1037
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:156
1038
- #: ../modules/gmap/views/tpl/gmapEditMap.php:180
1039
- msgid "Pan control"
1040
- msgstr "平移控制"
1041
-
1042
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:158
1043
- #: ../modules/gmap/views/tpl/gmapEditMap.php:182
1044
- msgid ""
1045
- "Pan control - allow you to pan over your map using mouse, usually is located "
1046
- "on left upper corner of your map"
1047
- msgstr "平移控制 - 允許您使用滑鼠在地圖上平移,通在在您地圖的左上角"
1048
-
1049
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:167
1050
- #: ../modules/gmap/views/tpl/gmapEditMap.php:192
1051
- msgid "Change pan control position on map"
1052
- msgstr "修改地圖平移控制位置"
1053
-
1054
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:180
1055
- #: ../modules/gmap/views/tpl/gmapEditMap.php:207
1056
- msgid "Overview control"
1057
- msgstr "概觀控制"
1058
-
1059
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:182
1060
- #: ../modules/gmap/views/tpl/gmapEditMap.php:209
1061
- msgid ""
1062
- "Overview control for your map, by default is disabled, and if enabled - is "
1063
- "located on the right bottom corner"
1064
- msgstr "您的地圖概觀控制, 預設是停用, 如果您啟用概觀控制將會顯示於右下角"
1065
-
1066
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:187
1067
- #: ../modules/gmap/views/tpl/gmapEditMap.php:214
1068
- msgid "Opened"
1069
- msgstr "展開"
1070
-
1071
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:187
1072
- #: ../modules/gmap/views/tpl/gmapEditMap.php:214
1073
- msgid "Collapsed"
1074
- msgstr "縮小"
1075
-
1076
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:196
1077
- #: ../modules/gmap/views/tpl/gmapEditMap.php:223
1078
- msgid "Draggable"
1079
- msgstr "可拖曳"
1080
-
1081
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:198
1082
- #: ../modules/gmap/views/tpl/gmapEditMap.php:225
1083
- msgid "Enable or disable possibility to drag your map using mouse"
1084
- msgstr "啟用或停用您可能使用滑鼠拖曳"
1085
-
1086
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:209
1087
- #: ../modules/gmap/views/tpl/gmapEditMap.php:236
1088
- msgid "Double click to zoom"
1089
- msgstr "雙擊縮放"
1090
-
1091
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:211
1092
- #: ../modules/gmap/views/tpl/gmapEditMap.php:238
1093
- msgid ""
1094
- "By default double left click on map will zoom it in. But you can change this "
1095
- "here."
1096
- msgstr "當您點滑鼠左鍵兩次,地圖預設會拉近.但您可以在這邊修改"
1097
-
1098
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:222
1099
- #: ../modules/gmap/views/tpl/gmapEditMap.php:249
1100
- msgid "Mouse wheel to zoom"
1101
- msgstr "滑鼠滾輪縮放"
1102
-
1103
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:224
1104
- #: ../modules/gmap/views/tpl/gmapEditMap.php:251
1105
- msgid ""
1106
- "Sometimes you need to disable possibility to zoom your map using mouse "
1107
- "wheel. This can be required for example - if you need to use your wheel for "
1108
- "some other action, for example scroll your site even if mouse is over your "
1109
- "map."
1110
- msgstr ""
1111
- "有些時候您可能必須要禁止使用滑鼠滾輪縮放.這個選項是您需要的,例如您可能需要"
1112
- "使用您的滑鼠滾輪做其他事,像是您要捲動您的頁面但您滑鼠停留在地圖上"
1113
-
1114
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:235
1115
- #: ../modules/gmap/views/tpl/gmapEditMap.php:262
1116
- msgid "Google Map Theme"
1117
- msgstr "Google地圖類型"
1118
-
1119
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:237
1120
- #: ../modules/gmap/views/tpl/gmapEditMap.php:264
1121
- msgid ""
1122
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
1123
- "Terrain - here. By default your map will have Road Map Google maps theme."
1124
- msgstr ""
1125
- "您可以選擇您的 Google 地圖樣式 - 路線地圖, 混合地圖, 衛星地圖,或 地形圖 - 這"
1126
- "裡在預設的情況下將有路線圖 Google地圖的樣式"
1127
-
1128
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:241
1129
- #: ../modules/gmap/views/tpl/gmapEditMap.php:268
1130
- msgid "Road Map"
1131
- msgstr "路線地圖"
1132
-
1133
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:241
1134
- #: ../modules/gmap/views/tpl/gmapEditMap.php:268
1135
- msgid "Hybrid"
1136
- msgstr "混合地圖"
1137
-
1138
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:241
1139
- #: ../modules/gmap/views/tpl/gmapEditMap.php:268
1140
- msgid "Satellite"
1141
- msgstr "衛星地圖"
1142
-
1143
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:241
1144
- #: ../modules/gmap/views/tpl/gmapEditMap.php:268
1145
- msgid "Terrain"
1146
- msgstr "地形地圖"
1147
-
1148
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:249
1149
- #: ../modules/gmap/views/tpl/gmapEditMap.php:327
1150
- msgid "Map Stylization"
1151
- msgstr "地圖風格"
1152
-
1153
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:251
1154
- #: ../modules/gmap/views/tpl/gmapEditMap.php:329
1155
- msgid ""
1156
- "Make your map unique with our Map Themes, just try to change it here - and "
1157
- "you will see results on your Map Preview."
1158
- msgstr ""
1159
- "使用地圖樣式讓您的地圖獨一無二!您可以在這邊試著改變,接著可以在地圖預覽看到"
1160
- "結果."
1161
-
1162
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:261
1163
- msgid "Get 300+ Themes"
1164
- msgstr "取得 300+ 樣式"
1165
-
1166
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:269
1167
- #: ../modules/gmap/views/tpl/gmapEditMap.php:364
1168
- msgid "Markers Clusterization"
1169
- msgstr "地標群集"
1170
-
1171
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:271
1172
- #: ../modules/gmap/views/tpl/gmapEditMap.php:366
1173
- msgid ""
1174
- "If you have many markers - you can have a problems with viewing them when "
1175
- "zoom out for example: they will just cover each-other. Marker clusterization "
1176
- "can solve this problem by grouping your markers in groups when they are too "
1177
- "close to each-other."
1178
- msgstr ""
1179
- "如果您有許多地標,您可能再放大檢視的時候會發現一個問.例如這些地標之間距離太"
1180
- "過靠近可能會蓋在一起,地標群集可以解決這個問題,將彼此太過接近的地標群組成一"
1181
- "個群集."
1182
-
1183
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:275
1184
- #: ../modules/gmap/views/tpl/gmapEditMap.php:370
1185
- msgid "Base Clusterization"
1186
- msgstr "基礎群集"
1187
-
1188
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:293
1189
- #: ../modules/gmap/views/tpl/gmapEditMap.php:20
1190
- msgid "Add New Marker"
1191
- msgstr "建立新地標"
1192
-
1193
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:294
1194
- #: ../modules/gmap/views/tpl/gmapEditMap.php:526
1195
- msgid "Save Marker"
1196
- msgstr "儲存地標"
1197
-
1198
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:303
1199
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:9
1200
- #: ../modules/gmap/views/tpl/gmapEditMap.php:391
1201
- msgid "Marker Name"
1202
- msgstr "地標名稱"
1203
-
1204
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:305
1205
- #: ../modules/gmap/views/tpl/gmapEditMap.php:393
1206
- msgid "Your marker title"
1207
- msgstr "您的地標名稱"
1208
-
1209
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:316
1210
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:25
1211
- #: ../modules/gmap/views/tpl/gmapEditMap.php:404
1212
- msgid "Marker Description"
1213
- msgstr "地標描述"
1214
-
1215
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:318
1216
- #: ../modules/gmap/views/tpl/gmapEditMap.php:406
1217
- msgid ""
1218
- "Write here all text, that you want to appear in marker info-window PopUp"
1219
- msgstr "在這邊撰寫文字,將會顯示在地標彈出的浮動視窗中"
1220
-
1221
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:334
1222
- #: ../doc/old-version/modules/marker/views/marker.php:30
1223
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:45
1224
- #: ../modules/gmap/views/tpl/gmapEditMap.php:422
1225
- msgid "Icon"
1226
- msgstr "小圖示"
1227
-
1228
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:336
1229
- #: ../modules/gmap/views/tpl/gmapEditMap.php:424
1230
- msgid "Your marker Icon, that will appear on your map for this marker"
1231
- msgstr "您的地標小圖示將出現於您的地圖這個地標上"
1232
-
1233
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:342
1234
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:57
1235
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:131
1236
- #: ../modules/gmap/views/tpl/gmapEditMap.php:430
1237
- msgid "Choose icon"
1238
- msgstr "選擇小圖示"
1239
-
1240
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:351
1241
- #: ../modules/gmap/views/tpl/gmapEditMap.php:439
1242
- msgid "Search your location by address, just start typing here"
1243
- msgstr "經由地址搜尋您的地點, 在這邊輸入"
1244
-
1245
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:363
1246
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:83
1247
- #: ../doc/old-version/modules/marker/views/tpl/markerListAddress.php:3
1248
- #: ../modules/gmap/views/tpl/gmapEditMap.php:451
1249
- msgid "Latitude"
1250
- msgstr "緯度"
1251
-
1252
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:365
1253
- #: ../modules/gmap/views/tpl/gmapEditMap.php:453
1254
- msgid "Latitude for your marker"
1255
- msgstr "您的地標緯度"
1256
-
1257
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:377
1258
- #: ../doc/old-version/modules/marker/views/tpl/markerForm.php:102
1259
- #: ../doc/old-version/modules/marker/views/tpl/markerListAddress.php:3
1260
- #: ../modules/gmap/views/tpl/gmapEditMap.php:465
1261
- msgid "Longitude"
1262
- msgstr "經度"
1263
-
1264
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:379
1265
- #: ../modules/gmap/views/tpl/gmapEditMap.php:467
1266
- msgid "Longitude for your marker"
1267
- msgstr "您的地標經度"
1268
-
1269
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:412
1270
- #: ../modules/gmap/views/tpl/gmapEditMap.php:553
1271
- msgid "Delete"
1272
- msgstr "刪除"
1273
-
1274
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:430
1275
- #: ../modules/gmap/views/tpl/gmapEditMap.php:492
1276
- msgid "Map shortcode"
1277
- msgstr "地圖簡碼"
1278
-
1279
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:433
1280
- #: ../modules/gmap/views/tpl/gmapEditMap.php:503
1281
- msgid "Shortcode will appear after you save map."
1282
- msgstr "簡碼將出現在您儲存地圖之後"
1283
-
1284
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:439
1285
- #: ../modules/gmap/views/tpl/gmapEditMap.php:511
1286
- msgid "Save Map"
1287
- msgstr "儲存地圖"
1288
-
1289
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:442
1290
- #: ../modules/gmap/views/tpl/gmapEditMap.php:517
1291
- msgid "Delete Map"
1292
- msgstr "刪除地圖"
1293
-
1294
- #: ../doc/old-version/modules/gmap/views/tpl/gmapEditMap.php:464
1295
- #, php-format
1296
- msgid ""
1297
- "Please be advised that this option is available only in <a target='_blank' "
1298
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1299
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1300
- "Maps!"
1301
- msgstr ""
1302
- "請注意, 這個選項只能使用在 <a target='_blank' href='%s'>PRO 版本</a>. 您可以"
1303
- "馬上 <a target='_blank' href='%s' class='button'>取得PRO</a> 來使用您的地圖"
1304
- "外掛任何 PRO 選項"
1305
-
1306
- #: ../doc/old-version/modules/gmap/views/tpl/gmapListMarkers.php:20
1307
- #: ../modules/gmap/views/tpl/gmapListMarkers.php:20
1308
- #, php-format
1309
- msgid "and %s more"
1310
- msgstr "和 %s 更多"
1311
-
1312
- #: ../doc/old-version/modules/gmap_widget/mod.php:18
1313
- #: ../modules/gmap_widget/mod.php:18
1314
- msgid "Displays Most Viewed Products"
1315
- msgstr "顯示大部分瀏覽過的產品"
1316
-
1317
- #: ../doc/old-version/modules/gmap_widget/views/gmap_widget.php:15
1318
- #: ../modules/gmap_widget/views/gmap_widget.php:15
1319
- msgid "You have no maps"
1320
- msgstr "您沒有任何地圖"
1321
-
1322
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:10
1323
- #: ../modules/gmap_widget/views/tpl/form.php:10
1324
- msgid "Select map"
1325
- msgstr "選擇地圖"
1326
-
1327
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:18
1328
- #: ../modules/gmap_widget/views/tpl/form.php:18
1329
- msgid "Widget Map width"
1330
- msgstr "地圖小工具寬度"
1331
-
1332
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:25
1333
- #: ../modules/gmap_widget/views/tpl/form.php:25
1334
- msgid "Widget Map height"
1335
- msgstr "地圖小工具高度"
1336
-
1337
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:32
1338
- #: ../modules/gmap_widget/views/tpl/form.php:32
1339
- msgid "Display as image"
1340
- msgstr "以圖片方式顯示"
1341
-
1342
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:40
1343
- #: ../modules/gmap_widget/views/tpl/form.php:40
1344
- msgid ""
1345
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
1346
- msgstr "地圖將以圖片的形式顯示在側欄,點一下會開啟一個新的地圖視窗"
1347
-
1348
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:42
1349
- #: ../modules/gmap_widget/views/tpl/form.php:42
1350
- msgid "Image width (in px)"
1351
- msgstr "圖片寬度 (px)"
1352
-
1353
- #: ../doc/old-version/modules/gmap_widget/views/tpl/form.php:49
1354
- #: ../modules/gmap_widget/views/tpl/form.php:49
1355
- msgid "Image height (in px)"
1356
- msgstr "圖片高度 (px)"
1357
-
1358
- #: ../doc/old-version/modules/icons/controller.php:20
1359
- #: ../modules/icons/controller.php:20
1360
- msgid "Empty url"
1361
- msgstr "空的 url"
1362
-
1363
- #: ../doc/old-version/modules/icons/models/icons.php:29
1364
- #: ../modules/icons/models/icons.php:29
1365
- msgid "Icon no found"
1366
- msgstr "找不到小圖示"
1367
-
1368
- #: ../doc/old-version/modules/icons/models/icons.php:81
1369
- #: ../modules/icons/models/icons.php:81
1370
- msgid "File not found"
1371
- msgstr "找不到檔案"
1372
-
1373
- #: ../doc/old-version/modules/icons/models/icons.php:86
1374
- #: ../modules/icons/models/icons.php:86
1375
- msgid "Cannot get image"
1376
- msgstr "無法取得圖片"
1377
-
1378
- #: ../doc/old-version/modules/icons/models/icons.php:97
1379
- #: ../modules/icons/models/icons.php:97
1380
- msgid "cannot insert to table"
1381
- msgstr "無法插入表格"
1382
-
1383
- #: ../doc/old-version/modules/mail/mod.php:33 ../modules/mail/mod.php:33
1384
- msgid "Can not send email - problem with send server"
1385
- msgstr "無法發送Email - 問題可能是 SMTP"
1386
-
1387
- #: ../doc/old-version/modules/marker/controller.php:42
1388
- #: ../doc/old-version/modules/marker/controller.php:57
1389
- #: ../modules/marker/controller.php:42 ../modules/marker/controller.php:57
1390
- msgid "Marker Not Found"
1391
- msgstr "找不到地標"
1392
-
1393
- #: ../doc/old-version/modules/marker/controller.php:48
1394
- #: ../modules/marker/controller.php:48
1395
- msgid "Cannot remove marker"
1396
- msgstr "無法移除地標"
1397
-
1398
- #: ../doc/old-version/modules/marker/controller.php:63
1399
- #: ../modules/marker/controller.php:63
1400
- msgid "Cannot remove markers"
1401
- msgstr "無法移除多個地標"
1402
-
1403
- #: ../doc/old-version/modules/marker/controller.php:144
1404
- #: ../modules/marker/controller.php:144
1405
- msgid "Empty or invalid marker ID"
1406
- msgstr "空的或不正確的地標 ID"
1407
-
1408
- #: ../doc/old-version/modules/marker/mod.php:21 ../modules/marker/mod.php:21
1409
- msgid "Drop"
1410
- msgstr "移除"
1411
-
1412
- #: ../doc/old-version/modules/marker/mod.php:22 ../modules/marker/mod.php:22
1413
- msgid "Bounce"
1414
- msgstr "彈跳"
1415
-
1416
- #: ../doc/old-version/modules/marker/models/marker.php:42
1417
- #: ../modules/marker/models/marker.php:42
1418
- msgid "Please enter marker name"
1419
- msgstr "請輸入您的地標名稱"
1420
-
1421
- #: ../doc/old-version/modules/marker/models/marker.php:185
1422
- #: ../modules/marker/models/marker.php:185
1423
- msgid "Address is empty or not match"
1424
- msgstr "地址為空或不正確的"
1425
-
1426
- #: ../doc/old-version/modules/marker/models/marker.php:243
1427
- #: ../modules/marker/models/marker.php:243
1428
- msgid "Invalid Marker ID"
1429
- msgstr "不正確的"
1430
-
1431
- #: ../doc/old-version/modules/marker/views/marker.php:33
1432
- msgid "Group"
1433
- msgstr "群組"
1434
-
1435
- #: ../doc/old-version/modules/marker/views/marker.php:34
1436
- msgid "Creation Date"
1437
- msgstr "建立日期"
1438
-
1439
- #: ../doc/old-version/modules/marker/views/marker.php:36
1440
- msgid "Uses On Map"
1441
- msgstr "使用在地圖上"
1442
-
1443
- #: ../doc/old-version/modules/marker/views/tpl/markerList.php:16
1444
- msgid "Back To Markers List"
1445
- msgstr "返回地標列表"
1446
-
1447
- #: ../doc/old-version/modules/marker/views/tpl/markerListOperations.php:7
1448
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsTable.php:39
1449
- msgid "Remove"
1450
- msgstr "移除"
1451
-
1452
- #: ../doc/old-version/modules/marker/views/tpl/markerListUsesOnMap.php:5
1453
- msgid "No maps contain this marker"
1454
- msgstr "這個地標沒有包含在任何地圖上"
1455
-
1456
- #: ../doc/old-version/modules/marker/views/tpl/markerTable.php:17
1457
- msgid "Remove selected"
1458
- msgstr "移除所選"
1459
-
1460
- #: ../doc/old-version/modules/marker_groups/controller.php:14
1461
- #: ../modules/marker_groups/controller.php:14
1462
- msgid "Nothing To Save"
1463
- msgstr "沒有任何東西需要儲存"
1464
-
1465
- #: ../doc/old-version/modules/marker_groups/controller.php:21
1466
- #: ../modules/marker_groups/controller.php:21
1467
- msgid "Cannot Save Group"
1468
- msgstr "無法儲存群組"
1469
-
1470
- #: ../doc/old-version/modules/marker_groups/controller.php:29
1471
- #: ../modules/marker_groups/controller.php:29
1472
- msgid "Group Not Found"
1473
- msgstr "找不到群組"
1474
-
1475
- #: ../doc/old-version/modules/marker_groups/controller.php:35
1476
- #: ../modules/marker_groups/controller.php:35
1477
- msgid "Cannot remove group"
1478
- msgstr "無法移除群組"
1479
-
1480
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:5
1481
- msgid "Add New"
1482
- msgstr "建立新的"
1483
-
1484
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:20
1485
- msgid "Save Group"
1486
- msgstr "儲存群組"
1487
-
1488
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:22
1489
- msgid "Group Title"
1490
- msgstr "群組名稱"
1491
-
1492
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:26
1493
- msgid "Title For Group"
1494
- msgstr "群組的名稱"
1495
-
1496
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:30
1497
- msgid "Group Description"
1498
- msgstr "群組描述"
1499
-
1500
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:34
1501
- msgid "Description For Goup"
1502
- msgstr "群組的描述"
1503
-
1504
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:40
1505
- msgid "Save"
1506
- msgstr "儲存"
1507
-
1508
- #: ../doc/old-version/modules/marker_groups/views/tpl/groupsList.php:43
1509
- msgid "Reset"
1510
- msgstr "重設"
1511
-
1512
- #: ../doc/old-version/modules/options/mod.php:84 ../modules/options/mod.php:84
1513
- msgid "General"
1514
- msgstr "一般"
1515
-
1516
- #: ../doc/old-version/modules/options/mod.php:86 ../modules/options/mod.php:86
1517
- msgid "Send usage statistics"
1518
- msgstr "寄送使用統計"
1519
-
1520
- #: ../doc/old-version/modules/options/models/modules.php:32
1521
- #: ../modules/options/models/modules.php:32
1522
- msgid "Module Updated"
1523
- msgstr "模組已經更新"
1524
-
1525
- #: ../doc/old-version/modules/options/models/modules.php:47
1526
- #: ../modules/options/models/modules.php:47
1527
- msgid "Module Update Failed"
1528
- msgstr "模組更新失敗"
1529
-
1530
- #: ../doc/old-version/modules/options/models/modules.php:50
1531
- #: ../modules/options/models/modules.php:50
1532
- msgid "Error module ID"
1533
- msgstr "錯誤的模組 ID"
1534
-
1535
- #: ../doc/old-version/modules/options/models/options.php:63
1536
- #: ../modules/options/models/options.php:63
1537
- msgid "Empty data to save option"
1538
- msgstr "Empty data to save option"
1539
-
1540
- #: ../doc/old-version/modules/options/views/tpl/optionsAdminMain.php:18
1541
- #: ../modules/options/views/tpl/optionsAdminMain.php:18
1542
- msgid "Main page Go here!!!!"
1543
- msgstr "首頁點這邊"
1544
-
1545
- #: ../doc/old-version/modules/supsystic_promo/controller.php:7
1546
- #: ../modules/supsystic_promo/controller.php:7
1547
- msgid "Information was saved. Thank you!"
1548
- msgstr "訊息已經儲存. 感謝您!"
1549
-
1550
- #: ../doc/old-version/modules/supsystic_promo/controller.php:23
1551
- #: ../modules/supsystic_promo/controller.php:23
1552
- msgid ""
1553
- "Please don't send contact requests so often - wait for response for your "
1554
- "previous requests."
1555
- msgstr "請不要太常發送請求,請等待您之前的請求回覆."
1556
-
1557
- #: ../doc/old-version/modules/supsystic_promo/controller.php:45
1558
- #: ../modules/supsystic_promo/controller.php:45
1559
- msgid "Please enter valid email address"
1560
- msgstr "請輸入有效的 e-mail 地址"
1561
-
1562
- #: ../doc/old-version/modules/supsystic_promo/mod.php:24
1563
- #: ../modules/supsystic_promo/mod.php:24
1564
- msgid "Overview"
1565
- msgstr "概觀"
1566
-
1567
- #: ../doc/old-version/modules/supsystic_promo/mod.php:50
1568
- #: ../modules/supsystic_promo/mod.php:50
1569
- msgid "Welcome to Supsystic Secure"
1570
- msgstr "歡迎來到 Supsystic Secure"
1571
-
1572
- #: ../doc/old-version/modules/supsystic_promo/mod.php:123
1573
- #: ../modules/supsystic_promo/mod.php:123
1574
- msgid "Name"
1575
- msgstr "姓名"
1576
-
1577
- #: ../doc/old-version/modules/supsystic_promo/mod.php:125
1578
- #: ../modules/supsystic_promo/mod.php:125
1579
- msgid "Website"
1580
- msgstr "網址"
1581
-
1582
- #: ../doc/old-version/modules/supsystic_promo/mod.php:126
1583
- #: ../modules/supsystic_promo/mod.php:126
1584
- msgid "Subject"
1585
- msgstr "主旨"
1586
-
1587
- #: ../doc/old-version/modules/supsystic_promo/mod.php:127
1588
- #: ../modules/supsystic_promo/mod.php:127
1589
- msgid "Topic"
1590
- msgstr "主題"
1591
-
1592
- #: ../doc/old-version/modules/supsystic_promo/mod.php:128
1593
- #: ../modules/supsystic_promo/mod.php:128
1594
- msgid "Plugin options"
1595
- msgstr "外掛選項"
1596
-
1597
- #: ../doc/old-version/modules/supsystic_promo/mod.php:129
1598
- #: ../modules/supsystic_promo/mod.php:129
1599
- msgid "Report a bug"
1600
- msgstr "回報 Bug"
1601
-
1602
- #: ../doc/old-version/modules/supsystic_promo/mod.php:130
1603
- #: ../modules/supsystic_promo/mod.php:130
1604
- msgid "Require a new functionallity"
1605
- msgstr "請求一個新的功能"
1606
-
1607
- #: ../doc/old-version/modules/supsystic_promo/mod.php:131
1608
- #: ../modules/supsystic_promo/mod.php:131
1609
- msgid "Other"
1610
- msgstr "其他"
1611
-
1612
- #: ../doc/old-version/modules/supsystic_promo/mod.php:133
1613
- #: ../modules/supsystic_promo/mod.php:133
1614
- msgid "Message"
1615
- msgstr "訊息"
1616
-
1617
- #: ../doc/old-version/modules/supsystic_promo/mod.php:133
1618
- #: ../modules/supsystic_promo/mod.php:133
1619
- msgid "Hello Supsystic Team!"
1620
- msgstr "Hello Supsystic Team!"
1621
-
1622
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:30
1623
- #: ../modules/supsystic_promo/views/supsystic_promo.php:30
1624
- msgid "How to get PRO version of plugin for FREE?"
1625
- msgstr "如何免費取得外掛 PRO版本?"
1626
-
1627
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:30
1628
- #: ../modules/supsystic_promo/views/supsystic_promo.php:30
1629
- #, php-format
1630
- msgid ""
1631
- "You have an incredible opportunity to get PRO version for free. Make "
1632
- "Translation of plugin! It will be amazing if you take advantage of this "
1633
- "offer! More info you can find here <a target='_blank' href='%s'>'Get PRO "
1634
- "version of any plugin for FREE'</a>"
1635
- msgstr ""
1636
- "您有一個很難得的機會取得免費的 PRO 版本! 協助我們翻譯這個外掛! 更多訊息您可"
1637
- "以在這邊找到 <a target='_blank' href='%s'>'Get PRO version of any plugin for "
1638
- "FREE'</a>"
1639
-
1640
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:31
1641
- #: ../modules/supsystic_promo/views/supsystic_promo.php:31
1642
- msgid "Translation"
1643
- msgstr "翻譯"
1644
-
1645
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:31
1646
- #: ../modules/supsystic_promo/views/supsystic_promo.php:31
1647
- #, php-format
1648
- msgid ""
1649
- "All available languages are provided with the Supsystic Google Maps plugin. "
1650
- "If your language isn't available, your plugin will be in English by default."
1651
- "<br /><b>Available Translations: English</b><br />Translate or update a "
1652
- "translation Google Maps WordPress plugin in your language and get a Premium "
1653
- "license for FREE. <a target='_blank' href='%s'>Contact us</a>."
1654
- msgstr ""
1655
- "所有可用的語言都在Supsystic Google Maps plugin, 如果沒有您的語言, 外掛將自動"
1656
- "預設為英文. <br /><b>翻譯語言:English</b><br /> 協助翻譯或是更新一個您的語"
1657
- "言 Google Maps Wordpress 外掛可以得到一個免費的Premium授權 <a "
1658
- "target='_blank' href='%s'>聯絡我們</a>."
1659
-
1660
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:48
1661
- #: ../modules/supsystic_promo/views/supsystic_promo.php:48
1662
- #, php-format
1663
- msgid ""
1664
- "There were some problem while trying to retrive our news, but you can always "
1665
- "check all list <a target='_blank' href='%s'>here</a>."
1666
- msgstr ""
1667
- "當您嘗試檢視我們的公告時發生了一些問題, 但您可以在 <a target='_blank' "
1668
- "href='%s'>這裡</a> 查看我們所有的公告"
1669
-
1670
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:58
1671
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:59
1672
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:64
1673
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:66
1674
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:67
1675
- #: ../modules/supsystic_promo/views/supsystic_promo.php:58
1676
- #: ../modules/supsystic_promo/views/supsystic_promo.php:59
1677
- #: ../modules/supsystic_promo/views/supsystic_promo.php:64
1678
- #: ../modules/supsystic_promo/views/supsystic_promo.php:66
1679
- #: ../modules/supsystic_promo/views/supsystic_promo.php:67
1680
- msgid "Yes"
1681
- msgstr "是"
1682
-
1683
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:58
1684
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:59
1685
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:64
1686
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:66
1687
- #: ../doc/old-version/modules/supsystic_promo/views/supsystic_promo.php:67
1688
- #: ../modules/supsystic_promo/views/supsystic_promo.php:58
1689
- #: ../modules/supsystic_promo/views/supsystic_promo.php:59
1690
- #: ../modules/supsystic_promo/views/supsystic_promo.php:64
1691
- #: ../modules/supsystic_promo/views/supsystic_promo.php:66
1692
- #: ../modules/supsystic_promo/views/supsystic_promo.php:67
1693
- msgid "No"
1694
- msgstr "否"
1695
-
1696
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:4
1697
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:78
1698
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:4
1699
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:78
1700
- msgid "Version"
1701
- msgstr "版本"
1702
-
1703
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:10
1704
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
1705
- msgid "Go"
1706
- msgstr "Go"
1707
-
1708
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:10
1709
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
1710
- msgid "PRO"
1711
- msgstr "PRO"
1712
-
1713
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:15
1714
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:15
1715
- msgid "Support"
1716
- msgstr "支援"
1717
-
1718
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/adminFooter.php:19
1719
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:19
1720
- msgid "Add your"
1721
- msgstr "新增您的"
1722
-
1723
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1724
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:5
1725
- msgid "FAQ and Documentation"
1726
- msgstr "問答與文件"
1727
-
1728
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1729
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:17
1730
- msgid "Check all FAQs"
1731
- msgstr "查看所有問答"
1732
-
1733
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1734
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:102
1735
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:22
1736
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:102
1737
- msgid "Video tutorial"
1738
- msgstr "影片教學"
1739
-
1740
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1741
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:31
1742
- msgid "Server Settings"
1743
- msgstr "伺服器環境"
1744
-
1745
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:44
1746
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:44
1747
- msgid "News"
1748
- msgstr "公告"
1749
-
1750
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:50
1751
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:50
1752
- msgid "All news and info"
1753
- msgstr "所有公告或資訊"
1754
-
1755
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:55
1756
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:55
1757
- msgid "Contact form"
1758
- msgstr "聯絡表單"
1759
-
1760
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:87
1761
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:87
1762
- msgid "Send email"
1763
- msgstr "發送Email"
1764
-
1765
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1766
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:96
1767
- msgid ""
1768
- "Your email was send, we will try to respond to you as soon as possible. "
1769
- "Thank you for support!"
1770
- msgstr "您的Email已經送出, 我們將盡快回覆您.感謝您的支持!"
1771
-
1772
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:76
1773
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:76
1774
- msgid "Welcome to"
1775
- msgstr "歡迎來到"
1776
-
1777
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:84
1778
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:84
1779
- #, php-format
1780
- msgid "This is first start up of the %s plugin."
1781
- msgstr "這是首次啟用 %s 外掛"
1782
-
1783
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:85
1784
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:85
1785
- msgid ""
1786
- "If you are newbie - check all features on that page, if you are guru - "
1787
- "please correct us."
1788
- msgstr "如果您是新手, 在這個頁面查看所有的特色, 如果您是專家, 且糾正我們"
1789
-
1790
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:94
1791
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:94
1792
- msgid "Please, post url"
1793
- msgstr "請貼上 url"
1794
-
1795
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:108
1796
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:108
1797
- msgid "What to do next? Check below section"
1798
- msgstr "下一步該做什麼? 查看下面的內容"
1799
-
1800
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:112
1801
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:112
1802
- msgid "Boost us"
1803
- msgstr "Boost us"
1804
-
1805
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:113
1806
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:113
1807
- #, php-format
1808
- msgid ""
1809
- "It's amazing when you boost development with your feedback and ratings. So "
1810
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
1811
- "help us."
1812
- msgstr ""
1813
- "It's amazing when you boost development with your feedback and ratings. So "
1814
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
1815
- "help us."
1816
-
1817
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:117
1818
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:117
1819
- msgid "Documentation"
1820
- msgstr "文件"
1821
-
1822
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:118
1823
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:118
1824
- #, php-format
1825
- msgid ""
1826
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
1827
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
1828
- msgstr ""
1829
- "點擊 <a target='_blank' href='%s'>文件</a> 與 問答部分. 如果您無法解決您的問"
1830
- "題, <a target='_blank' href='%s'>聯絡我們</a>."
1831
-
1832
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:122
1833
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:122
1834
- msgid "Full Features List"
1835
- msgstr "所有特色列表"
1836
-
1837
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:123
1838
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:123
1839
- msgid "There are so many features, so we can't post it here. Like"
1840
- msgstr "有太多的特色,所以我們沒辦法呈現在此. 像"
1841
-
1842
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:125
1843
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:125
1844
- msgid "Capcha for admin login"
1845
- msgstr "管理員登入驗證碼"
1846
-
1847
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:126
1848
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:126
1849
- msgid "htaccess admin protect"
1850
- msgstr "htaccess 管理保護"
1851
-
1852
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:127
1853
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:127
1854
- msgid "Hide directory files listing"
1855
- msgstr "隱藏資料夾檔案列表"
1856
-
1857
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:128
1858
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:128
1859
- msgid "Check files and directories write permissions"
1860
- msgstr "檢查檔案與資料夾的寫入權限"
1861
-
1862
- #: ../doc/old-version/modules/supsystic_promo/views/tpl/welcomePage.php:130
1863
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:130
1864
- #, php-format
1865
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
1866
- msgstr "因此查看所有特色列表 <a target='_blank' href='%s'>here</a>."
1867
-
1868
- #: ../modules/gmap/mod.php:92
1869
- msgid "Slider"
1870
- msgstr "側欄"
1871
-
1872
- #: ../modules/gmap/mod.php:93
1873
- msgid "Slider - Title and Img"
1874
- msgstr "側欄 - 標題與圖片"
1875
-
1876
- #: ../modules/gmap/mod.php:94 ../modules/gmap/mod.php:96
1877
- msgid "Slider Vertical - Title and Img"
1878
- msgstr "Slider Vertical - Title and Img"
1879
-
1880
- #: ../modules/gmap/mod.php:95
1881
- msgid "Slider Vertical - Title and Description"
1882
- msgstr "Slider Vertical - Title and Description"
1883
-
1884
- #: ../modules/gmap/views/tpl/gmapEditMap.php:13
1885
- msgid "Map Properties"
1886
- msgstr "地圖設定"
1887
-
1888
- #: ../modules/gmap/views/tpl/gmapEditMap.php:59
1889
- #: ../modules/gmap/views/tpl/gmapEditMap.php:84
1890
- msgid "Px"
1891
- msgstr "像素 (px)"
1892
-
1893
- #: ../modules/gmap/views/tpl/gmapEditMap.php:276
1894
- msgid "Traffic Layer"
1895
- msgstr "交通狀況圖層"
1896
-
1897
- #: ../modules/gmap/views/tpl/gmapEditMap.php:278
1898
- msgid "Add real-time traffic information to your map."
1899
- msgstr "增加即時交通資訊到您的地圖"
1900
-
1901
- #: ../modules/gmap/views/tpl/gmapEditMap.php:293
1902
- msgid "Transit Layer"
1903
- msgstr "交通圖層"
1904
-
1905
- #: ../modules/gmap/views/tpl/gmapEditMap.php:295
1906
- msgid ""
1907
- "Display the public transit network of a city on your map. When the Transit "
1908
- "Layer is enabled, and the map is centered on a city that supports transit "
1909
- "information, the map will display major transit lines as thick, colored "
1910
- "lines."
1911
- msgstr ""
1912
- "在您的地圖上顯示城市公共交通網路. 當交通圖層啟用, 並且在地圖的位置有提供交通"
1913
- "資訊, 地圖將顯示主要的交通路線, 彩色線條"
1914
-
1915
- #: ../modules/gmap/views/tpl/gmapEditMap.php:310
1916
- msgid "Bicycling Layer"
1917
- msgstr "單車圖層"
1918
-
1919
- #: ../modules/gmap/views/tpl/gmapEditMap.php:312
1920
- msgid ""
1921
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1922
- "to bicycling usage on top of the given map.Dark green routes indicated "
1923
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1924
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1925
- "for bicycle usage."
1926
- msgstr ""
1927
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
1928
- "to bicycling usage on top of the given map.Dark green routes indicated "
1929
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
1930
- "'bike lanes.' Dashed routes indicate streets or paths otherwise recommended "
1931
- "for bicycle usage."
1932
-
1933
- #: ../modules/gmap/views/tpl/gmapEditMap.php:339
1934
- msgid "Get 300+ Themes with PRO"
1935
- msgstr "取得 300+ PRO布景"
1936
-
1937
- #: ../modules/gmap/views/tpl/gmapEditMap.php:347
1938
- msgid "Markers List"
1939
- msgstr "地標列表"
1940
-
1941
- #: ../modules/gmap/views/tpl/gmapEditMap.php:349
1942
- msgid ""
1943
- "Display all map markers - as list bellow Your map. This will help your users "
1944
- "get more info about your markers and find required marker more faster."
1945
- msgstr ""
1946
- "顯示所有的地圖地標在您的地圖下方,這將會協助您的使用者有更多的資訊更快找到所"
1947
- "需的地標"
1948
-
1949
- #: ../modules/gmap/views/tpl/gmapEditMap.php:356
1950
- msgid "Select Markers List type"
1951
- msgstr "選擇地標列表類型"
1952
-
1953
- #: ../modules/gmap/views/tpl/gmapEditMap.php:497
1954
- msgid "PHP code"
1955
- msgstr "PHP Code"
1956
-
1957
- #: ../modules/gmap/views/tpl/gmapEditMap.php:532
1958
- msgid "Delete Marker"
1959
- msgstr "刪除地標"
1960
-
1961
- #: ../modules/gmap/views/tpl/gmapEditMap.php:580
1962
- msgid "Show markers list with your map on frontend"
1963
- msgstr "在您的前端地圖顯示地標列表"
1964
-
1965
- #: ../modules/gmap/views/tpl/gmapEditMap.php:587
1966
- #: ../modules/gmap/views/tpl/gmapEditMap.php:588
1967
- msgid "Apply"
1968
- msgstr "套用"
1969
-
1970
- #: ../modules/gmap/views/tpl/gmapEditMap.php:587
1971
- msgid "Selected"
1972
- msgstr "已選擇"
1973
-
1974
- #: ../modules/gmap/views/tpl/gmapEditMap.php:588
1975
- msgid "Available in PRO"
1976
- msgstr "PRO 版本可用"
1977
-
1978
- #: ../modules/options/views/tpl/optionsAdminPage.php:31
1979
- msgid "Improve Free version"
1980
- msgstr "升級免費版本"
1981
-
1982
- #: ../modules/options/views/tpl/optionsAdminPage.php:33
1983
- #, php-format
1984
- msgid ""
1985
- "Please be advised that this option is available only in <a target='_blank' "
1986
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
1987
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
1988
- "PopUps!"
1989
- msgstr ""
1990
- "請注意, 這個選項只能使用在 <a target='_blank' href='%s'>PRO 版本</a>. 您可以"
1991
- "馬上 <a target='_blank' href='%s' class='button'>取得PRO</a> 來使用您的地圖"
1992
- "外掛任何 PRO 選項"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/google-maps-easy-bg_BG.mo ADDED
Binary file
lang/gmp_lng-bg_BG.po → languages/google-maps-easy-bg_BG.po RENAMED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Maps Easy\n"
4
- "POT-Creation-Date: 2017-12-21 13:03+0200\n"
5
- "PO-Revision-Date: 2017-12-21 13:03+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
  "Language: bg_BG\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.9\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SearchPath-0: .\n"
@@ -17,21 +17,12 @@ msgstr ""
17
  "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
18
 
19
  #: classes/controller.php:198 classes/controller.php:206
20
- #: doc/google-maps-easy-pro/frontend_actions/controller.php:15
21
- #: doc/google-maps-easy-pro/frontend_actions/controller.php:38
22
- #: doc/google-maps-easy-pro/heatmap/controller.php:9
23
- #: doc/google-maps-easy-pro/heatmap/controller.php:39
24
- #: doc/google-maps-easy-pro/kml/controller.php:11
25
- #: doc/google-maps-easy-pro/license/controller.php:6
26
- #: doc/google-maps-easy-pro/shape/controller.php:8
27
- #: doc/google-maps-easy-pro/shape/controller.php:46
28
- #: doc/google-maps-easy-pro/shape/controller.php:61
29
- #: modules/adminmenu/controller.php:29 modules/csv/controller.php:190
30
  #: modules/gmap/controller.php:55 modules/gmap/controller.php:72
31
  #: modules/gmap/controller.php:80 modules/marker/controller.php:8
32
  #: modules/marker/controller.php:46 modules/marker/controller.php:61
33
- #: modules/marker/controller.php:101 modules/marker_groups/controller.php:78
34
- #: modules/options/controller.php:6
35
  msgid "Done"
36
  msgstr "Направено"
37
 
@@ -83,12 +74,9 @@ msgstr "Няма възможности за настройка на даден
83
  msgid "Apply To"
84
  msgstr "Се Прилагат Към"
85
 
86
- #: classes/fieldAdapter.php:95
87
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:40
88
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:66
89
- #: modules/gmap/views/tpl/gmapEditMap.php:334
90
- #: modules/gmap/views/tpl/gmapEditMap.php:1229
91
- #: modules/gmap/views/tpl/gmapEditMap.php:1507
92
  msgid "Address"
93
  msgstr "Адрес"
94
 
@@ -140,7 +128,7 @@ msgstr "id"
140
  msgid "You have no permissions to view this page"
141
  msgstr "Вие нямате права за преглед на тази страница"
142
 
143
- #: classes/html.php:207 modules/gmap/views/tpl/gmapEditMap.php:1360
144
  msgid "Upload"
145
  msgstr "Изтегли"
146
 
@@ -172,32 +160,44 @@ msgid "Can not create module directory. Try to set permission to "
172
  msgstr ""
173
  "Не може да се създаде папка на модула. Опитайте се да зададете резолюция "
174
 
175
- #: classes/modInstaller.php:103
176
  msgid "No modules were found in XML file"
177
  msgstr "Никакви модули са открити в XML файл"
178
 
179
- #: classes/modInstaller.php:107
180
  msgid "Invalid XML file"
181
  msgstr "Невалиден XML файл"
182
 
183
- #: classes/modInstaller.php:109
184
  msgid "No XML file were found"
185
  msgstr "Не XML-файл е намерен"
186
 
187
- #: classes/modInstaller.php:128
 
 
 
 
 
 
 
 
 
 
 
 
188
  #, php-format
189
  msgid "Install %s failed"
190
  msgstr "Задаване на %s не"
191
 
192
- #: classes/modInstaller.php:134
193
  msgid "Error Activate module"
194
  msgstr "Активиране грешка модул"
195
 
196
- #: classes/modInstaller.php:164
197
  msgid "Error Deactivation module"
198
  msgstr "Модул за изключване грешка"
199
 
200
- #: classes/modInstaller.php:185
201
  msgid "Error Activating module"
202
  msgstr "Активиране на грешка модул"
203
 
@@ -205,9 +205,9 @@ msgstr "Активиране на грешка модул"
205
  msgid "Database error detected"
206
  msgstr "Грешка в базата данни, открити"
207
 
208
- #: classes/model.php:176 modules/gmap/models/gmap.php:182
209
- #: modules/icons/models/icons.php:148
210
- #: modules/marker_groups/models/marker_groups.php:49
211
  msgid "Invalid ID"
212
  msgstr "Невалиден ID"
213
 
@@ -216,7 +216,7 @@ msgid "Empty or invalid ID"
216
  msgstr "Празни или невалидни ID"
217
 
218
  #: classes/table.php:277
219
- msgid "Nothig to update"
220
  msgstr "Нищо дори и обновяване на"
221
 
222
  #: classes/table.php:293
@@ -260,12 +260,12 @@ msgid "Description Of Marker"
260
  msgstr "Описание Маркер"
261
 
262
  #: classes/tables/marker.php:10
263
- msgid "X coordinate if marker(lng)"
264
- msgstr "X координати, ако маркер(lng)"
265
 
266
  #: classes/tables/marker.php:11
267
- msgid "Y coordinate of marker(lat)"
268
- msgstr "Y координати, ако маркер(lat)"
269
 
270
  #: classes/tables/marker.php:12
271
  msgid "Path of icon file"
@@ -289,6 +289,18 @@ msgid "Sort Order"
289
  msgstr "Сортиране"
290
 
291
  #: classes/tables/marker.php:20
 
 
 
 
 
 
 
 
 
 
 
 
292
  msgid "User who created marker"
293
  msgstr "Потребителят, който е създал маркер"
294
 
@@ -310,7 +322,6 @@ msgid "Has Tab"
310
  msgstr "Има Раздел"
311
 
312
  #: classes/tables/modules.php:12 classes/tables/options.php:12
313
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:67
314
  msgid "Description"
315
  msgstr "Описание"
316
 
@@ -324,7 +335,7 @@ msgid "External plugin directory"
324
  msgstr "Външен плъгин директорията"
325
 
326
  #: classes/tables/modules_type.php:7 classes/tables/options.php:7
327
- #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:240
328
  msgid "ID"
329
  msgstr "ID"
330
 
@@ -402,408 +413,6 @@ msgstr "Невалиден %s"
402
  msgid "%s is already registered"
403
  msgstr "%s вече са регистрирани"
404
 
405
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
406
- msgid "Exit Full Screen"
407
- msgstr "Изход От Режим На Цял Екран"
408
-
409
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
410
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
411
- msgid "Open Full Screen"
412
- msgstr "Отворите На Цял Екран"
413
-
414
- #: doc/google-maps-easy-pro/add_map_options/views/tpl/printInfoWndBtn.php:8
415
- msgid "Print"
416
- msgstr "Печат"
417
-
418
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:54
419
- msgid "Search address..."
420
- msgstr "Адрес за търсене..."
421
-
422
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:81
423
- msgid "Reset"
424
- msgstr "Проучване"
425
-
426
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:94
427
- msgid "Find"
428
- msgstr "Намери"
429
-
430
- #: doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:105
431
- msgid "Search area have no markers, please try to modify search criterias."
432
- msgstr ""
433
- "Област търсене не маркери, моля, опитайте се да промените критериите за "
434
- "търсене."
435
-
436
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
437
- msgid "Get Direction"
438
- msgstr "За Да Получите Указания"
439
-
440
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:23
441
- msgid "Type the address..."
442
- msgstr "Въведете адреса на..."
443
-
444
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:32
445
- msgid "or"
446
- msgstr "или"
447
-
448
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:35
449
- msgid "Get current user position"
450
- msgstr "Да текущото положение на потребителя"
451
-
452
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:45
453
- #: modules/supsystic_promo/views/tpl/adminFooter.php:10
454
- msgid "Go"
455
- msgstr "Да отида"
456
-
457
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
458
- msgid "The Geolocation service failed."
459
- msgstr "Услугата Геолокация не успя."
460
-
461
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
462
- msgid "Your browser does not support geolocation."
463
- msgstr "Вашият браузър не поддържа геолокацию."
464
-
465
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
466
- msgid "Route could not be found. Please, try to select another address!"
467
- msgstr ""
468
- "Маршрут не може да бъде намерен. Моля, опитайте се да изберете друг адрес!"
469
-
470
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
471
- msgid "Please, select address from search list!"
472
- msgstr "Моля, изберете адрес от списъка за търсене!"
473
-
474
- #: doc/google-maps-easy-pro/directions/views/tpl/directionsPanel.php:4
475
- msgid "List of Direction's Steps will be here..."
476
- msgstr "Списък от стъпки посока ще бъде тук..."
477
-
478
- #: doc/google-maps-easy-pro/frontend_actions/controller.php:49
479
- msgid "Adding markers from the frontend is disabled for the Current Map"
480
- msgstr "Добавяне на маркери от фронтенде забранен за текущата карта"
481
-
482
- #: doc/google-maps-easy-pro/frontend_actions/mod.php:24
483
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:9
484
- msgid "Empty or Invalid Map ID. Please, check your Marker Form Shortcode."
485
- msgstr ""
486
- "Празна или невалиден ID на картата. Моля, проверете своята форма маркер "
487
- "кратък."
488
-
489
- #: doc/google-maps-easy-pro/frontend_actions/models/frontend_actions.php:33
490
- #, php-format
491
- msgid ""
492
- "You have exceeded the limit on adding markers from current IP address. "
493
- "Please try again after %s minutes."
494
- msgstr ""
495
- "Вие сте превишили ограничението за добавяне на маркери от текущия IP адрес. "
496
- "Моля, опитайте отново след %s минути."
497
-
498
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:16
499
- msgid "Marker Form will be displayed only for logged in users."
500
- msgstr "Формата на маркер, ще се показват само за регистрирани потребители."
501
-
502
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:17
503
- msgid "Log In"
504
- msgstr "Вход"
505
-
506
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:30
507
- #: modules/gmap/views/gmap.php:278 modules/gmap/views/gmap.php:279
508
- #: modules/gmap/views/tpl/gmapEditMap.php:160
509
- #: modules/gmap/views/tpl/gmapEditMap.php:189
510
- #: modules/gmap/views/tpl/gmapEditMap.php:464 modules/marker/mod.php:20
511
- #: modules/marker_groups/views/marker_groups.php:17
512
- msgid "None"
513
- msgstr "Никой"
514
-
515
- #: doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:52
516
- msgid ""
517
- "Marker's Form is not displayed, because the option &quot;Add markers on "
518
- "frontend&quot; is disabled for the Current Map"
519
- msgstr ""
520
- "Форма на знак не се показва, защото опцията 'Добавяне на маркери на "
521
- "frontend' е изключена за текущата карта"
522
-
523
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:20
524
- msgid "You need to use marker form on page with map"
525
- msgstr "Ще трябва да използвате формуляр на маркера на страница карта"
526
-
527
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:23
528
- msgid "Marker Form"
529
- msgstr "Формата На Маркер"
530
-
531
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:24
532
- msgid "Use this form to add markers to your map"
533
- msgstr "Използвайте тази форма, за да добавите маркери на картата"
534
-
535
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:27
536
- #: modules/gmap/views/tpl/gmapEditMap.php:1178
537
- msgid "Marker Name"
538
- msgstr "Име На Маркера"
539
-
540
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:32
541
- #: modules/gmap/views/tpl/gmapEditMap.php:1271
542
- msgid "Marker Category"
543
- msgstr "Категория Маркер"
544
-
545
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:46
546
- #: modules/gmap/views/tpl/gmapEditMap.php:1494
547
- msgid "Add by Click"
548
- msgstr "Добави в кликата"
549
-
550
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:49
551
- #: modules/gmap/views/tpl/gmapEditMap.php:1191
552
- msgid "Marker Description"
553
- msgstr "Описание Маркер"
554
-
555
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:58
556
- #: modules/gmap/views/tpl/gmapEditMap.php:848
557
- #: modules/gmap/views/tpl/gmapEditMap.php:1218
558
- msgid "Choose Icon"
559
- msgstr "Изберете Икона"
560
-
561
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:65
562
- #: modules/gmap/views/tpl/gmapEditMap.php:1708
563
- msgid "Save Marker"
564
- msgstr "Запишете Маркер"
565
-
566
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:90
567
- msgid "Choose the marker"
568
- msgstr "Изберете маркер"
569
-
570
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:99
571
- #: modules/gmap/views/tpl/gmapEditMap.php:1714
572
- msgid "Delete Marker"
573
- msgstr "Изтриете Маркер"
574
-
575
- #: doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:101
576
- msgid "You need to choose the marker"
577
- msgstr "Вие трябва да изберете маркер"
578
-
579
- #: doc/google-maps-easy-pro/heatmap/controller.php:28
580
- msgid "Empty or invalid Heatmap ID"
581
- msgstr "Празна или невалидна лична карта"
582
-
583
- #: doc/google-maps-easy-pro/heatmap/controller.php:35
584
- msgid "Heatmap Not Found"
585
- msgstr "Топлинна Карта Не Е Намерена"
586
-
587
- #: doc/google-maps-easy-pro/heatmap/controller.php:41
588
- msgid "Cannot remove Heatmap"
589
- msgstr "Не мога да изтрия картата"
590
-
591
- #: doc/google-maps-easy-pro/kml/controller.php:18
592
- msgid "Security check failed"
593
- msgstr "Проверка за сигурност не успя да"
594
-
595
- #: doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:6
596
- msgid "KML Layers Filter"
597
- msgstr "Филтър слоеве на KML"
598
-
599
- #: doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:16
600
- msgid "KML data loading"
601
- msgstr "KML зареждане на данни"
602
-
603
- #: doc/google-maps-easy-pro/license/mod.php:30
604
- #, php-format
605
- msgid ""
606
- "Your license is expired. Once you extend your license - you will be able to "
607
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
608
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab anc "
609
- "click on &quot;Re-activate&quot; button to re-activate your PRO version."
610
- msgstr ""
611
- "Вашата лиценз е изтекъл. След като сте се удължи вашия лиценз - можете да "
612
- "обновите версията Pro. За да се удължи лиценза на Pro версията - да следвате "
613
- "<a href='%s' target='_blank'>тази връзка</a>, след това - отидете в <a "
614
- "href='%s'>Лиценз</a> в раздел ANC кликнете на 'активиране' бутона, за да "
615
- "активирате Pro версия."
616
-
617
- #: doc/google-maps-easy-pro/license/mod.php:39
618
- #, php-format
619
- msgid ""
620
- "Your plugin PRO license is expired. It means your PRO version will work as "
621
- "usual - with all features and options, but you will not be able to update "
622
- "the PRO version and use PRO support. To extend PRO version license - follow "
623
- "<a href='%s' target='_blank'>this link</a>"
624
- msgstr ""
625
-
626
- #: doc/google-maps-easy-pro/license/mod.php:44
627
- #, php-format
628
- msgid ""
629
- "You need to activate your copy of PRO version %s plugin. Go to <a "
630
- "href='%s'>License</a> tab and finish your software activation process."
631
- msgstr ""
632
-
633
- #: doc/google-maps-easy-pro/license/mod.php:70
634
- msgid "License"
635
- msgstr "Лиценз"
636
-
637
- #: doc/google-maps-easy-pro/license/mod.php:93
638
- msgid "Activate License"
639
- msgstr "Активиране На Лиценз"
640
-
641
- #: doc/google-maps-easy-pro/license/mod.php:95
642
- msgid "Renew License"
643
- msgstr "Удължаване На Лиценза"
644
-
645
- #: doc/google-maps-easy-pro/license/models/license.php:54
646
- msgid "Please enter your License Key"
647
- msgstr "Моля, въведете ключ за лиценз"
648
-
649
- #: doc/google-maps-easy-pro/license/models/license.php:56
650
- msgid "Please enter your Email address"
651
- msgstr "Моля, въведете вашия имейл"
652
-
653
- #: doc/google-maps-easy-pro/license/models/license.php:138
654
- msgid ""
655
- "There was a problem with sending request to our autentification server. "
656
- "Please try latter."
657
- msgstr ""
658
- "Възникнал е проблем с изпращането на запитване към нашия удостоверяване на "
659
- "сървъра. Моля, опитайте втората."
660
-
661
- #: doc/google-maps-easy-pro/license/models/license.php:178
662
- #, php-format
663
- msgid "License for plugin %s will expire today."
664
- msgstr "Лиценз за plug-in %s изтича днес."
665
-
666
- #: doc/google-maps-easy-pro/license/models/license.php:180
667
- #, php-format
668
- msgid "License for plugin %s will expire tomorrow."
669
- msgstr "Лиценз за plug-in %s изтича утре."
670
-
671
- #: doc/google-maps-easy-pro/license/models/license.php:182
672
- #, php-format
673
- msgid "License for plugin %s will expire in %d days."
674
- msgstr "Лиценз за plug-in %s изтича след %d дни."
675
-
676
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
677
- #, php-format
678
- msgid ""
679
- "Congratulations! PRO version of %s plugin is activated and working fine!"
680
- msgstr "Поздравления! Pro версия на plug-in %s се активира и работи нормално!"
681
-
682
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
683
- #, php-format
684
- msgid ""
685
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
686
- "target='_blank'>click here</a> to extend your license, then - click on &quot;"
687
- "Re-activate&quot; button to re-activate your PRO version."
688
- msgstr ""
689
- "Лиценз Код за Pro версия на plug-in %s е изтекъл. Можете да <a href='%s' "
690
- "target='_blank'>кликнете тук</a>, за да удължи лиценза, а след това - в "
691
- "раздел ANC кликнете на 'активиране' бутона за повторно активиране на Pro "
692
- "версията."
693
-
694
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
695
- #, php-format
696
- msgid ""
697
- "Congratulations! You have successfully installed PRO version of %s plugin. "
698
- "Final step to finish Your PRO version setup - is to enter your Email and "
699
- "License Key on this page. This will activate Your copy of software on this "
700
- "site."
701
- msgstr ""
702
- "Поздравления! Успешно сте инсталирали версия на plug-in %s. Последната "
703
- "стъпка е да се завърши професионална настройка версия - това е да въведете "
704
- "адрес на електронна поща и лицензен ключ на тази страница. Това ще активира "
705
- "Вашето копие на софтуера на този сайт."
706
-
707
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
708
- #: modules/supsystic_promo/mod.php:215
709
- msgid "Email"
710
- msgstr "Електронна поща"
711
-
712
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
713
- #, php-format
714
- msgid ""
715
- "Your email address, used on checkout procedure on <a href='%s' "
716
- "target='_blank'>%s</a>"
717
- msgstr ""
718
- "Имейл адрес, използван при касата ред в <a href='%s' target='_blank'>%s</a>"
719
-
720
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
721
- msgid "License Key"
722
- msgstr "Лицензионен Ключ"
723
-
724
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
725
- #, php-format
726
- msgid ""
727
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
728
- msgstr ""
729
- "Вашия лицензен ключ от Вашия акаунт в <a href='%s' target='_blank'>%s</a>"
730
-
731
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
732
- msgid "Re-activate"
733
- msgstr "Активираме"
734
-
735
- #: doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
736
- msgid "Activate"
737
- msgstr "Активира"
738
-
739
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:17
740
- msgid "Uncategorized"
741
- msgstr "Без категория"
742
-
743
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:65
744
- #: modules/gmap/views/gmap.php:241
745
- msgid "Title"
746
- msgstr "Заглавие"
747
-
748
- #: doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:69
749
- msgid "Directions"
750
- msgstr "Посока"
751
-
752
- #: doc/google-maps-easy-pro/poi/mod.php:9
753
- #: doc/google-maps-easy-pro/poi/views/poi.php:7
754
- msgid "Empty or Invalid Map ID. Please, check your POI Toolbar Shortcode."
755
- msgstr ""
756
-
757
- #: doc/google-maps-easy-pro/shape/controller.php:42
758
- #: doc/google-maps-easy-pro/shape/controller.php:57
759
- msgid "Figure Not Found"
760
- msgstr "Фигура Не Е Намерен"
761
-
762
- #: doc/google-maps-easy-pro/shape/controller.php:48
763
- #: doc/google-maps-easy-pro/shape/controller.php:63
764
- msgid "Cannot remove figure"
765
- msgstr "Не мога да премахнете фигура"
766
-
767
- #: doc/google-maps-easy-pro/shape/controller.php:99
768
- msgid "Empty or invalid figure ID"
769
- msgstr "Празна или невалиден идентификатор на фиг"
770
-
771
- #: doc/google-maps-easy-pro/shape/models/shape.php:43
772
- msgid "Please enter figure name"
773
- msgstr "Моля, въведете име на фигурата"
774
-
775
- #: doc/google-maps-easy-pro/shape/models/shape.php:104
776
- #: modules/marker/models/marker.php:207
777
- msgid "Address is empty or not match"
778
- msgstr "Адрес празен или не отговаря на"
779
-
780
- #: doc/google-maps-easy-pro/shape/models/shape.php:159
781
- msgid "Invalid Figure ID"
782
- msgstr "Неправилен ID на фигура"
783
-
784
- #: doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
785
- #: modules/gmap/mod.php:22 modules/marker/views/tpl/markerListOperations.php:1
786
- #: modules/marker_groups/mod.php:14
787
- msgid "Edit"
788
- msgstr "Редактирай"
789
-
790
- #: doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
791
- #: modules/marker/views/tpl/markerListOperations.php:1
792
- msgid "Delete"
793
- msgstr "Изтриете"
794
-
795
- #: doc/google-maps-easy-pro/wpUpdater.php:70
796
- msgid ""
797
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
798
- "onclick='document.location.reload(); return false;'>Try again</a>"
799
- msgstr ""
800
- "Възникна неочаквана грешка http когато заявката API.</p> <p><a href='?' "
801
- "onclick='document.location.reload(); return false;'>опитайте отново</a>"
802
-
803
- #: doc/google-maps-easy-pro/wpUpdater.php:75
804
- msgid "An unknown error occurred"
805
- msgstr "Възникна неизвестна грешка"
806
-
807
  #: modules/adminmenu/controller.php:7
808
  msgid "Your name field is required."
809
  msgstr "Изисква вашия полето 'име'."
@@ -868,22 +477,46 @@ msgstr "Маркери от %s"
868
  msgid "You have no markers for now."
869
  msgstr "Нямате маркери сега."
870
 
871
- #: modules/csv/controller.php:96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
872
  msgid "Missing File"
873
  msgstr "Липсва Файл"
874
 
875
- #: modules/csv/controller.php:98
876
  #, php-format
877
  msgid "File uploaded with error code %s"
878
  msgstr "Изтеглен файл с код за грешка %s"
879
 
880
- #: modules/csv/controller.php:180
881
  msgid ""
882
  "File should contain more then 1 row, at least 1 row should be for headers"
883
  msgstr ""
884
  "Файл трябва да съдържа повече от 1 ред, поне 1 ред трябва да бъде за заглавия"
885
 
886
- #: modules/csv/controller.php:182
887
  msgid "Empty data in file"
888
  msgstr "Празни данни във файл"
889
 
@@ -905,29 +538,46 @@ msgstr "Карта"
905
 
906
  #: modules/csv/views/tpl/csvTabContent.php:13
907
  #: modules/csv/views/tpl/csvTabContent.php:34
 
 
908
  msgid "Export"
909
  msgstr "Износ"
910
 
911
  #: modules/csv/views/tpl/csvTabContent.php:18
912
  #: modules/csv/views/tpl/csvTabContent.php:39
 
 
913
  msgid "Import"
914
  msgstr "Внос"
915
 
916
- #: modules/csv/views/tpl/csvTabContent.php:29 modules/gmap/views/gmap.php:243
917
- #: modules/gmap/views/tpl/gmapEditMap.php:41
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Maps Easy\n"
4
+ "POT-Creation-Date: 2019-06-06 13:08+0300\n"
5
+ "PO-Revision-Date: 2019-06-06 13:11+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
8
  "Language: bg_BG\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.1\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPathExcluded-1: doc/promo-google-maps-easy-pro\n"
18
 
19
  #: classes/controller.php:198 classes/controller.php:206
20
+ #: modules/adminmenu/controller.php:29 modules/csv/controller.php:327
 
 
 
 
 
 
 
 
 
21
  #: modules/gmap/controller.php:55 modules/gmap/controller.php:72
22
  #: modules/gmap/controller.php:80 modules/marker/controller.php:8
23
  #: modules/marker/controller.php:46 modules/marker/controller.php:61
24
+ #: modules/marker/controller.php:101 modules/marker_groups/controller.php:79
25
+ #: modules/marker_groups/controller.php:103 modules/options/controller.php:6
26
  msgid "Done"
27
  msgstr "Направено"
28
 
74
  msgid "Apply To"
75
  msgstr "Се Прилагат Към"
76
 
77
+ #: classes/fieldAdapter.php:95 modules/gmap/views/tpl/gmapEditMap.php:402
78
+ #: modules/gmap/views/tpl/gmapEditMap.php:1591
79
+ #: modules/gmap/views/tpl/gmapEditMap.php:1940
 
 
 
80
  msgid "Address"
81
  msgstr "Адрес"
82
 
128
  msgid "You have no permissions to view this page"
129
  msgstr "Вие нямате права за преглед на тази страница"
130
 
131
+ #: classes/html.php:207 modules/gmap/views/tpl/gmapEditMap.php:1722
132
  msgid "Upload"
133
  msgstr "Изтегли"
134
 
160
  msgstr ""
161
  "Не може да се създаде папка на модула. Опитайте се да зададете резолюция "
162
 
163
+ #: classes/modInstaller.php:104
164
  msgid "No modules were found in XML file"
165
  msgstr "Никакви модули са открити в XML файл"
166
 
167
+ #: classes/modInstaller.php:108
168
  msgid "Invalid XML file"
169
  msgstr "Невалиден XML файл"
170
 
171
+ #: classes/modInstaller.php:110
172
  msgid "No XML file were found"
173
  msgstr "Не XML-файл е намерен"
174
 
175
+ #: classes/modInstaller.php:123
176
+ #, fuzzy
177
+ #| msgid "No modules were found in XML file"
178
+ msgid "No modules were found in installation file"
179
+ msgstr "Никакви модули са открити в XML файл"
180
+
181
+ #: classes/modInstaller.php:127
182
+ #, fuzzy
183
+ #| msgid "No XML file were found"
184
+ msgid "No installation file were found"
185
+ msgstr "Не XML-файл е намерен"
186
+
187
+ #: classes/modInstaller.php:146
188
  #, php-format
189
  msgid "Install %s failed"
190
  msgstr "Задаване на %s не"
191
 
192
+ #: classes/modInstaller.php:152
193
  msgid "Error Activate module"
194
  msgstr "Активиране грешка модул"
195
 
196
+ #: classes/modInstaller.php:181
197
  msgid "Error Deactivation module"
198
  msgstr "Модул за изключване грешка"
199
 
200
+ #: classes/modInstaller.php:198
201
  msgid "Error Activating module"
202
  msgstr "Активиране на грешка модул"
203
 
205
  msgid "Database error detected"
206
  msgstr "Грешка в базата данни, открити"
207
 
208
+ #: classes/model.php:176 modules/gmap/models/gmap.php:186
209
+ #: modules/icons/models/icons.php:149 modules/marker/models/marker.php:327
210
+ #: modules/marker_groups/models/marker_groups.php:57
211
  msgid "Invalid ID"
212
  msgstr "Невалиден ID"
213
 
216
  msgstr "Празни или невалидни ID"
217
 
218
  #: classes/table.php:277
219
+ msgid "Nothing to update"
220
  msgstr "Нищо дори и обновяване на"
221
 
222
  #: classes/table.php:293
260
  msgstr "Описание Маркер"
261
 
262
  #: classes/tables/marker.php:10
263
+ msgid "X coordinate of marker (lng)"
264
+ msgstr "X координати, ако маркер (lng)"
265
 
266
  #: classes/tables/marker.php:11
267
+ msgid "Y coordinate of marker (lat)"
268
+ msgstr "Y координати, ако маркер (lat)"
269
 
270
  #: classes/tables/marker.php:12
271
  msgid "Path of icon file"
289
  msgstr "Сортиране"
290
 
291
  #: classes/tables/marker.php:20
292
+ msgid "Period date from"
293
+ msgstr ""
294
+
295
+ #: classes/tables/marker.php:21
296
+ msgid "Period date to"
297
+ msgstr ""
298
+
299
+ #: classes/tables/marker.php:22
300
+ msgid "Import Kml Layer unique index"
301
+ msgstr ""
302
+
303
+ #: classes/tables/marker.php:23
304
  msgid "User who created marker"
305
  msgstr "Потребителят, който е създал маркер"
306
 
322
  msgstr "Има Раздел"
323
 
324
  #: classes/tables/modules.php:12 classes/tables/options.php:12
 
325
  msgid "Description"
326
  msgstr "Описание"
327
 
335
  msgstr "Външен плъгин директорията"
336
 
337
  #: classes/tables/modules_type.php:7 classes/tables/options.php:7
338
+ #: classes/tables/options_categories.php:7 modules/gmap/views/gmap.php:272
339
  msgid "ID"
340
  msgstr "ID"
341
 
413
  msgid "%s is already registered"
414
  msgstr "%s вече са регистрирани"
415
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  #: modules/adminmenu/controller.php:7
417
  msgid "Your name field is required."
418
  msgstr "Изисква вашия полето 'име'."
477
  msgid "You have no markers for now."
478
  msgstr "Нямате маркери сега."
479
 
480
+ #: modules/csv/controller.php:97
481
+ #, fuzzy, php-format
482
+ #| msgid "Markers from %s"
483
+ msgid "Figures from %s"
484
+ msgstr "Маркери от %s"
485
+
486
+ #: modules/csv/controller.php:100
487
+ #, fuzzy
488
+ #| msgid "You have no markers for now."
489
+ msgid "You have no figures for now."
490
+ msgstr "Нямате маркери сега."
491
+
492
+ #: modules/csv/controller.php:139
493
+ #, fuzzy, php-format
494
+ #| msgid "Heatmap Layer"
495
+ msgid "Heatmap from %s"
496
+ msgstr "Теплокарты Слой"
497
+
498
+ #: modules/csv/controller.php:142
499
+ #, fuzzy
500
+ #| msgid "You have no maps for now."
501
+ msgid "You have no heatmap for now."
502
+ msgstr "Нямате карти сега."
503
+
504
+ #: modules/csv/controller.php:201
505
  msgid "Missing File"
506
  msgstr "Липсва Файл"
507
 
508
+ #: modules/csv/controller.php:203
509
  #, php-format
510
  msgid "File uploaded with error code %s"
511
  msgstr "Изтеглен файл с код за грешка %s"
512
 
513
+ #: modules/csv/controller.php:317
514
  msgid ""
515
  "File should contain more then 1 row, at least 1 row should be for headers"
516
  msgstr ""
517
  "Файл трябва да съдържа повече от 1 ред, поне 1 ред трябва да бъде за заглавия"
518
 
519
+ #: modules/csv/controller.php:319
520
  msgid "Empty data in file"
521
  msgstr "Празни данни във файл"
522
 
538
 
539
  #: modules/csv/views/tpl/csvTabContent.php:13
540
  #: modules/csv/views/tpl/csvTabContent.php:34
541
+ #: modules/csv/views/tpl/csvTabContent.php:55
542
+ #: modules/csv/views/tpl/csvTabContent.php:76
543
  msgid "Export"
544
  msgstr "Износ"
545
 
546
  #: modules/csv/views/tpl/csvTabContent.php:18
547
  #: modules/csv/views/tpl/csvTabContent.php:39
548
+ #: modules/csv/views/tpl/csvTabContent.php:60
549
+ #: modules/csv/views/tpl/csvTabContent.php:81
550
  msgid "Import"
551
  msgstr "Внос"
552
 
553
+ #: modules/csv/views/tpl/csvTabContent.php:29 modules/gmap/views/gmap.php:275
554
+ #: modules/gmap/views/tpl/gmapEditMap.