Pricing Table by Supsystic - Version 1.8.5

Version Description

/ 23.06.2020 * Add fix for utf8_encode

Download this release

Release Info

Developer supsystic.com
Plugin Icon 128x128 Pricing Table by Supsystic
Version 1.8.5
Comparing to
See all releases

Code changes from version 1.7.11 to 1.8.5

classes/controller.php CHANGED
@@ -53,7 +53,7 @@ abstract class controllerPts {
53
  if(importPts($parentModule->getModDir(). 'models'. DS. $name. '.php')) {
54
  $className = toeGetClassNamePts($name. 'Model');
55
  }
56
-
57
  if($className) {
58
  $model = new $className();
59
  $model->setCode( $this->getCode() );
@@ -65,11 +65,11 @@ abstract class controllerPts {
65
  if(empty($name)) $name = $this->getCode();
66
  $parentModule = framePts::_()->getModule( $this->getCode() );
67
  $className = '';
68
-
69
  if(importPts($parentModule->getModDir(). 'views'. DS. $name. '.php')) {
70
  $className = toeGetClassNamePts($name. 'View');
71
  }
72
-
73
  if($className) {
74
  $view = new $className();
75
  $view->setCode( $this->getCode() );
@@ -129,7 +129,7 @@ abstract class controllerPts {
129
  $res = new responsePts();
130
  $res->ignoreShellData();
131
  $model = $this->getModel();
132
-
133
  $page = (int) reqPts::getVar('page');
134
  $rowsLimit = (int) reqPts::getVar('rows');
135
  $orderBy = reqPts::getVar('sidx');
@@ -177,14 +177,14 @@ abstract class controllerPts {
177
  $limitStart = $rowsLimit * $page - $rowsLimit; // do not put $limit*($page - 1)
178
  if($limitStart < 0)
179
  $limitStart = 0;
180
-
181
  $data = $model
182
  ->setLimit($limitStart. ', '. $rowsLimit)
183
  ->setOrderBy( $this->_prepareSortOrder($orderBy) )
184
  ->setSortOrder( $sortOrder )
185
  ->setSimpleGetFields()
186
  ->getFromTbl();
187
-
188
  $data = $this->_prepareListForTbl( $data );
189
  $res->addData('page', $page);
190
  $res->addData('total', $totalPages);
@@ -195,7 +195,8 @@ abstract class controllerPts {
195
  $i = $item;
196
 
197
  if (isset($i['img_url']) && is_string($i['img_url']))
198
- $i['img_url'] = utf8_encode($i['img_url']);
 
199
 
200
  $tdata[] = $i;
201
  }
53
  if(importPts($parentModule->getModDir(). 'models'. DS. $name. '.php')) {
54
  $className = toeGetClassNamePts($name. 'Model');
55
  }
56
+
57
  if($className) {
58
  $model = new $className();
59
  $model->setCode( $this->getCode() );
65
  if(empty($name)) $name = $this->getCode();
66
  $parentModule = framePts::_()->getModule( $this->getCode() );
67
  $className = '';
68
+
69
  if(importPts($parentModule->getModDir(). 'views'. DS. $name. '.php')) {
70
  $className = toeGetClassNamePts($name. 'View');
71
  }
72
+
73
  if($className) {
74
  $view = new $className();
75
  $view->setCode( $this->getCode() );
129
  $res = new responsePts();
130
  $res->ignoreShellData();
131
  $model = $this->getModel();
132
+
133
  $page = (int) reqPts::getVar('page');
134
  $rowsLimit = (int) reqPts::getVar('rows');
135
  $orderBy = reqPts::getVar('sidx');
177
  $limitStart = $rowsLimit * $page - $rowsLimit; // do not put $limit*($page - 1)
178
  if($limitStart < 0)
179
  $limitStart = 0;
180
+
181
  $data = $model
182
  ->setLimit($limitStart. ', '. $rowsLimit)
183
  ->setOrderBy( $this->_prepareSortOrder($orderBy) )
184
  ->setSortOrder( $sortOrder )
185
  ->setSimpleGetFields()
186
  ->getFromTbl();
187
+
188
  $data = $this->_prepareListForTbl( $data );
189
  $res->addData('page', $page);
190
  $res->addData('total', $totalPages);
195
  $i = $item;
196
 
197
  if (isset($i['img_url']) && is_string($i['img_url']))
198
+ //$i['img_url'] = utf8_encode($i['img_url']);
199
+ $i['img_url'] = iconv("ISO-8859-1", "UTF-8", $i['img_url']);
200
 
201
  $tdata[] = $i;
202
  }
classes/frame.php CHANGED
@@ -14,7 +14,7 @@ class framePts {
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,9 @@ class framePts {
22
  * Object with result of executing non-ajax module request
23
  */
24
  private $_res = null;
25
-
26
  public function __construct() {
27
  $this->_res = toeCreateObjPts('response', array());
28
-
29
  }
30
  static public function getInstance() {
31
  static $instance;
@@ -106,18 +105,18 @@ class framePts {
106
  $this->_initModules();
107
 
108
  dispatcherPts::doAction('afterModulesInit');
109
-
110
  modInstallerPts::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( PTS_DIR. DS. PTS_MAIN_FILE, array('utilsPts', 'activatePlugin') ); //See classes/install.php file
118
  register_uninstall_hook(PTS_DIR. DS. PTS_MAIN_FILE, array('utilsPts', 'deletePlugin'));
119
  register_deactivation_hook(PTS_DIR. DS. PTS_MAIN_FILE, array( 'utilsPts', 'deactivatePlugin' ) );
120
-
121
  add_action('init', array($this, 'connectLang'));
122
  //$operationTime = microtime(true) - $startTime;
123
  }
@@ -150,7 +149,7 @@ class framePts {
150
  if($mod) {
151
  $permissions = $mod->getController()->getPermissions();
152
  if(!empty($permissions)) { // Special permissions
153
- if(isset($permissions[PTS_METHODS])
154
  && !empty($permissions[PTS_METHODS])
155
  ) {
156
  foreach($permissions[PTS_METHODS] as $method => $permissions) { // Make case-insensitive
@@ -168,6 +167,12 @@ class framePts {
168
  if(isset($permissions[PTS_USERLEVELS])
169
  && !empty($permissions[PTS_USERLEVELS])
170
  ) {
 
 
 
 
 
 
171
  $currentUserPosition = framePts::_()->getModule('user')->getCurrentUserPosition();
172
  // For multi-sites network admin role is undefined, let's do this here
173
  if(is_multisite() && is_admin() && is_super_admin()) {
@@ -177,14 +182,14 @@ class framePts {
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 +217,7 @@ class framePts {
212
  if($mod) {
213
  $permissions = $mod->getController()->getPermissions();
214
  if(!empty($permissions)) { // Special permissions
215
- if(isset($permissions[PTS_METHODS])
216
  && !empty($permissions[PTS_METHODS])
217
  ) {
218
  foreach($permissions[PTS_METHODS] as $method => $permissions) { // Make case-insensitive
@@ -319,7 +324,7 @@ class framePts {
319
  }
320
  return $res;
321
  }
322
-
323
  public function getModule($code) {
324
  return (isset($this->_modules[$code]) ? $this->_modules[$code] : NULL);
325
  }
@@ -338,10 +343,10 @@ class framePts {
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 +359,7 @@ class framePts {
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'])
@@ -406,7 +411,7 @@ class framePts {
406
  'src' => $src,
407
  'deps' => $deps,
408
  'ver' => $ver,
409
- 'media' => $media
410
  );
411
  }
412
  }
@@ -421,13 +426,13 @@ class framePts {
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 = toeCreateObjPts('response', array());
 
28
  }
29
  static public function getInstance() {
30
  static $instance;
105
  $this->_initModules();
106
 
107
  dispatcherPts::doAction('afterModulesInit');
108
+
109
  modInstallerPts::checkActivationMessages();
110
+
111
  $this->_execModules();
112
+
113
  add_action('init', array($this, 'addScripts'));
114
  add_action('init', array($this, 'addStyles'));
115
 
116
  register_activation_hook( PTS_DIR. DS. PTS_MAIN_FILE, array('utilsPts', 'activatePlugin') ); //See classes/install.php file
117
  register_uninstall_hook(PTS_DIR. DS. PTS_MAIN_FILE, array('utilsPts', 'deletePlugin'));
118
  register_deactivation_hook(PTS_DIR. DS. PTS_MAIN_FILE, array( 'utilsPts', 'deactivatePlugin' ) );
119
+
120
  add_action('init', array($this, 'connectLang'));
121
  //$operationTime = microtime(true) - $startTime;
122
  }
149
  if($mod) {
150
  $permissions = $mod->getController()->getPermissions();
151
  if(!empty($permissions)) { // Special permissions
152
+ if(isset($permissions[PTS_METHODS])
153
  && !empty($permissions[PTS_METHODS])
154
  ) {
155
  foreach($permissions[PTS_METHODS] as $method => $permissions) { // Make case-insensitive
167
  if(isset($permissions[PTS_USERLEVELS])
168
  && !empty($permissions[PTS_USERLEVELS])
169
  ) {
170
+ $postNonceVerify = !empty($_POST['pts_nonce']) ? wp_verify_nonce( $_POST['pts_nonce'], 'pts_nonce' ) : false;
171
+ $getNonceVerify = !empty($_GET['pts_nonce']) ? wp_verify_nonce( $_GET['pts_nonce'], 'pts_nonce' ) : false;
172
+ if (!$postNonceVerify && !$getNonceVerify) {
173
+ $res = false;
174
+ return $res;
175
+ }
176
  $currentUserPosition = framePts::_()->getModule('user')->getCurrentUserPosition();
177
  // For multi-sites network admin role is undefined, let's do this here
178
  if(is_multisite() && is_admin() && is_super_admin()) {
182
  if(is_array($methods)) {
183
  $lowerMethods = array_map('strtolower', $methods); // Make case-insensitive
184
  if(in_array($action, $lowerMethods)) { // Permission for this method exists
185
+ if($currentUserPosition != $userlevel)
186
  $res = false;
187
  break;
188
  }
189
  } else {
190
  $lowerMethod = strtolower($methods); // Make case-insensitive
191
  if($lowerMethod == $action) { // Permission for this method exists
192
+ if($currentUserPosition != $userlevel)
193
  $res = false;
194
  break;
195
  }
217
  if($mod) {
218
  $permissions = $mod->getController()->getPermissions();
219
  if(!empty($permissions)) { // Special permissions
220
+ if(isset($permissions[PTS_METHODS])
221
  && !empty($permissions[PTS_METHODS])
222
  ) {
223
  foreach($permissions[PTS_METHODS] as $method => $permissions) { // Make case-insensitive
324
  }
325
  return $res;
326
  }
327
+
328
  public function getModule($code) {
329
  return (isset($this->_modules[$code]) ? $this->_modules[$code] : NULL);
330
  }
343
  wp_enqueue_script($handle, $src, $deps, $ver, $in_footer);
344
  } else {
345
  $this->_scripts[] = array(
346
+ 'handle' => $handle,
347
+ 'src' => $src,
348
+ 'deps' => $deps,
349
+ 'ver' => $ver,
350
  'in_footer' => $in_footer,
351
  'vars' => $vars
352
  );
359
  if(!empty($this->_scripts)) {
360
  foreach($this->_scripts as $s) {
361
  wp_enqueue_script($s['handle'], $s['src'], $s['deps'], $s['ver'], $s['in_footer']);
362
+
363
  if($s['vars'] || isset($this->_scriptsVars[$s['handle']])) {
364
  $vars = array();
365
  if($s['vars'])
411
  'src' => $src,
412
  'deps' => $deps,
413
  'ver' => $ver,
414
+ 'media' => $media
415
  );
416
  }
417
  }
426
  }
427
  //Very interesting thing going here.............
428
  public function loadPlugins() {
429
+ require_once(ABSPATH. 'wp-includes/pluggable.php');
430
  }
431
  public function loadWPSettings() {
432
+ require_once(ABSPATH. 'wp-settings.php');
433
  }
434
  public function loadLocale() {
435
+ require_once(ABSPATH. 'wp-includes/locale.php');
436
  }
437
  public function moduleActive($code) {
438
  return isset($this->_modules[$code]);
classes/installer.php CHANGED
@@ -10,7 +10,7 @@ class installerPts {
10
  if(!$current_version)
11
  self::$_firstTimeActivated = true;
12
  /**
13
- * modules
14
  */
15
  //dbPts::query("DROP TABLE @__modules");
16
  if (!dbPts::exist("@__modules")) {
@@ -33,11 +33,11 @@ class installerPts {
33
  (NULL, 'supsystic_promo',1,1,'supsystic_promo'),
34
  (NULL, 'admin_nav',1,1,'admin_nav'),
35
  (NULL, 'mail',1,1,'mail'),
36
-
37
  (NULL, 'tables',1,1,'tables');");
38
  }
39
  /**
40
- * modules_type
41
  */
42
  if(!dbPts::exist("@__modules_type")) {
43
  dbDelta(dbPts::prepareQuery("CREATE TABLE IF NOT EXISTS `@__modules_type` (
@@ -74,7 +74,7 @@ class installerPts {
74
  }
75
  if (version_compare($current_version, '1.2.5') != 1)
76
  dbPts::query("ALTER TABLE `@__tables` MODIFY html MEDIUMTEXT;");
77
-
78
  self::initBaseTables();
79
  /**
80
  * Plugin usage statistics
@@ -120,7 +120,7 @@ class installerPts {
120
  self::_checkSendStat('deactivate');
121
  }
122
  static private function _checkSendStat($statCode) {
123
- if(class_exists('framePts')
124
  && framePts::_()->getModule('supsystic_promo')
125
  && framePts::_()->getModule('options')
126
  ) {
@@ -146,8 +146,8 @@ class installerPts {
146
 
147
  $data = array(
148
  'RQjyfqVX' => array('unique_id' => 'RQjyfqVX','label' => 'Rainbow','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo3OiIjZjVmNWY1Ijt9czoxNDoiY2VsbF9jb2xvcl9jc3MiO2E6MTp7czozOiJ2YWwiO3M6MzQwOiIje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDb2xIZWFkZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7ZWwuY29sb3J9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gLnB0c0NvbERlc2MsDQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNBY3RCdG46aG92ZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7IGFkakJzKGVsLmNvbG9yLCAtMzUpIH19Ow0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzQWN0QnRuIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7e2VsLmNvbG9yfX07DQp9Ijt9czoxMjoiZW5iX2Rlc2NfY29sIjthOjE6e3M6MzoidmFsIjtzOjE6IjAiO31zOjk6ImNvbF93aWR0aCI7YToxOntzOjM6InZhbCI7czozOiIxODYiO31zOjg6ImNvbHNfbnVtIjthOjE6e3M6MzoidmFsIjtzOjE6IjQiO31zOjg6InJvd3NfbnVtIjthOjE6e3M6MzoidmFsIjtzOjE6IjgiO31zOjEwOiJjYWxjX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjU6InRhYmxlIjt9czoxMToidGFibGVfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTAwIjt9czoxOToidGFibGVfd2lkdGhfbWVhc3VyZSI7YToxOntzOjM6InZhbCI7czoxOiIlIjt9czoxOToiZW5iX2hvdmVyX2FuaW1hdGlvbiI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czoxMzoidHh0X2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNjQ6IjxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+PC9kaXY+Ijt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJpY29uX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoyMjg6IjxkaXYgZGF0YS1pY29uPVwiZmEtY29nXCIgZGF0YS1jb2xvcj1cInJnYigwLCAyMjAsIDIyMylcIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCI+PGkgY2xhc3M9XCJmYSBmYS0yeCBwdHNJbnB1dFNoZWxsIGZhLWNvZ1wiIHN0eWxlPVwiY29sb3I6IHJnYigwLCAyMjAsIDIyMyk7XCI+PC9pPjwvZGl2PiI7fXM6MTM6Im5ld19jZWxsX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjQyOiI8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5Zb3VyIFRleHQ8L3NwYW4+PC9wPg0KCQk8L2Rpdj4NCgk8L2Rpdj4NCjwvZGl2PiI7fXM6MTU6Im5ld19jb2x1bW5faHRtbCI7YToxOntzOjM6InZhbCI7czozMDQ5OiI8ZGl2IGNsYXNzPVwicHRzRWwgcHRzQ29sIHB0c0VsV2l0aEFyZWFcIiBkYXRhLWNvbG9yPVwicmdiKDUxLCAxNTMsIDI1NSlcIiBkYXRhLWVsPVwidGFibGVfY29sXCIgZGF0YS1lbmItY29sb3I9XCIwXCI+DQoJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xIZWFkZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+PHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+U0lOR0xFIExJQ0VOU0U8L3NwYW4+PC9wPjwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCQk8ZGl2IGNsYXNzPVwicHRzQ29sRGVzYyBwdHNUb2dnbGVcIj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJPHA+PHNwYW4gZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDM2cHQ7XCIgc3R5bGU9XCJmb250LXNpemU6IDM2cHQ7XCI+JDI5PC9zcGFuPjwvcD48cD5PTkUgVElNRSBGRUU8L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+MTAgdXNlciBhY2NvdW50czwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5GcmVlIDMwLWRheSB0cmlhbDwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4yMDAgcHJvamVjdHM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+Tm8gZW5jcnlwdGlvbjwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMDAgTUIgU3RvcmFnZTwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMCBjdXN0b20gZG9tYWluczwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMDAgc3ViIGRvbWFpbnM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgkJPGRpdiBjbGFzcz1cInB0c0NvbEZvb3RlciBwdHNUb2dnbGVcIj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQWN0QnRuIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwiYnRuXCIgZGF0YS1iZ2NvbG9yLXRvPVwiYm9yZGVyXCIgZGF0YS1iZ2NvbG9yPVwiIzEwNzZkY1wiIGRhdGEtY3VzdG9taG92ZXItY2xiPVwiX2hvdmVyQ2hhbmdlQmdDb2xvclwiPg0KCQkJCQk8YSB0YXJnZXQ9XCJfYmxhbmtcIiBocmVmPVwiaHR0cHM6Ly9zdXBzeXN0aWMuY29tL1wiIGNsYXNzPVwicHRzRWRpdEFyZWEgcHRzSW5wdXRTaGVsbFwiPlNpZ24gdXAhPC9hPg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCTwvZGl2Pg0KPC9kaXY+Ijt9czoxMToiZm9udF9mYW1pbHkiO2E6MTp7czozOiJ2YWwiO3M6OToiT3BlbiBTYW5zIjt9czoxMDoidGV4dF9jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjNjY2Ijt9czoxNzoidGV4dF9jb2xvcl9oZWFkZXIiO2E6MTp7czozOiJ2YWwiO3M6NDoiI2ZmZiI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9fQ==','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsTableDescCol ptsElWithArea\" data-el=\"table_col_desc\" data-color=\"#f5f5f5\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free Trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SSL</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Sub-domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\"></div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-color=\"rgb(51, 153, 255)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SINGLE LICENSE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$29</span></p><p><span style=\"\">ONE TIME FEE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">10 user accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free 30-day trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">200 projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">No encryption</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100 MB Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">10 custom domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100 sub domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-color=\"rgb(147, 194, 48)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">DEVELOPER LICENSE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$49</span></p><p><span style=\"\">ONE TIME FEE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100 user accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free 30-day trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500 projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SSL encryption</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">1000 MB Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100 custom domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500 sub domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-color=\"rgb(255, 174, 53)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">PREMIUM LICENSE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$99</span></p><p><span style=\"\">ONE TIME FEE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500 user accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free 30-day trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SSL encryption</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">5000 MB Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500 custom domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">1000 sub domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-4 ptsElWithArea\" data-color=\"rgb(240, 61, 0)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">ENTERPRISE LICENSE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$199</span></p><p><span style=\"\">ONE TIME FEE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">1000 user accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free 30-day trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SSL encryption</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited custom domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited sub domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n \r\n padding: 0 10px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsRows {\r\n background-color: {{ table.params.bg_color.val }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n padding: 15px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n padding: 30px 15px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n border-top-width: 0;\r\n border-bottom-width: 0;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell {\r\n padding: 12px;\r\n border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n border-top: 1px solid #fff;\r\n}\r\n#{{table.view_id}} .ptsCol ptsRows .ptsCell:last-of-type {\r\n border-bottom: none;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter {\r\n padding: 20px;\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n background-image: linear-gradient(to bottom, {{adjBs(table.params.bg_color.val, 20)}}, {{adjBs(table.params.bg_color.val, -20)}});\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn {\r\n width: 100%;\r\n border-radius: 3px;\r\n cursor: pointer;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn .ptsEditArea {\r\n font-size: 1.4em;\r\n width: 100%;\r\n padding: 10px 0;\r\n text-decoration: none !important;\r\n border: none !important;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColHeader,\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColDesc,\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColFooter {\r\n visibility: hidden;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n/*Animations*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -webkit-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -moz-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -ms-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -o-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, -35) }};\r\n}#{{table.view_id}} span, #{{table.view_id}} p {\r\n word-break: break-word;\r\n}\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}\r\n/*start for col color 1*/\r\n#{{table.view_id}} .ptsCol-1 .ptsColHeader {\r\n background-color: rgb(51, 153, 255);\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-1 .ptsActBtn:hover {\r\n background-color: #1076dc;\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsActBtn {\r\n background-color: rgb(51, 153, 255);\r\n}\r\n/*end for col color 1*/\r\n/*start for col color 2*/\r\n#{{table.view_id}} .ptsCol-2 .ptsColHeader {\r\n background-color: rgb(147, 194, 48);\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-2 .ptsActBtn:hover {\r\n background-color: #709f0d;\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsActBtn {\r\n background-color: rgb(147, 194, 48);\r\n}\r\n/*end for col color 2*//*start for col color 3*/\r\n#{{table.view_id}} .ptsCol-3 .ptsColHeader {\r\n background-color: rgb(255, 174, 53);\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-3 .ptsActBtn:hover {\r\n background-color: #dc8b12;\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsActBtn {\r\n background-color: rgb(255, 174, 53);\r\n}\r\n/*end for col color 3*//*start for col color 4*/\r\n#{{table.view_id}} .ptsCol-4 .ptsColHeader {\r\n background-color: rgb(240, 61, 0);\r\n}\r\n#{{table.view_id}} .ptsCol-4 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-4 .ptsActBtn:hover {\r\n background-color: #cd1a00;\r\n}\r\n#{{table.view_id}} .ptsCol-4 .ptsActBtn {\r\n background-color: rgb(240, 61, 0);\r\n}\r\n/*end for col color 4*/','img' => 'rainbow.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-08-26 16:32:53','is_pro' => '0'),
149
- 'pnNjNRm5' => array('unique_id' => 'pnNjNRm5','label' => 'Flat Table','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo3OiIjNDljNmUxIjt9czoxNDoiY2VsbF9jb2xvcl9jc3MiO2E6MTp7czozOiJ2YWwiO3M6NTIwOiIje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNUYWJsZUVsZW1lbnRDb250ZW50IHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7e2VsLmNvbG9yfX07DQp9DQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNUYWJsZUVsZW1lbnRDb250ZW50IC5wdHNDb2xEZXNjLA0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzVGFibGVFbGVtZW50Q29udGVudCAucHRzQWN0QnRuLA0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzVGFibGVFbGVtZW50Q29udGVudCAucHRzUm93cyAucHRzQ2VsbDpob3ZlciAgew0KCWJhY2tncm91bmQtY29sb3I6IHt7YWRqQnMoZWwuY29sb3IsIDIwKX19Ow0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzVGFibGVFbGVtZW50Q29udGVudCAucHRzQWN0QnRuOmhvdmVyIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7e2FkakJzKGVsLmNvbG9yLCAtMjApfX07DQp9Ijt9czoxMjoiZW5iX2Rlc2NfY29sIjthOjE6e3M6MzoidmFsIjtzOjE6IjAiO31zOjk6ImNvbF93aWR0aCI7YToxOntzOjM6InZhbCI7czozOiIxODYiO31zOjg6ImNvbHNfbnVtIjthOjE6e3M6MzoidmFsIjtzOjE6IjMiO31zOjg6InJvd3NfbnVtIjthOjE6e3M6MzoidmFsIjtzOjE6IjciO31zOjEwOiJjYWxjX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjU6InRhYmxlIjt9czoxMToidGFibGVfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTAwIjt9czoxOToidGFibGVfd2lkdGhfbWVhc3VyZSI7YToxOntzOjM6InZhbCI7czoxOiIlIjt9czoxOToiZW5iX2hvdmVyX2FuaW1hdGlvbiI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czoxMzoidHh0X2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNjQ6IjxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+PC9kaXY+Ijt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJpY29uX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoyMjg6IjxkaXYgZGF0YS1pY29uPVwiZmEtY29nXCIgZGF0YS1jb2xvcj1cInJnYigwLCAyMjAsIDIyMylcIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCI+PGkgY2xhc3M9XCJmYSBmYS0yeCBwdHNJbnB1dFNoZWxsIGZhLWNvZ1wiIHN0eWxlPVwiY29sb3I6IHJnYigwLCAyMjAsIDIyMyk7XCI+PC9pPjwvZGl2PiI7fXM6MTM6Im5ld19jZWxsX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6NTM4OiI8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJPGRpdiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1jb2xvcj1cInJnYigyNTUsIDI1NSwgMjU1KVwiIGRhdGEtaWNvbj1cImZhLWNoZWNrLWNpcmNsZVwiPg0KCQkJPGkgc3R5bGU9XCJjb2xvcjogcmdiKDI1NSwgMjU1LCAyNTUpXCIgY2xhc3M9XCJmYSBmYS0yeCBmYS1jaGVjay1jaXJjbGUgcHRzSW5wdXRTaGVsbFwiPjwvaT4NCgkJPC9kaXY+DQoJPC9kaXY+DQoJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+DQoJCTwvZGl2Pg0KCTwvZGl2Pg0KPC9kaXY+Ijt9czoxNToibmV3X2NvbHVtbl9odG1sIjthOjE6e3M6MzoidmFsIjtzOjU1MDM6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNDb2wgcHRzRWxXaXRoQXJlYVwiIGRhdGEtY29sb3I9XCJyZ2IoMjMxLCA3NiwgNjApXCIgZGF0YS1lbD1cInRhYmxlX2NvbFwiIGRhdGEtZW5iLWNvbG9yPVwiMVwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUYWJsZUVsZW1lbnRDb250ZW50IHB0c0VsQXJlYVwiPg0KCQk8ZGl2IGNsYXNzPVwicHRzQ29sSGVhZGVyIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMjRwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMjRwdDtcIj5TVFVERU5UPC9zcGFuPjwvcD4NCgkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDE0cHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDE0cHQ7XCI+Rm9yIHRoZSBCZWdpbm5lcjwvc3Bhbj48L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj4xIEdCIERpc2sgU3BhY2U8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj4yIERhdGFiYXNlczwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1jb2xvcj1cInJnYigyNTUsIDI1NSwgMjU1KVwiIGRhdGEtaWNvbj1cImZhLXRpbWVzLWNpcmNsZVwiPg0KCQkJCQkJPGkgc3R5bGU9XCJjb2xvcjogcmdiKDI1NSwgMjU1LCAyNTUpXCIgY2xhc3M9XCJmYSBmYS0yeCBmYS10aW1lcy1jaXJjbGUgcHRzSW5wdXRTaGVsbFwiPjwvaT4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiPk5vIERvbWFpbnM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj41IFVzZXJzPC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGRhdGEtdHlwZT1cImljb25cIiBkYXRhLWNvbG9yPVwicmdiKDI1NSwgMjU1LCAyNTUpXCIgZGF0YS1pY29uPVwiZmEtY2hlY2stY2lyY2xlXCI+DQoJCQkJCQk8aSBzdHlsZT1cImNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSlcIiBjbGFzcz1cImZhIGZhLTJ4IGZhLWNoZWNrLWNpcmNsZSBwdHNJbnB1dFNoZWxsXCI+PC9pPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDE4cHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDE4cHQ7XCI+MTAgRW1haWwgQWNjb3VudHM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj4xMCBHQiBCYW5kd2lkdGg8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj4yNC83IEN1c3RvbWVyIFN1cHBvcnQ8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgkJPGRpdiBjbGFzcz1cInB0c0NvbERlc2MgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCTxwPjxzcGFuIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAzNnB0O1wiIHN0eWxlPVwiZm9udC1zaXplOiAzNnB0O1wiPiQ8c3BhbiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogNDhwdDtcIiBzdHlsZT1cImZvbnQtc2l6ZTogNDhwdDtcIj4zNTk8L3NwYW4+Ljk5PC9zcGFuPjwvcD48cD48c3BhbiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTRwdDtcIiBzdHlsZT1cImZvbnQtc2l6ZTogMTRwdDtcIj5Nb250aGx5IFBsYW48L3NwYW4+PGJyPjwvcD4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgkJPGRpdiBjbGFzcz1cInB0c0NvbEZvb3RlciBwdHNUb2dnbGVcIj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQWN0QnRuIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwiYnRuXCIgZGF0YS1iZ2NvbG9yLXRvPVwidHh0XCIgZGF0YS1iZ2NvbG9yPVwiI2ZmZlwiIGRhdGEtYmdjb2xvci1lbGVtZW50cz1cIi5wdHNFZGl0QXJlYVwiPg0KCQkJCQk8YSB0YXJnZXQ9XCJfYmxhbmtcIiBocmVmPVwiaHR0cHM6Ly9zdXBzeXN0aWMuY29tL1wiIGNsYXNzPVwicHRzRWRpdEFyZWEgcHRzSW5wdXRTaGVsbFwiIHN0eWxlPVwiY29sb3I6ICNmZmY7XCI+U0lHTiBVUCBOT1c8L2E+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjExOiJmb250X2ZhbWlseSI7YToxOntzOjM6InZhbCI7czoxNjoiUm9ib3RvIENvbmRlbnNlZCI7fXM6MTA6InRleHRfY29sb3IiO2E6MTp7czozOiJ2YWwiO3M6NDoiI2ZmZiI7fXM6MTc6InRleHRfY29sb3JfaGVhZGVyIjthOjE6e3M6MzoidmFsIjtzOjQ6IiNmZmYiO31zOjE1OiJ0ZXh0X2NvbG9yX2Rlc2MiO2E6MTp7czozOiJ2YWwiO3M6NDoiI2ZmZiI7fX0=','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsTableDescCol ptsElWithArea\" data-color=\"#49c6e1\" data-el=\"table_col_desc\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt;\" data-mce-style=\"font-size: 24pt;\">CHOOSE</span></p>\r\n <p><span style=\"font-size: 14pt;\" data-mce-style=\"font-size: 14pt;\">Your Plan</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Disk Space</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Databases</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Email Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Bandwidth</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">Price<br></span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\"></div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-color=\"rgb(231, 76, 60)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt;\" data-mce-style=\"font-size: 24pt;\">STUDENT</span></p>\r\n <p><span style=\"font-size: 14pt;\" data-mce-style=\"font-size: 14pt;\">For the Beginner</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">1 GB Disk Space</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">2 Databases</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-times-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-times-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">No Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">5 Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 Email Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 GB Bandwidth</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">24/7 Customer Support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$<span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">359</span>.99</span></p><p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\" data-mce-style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span data-mce-style=\"font-size: 14pt;\" style=\"font-size: 14pt;\">Monthly Plan</span><br></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">SIGN UP NOW</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-color=\"#9b59b6\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt;\" data-mce-style=\"font-size: 24pt;\">UNLIMITED</span></p>\r\n <p><span style=\"font-size: 14pt;\" data-mce-style=\"font-size: 14pt;\">For the Unlimited Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">1 GB Disk Space</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">2 Databases</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-times-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-times-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">No Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">5 Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 Email Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 GB Bandwidth</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">24/7 Customer Support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$<span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">659</span>.99</span></p><p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\" data-mce-style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span data-mce-style=\"font-size: 14pt;\" style=\"font-size: 14pt;\">Monthly Plan</span><br></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">SIGN UP NOW</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-color=\"#27ae60\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt;\" data-mce-style=\"font-size: 24pt;\">PREMIUM</span></p>\r\n <p><span style=\"font-size: 14pt;\" data-mce-style=\"font-size: 14pt;\">All Features are Available</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">1 GB Disk Space</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">2 Databases</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-times-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-times-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">No Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">5 Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 Email Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 GB Bandwidth</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">24/7 Customer Support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$<span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">859</span>.99</span></p><p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\" data-mce-style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span data-mce-style=\"font-size: 14pt;\" style=\"font-size: 14pt;\">Monthly Plan</span><br></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">SIGN UP NOW</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n text-transform: uppercase;\r\n}\r\n#{{table.view_id}} * {\r\n line-height: 1.2em;\r\n}\r\n#{{table.view_id}} p,\r\n#{{table.view_id}} span \r\n{\r\n {% if table.params.font_family.val %}\r\n font-family: {{ table.params.font_family.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n padding: 0 5px;\r\n \r\n}\r\n#{{table.view_id}} span, #{{table.view_id}} p {\r\n word-break: break-word;\r\n}\r\n/*Bg Colors*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent {\r\n background-color: {{table.params.bg_color.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsColDesc,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsActBtn,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsRows .ptsCell:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, 20) }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, -20) }};\r\n}\r\n/*Desc Col*/\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell .ptsIcon {\r\n margin-right: 10px;\r\n}\r\n#{{table.view_id}} .ptsColHeader,\r\n#{{table.view_id}} .ptsColDesc,\r\n#{{table.view_id}} .ptsRows .ptsCell {\r\n padding: 10px;\r\n}\r\n#{{table.view_id}} .ptsColHeader {\r\n padding-bottom: 40px;\r\n}\r\n#{{table.view_id}} .ptsColFooter {\r\n padding: 20px 0 40px;\r\n text-align: center;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn {\r\n cursor: pointer;\r\n}\r\n#{{table.view_id}} .ptsRows .ptsTog {\r\n display: inline-block;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn .ptsEditArea {\r\n font-size: 22px;\r\n padding: 10px 15px;\r\n text-decoration: none !important;\r\n border: none !important;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n/*Animations*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsRows .ptsCell,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n -webkit-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n -moz-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n -ms-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n -o-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader,\r\n#{{table.view_id}} .ptsCol .ptsColHeader *\r\n{\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc,\r\n#{{table.view_id}} .ptsCol .ptsColDesc *\r\n{\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows,\r\n#{{table.view_id}} .ptsCol .ptsRows *\r\n{\r\n color: {{table.params.text_color.val}};\r\n}\r\n/*start for col color 1*/\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent {\r\n background-color: rgb(231, 76, 60);\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent .ptsActBtn,\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent .ptsRows .ptsCell:hover {\r\n background-color: #fb6050;\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent .ptsActBtn:hover {\r\n background-color: #d33828;\r\n}\r\n/*end for col color 1*/\r\n/*start for col color 2*/\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent {\r\n background-color: rgb(155, 89, 182);\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent .ptsActBtn,\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent .ptsRows .ptsCell:hover {\r\n background-color: #af6dca;\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent .ptsActBtn:hover {\r\n background-color: #8745a2;\r\n}\r\n/*end for col color 2*/\r\n/*start for col color 3*/\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent {\r\n background-color: rgb(39, 174, 96);\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent .ptsActBtn,\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent .ptsRows .ptsCell:hover {\r\n background-color: #3bc274;\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent .ptsActBtn:hover {\r\n background-color: #139a4c;\r\n}\r\n/*end for col color 3*/','img' => 'flat-table.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-08-28 15:55:18','is_pro' => '0'),
150
- 'Pwn8M1EB' => array('unique_id' => 'Pwn8M1EB','label' => 'Gradient Standard','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo3OiIjNDI0MjQyIjt9czoxMzoidHh0X2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNjQ6IjxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+PC9kaXY+Ijt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJpY29uX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoyMjg6IjxkaXYgZGF0YS1pY29uPVwiZmEtY29nXCIgZGF0YS1jb2xvcj1cInJnYigwLCAyMjAsIDIyMylcIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCI+PGkgY2xhc3M9XCJmYSBmYS0yeCBwdHNJbnB1dFNoZWxsIGZhLWNvZ1wiIHN0eWxlPVwiY29sb3I6IHJnYigwLCAyMjAsIDIyMyk7XCI+PC9pPjwvZGl2PiI7fXM6MTU6Im5ld19jb2x1bW5faHRtbCI7YToxOntzOjM6InZhbCI7czoyODQ3OiI8ZGl2IGNsYXNzPVwicHRzRWwgcHRzQ29sIHB0c0VsV2l0aEFyZWFcIiBkYXRhLWVsPVwidGFibGVfY29sXCIgZGF0YS1jb2xvcj1cIiM0MjQyNDJcIj4NCgk8ZGl2IGNsYXNzPVwicHRzVGFibGVFbGVtZW50Q29udGVudCBwdHNFbEFyZWFcIj4NCgkJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ29sSGVhZGVyIHB0c1RvZ2dsZVwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+PHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDI0cHQ7XCI+c3RhcnRlcjwvc3Bhbj48L3A+PC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNDb2xEZXNjIHB0c1RvZ2dsZVwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMzZwdDtcIj4kPC9zcGFuPjxzcGFuIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiA0OHB0OyBjb2xvcjogIzNiZDZmZjtcIiBzdHlsZT1cImZvbnQtc2l6ZTogNDhwdDsgY29sb3I6IHJnYig1OSwgMjE0LCAyNTUpO1wiPjEwPC9zcGFuPjwvcD48cD48c3BhbiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5wZXIgbW9udGg8YnIgZGF0YS1tY2UtYm9ndXM9XCIxXCI+PC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPjEwR0I8L3NwYW4+PC9wPg0KCQkJCQkJPC9kaXY+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPjEwMEdCPC9zcGFuPjwvcD4NCgkJCQkJCTwvZGl2Pg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xPC9zcGFuPjwvcD4NCgkJCQkJCTwvZGl2Pg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xPC9zcGFuPjwvcD4NCgkJCQkJCTwvZGl2Pg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWwgcHRzSWNvbiBwdHNFbElucHV0XCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGRhdGEtdHlwZT1cImljb25cIiBkYXRhLWNvbG9yPVwicmdiKDIxNCwgNzEsIDcxKVwiIGRhdGEtaWNvbj1cImZhLXRpbWVzXCI+DQoJCQkJCQkJPGkgc3R5bGU9XCJjb2xvcjogcmdiKDIxNCwgNzEsIDcxKVwiIGNsYXNzPVwiZmEgZmEtdGltZXMgZmEtMnggcHRzSW5wdXRTaGVsbFwiPjwvaT4NCgkJCQkJCTwvZGl2Pg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NvbEZvb3RlciBwdHNUb2dnbGVcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNBY3RCdG4gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJidG5cIiBkYXRhLWJnY29sb3ItdG89XCJib3JkZXJcIiBkYXRhLWJnY29sb3I9XCJ7eyBhZGpCcyh0YWJsZS5wYXJhbXMuYmdfY29sb3IudmFsLCA4NSkgfX1cIiBkYXRhLWN1c3RvbWhvdmVyLWNsYj1cIl9ob3ZlckNoYW5nZUJnQ29sb3JcIiBzdHlsZT1cImJvcmRlci1jb2xvcjoge3sgYWRqQnModGFibGUucGFyYW1zLmJnX2NvbG9yLnZhbCwgODUpIH19O1wiPg0KCQkJCQkJPGEgdGFyZ2V0PVwiX2JsYW5rXCIgaHJlZj1cImh0dHBzOi8vc3Vwc3lzdGljLmNvbS9cIiBjbGFzcz1cInB0c0VkaXRBcmVhIHB0c0lucHV0U2hlbGxcIj5zaWduIHVwITwvYT4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjEzOiJuZXdfY2VsbF9odG1sIjthOjE6e3M6MzoidmFsIjtzOjI0MjoiPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+WW91ciBUZXh0PC9zcGFuPjwvcD4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJjZWxsX2NvbG9yX2NzcyI7YToxOntzOjM6InZhbCI7czo1NjY3OiIje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDb2xIZWFkZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7IGFkakJzKGVsLmNvbG9yLCAtMTApIH19OyAvKiBiYWNrZ3JvdW5kIGNvbG9yIGZvciBub24tY3NzMyBicm93c2VycyAqLw0KCS8qIGdyYWRpZW50ICovDQoJYmFja2dyb3VuZC1pbWFnZTogbGluZWFyLWdyYWRpZW50KHRvcCwge3sgZWwuY29sb3IgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAtMjMpIH19KTsgLyogVzNDICovDQoJZmlsdGVyOiBwcm9naWQ6RFhJbWFnZVRyYW5zZm9ybS5NaWNyb3NvZnQuZ3JhZGllbnQoc3RhcnRDb2xvcnN0cj1cJ3t7IGVsLmNvbG9yIH19XCcsIGVuZENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIC0yMykgfX1cJyk7IC8qIElFNS41IC0gNyAqLw0KCS1tcy1maWx0ZXI6IHByb2dpZDpEWEltYWdlVHJhbnNmb3JtLk1pY3Jvc29mdC5ncmFkaWVudChzdGFydENvbG9yc3RyPVwne3sgZWwuY29sb3IgfX1cJywgZW5kQ29sb3JzdHI9XCd7eyBhZGpCcyhlbC5jb2xvciwgLTIzKSB9fVwnKTsgLyogSUU4ICovDQoJYmFja2dyb3VuZDogLW1zLWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGVsLmNvbG9yIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgLTIzKSB9fSk7IC8qIElFOSAqLw0KCWJhY2tncm91bmQ6IC1tb3otbGluZWFyLWdyYWRpZW50KHRvcCwge3sgZWwuY29sb3IgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAtMjMpIH19KTsgLyogRmlyZWZveCAqLyANCgliYWNrZ3JvdW5kOiAtby1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBlbC5jb2xvciB9fSwge3sgYWRqQnMoZWwuY29sb3IsIC0yMykgfX0pOyAvKiBPcGVyYSAxMSAgKi8NCgliYWNrZ3JvdW5kOiAtd2Via2l0LWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGVsLmNvbG9yIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgLTIzKSB9fSk7IC8qIENocm9tZSAxMSAgKi8NCgliYWNrZ3JvdW5kOiAtd2Via2l0LWdyYWRpZW50KGxpbmVhciwgbGVmdCB0b3AsIGxlZnQgYm90dG9tLCBjb2xvci1zdG9wKDAsIHt7IGVsLmNvbG9yIH19KSwgY29sb3Itc3RvcCgxLCB7eyBhZGpCcyhlbC5jb2xvciwgLTIzKSB9fSkpOyAvKiBDaHJvbWUgMTAsIFNhZmFyaSAqLw0KICAJY29sb3I6ICM4MDgwODA7DQogIA0KICAJYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHt7IGFkakJzKGVsLmNvbG9yLCAtNDApIH19Ow0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzQ29sRGVzYyB7DQoJYmFja2dyb3VuZC1jb2xvcjoge3sgYWRqQnMoZWwuY29sb3IsIC0xMCkgfX07IC8qIGJhY2tncm91bmQgY29sb3IgZm9yIG5vbi1jc3MzIGJyb3dzZXJzICovDQoJLyogZ3JhZGllbnQgKi8NCiAgYmFja2dyb3VuZC1pbWFnZTogbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIC0xNSkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAtNDApIH19KTsgLyogVzNDICovDQoJZmlsdGVyOiBwcm9naWQ6RFhJbWFnZVRyYW5zZm9ybS5NaWNyb3NvZnQuZ3JhZGllbnQoc3RhcnRDb2xvcnN0cj1cJ3t7IGFkakJzKGVsLmNvbG9yLCAtMTUpIH19XCcsIGVuZENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIC00MCkgfX1cJyk7IC8qIElFNS41IC0gNyAqLw0KCS1tcy1maWx0ZXI6IHByb2dpZDpEWEltYWdlVHJhbnNmb3JtLk1pY3Jvc29mdC5ncmFkaWVudChzdGFydENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIC0xNSkgfX1cJywgZW5kQ29sb3JzdHI9XCd7eyBhZGpCcyhlbC5jb2xvciwgLTQwKSB9fVwnKTsgLyogSUU4ICovDQoJYmFja2dyb3VuZDogLW1zLWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAtMTUpIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgLTQwKSB9fSk7IC8qIElFOSAqLw0KICBiYWNrZ3JvdW5kOiAtbW96LWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAtMTUpIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgLTQwKSB9fSk7IC8qIEZpcmVmb3ggKi8gDQoJYmFja2dyb3VuZDogLW8tbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIC0xNSkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAtNDApIH19KTsgLyogT3BlcmEgMTEgICovDQoJYmFja2dyb3VuZDogLXdlYmtpdC1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBhZGpCcyhlbC5jb2xvciwgLTE1KSB9fSwge3sgYWRqQnMoZWwuY29sb3IsIC00MCkgfX0pOyAvKiBDaHJvbWUgMTEgICovDQoJYmFja2dyb3VuZDogLXdlYmtpdC1ncmFkaWVudChsaW5lYXIsIGxlZnQgdG9wLCBsZWZ0IGJvdHRvbSwgY29sb3Itc3RvcCgwLCB7eyBhZGpCcyhlbC5jb2xvciwgLTE1KSB9fSksIGNvbG9yLXN0b3AoMSwge3sgYWRqQnMoZWwuY29sb3IsIC00MCkgfX0pKTsgLyogQ2hyb21lIDEwLCBTYWZhcmkgKi8NCiAgCWNvbG9yOiAjODA4MDgwOw0KICANCiAgCWJvcmRlci10b3A6IDFweCBzb2xpZCB7eyBhZGpCcyhlbC5jb2xvciwgNSkgfX07DQp9DQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDZWxsOm50aC1jaGlsZChvZGQpIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgMTY1KSB9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gLnB0c0NlbGw6bnRoLWNoaWxkKGV2ZW4pIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgMTk1KSB9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzQ29sOm50aC1jaGlsZChvZGQpIC5wdHNDZWxsOm50aC1jaGlsZChvZGQpIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgMTQ1KSB9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzQ29sOm50aC1jaGlsZChvZGQpIC5wdHNDZWxsOm50aC1jaGlsZChldmVuKSB7DQoJYmFja2dyb3VuZC1jb2xvcjoge3sgYWRqQnMoZWwuY29sb3IsIDE2NSkgfX07DQp9DQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDb2xGb290ZXIgew0KIAliYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgMTMwKSB9fTsgLyogYmFja2dyb3VuZCBjb2xvciBmb3Igbm9uLWNzczMgYnJvd3NlcnMgKi8NCgkvKiBncmFkaWVudCAqLw0KCWJhY2tncm91bmQtaW1hZ2U6IGxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAxNjApIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgMTAwKSB9fSk7IC8qIFczQyAqLw0KCWZpbHRlcjogcHJvZ2lkOkRYSW1hZ2VUcmFuc2Zvcm0uTWljcm9zb2Z0LmdyYWRpZW50KHN0YXJ0Q29sb3JzdHI9XCd7eyBhZGpCcyhlbC5jb2xvciwgMTYwKSB9fVwnLCBlbmRDb2xvcnN0cj1cJ3t7IGFkakJzKGVsLmNvbG9yLCAxMDApIH19XCcpOyAvKiBJRTUuNSAtIDcgKi8NCgktbXMtZmlsdGVyOiBwcm9naWQ6RFhJbWFnZVRyYW5zZm9ybS5NaWNyb3NvZnQuZ3JhZGllbnQoc3RhcnRDb2xvcnN0cj1cJ3t7IGFkakJzKGVsLmNvbG9yLCAxNjApIH19XCcsIGVuZENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIDEwMCkgfX1cJyk7IC8qIElFOCAqLw0KCWJhY2tncm91bmQ6IC1tcy1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBhZGpCcyhlbC5jb2xvciwgMTYwKSB9fSwge3sgYWRqQnMoZWwuY29sb3IsIDEwMCkgfX0pOyAvKiBJRTkgKi8NCgliYWNrZ3JvdW5kOiAtbW96LWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAxNjApIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgMTAwKSB9fSk7IC8qIEZpcmVmb3ggKi8gDQoJYmFja2dyb3VuZDogLW8tbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIDE2MCkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAxMDApIH19KTsgLyogT3BlcmEgMTEgICovDQoJYmFja2dyb3VuZDogLXdlYmtpdC1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBhZGpCcyhlbC5jb2xvciwgMTYwKSB9fSwge3sgYWRqQnMoZWwuY29sb3IsIDEwMCkgfX0pOyAvKiBDaHJvbWUgMTEgICovDQoJYmFja2dyb3VuZDogLXdlYmtpdC1ncmFkaWVudChsaW5lYXIsIGxlZnQgdG9wLCBsZWZ0IGJvdHRvbSwgY29sb3Itc3RvcCgwLCB7eyBhZGpCcyhlbC5jb2xvciwgMTYwKSB9fSksIGNvbG9yLXN0b3AoMSwge3sgYWRqQnMoZWwuY29sb3IsIDEwMCkgfX0pKTsgLyogQ2hyb21lIDEwLCBTYWZhcmkgKi8NCiAgDQoJYm9yZGVyLXRvcDogMXB4IHNvbGlkIHt7IGFkakJzKGVsLmNvbG9yLCAxNDUpIH19Ow0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAgLnB0c0FjdEJ0bjpob3ZlciB7DQoJIGJhY2tncm91bmQtY29sb3I6IHt7IGFkakJzKGVsLmNvbG9yLCAxMTApIH19OyAvKiBiYWNrZ3JvdW5kIGNvbG9yIGZvciBub24tY3NzMyBicm93c2VycyAqLw0KCS8qIGdyYWRpZW50ICovDQoJYmFja2dyb3VuZC1pbWFnZTogbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIDE0MCkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCA4MCkgfX0pOyAvKiBXM0MgKi8NCglmaWx0ZXI6IHByb2dpZDpEWEltYWdlVHJhbnNmb3JtLk1pY3Jvc29mdC5ncmFkaWVudChzdGFydENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIDE0MCkgfX1cJywgZW5kQ29sb3JzdHI9XCd7eyBhZGpCcyhlbC5jb2xvciwgODApIH19XCcpOyAvKiBJRTUuNSAtIDcgKi8NCgktbXMtZmlsdGVyOiBwcm9naWQ6RFhJbWFnZVRyYW5zZm9ybS5NaWNyb3NvZnQuZ3JhZGllbnQoc3RhcnRDb2xvcnN0cj1cJ3t7IGFkakJzKGVsLmNvbG9yLCAxNDApIH19XCcsIGVuZENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIDgwKSB9fVwnKTsgLyogSUU4ICovDQoJYmFja2dyb3VuZDogLW1zLWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAxNDApIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgODApIH19KTsgLyogSUU5ICovDQoJYmFja2dyb3VuZDogLW1vei1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBhZGpCcyhlbC5jb2xvciwgMTQwKSB9fSwge3sgYWRqQnMoZWwuY29sb3IsIDgwKSB9fSk7IC8qIEZpcmVmb3ggKi8gDQoJYmFja2dyb3VuZDogLW8tbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIDE0MCkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCA4MCkgfX0pOyAvKiBPcGVyYSAxMSAgKi8NCgliYWNrZ3JvdW5kOiAtd2Via2l0LWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAxNDApIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgODApIH19KTsgLyogQ2hyb21lIDExICAqLw0KCWJhY2tncm91bmQ6IC13ZWJraXQtZ3JhZGllbnQobGluZWFyLCBsZWZ0IHRvcCwgbGVmdCBib3R0b20sIGNvbG9yLXN0b3AoMCwge3sgYWRqQnMoZWwuY29sb3IsIDE0MCkgfX0pLCBjb2xvci1zdG9wKDEsIHt7IGFkakJzKGVsLmNvbG9yLCA4MCkgfX0pKTsgLyogQ2hyb21lIDEwLCBTYWZhcmkgKi8NCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gLnB0c0FjdEJ0biB7DQoJZGlzcGxheTogaW5saW5lLWJsb2NrOw0KICAJcGFkZGluZzogNHB4IDIwcHg7DQogIAlib3JkZXI6IDFweCBzb2xpZCB7eyBhZGpCcyhlbC5jb2xvciwgODUpIH19Ow0KICAJd2lkdGg6IDgwJTsNCiAgCWJvcmRlci1yYWRpdXM6IDNweDsNCn0iO31zOjEyOiJlbmJfZGVzY19jb2wiO2E6MTp7czozOiJ2YWwiO3M6MToiMSI7fXM6OToiY29sX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjM6IjE4NiI7fXM6ODoiY29sc19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiNCI7fXM6ODoicm93c19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiNSI7fXM6MTA6ImNhbGNfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6NToidGFibGUiO31zOjExOiJ0YWJsZV93aWR0aCI7YToxOntzOjM6InZhbCI7czozOiIxMDAiO31zOjE5OiJ0YWJsZV93aWR0aF9tZWFzdXJlIjthOjE6e3M6MzoidmFsIjtzOjE6IiUiO31zOjE5OiJlbmJfaG92ZXJfYW5pbWF0aW9uIjthOjE6e3M6MzoidmFsIjtzOjE6IjEiO31zOjExOiJmb250X2ZhbWlseSI7YToxOntzOjM6InZhbCI7czo3OiJSYWxld2F5Ijt9czoxMDoidGV4dF9jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjMDAwIjt9czoxNzoidGV4dF9jb2xvcl9oZWFkZXIiO2E6MTp7czozOiJ2YWwiO3M6NzoiIzgwODA4MCI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo3OiIjODA4MDgwIjt9fQ==','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsTableDescCol ptsElWithArea\" data-el=\"table_col_desc\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\" style=\"height: 69px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p></p></div>\r\n </div>\r\n <div class=\"ptsColDesc\" style=\"height: 141px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">choose <span style=\"color: rgb(59, 214, 255);\" data-mce-style=\"color: #853a3a;\">your</span> plan</span></p></div>\r\n </div>\r\n <div class=\"ptsRows\" style=\"height: 224px;\">\r\n <div class=\"ptsCell\" style=\"height: 39px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Amount of space</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\" style=\"height: 39px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Bandwidth per month</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\" style=\"height: 39px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">E-mail accounts</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\" style=\"height: 39px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">MySql databases</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\" style=\"height: 49px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">24h support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\" style=\"height: 51px;\"></div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-el=\"table_col\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">starter</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"\" style=\"\"><span style=\"font-size: 36pt;\">$</span><span data-mce-style=\"font-size: 48pt; color: #3bd6ff;\" style=\"font-size: 48pt; color: rgb(59, 214, 255);\">10</span></span></p><p><span data-mce-style=\"font-size: 12pt; \" style=\"font-size: 12pt; \">per month<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">10GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">1</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">1</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl ptsIcon ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(214, 71, 71)\" data-icon=\"fa-times\">\r\n <i style=\"color: rgb(214, 71, 71)\" class=\"fa fa-times fa-2x ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-elements=\".ptsEditArea\" data-bgcolor=\"#444\" data-bgcolor-to=\"txt\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #444;\">sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-el=\"table_col\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">econom</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"\" style=\"\"><span style=\"font-size: 36pt;\">$</span><span data-mce-style=\"font-size: 48pt; color: #3bd6ff;\" style=\"font-size: 48pt; color: rgb(59, 214, 255);\">30</span></span></p><p><span data-mce-style=\"font-size: 12pt; \" style=\"font-size: 12pt; \">per month<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">30GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">300GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">3</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">3</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl ptsIcon ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(86, 166, 0)\" data-icon=\"fa-check\">\r\n <i style=\"color: rgb(86, 166, 0)\" class=\"fa fa-check fa-2x ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-elements=\".ptsEditArea\" data-bgcolor=\"#444\" data-bgcolor-to=\"txt\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #444;\">sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-el=\"table_col\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">standard</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"\" style=\"\"><span style=\"font-size: 36pt;\">$</span><span data-mce-style=\"font-size: 48pt; color: #3bd6ff;\" style=\"font-size: 48pt; color: rgb(59, 214, 255);\">59</span></span></p><p><span data-mce-style=\"font-size: 12pt; \" style=\"font-size: 12pt; \">per month<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">100GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">500GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">5</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">5</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl ptsIcon ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(86, 166, 0)\" data-icon=\"fa-check\">\r\n <i style=\"color: rgb(86, 166, 0)\" class=\"fa fa-check fa-2x ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-elements=\".ptsEditArea\" data-bgcolor=\"#444\" data-bgcolor-to=\"txt\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #444;\">sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-4 ptsElWithArea\" data-el=\"table_col\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">pro</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"\" style=\"\"><span style=\"font-size: 36pt;\">$</span><span data-mce-style=\"font-size: 48pt; color: #3bd6ff;\" style=\"font-size: 48pt; color: rgb(59, 214, 255);\">99</span></span></p><p><span data-mce-style=\"font-size: 12pt; \" style=\"font-size: 12pt; \">per month<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">1000GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl ptsIcon ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(86, 166, 0)\" data-icon=\"fa-check\">\r\n <i style=\"color: rgb(86, 166, 0)\" class=\"fa fa-check fa-2x ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-elements=\".ptsEditArea\" data-bgcolor=\"#444\" data-bgcolor-to=\"txt\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #444;\">sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n transition: box-shadow 0.25 ease 0;\r\n}\r\n#{{table.view_id}} .ptsColHeader,\r\n#{{table.view_id}} .ptsColDesc {\r\n padding: 10px;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell,\r\n#{{table.view_id}} .ptsColFooter {\r\n padding: 10px 0;\r\n}\r\n#{{table.view_id}} .ptsColHeader {\r\n background-color: {{ adjBs(table.params.bg_color.val, -10) }}; /* background color for non-css3 browsers */\r\n /* gradient */\r\n background-image: linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ table.params.bg_color.val }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -23) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ table.params.bg_color.val }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -23) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ table.params.bg_color.val }}), color-stop(1, {{ adjBs(table.params.bg_color.val, -23) }})); /* Chrome 10, Safari */\r\n \r\n border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -40) }};\r\n}\r\n#{{table.view_id}} .ptsColDesc {\r\n background-color: {{ adjBs(table.params.bg_color.val, -10) }}; /* background color for non-css3 browsers */\r\n /* gradient */\r\n background-image: linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, -15) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -40) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, -15) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -40) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ adjBs(table.params.bg_color.val, -15) }}), color-stop(1, {{ adjBs(table.params.bg_color.val, -40) }})); /* Chrome 10, Safari */\r\n \r\n border-top: 1px solid {{ adjBs(table.params.bg_color.val, 5) }};\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell:nth-child(odd) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 165) }};\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell:nth-child(even) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 195) }};\r\n}\r\n#{{table.view_id}} .ptsCol:nth-child(odd) .ptsRows .ptsCell:nth-child(odd) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 145) }};\r\n}\r\n#{{table.view_id}} .ptsCol:nth-child(odd) .ptsRows .ptsCell:nth-child(even) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 165) }};\r\n}\r\n#{{table.view_id}} .ptsColFooter {\r\n background-color: {{ adjBs(table.params.bg_color.val, 130) }}; /* background color for non-css3 browsers */\r\n /* gradient */\r\n background-image: linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, 160) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, 100) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, 160) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, 100) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ adjBs(table.params.bg_color.val, 160) }}), color-stop(1, {{ adjBs(table.params.bg_color.val, 100) }})); /* Chrome 10, Safari */\r\n \r\n border-top: 1px solid {{ adjBs(table.params.bg_color.val, 145) }};\r\n}\r\n#{{table.view_id}} .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, 110) }}; /* background color for non-css3 browsers */\r\n /* gradient */\r\n background-image: linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, 140) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, 80) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, 140) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, 80) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ adjBs(table.params.bg_color.val, 140) }}), color-stop(1, {{ adjBs(table.params.bg_color.val, 80) }})); /* Chrome 10, Safari */\r\n}\r\n#{{table.view_id}} .ptsActBtn {\r\n display: inline-block;\r\n padding: 4px 20px;\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, 85) }};\r\n width: 80%;\r\n border-radius: 3px;\r\n}\r\n\r\n#{{table.view_id}} .ptsActBtn .ptsEditArea {\r\n color: #444;\r\n font-size: 10pt; \r\n font-weight: bold;\r\n text-decoration: none !important;\r\n border: none !important;\r\n width: 100%;\r\n}\r\n#{{table.view_id}} .ptsCol:first-of-type .ptsColHeader {\r\n border-top-left-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol:last-of-type .ptsColHeader {\r\n border-top-right-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol:first-of-type .ptsColFooter {\r\n border-bottom-left-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol:last-of-type .ptsColFooter {\r\n border-bottom-right-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsColFooter a {\r\n color: #444444;\r\n text-decoration: none !important;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -webkit-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -moz-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -ms-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -o-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColHeader {\r\n border-top-left-radius: 5px;\r\n border-top-right-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColFooter {\r\n border-bottom-left-radius: 5px;\r\n border-bottom-right-radius: 5px;\r\n}\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}\r\n','img' => 'gradient-standard.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-08-15 19:02:30','is_pro' => '0'),
151
  '630WlOre' => array('unique_id' => '630WlOre','label' => 'Okul','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjMzMzIjt9czoxNDoiY2VsbF9jb2xvcl9jc3MiO2E6MTp7czozOiJ2YWwiO3M6OTE0OiIje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDb2xIZWFkZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7IGFkakJzKGVsLmNvbG9yLCAtNTApIH19OyAvKiBiYWNrZ3JvdW5kIGNvbG9yIGZvciBub24tY3NzMyBicm93c2VycyAqLw0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzQ29sRGVzYyB7DQoJYmFja2dyb3VuZC1jb2xvcjoge3sgZWwuY29sb3IgfX07IC8qIGJhY2tncm91bmQgY29sb3IgZm9yIG5vbi1jc3MzIGJyb3dzZXJzICovDQp9DQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19ICAucHRzQWN0QnRuIHsNCgkgYmFja2dyb3VuZC1jb2xvcjoge3sgYWRqQnMoZWwuY29sb3IsIDIwKSB9fTsgLyogYmFja2dyb3VuZCBjb2xvciBmb3Igbm9uLWNzczMgYnJvd3NlcnMgKi8NCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gIC5wdHNBY3RCdG46aG92ZXIgew0KCSBiYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgNTApIH19OyAvKiBiYWNrZ3JvdW5kIGNvbG9yIGZvciBub24tY3NzMyBicm93c2VycyAqLw0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzQWN0QnRuIHsNCiAgCWJvcmRlcjogMXB4IHNvbGlkIHt7IGFkakJzKGVsLmNvbG9yLCA4NSkgfX07DQp9DQoNCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzVGFibGVEZXNjQ29sICAucHRzQ29sSGVhZGVyIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7eyBlbC5jb2xvciB9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzVGFibGVEZXNjQ29sIC5wdHNDb2xEZXNjew0KCWJhY2tncm91bmQtY29sb3I6IHt7IGVsLmNvbG9yIH19Ow0KfSI7fXM6MTI6ImVuYl9kZXNjX2NvbCI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czo4OiJyb3dzX251bSI7YToxOntzOjM6InZhbCI7czoxOiI4Ijt9czo4OiJjb2xzX251bSI7YToxOntzOjM6InZhbCI7czoxOiIzIjt9czoxMDoidGV4dF9jb2xvciI7YToxOntzOjM6InZhbCI7czo3OiIjZDBkMGQwIjt9czoxNzoidGV4dF9jb2xvcl9oZWFkZXIiO2E6MTp7czozOiJ2YWwiO3M6NDoiI2ZmZiI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9czoxMToiZm9udF9mYW1pbHkiO2E6MTp7czozOiJ2YWwiO3M6OToiT3BlbiBTYW5zIjt9czo5OiJjb2xfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTg2Ijt9czoxMDoiY2FsY193aWR0aCI7YToxOntzOjM6InZhbCI7czo1OiJ0YWJsZSI7fXM6MTE6InRhYmxlX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjM6IjEwMCI7fXM6MTk6InRhYmxlX3dpZHRoX21lYXN1cmUiO2E6MTp7czozOiJ2YWwiO3M6MToiJSI7fXM6MTk6ImVuYl9ob3Zlcl9hbmltYXRpb24iO2E6MTp7czozOiJ2YWwiO3M6MToiMSI7fXM6MTM6InR4dF9pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MTY0OiI8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj48cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5Zb3VyIFRleHQ8L3NwYW4+PC9wPjwvZGl2PiI7fXM6MTM6ImltZ19pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MTc4OiI8ZGl2IGNsYXNzPVwicHRzRWwgcHRzRWxJbWcgcHRzRWxXaXRoQXJlYVwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ltZ1wiIGRhdGEtdHlwZT1cImltZ1wiPg0KCTxkaXYgY2xhc3M9XCJwdHNFbEFyZWFcIj48aW1nIHNyYz1cIltQVFNfQVNTRVRTX1VSTF1pbWcvZXhhbXBsZS5qcGdcIiAvPjwvZGl2Pg0KPC9kaXY+Ijt9czoxNDoiaWNvbl9pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjI4OiI8ZGl2IGRhdGEtaWNvbj1cImZhLWNvZ1wiIGRhdGEtY29sb3I9XCJyZ2IoMCwgMjIwLCAyMjMpXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiPjxpIGNsYXNzPVwiZmEgZmEtMnggcHRzSW5wdXRTaGVsbCBmYS1jb2dcIiBzdHlsZT1cImNvbG9yOiByZ2IoMCwgMjIwLCAyMjMpO1wiPjwvaT48L2Rpdj4iO31zOjEzOiJuZXdfY2VsbF9odG1sIjthOjE6e3M6MzoidmFsIjtzOjI0MjoiPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+WW91ciB0ZXh0PC9zcGFuPjwvcD4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjE1OiJuZXdfY29sdW1uX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MzQwMzoiPGRpdiBjbGFzcz1cInB0c0VsIHB0c0NvbCBwdHNDb2wtMyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1jb2xvcj1cInJnYigxOTUsIDUzLCAxNSlcIiBkYXRhLWVsPVwidGFibGVfY29sXCIgZGF0YS1lbmItY29sb3I9XCIxXCI+DQoJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xIZWFkZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxM3B4OyBcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTNweDsgY29sb3I6ICNmZmZmZmY7XCI+RU5URVJQUklTRTwvc3Bhbj48L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xEZXNjIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMjRwdDsgXCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDI0cHQ7IGNvbG9yOiAjZmZmZmZmO1wiPjY5OTwvc3Bhbj48L3A+DQoJCQkJCTxwPjxzcGFuIGRhdGEtbWNlLXN0eWxlPVwiY29sb3I6ICNmZmZmZmY7XCI+T25lIFRpbWUgUGF5bWVudDwvc3Bhbj48L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+NTAgVEI8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+VW5saW1pdGVkPC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxM3B4O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxM3B4O1wiPlVubGltaXRlZDwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1jb2xvcj1cIiNkMGQwZDBcIiBkYXRhLWljb249XCJmYS1jaGVja1wiPg0KCQkJCQkJPGkgY2xhc3M9XCJmYSBmYS1jaGVjayBwdHNJbnB1dFNoZWxsXCI+PC9pPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+VW5saW1pdGVkPC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGRhdGEtdHlwZT1cImljb25cIiBkYXRhLWNvbG9yPVwiI2QwZDBkMFwiIGRhdGEtaWNvbj1cImZhLWNoZWNrXCI+DQoJCQkJCQk8aSBjbGFzcz1cImZhIGZhLWNoZWNrIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTNweDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTNweDtcIj5VbmxpbWl0ZWQ8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+VW5saW1pdGVkPC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xGb290ZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0FjdEJ0biBwdHNFbCBwdHNFbElucHV0XCIgZGF0YS1lbD1cImJ0blwiIGRhdGEtYmdjb2xvci10bz1cInR4dFwiIGRhdGEtYmdjb2xvcj1cIiNmZmZcIiBkYXRhLWJnY29sb3ItZWxlbWVudHM9XCIucHRzRWRpdEFyZWFcIj4NCgkJCQkJPGEgdGFyZ2V0PVwiX2JsYW5rXCIgaHJlZj1cImh0dHBzOi8vc3Vwc3lzdGljLmNvbS9cIiBjbGFzcz1cInB0c0VkaXRBcmVhIHB0c0lucHV0U2hlbGxcIj5TaWduIHVwITwvYT4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgk8L2Rpdj4NCjwvZGl2PiI7fX0=','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsTableDescCol ptsElWithArea\" data-el=\"table_col_desc\" data-color=\"#fff\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\" style=\"height: 69px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p></p></div>\r\n </div>\r\n <div class=\"ptsColDesc\" style=\"height: 141px; color: #626262;\">\r\n <div class=\"ptsEl mce-content-body\" data-el=\"table_cell_txt\" data-type=\"txt\" id=\"ptsTxt_94548\" contenteditable=\"true\" spellcheck=\"false\">\r\n <p><span style=\"font-size: 46px; line-height: 56.626px; text-transform: none;\">Features</span></p>\r\n <p>COMPARE PACKAGE FEATURES</p>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\" style=\"height: 224px;\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Storage Space</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Email Accounts</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Monthly Bandwidth</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Control Panel</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Databases</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Analytics</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Domains</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\" style=\"height: 51px; display: none;\"></div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-color=\"rgb(241, 147, 0)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px; \" data-mce-style=\"font-size: 13px; color: #ffffff;\">Developer</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt; \" data-mce-style=\"font-size: 24pt; color: #ffffff;\">$99</span></p>\r\n <p><span data-mce-style=\"color: #ffffff;\">Payable Every Month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">500 MB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">100</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">5000 MB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">10</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">10</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">100</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-color=\"rgb(224, 100, 0)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px; \" data-mce-style=\"font-size: 13px; color: #ffffff;\">PREMIUM</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt; \" data-mce-style=\"font-size: 24pt; color: #ffffff;\">$399</span></p>\r\n <p><span data-mce-style=\"color: #ffffff;\">Payable Every Year</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">10 TB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">100</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">50</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">500</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-color=\"rgb(195, 53, 15)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px; \" data-mce-style=\"font-size: 13px; color: #ffffff;\">ENTERPRISE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt; \" data-mce-style=\"font-size: 24pt; color: #ffffff;\">$699</span></p>\r\n <p><span data-mce-style=\"color: #ffffff;\">One Time Payment</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">50 TB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n text-transform: uppercase;\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n transition: box-shadow 0.25 ease 0;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell{\r\n padding: 12px;\r\n text-transform: none;\r\n \r\n border: 1px solid {{ adjBs(table.params.bg_color.val, 17) }};\r\n border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -34) }};\r\n border-right: 1px solid {{ adjBs(table.params.bg_color.val, -34) }};\r\n box-shadow: 0 1px 2px rgba(0,0,0,0.15);\r\n text-shadow: 0 -1px rgba(0,0,0,0.6);\r\n}\r\n#{{table.view_id}} .ptsColHeader {\r\n padding: 15px;\r\n}\r\n#{{table.view_id}} .ptsColDesc {\r\n padding: 30px 15px;\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell:nth-child(odd) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 0) }};\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell:nth-child(even) {\r\n background-color: {{ adjBs(table.params.bg_color.val, -12) }};\r\n}\r\n#{{table.view_id}} .ptsColFooter {\r\n background-color: {{ adjBs(table.params.bg_color.val, -23) }};\r\n padding: 20px;\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -51) }};\r\n box-shadow: inset 0 1px {{ adjBs(table.params.bg_color.val, 2) }},inset 0 0 0 1px rgba(255,255,255,0.1);\r\n \r\n /* gradient */\r\n background-image: linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, -23) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -44) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, -23) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -44) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ adjBs(table.params.bg_color.val, -23) }}), color-stop(1, {{ adjBs(table.params.bg_color.val, -44) }})); /* Chrome 10, Safari */\r\n}\r\n#{{table.view_id}} .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, 110) }}; /* background color for non-css3 browsers */\r\n}\r\n#{{table.view_id}} .ptsActBtn {\r\n height: 50px;\r\n padding: 0 2em;\r\n cursor: pointer;\r\n font-weight: 400;\r\n font-size: 1.4em;\r\n text-decoration: none;\r\n display: inline-block;\r\n padding: 4px 20px;\r\n width: 100%;\r\n border-radius: 3px;\r\n}\r\n\r\n#{{table.view_id}} .ptsActBtn .ptsEditArea {\r\n text-decoration: none !important;\r\n border: none !important;\r\n width: 100%;\r\n text-transform: none;\r\n line-height: 2em;\r\n color: #fff;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -webkit-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -moz-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -ms-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -o-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColHeader {\r\n border-top-left-radius: 5px;\r\n border-top-right-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColFooter {\r\n border-bottom-left-radius: 5px;\r\n border-bottom-right-radius: 5px;\r\n}\r\n\r\n/*start for desc col color */\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColHeader {\r\n background-color: #fff;\r\n}\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColDesc{\r\n background-color: #fff;\r\n}\r\n/*end for desc col color */\r\n\r\n/*start for col color 1*/\r\n#{{table.view_id}} .ptsCol-1 .ptsColHeader {\r\n background-color: #ed8000;\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-1 .ptsActBtn:hover {\r\n background-color: #f19300;\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsActBtn {\r\n background-color: #ed8000;\r\n}\r\n/*end for col color 1*/\r\n\r\n/*start for col color 2*/\r\n#{{table.view_id}} .ptsCol-2 .ptsColHeader {\r\n background-color: #D85200;\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-2 .ptsActBtn:hover {\r\n background-color: #E06400;\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsActBtn {\r\n background-color: #D85200;\r\n}\r\n/*end for col color 2*/\r\n\r\n/*start for col color 3*/\r\n#{{table.view_id}} .ptsCol-3 .ptsColHeader {\r\n background-color: #B5280B;\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-3 .ptsActBtn:hover {\r\n background-color: #C3350F;\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsActBtn {\r\n background-color: #B5280B;\r\n}\r\n/*end for col color 3*/\r\n\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}\r\n','img' => 'okul.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-11-02 17:05:29','is_pro' => '0'),
152
  'nflGZoHy' => array('unique_id' => 'nflGZoHy','label' => 'Botein','original_id' => '0','params' => 'YToxOTp7czoxOToidGFibGVfd2lkdGhfbWVhc3VyZSI7YToxOntzOjM6InZhbCI7czoxOiIlIjt9czoxMDoiY2FsY193aWR0aCI7YToxOntzOjM6InZhbCI7czo1OiJ0YWJsZSI7fXM6MTE6InRhYmxlX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjM6IjEwMCI7fXM6OToiY29sX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjM6IjE4NiI7fXM6ODoiY29sc19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiNCI7fXM6ODoicm93c19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiNCI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9czoxNDoiY2VsbF9jb2xvcl9jc3MiO2E6MTp7czozOiJ2YWwiO3M6OTU6IiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gLnB0c0NvbERlc2MgLnB0c0VsIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7e2VsLmNvbG9yfX07DQp9Ijt9czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9czoxNzoidGV4dF9jb2xvcl9oZWFkZXIiO2E6MTp7czozOiJ2YWwiO3M6NDoiIzMzMyI7fXM6MTA6InRleHRfY29sb3IiO2E6MTp7czozOiJ2YWwiO3M6NDoiIzMzMyI7fXM6MTI6ImVuYl9kZXNjX2NvbCI7YToxOntzOjM6InZhbCI7czoxOiIwIjt9czoxMToiZm9udF9mYW1pbHkiO2E6MTp7czozOiJ2YWwiO3M6OToiT3BlbiBTYW5zIjt9czoxOToiZW5iX2hvdmVyX2FuaW1hdGlvbiI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czoxMzoidHh0X2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNjQ6IjxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+PC9kaXY+Ijt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJpY29uX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoyMjg6IjxkaXYgZGF0YS1pY29uPVwiZmEtY29nXCIgZGF0YS1jb2xvcj1cInJnYigwLCAyMjAsIDIyMylcIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCI+PGkgY2xhc3M9XCJmYSBmYS0yeCBwdHNJbnB1dFNoZWxsIGZhLWNvZ1wiIHN0eWxlPVwiY29sb3I6IHJnYigwLCAyMjAsIDIyMyk7XCI+PC9pPjwvZGl2PiI7fXM6MTM6Im5ld19jZWxsX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjQzOiI8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQk8cD48c3BhbiBzdHlsZT1cIiBmb250LXNpemU6IDE4cHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDE4cHQ7XCI+WW91ciB0ZXh0PC9zcGFuPjwvcD4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjE1OiJuZXdfY29sdW1uX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MTc1NToiPGRpdiBjbGFzcz1cInB0c0VsIHB0c0NvbCBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NvbFwiIGRhdGEtY29sb3I9XCIjZmZmXCIgZGF0YS1lbmItY29sb3I9XCIxXCI+DQoJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xIZWFkZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+PHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDI0cHQ7XCI+UGxhbjwvc3Bhbj48L3A+PC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xEZXNjIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQk8cD48c3BhbiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogNDhwdDsgY29sb3I6ICMzMzM7XCIgc3R5bGU9XCJmb250LXNpemU6IDQ4cHQ7IGNvbG9yOiAjMzMzO1wiPjEwMDwvc3Bhbj48L3A+PHA+PHNwYW4gZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7IGNvbG9yOiAjMzMzO1wiIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0OyBjb2xvcjogIzMzMztcIj5taW51dGVzPGJyIGRhdGEtbWNlLWJvZ3VzPVwiMVwiPjwvc3Bhbj48L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCIgZm9udC1zaXplOiAxOHB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiPjEwICQvbW9udGg8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+CQkJCQ0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiIGZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5QcmljZSBmb3IgMiBob3VycyA1JDwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCQk8ZGl2IGNsYXNzPVwicHRzQ29sRm9vdGVyIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNBY3RCdG4gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJidG5cIiAgZGF0YS1iZ2NvbG9yPVwiIzUyQzkzQlwiIGRhdGEtYmdjb2xvci10bz1cImJnXCI+DQoJCQkJCTxhIHRhcmdldD1cIl9ibGFua1wiIGhyZWY9XCJodHRwczovL3N1cHN5c3RpYy5jb20vXCIgY2xhc3M9XCJwdHNBZGRCZ0VsIHB0c0VkaXRBcmVhIHB0c0lucHV0U2hlbGxcIj5TdGFydCB3b3JrPC9hPg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCTwvZGl2Pg0KPC9kaXY+Ijt9fQ==','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsElWithArea ptsTableDescCol\" data-el=\"table_col\" data-color=\"#fff\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">PLAN</span></p></div>\r\n </div>\r\n <div class=\"ptsColDesc\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 23pt; color: #333;\" style=\"font-size: 23pt; color: #333;\">Number</span></p><p><span data-mce-style=\"font-size: 12pt; color: #333;\" style=\"font-size: 12pt; color: #333;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Price</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" class=\"ptsEditArea ptsInputShell\" href=\"https://supsystic.com/\">Action</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-el=\"table_col\" data-color=\"#fff\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">BASE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 48pt; color: #333;\" style=\"font-size: 48pt; color: #333;\">65</span></p><p><span data-mce-style=\"font-size: 12pt; color: #333;\" style=\"font-size: 12pt; color: #333;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">15 $/month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute 0.25$</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsAddBgEl ptsEditArea ptsInputShell\">Start work</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-el=\"table_col\" data-color=\"#00AED6\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">ECONOMY</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">140</span></p><p><span data-mce-style=\"font-size: 12pt;\" style=\"font-size: 12pt;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">30 $/month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute 0.20$</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Start work</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-el=\"table_col\" data-color=\"#008CB1\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">STANDART</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\">\r\n <p><span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">240</span></p><p><span data-mce-style=\"font-size: 12pt;\" style=\"font-size: 12pt;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">45 $/month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute 0.2$</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Start work</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-4 ptsElWithArea\" data-el=\"table_col\" data-color=\"#006380\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">PREMIUM</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\">\r\n <p><span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">380</span></p><p><span data-mce-style=\"font\" style=\"font-size: 12pt;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">75 $/month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute 0.2$</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Start work</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} span, #{{table.view_id}} p {\r\n word-break: break-word;\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -40) }};\r\n}\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColFooter {\r\n visibility: hidden;\r\n}\r\n#{{table.view_id}} .ptsTableElementContent {\r\n padding-bottom: 15px;\r\n}\r\n{% if (table.params.cols_num.val > 1) %}\r\n#{{table.view_id}} .ptsCol:not(:last-child) {\r\n border-right: none;\r\n}\r\n{% endif %}\r\n#{{table.view_id}} .ptsColDesc {\r\n text-align: center;\r\n}\r\n#{{table.view_id}}.ptsBlockMobile .ptsCol {\r\n border-right: 1px solid {{ adjBs(table.params.bg_color.val, -40) }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsRows {\r\n background-color: {{ table.params.bg_color.val }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell {\r\n padding: 12px;\r\n border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n border-top: 1px solid {{ adjBs(table.params.bg_color.val, -20) }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell:last-of-type {\r\n border-bottom: none;\r\n}\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn {\r\n width: 100%;\r\n border-radius: 3px;\r\n cursor: pointer;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn .ptsEditArea {\r\n font-size: 1.4em;\r\n width: 100%;\r\n padding: 10px 0;\r\n text-decoration: none !important;\r\n border: none !important;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsRows {\r\n border-top-width: 1px;\r\n border-bottom-width: 1px;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n/*Animations*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: all 0.3s ease;\r\n -webkit-transition: all 0.3s ease;\r\n -moz-transition: all 0.3s ease;\r\n -ms-transition: all 0.3s ease;\r\n -o-transition: all 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, -35) }};\r\n}\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc .ptsEl {\r\n border-radius: 50%;\r\n border: 10px solid {{ table.params.bg_color.val }};\r\n padding: 15px 15px;\r\n box-sizing: content-box;\r\n z-index: 1;\r\n background-color: {{ table.params.bg_color.val }};\r\n width: {{table.params.col_width.val / 1.55}}px;\r\n height: {{table.params.col_width.val / 1.55}}px;\r\n position: relative;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColDesc .ptsEl {\r\n width: {{table.params.col_width.val / 1.40}}px;\r\n height: {{table.params.col_width.val / 1.40}}px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n padding: 35px 0 10px 0;\r\n background-color: {{ adjBs(table.params.bg_color.val, -10) }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n position: relative;\r\n padding: 5px 0 10px 0;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc:after {\r\n content: \'\';\r\n background-color: {{ adjBs(table.params.bg_color.val, -10) }};\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 50%;\r\n z-index: 0;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc .ptsEl p {\r\n line-height: 1;\r\n padding: 10px 0 0 0;\r\n margin: 0 0;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc .ptsEl p:first-child {\r\n margin-top: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol-0 .ptsColDesc .ptsEl p:first-child {\r\n margin-top: 30px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter {\r\n padding: 15px 0 0 0;\r\n margin-top: 40px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter .ptsActBtn {\r\n width: auto;\r\n padding: 7px 12px;\r\n border-radius: 2px;\r\n cursor: pointer;\r\n transition: box-shadow .5s ease-out;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter .ptsActBtn:hover {\r\n box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter .ptsActBtn a {\r\n padding: 0;\r\n color: {{ table.params.bg_color.val }};\r\n font-size: 17px;\r\n text-decoration: blink;\r\n \r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell {\r\n padding: 1px 0;\r\n border: none;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc .ptsEl p:last-child {\r\n position: absolute;\r\n left: 0;\r\n right: 0;\r\n bottom: 0;\r\n height: 40%;\r\n}\r\n/** Default colum style **/\r\n/*start for col color 2*/\r\n#{{table.view_id}} .ptsCol-2 .ptsColDesc .ptsEl {\r\n background-color: #00AED6;\r\n}\r\n/*end for col color 2*/\r\n/*start for col color 3*/\r\n#{{table.view_id}} .ptsCol-3 .ptsColDesc .ptsEl {\r\n background-color: #008CB1;\r\n}\r\n/*end for col color 3*/\r\n/*start for col color 4*/\r\n#{{table.view_id}} .ptsCol-4 .ptsColDesc .ptsEl {\r\n background-color: #006380;\r\n}\r\n/*end for col color 4*/','img' => 'botein.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-11-03 08:45:18','is_pro' => '0'),
153
  'vpQwsfZU' => array('unique_id' => 'vpQwsfZU','label' => 'Becrux','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9czo4OiJjb2xzX251bSI7YToxOntzOjM6InZhbCI7czoxOiIzIjt9czoxOToidGFibGVfd2lkdGhfbWVhc3VyZSI7YToxOntzOjM6InZhbCI7czoxOiIlIjt9czoxNDoiaWNvbl9pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjI4OiI8ZGl2IGRhdGEtaWNvbj1cImZhLWNvZ1wiIGRhdGEtY29sb3I9XCJyZ2IoMCwgMjIwLCAyMjMpXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiPjxpIGNsYXNzPVwiZmEgZmEtMnggcHRzSW5wdXRTaGVsbCBmYS1jb2dcIiBzdHlsZT1cImNvbG9yOiByZ2IoMCwgMjIwLCAyMjMpO1wiPjwvaT48L2Rpdj4iO31zOjEwOiJ0ZXh0X2NvbG9yIjthOjE6e3M6MzoidmFsIjtzOjc6IiM1MDUwNTAiO31zOjE0OiJjZWxsX2NvbG9yX2NzcyI7YToxOntzOjM6InZhbCI7czo2MTg6IiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzQ29sIC5wdHNUYWJsZUVsZW1lbnRDb250ZW50IHsNCgltYXJnaW4tbGVmdDogNXB4Ow0KICAJYm9yZGVyOiBzb2xpZCAxcHgge3sgYWRqQnMoZWwuY29sb3IsIC0xMCkgfX07DQogICAgYm9yZGVyLWJvdHRvbTogc29saWQgMnB4IHt7IGFkakJzKGVsLmNvbG9yLCAtMTUpIH19Ow0KICAgIGJvcmRlci10b3Atd2lkdGg6IDJweDsNCiAgCWJhY2tncm91bmQtY29sb3I6IHt7IGVsLmNvbG9yIH19Ow0KDQp9DQoNCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzQ29sIC5wdHNDb2xGb290ZXIgew0KCXBhZGRpbmc6IDIwcHg7DQogIAlib3JkZXI6IDFweCBzb2xpZCB7eyBhZGpCcyhlbC5jb2xvciwgLTM1KSB9fTsNCiAgCWJhY2tncm91bmQtaW1hZ2U6IGxpbmVhci1ncmFkaWVudCh0byBib3R0b20sIHt7YWRqQnMoZWwuY29sb3IsIDIwKX19LCB7e2FkakJzKGVsLmNvbG9yLCAtMjApfX0pOw0KfQ0KDQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19LnB0c0NvbCAucHRzQWN0QnQ6aG92ZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7YWRqQnMoZWwuY29sb3IsIDIwKX19Ow0KfSI7fXM6ODoicm93c19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiOCI7fXM6MTk6ImVuYl9ob3Zlcl9hbmltYXRpb24iO2E6MTp7czozOiJ2YWwiO3M6MToiMCI7fXM6MTM6Im5ld19jZWxsX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjQyOiI8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5Zb3VyIFRleHQ8L3NwYW4+PC9wPg0KCQk8L2Rpdj4NCgk8L2Rpdj4NCjwvZGl2PiI7fXM6MTI6ImVuYl9kZXNjX2NvbCI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czoxMDoiY2FsY193aWR0aCI7YToxOntzOjM6InZhbCI7czo1OiJ0YWJsZSI7fXM6MTM6InR4dF9pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MTY0OiI8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj48cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5Zb3VyIFRleHQ8L3NwYW4+PC9wPjwvZGl2PiI7fXM6MTU6Im5ld19jb2x1bW5faHRtbCI7YToxOntzOjM6InZhbCI7czoyNjc4OiI8ZGl2IGNsYXNzPVwicHRzRWwgcHRzQ29sIHB0c0VsV2l0aEFyZWFcIiBkYXRhLWNvbG9yPVwicmdiKDUxLCAxNTMsIDI1NSlcIiBkYXRhLWVsPVwidGFibGVfY29sXCIgZGF0YS1lbmItY29sb3I9XCIwXCI+DQoJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xIZWFkZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+PHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+U0lOR0xFIExJQ0VOU0U8L3NwYW4+PC9wPjwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCQk8ZGl2IGNsYXNzPVwicHRzQ29sRGVzYyBwdHNUb2dnbGVcIj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJPHA+PHNwYW4gZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDM2cHQ7XCIgc3R5bGU9XCJmb250LXNpemU6IDM2cHQ7XCI+JDI5PC9zcGFuPjwvcD48cD5PTkUgVElNRSBGRUU8L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+MTAgdXNlciBhY2NvdW50czwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5GcmVlIDMwLWRheSB0cmlhbDwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4yMDAgcHJvamVjdHM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+Tm8gZW5jcnlwdGlvbjwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMDAgTUIgU3RvcmFnZTwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMCBjdXN0b20gZG9tYWluczwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMDAgc3ViIGRvbWFpbnM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgk8L2Rpdj4NCjwvZGl2PiI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo3OiIjNTA1MDU1Ijt9czo5OiJjb2xfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTg2Ijt9czoxMToidGFibGVfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTAwIjt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjExOiJmb250X2ZhbWlseSI7YToxOntzOjM6InZhbCI7czo5OiJPcGVuIFNhbnMiO31zOjE3OiJ0ZXh0X2NvbG9yX2hlYWRlciI7YToxOntzOjM6InZhbCI7czo3OiIjMjdBRTYwIjt9fQ==','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsElWithArea ptsTableDescCol\" data-el=\"table_col_desc\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 18pt; font-weight: bold;\" data-mce-style=\"font-size: 18pt; font-weight: bold;\">Plan</span></p></div>\r\n </div>\r\n <div class=\"ptsColDesc\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 18pt;\" style=\"font-size: 18pt;\">(Price)</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\">\r\n <div class=\"ptsCell\">\r\n\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Email Previews</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Builder</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Page Testing</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Interactive Testing</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Spam Filter Tests</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500,000 Tracking Opens</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"\">2 Users Free</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-el=\"table_col\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 18pt; font-weight: bold;\" data-mce-style=\"font-size: 18pt; font-weight: bold;\">Basic</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 18pt;\" style=\"font-size: 18pt;\">($79/mo)</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"bg\" data-bgcolor=\"#27AE60\" style=\"background-color: #27AE60;\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Start Free Trial</a>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Email Previews</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Builder</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Page Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Interactive Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Spam Filter Tests</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500,000 Tracking Opens</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"\">2 Users Free</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-el=\"table_col\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 18pt; font-weight: bold; color: #515E78;\" data-mce-style=\"font-size: 18pt; font-weight: bold; color: #515E78;\">Plus</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 18pt;\" style=\"font-size: 18pt;\">($149/mo)</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"bg\" data-bgcolor=\"#515E78\" style=\"background-color: #515E78;\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Start Free Trial</a>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Email Previews</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Builder</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Page Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Interactive Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Spam Filter Tests</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500,000 Tracking Opens</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"\">2 Users Free</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-el=\"table_col\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 18pt; font-weight: bold; color: #FB9B7A;\" data-mce-style=\"font-size: 18pt; font-weight: bold; color: #FB9B7A;\">Premium</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 18pt; color: #505055;\" style=\"font-size: 18pt;\">($399/mo)</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"bg\" data-bgcolor=\"#FB9B72\" style=\"background-color: #FB9B72;\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Start Free Trial</a>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Email Previews</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Builder</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Page Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Interactive Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Spam Filter Tests</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">2 Million Tracking Opens</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"\">10 Users Free</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n \r\n padding: 0px 2.5px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent {\r\n box-sizing: border-box;\r\n border: solid 1px {{ adjBs(table.params.bg_color.val, -10) }};\r\n border-bottom: solid 2px {{ adjBs(table.params.bg_color.val, -15) }};\r\n border-top-width: 2px;\r\n background-color: {{ table.params.bg_color.val }};\r\n\r\n}\r\n#{{table.view_id}} .ptsColHeader {\r\n padding: 15px;\r\n font-size: 24px;\r\n font-weight: bold;\r\n padding-top: 21px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n font-size: 24px;\r\n padding-top: 6px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n padding-top: 30px;\r\n padding-bottom: 16px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell {\r\n padding: 7px 12px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter {\r\n padding: 20px;\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n background-image: linear-gradient(to bottom, {{adjBs(table.params.bg_color.val, 20)}}, {{adjBs(table.params.bg_color.val, -20)}});\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn {\r\n border-radius: 3px;\r\n cursor: pointer;\r\n margin-bottom: 17px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBt:hover {\r\n background-color: {{adjBs(table.params.bg_color.val, 20)}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn .ptsEditArea {\r\n width: 100%;\r\n padding: 6px 16px;\r\n text-decoration: none !important;\r\n border: none !important;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n\r\n\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColFooter {\r\n visibility: hidden;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n/*Animations*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: all 0.3s ease;\r\n -webkit-transition: all 0.3s ease;\r\n -moz-transition: all 0.3s ease;\r\n -ms-transition: all 0.3s ease;\r\n -o-transition: all 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn a {\r\n font-size: 14px;\r\n}\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}','img' => 'becrux.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-11-03 15:09:42','is_pro' => '0'),
10
  if(!$current_version)
11
  self::$_firstTimeActivated = true;
12
  /**
13
+ * modules
14
  */
15
  //dbPts::query("DROP TABLE @__modules");
16
  if (!dbPts::exist("@__modules")) {
33
  (NULL, 'supsystic_promo',1,1,'supsystic_promo'),
34
  (NULL, 'admin_nav',1,1,'admin_nav'),
35
  (NULL, 'mail',1,1,'mail'),
36
+
37
  (NULL, 'tables',1,1,'tables');");
38
  }
39
  /**
40
+ * modules_type
41
  */
42
  if(!dbPts::exist("@__modules_type")) {
43
  dbDelta(dbPts::prepareQuery("CREATE TABLE IF NOT EXISTS `@__modules_type` (
74
  }
75
  if (version_compare($current_version, '1.2.5') != 1)
76
  dbPts::query("ALTER TABLE `@__tables` MODIFY html MEDIUMTEXT;");
77
+
78
  self::initBaseTables();
79
  /**
80
  * Plugin usage statistics
120
  self::_checkSendStat('deactivate');
121
  }
122
  static private function _checkSendStat($statCode) {
123
+ if(class_exists('framePts')
124
  && framePts::_()->getModule('supsystic_promo')
125
  && framePts::_()->getModule('options')
126
  ) {
146
 
147
  $data = array(
148
  'RQjyfqVX' => array('unique_id' => 'RQjyfqVX','label' => 'Rainbow','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo3OiIjZjVmNWY1Ijt9czoxNDoiY2VsbF9jb2xvcl9jc3MiO2E6MTp7czozOiJ2YWwiO3M6MzQwOiIje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDb2xIZWFkZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7ZWwuY29sb3J9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gLnB0c0NvbERlc2MsDQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNBY3RCdG46aG92ZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7IGFkakJzKGVsLmNvbG9yLCAtMzUpIH19Ow0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzQWN0QnRuIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7e2VsLmNvbG9yfX07DQp9Ijt9czoxMjoiZW5iX2Rlc2NfY29sIjthOjE6e3M6MzoidmFsIjtzOjE6IjAiO31zOjk6ImNvbF93aWR0aCI7YToxOntzOjM6InZhbCI7czozOiIxODYiO31zOjg6ImNvbHNfbnVtIjthOjE6e3M6MzoidmFsIjtzOjE6IjQiO31zOjg6InJvd3NfbnVtIjthOjE6e3M6MzoidmFsIjtzOjE6IjgiO31zOjEwOiJjYWxjX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjU6InRhYmxlIjt9czoxMToidGFibGVfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTAwIjt9czoxOToidGFibGVfd2lkdGhfbWVhc3VyZSI7YToxOntzOjM6InZhbCI7czoxOiIlIjt9czoxOToiZW5iX2hvdmVyX2FuaW1hdGlvbiI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czoxMzoidHh0X2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNjQ6IjxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+PC9kaXY+Ijt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJpY29uX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoyMjg6IjxkaXYgZGF0YS1pY29uPVwiZmEtY29nXCIgZGF0YS1jb2xvcj1cInJnYigwLCAyMjAsIDIyMylcIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCI+PGkgY2xhc3M9XCJmYSBmYS0yeCBwdHNJbnB1dFNoZWxsIGZhLWNvZ1wiIHN0eWxlPVwiY29sb3I6IHJnYigwLCAyMjAsIDIyMyk7XCI+PC9pPjwvZGl2PiI7fXM6MTM6Im5ld19jZWxsX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjQyOiI8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5Zb3VyIFRleHQ8L3NwYW4+PC9wPg0KCQk8L2Rpdj4NCgk8L2Rpdj4NCjwvZGl2PiI7fXM6MTU6Im5ld19jb2x1bW5faHRtbCI7YToxOntzOjM6InZhbCI7czozMDQ5OiI8ZGl2IGNsYXNzPVwicHRzRWwgcHRzQ29sIHB0c0VsV2l0aEFyZWFcIiBkYXRhLWNvbG9yPVwicmdiKDUxLCAxNTMsIDI1NSlcIiBkYXRhLWVsPVwidGFibGVfY29sXCIgZGF0YS1lbmItY29sb3I9XCIwXCI+DQoJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xIZWFkZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+PHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+U0lOR0xFIExJQ0VOU0U8L3NwYW4+PC9wPjwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCQk8ZGl2IGNsYXNzPVwicHRzQ29sRGVzYyBwdHNUb2dnbGVcIj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJPHA+PHNwYW4gZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDM2cHQ7XCIgc3R5bGU9XCJmb250LXNpemU6IDM2cHQ7XCI+JDI5PC9zcGFuPjwvcD48cD5PTkUgVElNRSBGRUU8L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+MTAgdXNlciBhY2NvdW50czwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5GcmVlIDMwLWRheSB0cmlhbDwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4yMDAgcHJvamVjdHM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+Tm8gZW5jcnlwdGlvbjwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMDAgTUIgU3RvcmFnZTwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMCBjdXN0b20gZG9tYWluczwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMDAgc3ViIGRvbWFpbnM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgkJPGRpdiBjbGFzcz1cInB0c0NvbEZvb3RlciBwdHNUb2dnbGVcIj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQWN0QnRuIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwiYnRuXCIgZGF0YS1iZ2NvbG9yLXRvPVwiYm9yZGVyXCIgZGF0YS1iZ2NvbG9yPVwiIzEwNzZkY1wiIGRhdGEtY3VzdG9taG92ZXItY2xiPVwiX2hvdmVyQ2hhbmdlQmdDb2xvclwiPg0KCQkJCQk8YSB0YXJnZXQ9XCJfYmxhbmtcIiBocmVmPVwiaHR0cHM6Ly9zdXBzeXN0aWMuY29tL1wiIGNsYXNzPVwicHRzRWRpdEFyZWEgcHRzSW5wdXRTaGVsbFwiPlNpZ24gdXAhPC9hPg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCTwvZGl2Pg0KPC9kaXY+Ijt9czoxMToiZm9udF9mYW1pbHkiO2E6MTp7czozOiJ2YWwiO3M6OToiT3BlbiBTYW5zIjt9czoxMDoidGV4dF9jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjNjY2Ijt9czoxNzoidGV4dF9jb2xvcl9oZWFkZXIiO2E6MTp7czozOiJ2YWwiO3M6NDoiI2ZmZiI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9fQ==','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsTableDescCol ptsElWithArea\" data-el=\"table_col_desc\" data-color=\"#f5f5f5\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free Trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SSL</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Sub-domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\"></div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-color=\"rgb(51, 153, 255)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SINGLE LICENSE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$29</span></p><p><span style=\"\">ONE TIME FEE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">10 user accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free 30-day trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">200 projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">No encryption</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100 MB Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">10 custom domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100 sub domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-color=\"rgb(147, 194, 48)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">DEVELOPER LICENSE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$49</span></p><p><span style=\"\">ONE TIME FEE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100 user accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free 30-day trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500 projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SSL encryption</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">1000 MB Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100 custom domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500 sub domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-color=\"rgb(255, 174, 53)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">PREMIUM LICENSE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$99</span></p><p><span style=\"\">ONE TIME FEE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500 user accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free 30-day trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SSL encryption</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">5000 MB Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500 custom domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">1000 sub domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-4 ptsElWithArea\" data-color=\"rgb(240, 61, 0)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">ENTERPRISE LICENSE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">$199</span></p><p><span style=\"\">ONE TIME FEE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">1000 user accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Free 30-day trial</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited projects</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">SSL encryption</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited Storage</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited custom domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Unlimited sub domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n \r\n padding: 0 10px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsRows {\r\n background-color: {{ table.params.bg_color.val }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n padding: 15px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n padding: 30px 15px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n border-top-width: 0;\r\n border-bottom-width: 0;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell {\r\n padding: 12px;\r\n border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n border-top: 1px solid #fff;\r\n}\r\n#{{table.view_id}} .ptsCol ptsRows .ptsCell:last-of-type {\r\n border-bottom: none;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter {\r\n padding: 20px;\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n background-image: linear-gradient(to bottom, {{adjBs(table.params.bg_color.val, 20)}}, {{adjBs(table.params.bg_color.val, -20)}});\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn {\r\n width: 100%;\r\n border-radius: 3px;\r\n cursor: pointer;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn .ptsEditArea {\r\n font-size: 1.4em;\r\n width: 100%;\r\n padding: 10px 0;\r\n text-decoration: none !important;\r\n border: none !important;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColHeader,\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColDesc,\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColFooter {\r\n visibility: hidden;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n/*Animations*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -webkit-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -moz-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -ms-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -o-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, -35) }};\r\n}#{{table.view_id}} span, #{{table.view_id}} p {\r\n word-break: break-word;\r\n}\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}\r\n/*start for col color 1*/\r\n#{{table.view_id}} .ptsCol-1 .ptsColHeader {\r\n background-color: rgb(51, 153, 255);\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-1 .ptsActBtn:hover {\r\n background-color: #1076dc;\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsActBtn {\r\n background-color: rgb(51, 153, 255);\r\n}\r\n/*end for col color 1*/\r\n/*start for col color 2*/\r\n#{{table.view_id}} .ptsCol-2 .ptsColHeader {\r\n background-color: rgb(147, 194, 48);\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-2 .ptsActBtn:hover {\r\n background-color: #709f0d;\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsActBtn {\r\n background-color: rgb(147, 194, 48);\r\n}\r\n/*end for col color 2*//*start for col color 3*/\r\n#{{table.view_id}} .ptsCol-3 .ptsColHeader {\r\n background-color: rgb(255, 174, 53);\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-3 .ptsActBtn:hover {\r\n background-color: #dc8b12;\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsActBtn {\r\n background-color: rgb(255, 174, 53);\r\n}\r\n/*end for col color 3*//*start for col color 4*/\r\n#{{table.view_id}} .ptsCol-4 .ptsColHeader {\r\n background-color: rgb(240, 61, 0);\r\n}\r\n#{{table.view_id}} .ptsCol-4 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-4 .ptsActBtn:hover {\r\n background-color: #cd1a00;\r\n}\r\n#{{table.view_id}} .ptsCol-4 .ptsActBtn {\r\n background-color: rgb(240, 61, 0);\r\n}\r\n/*end for col color 4*/','img' => 'rainbow.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-08-26 16:32:53','is_pro' => '0'),
149
+ 'pnNjNRm5' => array('unique_id' => 'pnNjNRm5','label' => 'Flat Table','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo3OiIjNDljNmUxIjt9czoxNDoiY2VsbF9jb2xvcl9jc3MiO2E6MTp7czozOiJ2YWwiO3M6NTIwOiIje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNUYWJsZUVsZW1lbnRDb250ZW50IHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7e2VsLmNvbG9yfX07DQp9DQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNUYWJsZUVsZW1lbnRDb250ZW50IC5wdHNDb2xEZXNjLA0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzVGFibGVFbGVtZW50Q29udGVudCAucHRzQWN0QnRuLA0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzVGFibGVFbGVtZW50Q29udGVudCAucHRzUm93cyAucHRzQ2VsbDpob3ZlciAgew0KCWJhY2tncm91bmQtY29sb3I6IHt7YWRqQnMoZWwuY29sb3IsIDIwKX19Ow0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzVGFibGVFbGVtZW50Q29udGVudCAucHRzQWN0QnRuOmhvdmVyIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7e2FkakJzKGVsLmNvbG9yLCAtMjApfX07DQp9Ijt9czoxMjoiZW5iX2Rlc2NfY29sIjthOjE6e3M6MzoidmFsIjtzOjE6IjAiO31zOjk6ImNvbF93aWR0aCI7YToxOntzOjM6InZhbCI7czozOiIxODYiO31zOjg6ImNvbHNfbnVtIjthOjE6e3M6MzoidmFsIjtzOjE6IjMiO31zOjg6InJvd3NfbnVtIjthOjE6e3M6MzoidmFsIjtzOjE6IjciO31zOjEwOiJjYWxjX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjU6InRhYmxlIjt9czoxMToidGFibGVfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTAwIjt9czoxOToidGFibGVfd2lkdGhfbWVhc3VyZSI7YToxOntzOjM6InZhbCI7czoxOiIlIjt9czoxOToiZW5iX2hvdmVyX2FuaW1hdGlvbiI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czoxMzoidHh0X2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNjQ6IjxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+PC9kaXY+Ijt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJpY29uX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoyMjg6IjxkaXYgZGF0YS1pY29uPVwiZmEtY29nXCIgZGF0YS1jb2xvcj1cInJnYigwLCAyMjAsIDIyMylcIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCI+PGkgY2xhc3M9XCJmYSBmYS0yeCBwdHNJbnB1dFNoZWxsIGZhLWNvZ1wiIHN0eWxlPVwiY29sb3I6IHJnYigwLCAyMjAsIDIyMyk7XCI+PC9pPjwvZGl2PiI7fXM6MTM6Im5ld19jZWxsX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6NTM4OiI8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJPGRpdiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1jb2xvcj1cInJnYigyNTUsIDI1NSwgMjU1KVwiIGRhdGEtaWNvbj1cImZhLWNoZWNrLWNpcmNsZVwiPg0KCQkJPGkgc3R5bGU9XCJjb2xvcjogcmdiKDI1NSwgMjU1LCAyNTUpXCIgY2xhc3M9XCJmYSBmYS0yeCBmYS1jaGVjay1jaXJjbGUgcHRzSW5wdXRTaGVsbFwiPjwvaT4NCgkJPC9kaXY+DQoJPC9kaXY+DQoJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+DQoJCTwvZGl2Pg0KCTwvZGl2Pg0KPC9kaXY+Ijt9czoxNToibmV3X2NvbHVtbl9odG1sIjthOjE6e3M6MzoidmFsIjtzOjU1MDM6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNDb2wgcHRzRWxXaXRoQXJlYVwiIGRhdGEtY29sb3I9XCJyZ2IoMjMxLCA3NiwgNjApXCIgZGF0YS1lbD1cInRhYmxlX2NvbFwiIGRhdGEtZW5iLWNvbG9yPVwiMVwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUYWJsZUVsZW1lbnRDb250ZW50IHB0c0VsQXJlYVwiPg0KCQk8ZGl2IGNsYXNzPVwicHRzQ29sSGVhZGVyIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMjRwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMjRwdDtcIj5TVFVERU5UPC9zcGFuPjwvcD4NCgkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDE0cHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDE0cHQ7XCI+Rm9yIHRoZSBCZWdpbm5lcjwvc3Bhbj48L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj4xIEdCIERpc2sgU3BhY2U8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj4yIERhdGFiYXNlczwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1jb2xvcj1cInJnYigyNTUsIDI1NSwgMjU1KVwiIGRhdGEtaWNvbj1cImZhLXRpbWVzLWNpcmNsZVwiPg0KCQkJCQkJPGkgc3R5bGU9XCJjb2xvcjogcmdiKDI1NSwgMjU1LCAyNTUpXCIgY2xhc3M9XCJmYSBmYS0yeCBmYS10aW1lcy1jaXJjbGUgcHRzSW5wdXRTaGVsbFwiPjwvaT4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiPk5vIERvbWFpbnM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj41IFVzZXJzPC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGRhdGEtdHlwZT1cImljb25cIiBkYXRhLWNvbG9yPVwicmdiKDI1NSwgMjU1LCAyNTUpXCIgZGF0YS1pY29uPVwiZmEtY2hlY2stY2lyY2xlXCI+DQoJCQkJCQk8aSBzdHlsZT1cImNvbG9yOiByZ2IoMjU1LCAyNTUsIDI1NSlcIiBjbGFzcz1cImZhIGZhLTJ4IGZhLWNoZWNrLWNpcmNsZSBwdHNJbnB1dFNoZWxsXCI+PC9pPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDE4cHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDE4cHQ7XCI+MTAgRW1haWwgQWNjb3VudHM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj4xMCBHQiBCYW5kd2lkdGg8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNJY29uIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwidGFibGVfY2VsbF9pY29uXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtY29sb3I9XCJyZ2IoMjU1LCAyNTUsIDI1NSlcIiBkYXRhLWljb249XCJmYS1jaGVjay1jaXJjbGVcIj4NCgkJCQkJCTxpIHN0eWxlPVwiY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KVwiIGNsYXNzPVwiZmEgZmEtMnggZmEtY2hlY2stY2lyY2xlIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMThwdDtcIj4yNC83IEN1c3RvbWVyIFN1cHBvcnQ8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgkJPGRpdiBjbGFzcz1cInB0c0NvbERlc2MgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCTxwPjxzcGFuIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAzNnB0O1wiIHN0eWxlPVwiZm9udC1zaXplOiAzNnB0O1wiPiQ8c3BhbiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogNDhwdDtcIiBzdHlsZT1cImZvbnQtc2l6ZTogNDhwdDtcIj4zNTk8L3NwYW4+Ljk5PC9zcGFuPjwvcD48cD48c3BhbiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTRwdDtcIiBzdHlsZT1cImZvbnQtc2l6ZTogMTRwdDtcIj5Nb250aGx5IFBsYW48L3NwYW4+PGJyPjwvcD4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgkJPGRpdiBjbGFzcz1cInB0c0NvbEZvb3RlciBwdHNUb2dnbGVcIj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQWN0QnRuIHB0c0VsIHB0c0VsSW5wdXRcIiBkYXRhLWVsPVwiYnRuXCIgZGF0YS1iZ2NvbG9yLXRvPVwidHh0XCIgZGF0YS1iZ2NvbG9yPVwiI2ZmZlwiIGRhdGEtYmdjb2xvci1lbGVtZW50cz1cIi5wdHNFZGl0QXJlYVwiPg0KCQkJCQk8YSB0YXJnZXQ9XCJfYmxhbmtcIiBocmVmPVwiaHR0cHM6Ly9zdXBzeXN0aWMuY29tL1wiIGNsYXNzPVwicHRzRWRpdEFyZWEgcHRzSW5wdXRTaGVsbFwiIHN0eWxlPVwiY29sb3I6ICNmZmY7XCI+U0lHTiBVUCBOT1c8L2E+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjExOiJmb250X2ZhbWlseSI7YToxOntzOjM6InZhbCI7czoxNjoiUm9ib3RvIENvbmRlbnNlZCI7fXM6MTA6InRleHRfY29sb3IiO2E6MTp7czozOiJ2YWwiO3M6NDoiI2ZmZiI7fXM6MTc6InRleHRfY29sb3JfaGVhZGVyIjthOjE6e3M6MzoidmFsIjtzOjQ6IiNmZmYiO31zOjE1OiJ0ZXh0X2NvbG9yX2Rlc2MiO2E6MTp7czozOiJ2YWwiO3M6NDoiI2ZmZiI7fX0=','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsTableDescCol ptsElWithArea\" data-color=\"#49c6e1\" data-el=\"table_col_desc\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt;\" data-mce-style=\"font-size: 24pt;\">CHOOSE</span></p>\r\n <p><span style=\"font-size: 14pt;\" data-mce-style=\"font-size: 14pt;\">Your Plan</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Disk Space</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Databases</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Email Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Bandwidth</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 36pt;\">Price<br></span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\"></div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-color=\"rgb(231, 76, 60)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt;\" data-mce-style=\"font-size: 24pt;\">STUDENT</span></p>\r\n <p><span style=\"font-size: 14pt;\" data-mce-style=\"font-size: 14pt;\">For the Beginner</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">1 GB Disk Space</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">2 Databases</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-times-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-times-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">No Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">5 Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 Email Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 GB Bandwidth</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">24/7 Customer Support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">$<span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">359</span>.99</span></p><p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\" data-mce-style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span data-mce-style=\"font-size: 14pt;\" style=\"font-size: 14pt;\">Monthly Plan</span><br></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">SIGN UP NOW</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-color=\"#9b59b6\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt;\" data-mce-style=\"font-size: 24pt;\">UNLIMITED</span></p>\r\n <p><span style=\"font-size: 14pt;\" data-mce-style=\"font-size: 14pt;\">For the Unlimited Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">1 GB Disk Space</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">2 Databases</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-times-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-times-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">No Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">5 Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 Email Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 GB Bandwidth</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">24/7 Customer Support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 36pt;\" style=\"font-size: 48pt;\">$<span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">659</span>.99</span></p><p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\" data-mce-style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span data-mce-style=\"font-size: 14pt;\" style=\"font-size: 14pt;\">Monthly Plan</span><br></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">SIGN UP NOW</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-color=\"#27ae60\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt;\" data-mce-style=\"font-size: 24pt;\">PREMIUM</span></p>\r\n <p><span style=\"font-size: 14pt;\" data-mce-style=\"font-size: 14pt;\">All Features are Available</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">1 GB Disk Space</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">2 Databases</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-times-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-times-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">No Domains</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">5 Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 Email Accounts</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">10 GB Bandwidth</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(255, 255, 255)\" data-icon=\"fa-check-circle\">\r\n <i style=\"color: rgb(255, 255, 255)\" class=\"fa fa-2x fa-check-circle ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">24/7 Customer Support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">$<span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">859</span>.99</span></p><p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\" data-mce-style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span data-mce-style=\"font-size: 14pt;\" style=\"font-size: 14pt;\">Monthly Plan</span><br></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">SIGN UP NOW</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n text-transform: uppercase;\r\n}\r\n#{{table.view_id}} * {\r\n line-height: 1.2em;\r\n}\r\n#{{table.view_id}} p,\r\n#{{table.view_id}} span \r\n{\r\n {% if table.params.font_family.val %}\r\n font-family: {{ table.params.font_family.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n padding: 0 5px;\r\n \r\n}\r\n#{{table.view_id}} span, #{{table.view_id}} p {\r\n word-break: break-word;\r\n}\r\n/*Bg Colors*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent {\r\n background-color: {{table.params.bg_color.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsColDesc,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsActBtn,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsRows .ptsCell:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, 20) }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, -20) }};\r\n}\r\n/*Desc Col*/\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell .ptsIcon {\r\n margin-right: 10px;\r\n}\r\n#{{table.view_id}} .ptsColHeader,\r\n#{{table.view_id}} .ptsColDesc,\r\n#{{table.view_id}} .ptsRows .ptsCell {\r\n padding: 10px;\r\n}\r\n#{{table.view_id}} .ptsColHeader {\r\n padding-bottom: 40px;\r\n}\r\n#{{table.view_id}} .ptsColFooter {\r\n padding: 20px 0 40px;\r\n text-align: center;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn {\r\n cursor: pointer;\r\n}\r\n#{{table.view_id}} .ptsRows .ptsTog {\r\n display: inline-block;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn .ptsEditArea {\r\n font-size: 22px;\r\n padding: 10px 15px;\r\n text-decoration: none !important;\r\n border: none !important;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n/*Animations*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsRows .ptsCell,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n -webkit-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n -moz-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n -ms-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n -o-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease, background 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader,\r\n#{{table.view_id}} .ptsCol .ptsColHeader *\r\n{\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc,\r\n#{{table.view_id}} .ptsCol .ptsColDesc *\r\n{\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows,\r\n#{{table.view_id}} .ptsCol .ptsRows *\r\n{\r\n color: {{table.params.text_color.val}};\r\n}\r\n/*start for col color 1*/\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent {\r\n background-color: rgb(231, 76, 60);\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent .ptsActBtn,\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent .ptsRows .ptsCell:hover {\r\n background-color: #fb6050;\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsTableElementContent .ptsActBtn:hover {\r\n background-color: #d33828;\r\n}\r\n/*end for col color 1*/\r\n/*start for col color 2*/\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent {\r\n background-color: rgb(155, 89, 182);\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent .ptsActBtn,\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent .ptsRows .ptsCell:hover {\r\n background-color: #af6dca;\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsTableElementContent .ptsActBtn:hover {\r\n background-color: #8745a2;\r\n}\r\n/*end for col color 2*/\r\n/*start for col color 3*/\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent {\r\n background-color: rgb(39, 174, 96);\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent .ptsActBtn,\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent .ptsRows .ptsCell:hover {\r\n background-color: #3bc274;\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsTableElementContent .ptsActBtn:hover {\r\n background-color: #139a4c;\r\n}\r\n/*end for col color 3*/','img' => 'flat-table.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-08-28 15:55:18','is_pro' => '0'),
150
+ 'Pwn8M1EB' => array('unique_id' => 'Pwn8M1EB','label' => 'Gradient Standard','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo3OiIjNDI0MjQyIjt9czoxMzoidHh0X2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNjQ6IjxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+PC9kaXY+Ijt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJpY29uX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoyMjg6IjxkaXYgZGF0YS1pY29uPVwiZmEtY29nXCIgZGF0YS1jb2xvcj1cInJnYigwLCAyMjAsIDIyMylcIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCI+PGkgY2xhc3M9XCJmYSBmYS0yeCBwdHNJbnB1dFNoZWxsIGZhLWNvZ1wiIHN0eWxlPVwiY29sb3I6IHJnYigwLCAyMjAsIDIyMyk7XCI+PC9pPjwvZGl2PiI7fXM6MTU6Im5ld19jb2x1bW5faHRtbCI7YToxOntzOjM6InZhbCI7czoyODQ3OiI8ZGl2IGNsYXNzPVwicHRzRWwgcHRzQ29sIHB0c0VsV2l0aEFyZWFcIiBkYXRhLWVsPVwidGFibGVfY29sXCIgZGF0YS1jb2xvcj1cIiM0MjQyNDJcIj4NCgk8ZGl2IGNsYXNzPVwicHRzVGFibGVFbGVtZW50Q29udGVudCBwdHNFbEFyZWFcIj4NCgkJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ29sSGVhZGVyIHB0c1RvZ2dsZVwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+PHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDI0cHQ7XCI+c3RhcnRlcjwvc3Bhbj48L3A+PC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNDb2xEZXNjIHB0c1RvZ2dsZVwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMzZwdDtcIj4kPC9zcGFuPjxzcGFuIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiA0OHB0OyBjb2xvcjogIzNiZDZmZjtcIiBzdHlsZT1cImZvbnQtc2l6ZTogNDhwdDsgY29sb3I6IHJnYig1OSwgMjE0LCAyNTUpO1wiPjEwPC9zcGFuPjwvcD48cD48c3BhbiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5wZXIgbW9udGg8YnIgZGF0YS1tY2UtYm9ndXM9XCIxXCI+PC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPjEwR0I8L3NwYW4+PC9wPg0KCQkJCQkJPC9kaXY+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPjEwMEdCPC9zcGFuPjwvcD4NCgkJCQkJCTwvZGl2Pg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xPC9zcGFuPjwvcD4NCgkJCQkJCTwvZGl2Pg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xPC9zcGFuPjwvcD4NCgkJCQkJCTwvZGl2Pg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWwgcHRzSWNvbiBwdHNFbElucHV0XCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGRhdGEtdHlwZT1cImljb25cIiBkYXRhLWNvbG9yPVwicmdiKDIxNCwgNzEsIDcxKVwiIGRhdGEtaWNvbj1cImZhLXRpbWVzXCI+DQoJCQkJCQkJPGkgc3R5bGU9XCJjb2xvcjogcmdiKDIxNCwgNzEsIDcxKVwiIGNsYXNzPVwiZmEgZmEtdGltZXMgZmEtMnggcHRzSW5wdXRTaGVsbFwiPjwvaT4NCgkJCQkJCTwvZGl2Pg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NvbEZvb3RlciBwdHNUb2dnbGVcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNBY3RCdG4gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJidG5cIiBkYXRhLWJnY29sb3ItdG89XCJib3JkZXJcIiBkYXRhLWJnY29sb3I9XCJ7eyBhZGpCcyh0YWJsZS5wYXJhbXMuYmdfY29sb3IudmFsLCA4NSkgfX1cIiBkYXRhLWN1c3RvbWhvdmVyLWNsYj1cIl9ob3ZlckNoYW5nZUJnQ29sb3JcIiBzdHlsZT1cImJvcmRlci1jb2xvcjoge3sgYWRqQnModGFibGUucGFyYW1zLmJnX2NvbG9yLnZhbCwgODUpIH19O1wiPg0KCQkJCQkJPGEgdGFyZ2V0PVwiX2JsYW5rXCIgaHJlZj1cImh0dHBzOi8vc3Vwc3lzdGljLmNvbS9cIiBjbGFzcz1cInB0c0VkaXRBcmVhIHB0c0lucHV0U2hlbGxcIj5zaWduIHVwITwvYT4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjEzOiJuZXdfY2VsbF9odG1sIjthOjE6e3M6MzoidmFsIjtzOjI0MjoiPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+WW91ciBUZXh0PC9zcGFuPjwvcD4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJjZWxsX2NvbG9yX2NzcyI7YToxOntzOjM6InZhbCI7czo1NjY3OiIje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDb2xIZWFkZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7IGFkakJzKGVsLmNvbG9yLCAtMTApIH19OyAvKiBiYWNrZ3JvdW5kIGNvbG9yIGZvciBub24tY3NzMyBicm93c2VycyAqLw0KCS8qIGdyYWRpZW50ICovDQoJYmFja2dyb3VuZC1pbWFnZTogbGluZWFyLWdyYWRpZW50KHRvcCwge3sgZWwuY29sb3IgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAtMjMpIH19KTsgLyogVzNDICovDQoJZmlsdGVyOiBwcm9naWQ6RFhJbWFnZVRyYW5zZm9ybS5NaWNyb3NvZnQuZ3JhZGllbnQoc3RhcnRDb2xvcnN0cj1cJ3t7IGVsLmNvbG9yIH19XCcsIGVuZENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIC0yMykgfX1cJyk7IC8qIElFNS41IC0gNyAqLw0KCS1tcy1maWx0ZXI6IHByb2dpZDpEWEltYWdlVHJhbnNmb3JtLk1pY3Jvc29mdC5ncmFkaWVudChzdGFydENvbG9yc3RyPVwne3sgZWwuY29sb3IgfX1cJywgZW5kQ29sb3JzdHI9XCd7eyBhZGpCcyhlbC5jb2xvciwgLTIzKSB9fVwnKTsgLyogSUU4ICovDQoJYmFja2dyb3VuZDogLW1zLWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGVsLmNvbG9yIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgLTIzKSB9fSk7IC8qIElFOSAqLw0KCWJhY2tncm91bmQ6IC1tb3otbGluZWFyLWdyYWRpZW50KHRvcCwge3sgZWwuY29sb3IgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAtMjMpIH19KTsgLyogRmlyZWZveCAqLyANCgliYWNrZ3JvdW5kOiAtby1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBlbC5jb2xvciB9fSwge3sgYWRqQnMoZWwuY29sb3IsIC0yMykgfX0pOyAvKiBPcGVyYSAxMSAgKi8NCgliYWNrZ3JvdW5kOiAtd2Via2l0LWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGVsLmNvbG9yIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgLTIzKSB9fSk7IC8qIENocm9tZSAxMSAgKi8NCgliYWNrZ3JvdW5kOiAtd2Via2l0LWdyYWRpZW50KGxpbmVhciwgbGVmdCB0b3AsIGxlZnQgYm90dG9tLCBjb2xvci1zdG9wKDAsIHt7IGVsLmNvbG9yIH19KSwgY29sb3Itc3RvcCgxLCB7eyBhZGpCcyhlbC5jb2xvciwgLTIzKSB9fSkpOyAvKiBDaHJvbWUgMTAsIFNhZmFyaSAqLw0KICAJY29sb3I6ICM4MDgwODA7DQogIA0KICAJYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHt7IGFkakJzKGVsLmNvbG9yLCAtNDApIH19Ow0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzQ29sRGVzYyB7DQoJYmFja2dyb3VuZC1jb2xvcjoge3sgYWRqQnMoZWwuY29sb3IsIC0xMCkgfX07IC8qIGJhY2tncm91bmQgY29sb3IgZm9yIG5vbi1jc3MzIGJyb3dzZXJzICovDQoJLyogZ3JhZGllbnQgKi8NCiAgYmFja2dyb3VuZC1pbWFnZTogbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIC0xNSkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAtNDApIH19KTsgLyogVzNDICovDQoJZmlsdGVyOiBwcm9naWQ6RFhJbWFnZVRyYW5zZm9ybS5NaWNyb3NvZnQuZ3JhZGllbnQoc3RhcnRDb2xvcnN0cj1cJ3t7IGFkakJzKGVsLmNvbG9yLCAtMTUpIH19XCcsIGVuZENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIC00MCkgfX1cJyk7IC8qIElFNS41IC0gNyAqLw0KCS1tcy1maWx0ZXI6IHByb2dpZDpEWEltYWdlVHJhbnNmb3JtLk1pY3Jvc29mdC5ncmFkaWVudChzdGFydENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIC0xNSkgfX1cJywgZW5kQ29sb3JzdHI9XCd7eyBhZGpCcyhlbC5jb2xvciwgLTQwKSB9fVwnKTsgLyogSUU4ICovDQoJYmFja2dyb3VuZDogLW1zLWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAtMTUpIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgLTQwKSB9fSk7IC8qIElFOSAqLw0KICBiYWNrZ3JvdW5kOiAtbW96LWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAtMTUpIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgLTQwKSB9fSk7IC8qIEZpcmVmb3ggKi8gDQoJYmFja2dyb3VuZDogLW8tbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIC0xNSkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAtNDApIH19KTsgLyogT3BlcmEgMTEgICovDQoJYmFja2dyb3VuZDogLXdlYmtpdC1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBhZGpCcyhlbC5jb2xvciwgLTE1KSB9fSwge3sgYWRqQnMoZWwuY29sb3IsIC00MCkgfX0pOyAvKiBDaHJvbWUgMTEgICovDQoJYmFja2dyb3VuZDogLXdlYmtpdC1ncmFkaWVudChsaW5lYXIsIGxlZnQgdG9wLCBsZWZ0IGJvdHRvbSwgY29sb3Itc3RvcCgwLCB7eyBhZGpCcyhlbC5jb2xvciwgLTE1KSB9fSksIGNvbG9yLXN0b3AoMSwge3sgYWRqQnMoZWwuY29sb3IsIC00MCkgfX0pKTsgLyogQ2hyb21lIDEwLCBTYWZhcmkgKi8NCiAgCWNvbG9yOiAjODA4MDgwOw0KICANCiAgCWJvcmRlci10b3A6IDFweCBzb2xpZCB7eyBhZGpCcyhlbC5jb2xvciwgNSkgfX07DQp9DQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDZWxsOm50aC1jaGlsZChvZGQpIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgMTY1KSB9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gLnB0c0NlbGw6bnRoLWNoaWxkKGV2ZW4pIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgMTk1KSB9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzQ29sOm50aC1jaGlsZChvZGQpIC5wdHNDZWxsOm50aC1jaGlsZChvZGQpIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgMTQ1KSB9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzQ29sOm50aC1jaGlsZChvZGQpIC5wdHNDZWxsOm50aC1jaGlsZChldmVuKSB7DQoJYmFja2dyb3VuZC1jb2xvcjoge3sgYWRqQnMoZWwuY29sb3IsIDE2NSkgfX07DQp9DQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDb2xGb290ZXIgew0KIAliYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgMTMwKSB9fTsgLyogYmFja2dyb3VuZCBjb2xvciBmb3Igbm9uLWNzczMgYnJvd3NlcnMgKi8NCgkvKiBncmFkaWVudCAqLw0KCWJhY2tncm91bmQtaW1hZ2U6IGxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAxNjApIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgMTAwKSB9fSk7IC8qIFczQyAqLw0KCWZpbHRlcjogcHJvZ2lkOkRYSW1hZ2VUcmFuc2Zvcm0uTWljcm9zb2Z0LmdyYWRpZW50KHN0YXJ0Q29sb3JzdHI9XCd7eyBhZGpCcyhlbC5jb2xvciwgMTYwKSB9fVwnLCBlbmRDb2xvcnN0cj1cJ3t7IGFkakJzKGVsLmNvbG9yLCAxMDApIH19XCcpOyAvKiBJRTUuNSAtIDcgKi8NCgktbXMtZmlsdGVyOiBwcm9naWQ6RFhJbWFnZVRyYW5zZm9ybS5NaWNyb3NvZnQuZ3JhZGllbnQoc3RhcnRDb2xvcnN0cj1cJ3t7IGFkakJzKGVsLmNvbG9yLCAxNjApIH19XCcsIGVuZENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIDEwMCkgfX1cJyk7IC8qIElFOCAqLw0KCWJhY2tncm91bmQ6IC1tcy1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBhZGpCcyhlbC5jb2xvciwgMTYwKSB9fSwge3sgYWRqQnMoZWwuY29sb3IsIDEwMCkgfX0pOyAvKiBJRTkgKi8NCgliYWNrZ3JvdW5kOiAtbW96LWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAxNjApIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgMTAwKSB9fSk7IC8qIEZpcmVmb3ggKi8gDQoJYmFja2dyb3VuZDogLW8tbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIDE2MCkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCAxMDApIH19KTsgLyogT3BlcmEgMTEgICovDQoJYmFja2dyb3VuZDogLXdlYmtpdC1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBhZGpCcyhlbC5jb2xvciwgMTYwKSB9fSwge3sgYWRqQnMoZWwuY29sb3IsIDEwMCkgfX0pOyAvKiBDaHJvbWUgMTEgICovDQoJYmFja2dyb3VuZDogLXdlYmtpdC1ncmFkaWVudChsaW5lYXIsIGxlZnQgdG9wLCBsZWZ0IGJvdHRvbSwgY29sb3Itc3RvcCgwLCB7eyBhZGpCcyhlbC5jb2xvciwgMTYwKSB9fSksIGNvbG9yLXN0b3AoMSwge3sgYWRqQnMoZWwuY29sb3IsIDEwMCkgfX0pKTsgLyogQ2hyb21lIDEwLCBTYWZhcmkgKi8NCiAgDQoJYm9yZGVyLXRvcDogMXB4IHNvbGlkIHt7IGFkakJzKGVsLmNvbG9yLCAxNDUpIH19Ow0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAgLnB0c0FjdEJ0bjpob3ZlciB7DQoJIGJhY2tncm91bmQtY29sb3I6IHt7IGFkakJzKGVsLmNvbG9yLCAxMTApIH19OyAvKiBiYWNrZ3JvdW5kIGNvbG9yIGZvciBub24tY3NzMyBicm93c2VycyAqLw0KCS8qIGdyYWRpZW50ICovDQoJYmFja2dyb3VuZC1pbWFnZTogbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIDE0MCkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCA4MCkgfX0pOyAvKiBXM0MgKi8NCglmaWx0ZXI6IHByb2dpZDpEWEltYWdlVHJhbnNmb3JtLk1pY3Jvc29mdC5ncmFkaWVudChzdGFydENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIDE0MCkgfX1cJywgZW5kQ29sb3JzdHI9XCd7eyBhZGpCcyhlbC5jb2xvciwgODApIH19XCcpOyAvKiBJRTUuNSAtIDcgKi8NCgktbXMtZmlsdGVyOiBwcm9naWQ6RFhJbWFnZVRyYW5zZm9ybS5NaWNyb3NvZnQuZ3JhZGllbnQoc3RhcnRDb2xvcnN0cj1cJ3t7IGFkakJzKGVsLmNvbG9yLCAxNDApIH19XCcsIGVuZENvbG9yc3RyPVwne3sgYWRqQnMoZWwuY29sb3IsIDgwKSB9fVwnKTsgLyogSUU4ICovDQoJYmFja2dyb3VuZDogLW1zLWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAxNDApIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgODApIH19KTsgLyogSUU5ICovDQoJYmFja2dyb3VuZDogLW1vei1saW5lYXItZ3JhZGllbnQodG9wLCB7eyBhZGpCcyhlbC5jb2xvciwgMTQwKSB9fSwge3sgYWRqQnMoZWwuY29sb3IsIDgwKSB9fSk7IC8qIEZpcmVmb3ggKi8gDQoJYmFja2dyb3VuZDogLW8tbGluZWFyLWdyYWRpZW50KHRvcCwge3sgYWRqQnMoZWwuY29sb3IsIDE0MCkgfX0sIHt7IGFkakJzKGVsLmNvbG9yLCA4MCkgfX0pOyAvKiBPcGVyYSAxMSAgKi8NCgliYWNrZ3JvdW5kOiAtd2Via2l0LWxpbmVhci1ncmFkaWVudCh0b3AsIHt7IGFkakJzKGVsLmNvbG9yLCAxNDApIH19LCB7eyBhZGpCcyhlbC5jb2xvciwgODApIH19KTsgLyogQ2hyb21lIDExICAqLw0KCWJhY2tncm91bmQ6IC13ZWJraXQtZ3JhZGllbnQobGluZWFyLCBsZWZ0IHRvcCwgbGVmdCBib3R0b20sIGNvbG9yLXN0b3AoMCwge3sgYWRqQnMoZWwuY29sb3IsIDE0MCkgfX0pLCBjb2xvci1zdG9wKDEsIHt7IGFkakJzKGVsLmNvbG9yLCA4MCkgfX0pKTsgLyogQ2hyb21lIDEwLCBTYWZhcmkgKi8NCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gLnB0c0FjdEJ0biB7DQoJZGlzcGxheTogaW5saW5lLWJsb2NrOw0KICAJcGFkZGluZzogNHB4IDIwcHg7DQogIAlib3JkZXI6IDFweCBzb2xpZCB7eyBhZGpCcyhlbC5jb2xvciwgODUpIH19Ow0KICAJd2lkdGg6IDgwJTsNCiAgCWJvcmRlci1yYWRpdXM6IDNweDsNCn0iO31zOjEyOiJlbmJfZGVzY19jb2wiO2E6MTp7czozOiJ2YWwiO3M6MToiMSI7fXM6OToiY29sX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjM6IjE4NiI7fXM6ODoiY29sc19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiNCI7fXM6ODoicm93c19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiNSI7fXM6MTA6ImNhbGNfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6NToidGFibGUiO31zOjExOiJ0YWJsZV93aWR0aCI7YToxOntzOjM6InZhbCI7czozOiIxMDAiO31zOjE5OiJ0YWJsZV93aWR0aF9tZWFzdXJlIjthOjE6e3M6MzoidmFsIjtzOjE6IiUiO31zOjE5OiJlbmJfaG92ZXJfYW5pbWF0aW9uIjthOjE6e3M6MzoidmFsIjtzOjE6IjEiO31zOjExOiJmb250X2ZhbWlseSI7YToxOntzOjM6InZhbCI7czo3OiJSYWxld2F5Ijt9czoxMDoidGV4dF9jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjMDAwIjt9czoxNzoidGV4dF9jb2xvcl9oZWFkZXIiO2E6MTp7czozOiJ2YWwiO3M6NzoiIzgwODA4MCI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo3OiIjODA4MDgwIjt9fQ==','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsTableDescCol ptsElWithArea\" data-el=\"table_col_desc\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\" style=\"height: 69px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p></p></div>\r\n </div>\r\n <div class=\"ptsColDesc\" style=\"height: 141px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">choose <span style=\"color: rgb(59, 214, 255);\" data-mce-style=\"color: #853a3a;\">your</span> plan</span></p></div>\r\n </div>\r\n <div class=\"ptsRows\" style=\"height: 224px;\">\r\n <div class=\"ptsCell\" style=\"height: 39px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Amount of space</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\" style=\"height: 39px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Bandwidth per month</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\" style=\"height: 39px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">E-mail accounts</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\" style=\"height: 39px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">MySql databases</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\" style=\"height: 49px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">24h support</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\" style=\"height: 51px;\"></div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-el=\"table_col\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">starter</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"\" style=\"\"><span style=\"font-size: 48pt;\">$</span><span data-mce-style=\"font-size: 48pt; color: #3bd6ff;\" style=\"font-size: 48pt; color: rgb(59, 214, 255);\">10</span></span></p><p><span data-mce-style=\"font-size: 12pt; \" style=\"font-size: 12pt; \">per month<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">10GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">100GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">1</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">1</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl ptsIcon ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(214, 71, 71)\" data-icon=\"fa-times\">\r\n <i style=\"color: rgb(214, 71, 71)\" class=\"fa fa-times fa-2x ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-elements=\".ptsEditArea\" data-bgcolor=\"#444\" data-bgcolor-to=\"txt\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #444;\">sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-el=\"table_col\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">econom</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"\" style=\"\"><span style=\"font-size: 48pt;\">$</span><span data-mce-style=\"font-size: 48pt; color: #3bd6ff;\" style=\"font-size: 48pt; color: rgb(59, 214, 255);\">30</span></span></p><p><span data-mce-style=\"font-size: 12pt; \" style=\"font-size: 12pt; \">per month<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">30GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">300GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">3</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">3</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl ptsIcon ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(86, 166, 0)\" data-icon=\"fa-check\">\r\n <i style=\"color: rgb(86, 166, 0)\" class=\"fa fa-check fa-2x ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-elements=\".ptsEditArea\" data-bgcolor=\"#444\" data-bgcolor-to=\"txt\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #444;\">sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-el=\"table_col\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">standard</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"\" style=\"\"><span style=\"font-size: 48pt;\">$</span><span data-mce-style=\"font-size: 48pt; color: #3bd6ff;\" style=\"font-size: 48pt; color: rgb(59, 214, 255);\">59</span></span></p><p><span data-mce-style=\"font-size: 12pt; \" style=\"font-size: 12pt; \">per month<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">100GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">500GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">5</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">5</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl ptsIcon ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(86, 166, 0)\" data-icon=\"fa-check\">\r\n <i style=\"color: rgb(86, 166, 0)\" class=\"fa fa-check fa-2x ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-elements=\".ptsEditArea\" data-bgcolor=\"#444\" data-bgcolor-to=\"txt\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #444;\">sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-4 ptsElWithArea\" data-el=\"table_col\" data-color=\"#424242\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">pro</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"\" style=\"\"><span style=\"font-size: 48pt;\">$</span><span data-mce-style=\"font-size: 48pt; color: #3bd6ff;\" style=\"font-size: 48pt; color: rgb(59, 214, 255);\">99</span></span></p><p><span data-mce-style=\"font-size: 12pt; \" style=\"font-size: 12pt; \">per month<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">1000GB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\" font-size: 12pt;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl ptsIcon ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"rgb(86, 166, 0)\" data-icon=\"fa-check\">\r\n <i style=\"color: rgb(86, 166, 0)\" class=\"fa fa-check fa-2x ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-elements=\".ptsEditArea\" data-bgcolor=\"#444\" data-bgcolor-to=\"txt\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #444;\">sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n transition: box-shadow 0.25 ease 0;\r\n}\r\n#{{table.view_id}} .ptsColHeader,\r\n#{{table.view_id}} .ptsColDesc {\r\n padding: 10px;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell,\r\n#{{table.view_id}} .ptsColFooter {\r\n padding: 10px 0;\r\n}\r\n#{{table.view_id}} .ptsColHeader {\r\n background-color: {{ adjBs(table.params.bg_color.val, -10) }}; /* background color for non-css3 browsers */\r\n /* gradient */\r\n background-image: linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ table.params.bg_color.val }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -23) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ table.params.bg_color.val }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -23) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ table.params.bg_color.val }}, {{ adjBs(table.params.bg_color.val, -23) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ table.params.bg_color.val }}), color-stop(1, {{ adjBs(table.params.bg_color.val, -23) }})); /* Chrome 10, Safari */\r\n \r\n border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -40) }};\r\n}\r\n#{{table.view_id}} .ptsColDesc {\r\n background-color: {{ adjBs(table.params.bg_color.val, -10) }}; /* background color for non-css3 browsers */\r\n /* gradient */\r\n background-image: linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, -15) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -40) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, -15) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -40) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -15) }}, {{ adjBs(table.params.bg_color.val, -40) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ adjBs(table.params.bg_color.val, -15) }}), color-stop(1, {{ adjBs(table.params.bg_color.val, -40) }})); /* Chrome 10, Safari */\r\n \r\n border-top: 1px solid {{ adjBs(table.params.bg_color.val, 5) }};\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell:nth-child(odd) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 165) }};\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell:nth-child(even) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 195) }};\r\n}\r\n#{{table.view_id}} .ptsCol:nth-child(odd) .ptsRows .ptsCell:nth-child(odd) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 145) }};\r\n}\r\n#{{table.view_id}} .ptsCol:nth-child(odd) .ptsRows .ptsCell:nth-child(even) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 165) }};\r\n}\r\n#{{table.view_id}} .ptsColFooter {\r\n background-color: {{ adjBs(table.params.bg_color.val, 130) }}; /* background color for non-css3 browsers */\r\n /* gradient */\r\n background-image: linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, 160) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, 100) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, 160) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, 100) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 160) }}, {{ adjBs(table.params.bg_color.val, 100) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ adjBs(table.params.bg_color.val, 160) }}), color-stop(1, {{ adjBs(table.params.bg_color.val, 100) }})); /* Chrome 10, Safari */\r\n \r\n border-top: 1px solid {{ adjBs(table.params.bg_color.val, 145) }};\r\n}\r\n#{{table.view_id}} .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, 110) }}; /* background color for non-css3 browsers */\r\n /* gradient */\r\n background-image: linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, 140) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, 80) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, 140) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, 80) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ adjBs(table.params.bg_color.val, 140) }}, {{ adjBs(table.params.bg_color.val, 80) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ adjBs(table.params.bg_color.val, 140) }}), color-stop(1, {{ adjBs(table.params.bg_color.val, 80) }})); /* Chrome 10, Safari */\r\n}\r\n#{{table.view_id}} .ptsActBtn {\r\n display: inline-block;\r\n padding: 4px 20px;\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, 85) }};\r\n width: 80%;\r\n border-radius: 3px;\r\n}\r\n\r\n#{{table.view_id}} .ptsActBtn .ptsEditArea {\r\n color: #444;\r\n font-size: 10pt; \r\n font-weight: bold;\r\n text-decoration: none !important;\r\n border: none !important;\r\n width: 100%;\r\n}\r\n#{{table.view_id}} .ptsCol:first-of-type .ptsColHeader {\r\n border-top-left-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol:last-of-type .ptsColHeader {\r\n border-top-right-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol:first-of-type .ptsColFooter {\r\n border-bottom-left-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol:last-of-type .ptsColFooter {\r\n border-bottom-right-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsColFooter a {\r\n color: #444444;\r\n text-decoration: none !important;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -webkit-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -moz-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -ms-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -o-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColHeader {\r\n border-top-left-radius: 5px;\r\n border-top-right-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColFooter {\r\n border-bottom-left-radius: 5px;\r\n border-bottom-right-radius: 5px;\r\n}\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}\r\n','img' => 'gradient-standard.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-08-15 19:02:30','is_pro' => '0'),
151
  '630WlOre' => array('unique_id' => '630WlOre','label' => 'Okul','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjMzMzIjt9czoxNDoiY2VsbF9jb2xvcl9jc3MiO2E6MTp7czozOiJ2YWwiO3M6OTE0OiIje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19IC5wdHNDb2xIZWFkZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7IGFkakJzKGVsLmNvbG9yLCAtNTApIH19OyAvKiBiYWNrZ3JvdW5kIGNvbG9yIGZvciBub24tY3NzMyBicm93c2VycyAqLw0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzQ29sRGVzYyB7DQoJYmFja2dyb3VuZC1jb2xvcjoge3sgZWwuY29sb3IgfX07IC8qIGJhY2tncm91bmQgY29sb3IgZm9yIG5vbi1jc3MzIGJyb3dzZXJzICovDQp9DQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19ICAucHRzQWN0QnRuIHsNCgkgYmFja2dyb3VuZC1jb2xvcjoge3sgYWRqQnMoZWwuY29sb3IsIDIwKSB9fTsgLyogYmFja2dyb3VuZCBjb2xvciBmb3Igbm9uLWNzczMgYnJvd3NlcnMgKi8NCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gIC5wdHNBY3RCdG46aG92ZXIgew0KCSBiYWNrZ3JvdW5kLWNvbG9yOiB7eyBhZGpCcyhlbC5jb2xvciwgNTApIH19OyAvKiBiYWNrZ3JvdW5kIGNvbG9yIGZvciBub24tY3NzMyBicm93c2VycyAqLw0KfQ0KI3t7dGFibGUudmlld19pZH19IC5wdHNDb2wte3tlbC5udW19fSAucHRzQWN0QnRuIHsNCiAgCWJvcmRlcjogMXB4IHNvbGlkIHt7IGFkakJzKGVsLmNvbG9yLCA4NSkgfX07DQp9DQoNCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzVGFibGVEZXNjQ29sICAucHRzQ29sSGVhZGVyIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7eyBlbC5jb2xvciB9fTsNCn0NCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzVGFibGVEZXNjQ29sIC5wdHNDb2xEZXNjew0KCWJhY2tncm91bmQtY29sb3I6IHt7IGVsLmNvbG9yIH19Ow0KfSI7fXM6MTI6ImVuYl9kZXNjX2NvbCI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czo4OiJyb3dzX251bSI7YToxOntzOjM6InZhbCI7czoxOiI4Ijt9czo4OiJjb2xzX251bSI7YToxOntzOjM6InZhbCI7czoxOiIzIjt9czoxMDoidGV4dF9jb2xvciI7YToxOntzOjM6InZhbCI7czo3OiIjZDBkMGQwIjt9czoxNzoidGV4dF9jb2xvcl9oZWFkZXIiO2E6MTp7czozOiJ2YWwiO3M6NDoiI2ZmZiI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9czoxMToiZm9udF9mYW1pbHkiO2E6MTp7czozOiJ2YWwiO3M6OToiT3BlbiBTYW5zIjt9czo5OiJjb2xfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTg2Ijt9czoxMDoiY2FsY193aWR0aCI7YToxOntzOjM6InZhbCI7czo1OiJ0YWJsZSI7fXM6MTE6InRhYmxlX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjM6IjEwMCI7fXM6MTk6InRhYmxlX3dpZHRoX21lYXN1cmUiO2E6MTp7czozOiJ2YWwiO3M6MToiJSI7fXM6MTk6ImVuYl9ob3Zlcl9hbmltYXRpb24iO2E6MTp7czozOiJ2YWwiO3M6MToiMSI7fXM6MTM6InR4dF9pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MTY0OiI8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj48cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5Zb3VyIFRleHQ8L3NwYW4+PC9wPjwvZGl2PiI7fXM6MTM6ImltZ19pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MTc4OiI8ZGl2IGNsYXNzPVwicHRzRWwgcHRzRWxJbWcgcHRzRWxXaXRoQXJlYVwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ltZ1wiIGRhdGEtdHlwZT1cImltZ1wiPg0KCTxkaXYgY2xhc3M9XCJwdHNFbEFyZWFcIj48aW1nIHNyYz1cIltQVFNfQVNTRVRTX1VSTF1pbWcvZXhhbXBsZS5qcGdcIiAvPjwvZGl2Pg0KPC9kaXY+Ijt9czoxNDoiaWNvbl9pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjI4OiI8ZGl2IGRhdGEtaWNvbj1cImZhLWNvZ1wiIGRhdGEtY29sb3I9XCJyZ2IoMCwgMjIwLCAyMjMpXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiPjxpIGNsYXNzPVwiZmEgZmEtMnggcHRzSW5wdXRTaGVsbCBmYS1jb2dcIiBzdHlsZT1cImNvbG9yOiByZ2IoMCwgMjIwLCAyMjMpO1wiPjwvaT48L2Rpdj4iO31zOjEzOiJuZXdfY2VsbF9odG1sIjthOjE6e3M6MzoidmFsIjtzOjI0MjoiPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+WW91ciB0ZXh0PC9zcGFuPjwvcD4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjE1OiJuZXdfY29sdW1uX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MzQwMzoiPGRpdiBjbGFzcz1cInB0c0VsIHB0c0NvbCBwdHNDb2wtMyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1jb2xvcj1cInJnYigxOTUsIDUzLCAxNSlcIiBkYXRhLWVsPVwidGFibGVfY29sXCIgZGF0YS1lbmItY29sb3I9XCIxXCI+DQoJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xIZWFkZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxM3B4OyBcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTNweDsgY29sb3I6ICNmZmZmZmY7XCI+RU5URVJQUklTRTwvc3Bhbj48L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xEZXNjIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMjRwdDsgXCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDI0cHQ7IGNvbG9yOiAjZmZmZmZmO1wiPjY5OTwvc3Bhbj48L3A+DQoJCQkJCTxwPjxzcGFuIGRhdGEtbWNlLXN0eWxlPVwiY29sb3I6ICNmZmZmZmY7XCI+T25lIFRpbWUgUGF5bWVudDwvc3Bhbj48L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+NTAgVEI8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+VW5saW1pdGVkPC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxM3B4O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxM3B4O1wiPlVubGltaXRlZDwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1jb2xvcj1cIiNkMGQwZDBcIiBkYXRhLWljb249XCJmYS1jaGVja1wiPg0KCQkJCQkJPGkgY2xhc3M9XCJmYSBmYS1jaGVjayBwdHNJbnB1dFNoZWxsXCI+PC9pPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+VW5saW1pdGVkPC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNDZWxsXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGRhdGEtdHlwZT1cImljb25cIiBkYXRhLWNvbG9yPVwiI2QwZDBkMFwiIGRhdGEtaWNvbj1cImZhLWNoZWNrXCI+DQoJCQkJCQk8aSBjbGFzcz1cImZhIGZhLWNoZWNrIHB0c0lucHV0U2hlbGxcIj48L2k+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTNweDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTNweDtcIj5VbmxpbWl0ZWQ8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEzcHg7XCI+VW5saW1pdGVkPC9zcGFuPjwvcD4NCgkJCQkJPC9kaXY+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xGb290ZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0FjdEJ0biBwdHNFbCBwdHNFbElucHV0XCIgZGF0YS1lbD1cImJ0blwiIGRhdGEtYmdjb2xvci10bz1cInR4dFwiIGRhdGEtYmdjb2xvcj1cIiNmZmZcIiBkYXRhLWJnY29sb3ItZWxlbWVudHM9XCIucHRzRWRpdEFyZWFcIj4NCgkJCQkJPGEgdGFyZ2V0PVwiX2JsYW5rXCIgaHJlZj1cImh0dHBzOi8vc3Vwc3lzdGljLmNvbS9cIiBjbGFzcz1cInB0c0VkaXRBcmVhIHB0c0lucHV0U2hlbGxcIj5TaWduIHVwITwvYT4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgk8L2Rpdj4NCjwvZGl2PiI7fX0=','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsTableDescCol ptsElWithArea\" data-el=\"table_col_desc\" data-color=\"#fff\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\" style=\"height: 69px;\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p></p></div>\r\n </div>\r\n <div class=\"ptsColDesc\" style=\"height: 141px; color: #626262;\">\r\n <div class=\"ptsEl mce-content-body\" data-el=\"table_cell_txt\" data-type=\"txt\" id=\"ptsTxt_94548\" contenteditable=\"true\" spellcheck=\"false\">\r\n <p><span style=\"font-size: 46px; line-height: 56.626px; text-transform: none;\">Features</span></p>\r\n <p>COMPARE PACKAGE FEATURES</p>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\" style=\"height: 224px;\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Storage Space</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Email Accounts</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Monthly Bandwidth</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Control Panel</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Databases</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Analytics</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Domains</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Users</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\" style=\"height: 51px; display: none;\"></div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-color=\"rgb(241, 147, 0)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px; \" data-mce-style=\"font-size: 13px; color: #ffffff;\">Developer</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt; \" data-mce-style=\"font-size: 24pt; color: #ffffff;\">$99</span></p>\r\n <p><span data-mce-style=\"color: #ffffff;\">Payable Every Month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">500 MB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">100</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">5000 MB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">10</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">10</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">100</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-color=\"rgb(224, 100, 0)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px; \" data-mce-style=\"font-size: 13px; color: #ffffff;\">PREMIUM</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt; \" data-mce-style=\"font-size: 24pt; color: #ffffff;\">$399</span></p>\r\n <p><span data-mce-style=\"color: #ffffff;\">Payable Every Year</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">10 TB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">100</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">50</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">500</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-color=\"rgb(195, 53, 15)\" data-el=\"table_col\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px; \" data-mce-style=\"font-size: 13px; color: #ffffff;\">ENTERPRISE</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 24pt; \" data-mce-style=\"font-size: 24pt; color: #ffffff;\">$699</span></p>\r\n <p><span data-mce-style=\"color: #ffffff;\">One Time Payment</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">50 TB</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsIcon ptsEl ptsElInput\" data-el=\"table_cell_icon\" data-type=\"icon\" data-color=\"#d0d0d0\" data-icon=\"fa-check\">\r\n <i class=\"fa fa-check ptsInputShell\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 13px;\" data-mce-style=\"font-size: 13px;\">Unlimited</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"txt\" data-bgcolor=\"#fff\" data-bgcolor-elements=\".ptsEditArea\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Sign up!</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n text-transform: uppercase;\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n transition: box-shadow 0.25 ease 0;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell{\r\n padding: 12px;\r\n text-transform: none;\r\n \r\n border: 1px solid {{ adjBs(table.params.bg_color.val, 17) }};\r\n border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -34) }};\r\n border-right: 1px solid {{ adjBs(table.params.bg_color.val, -34) }};\r\n box-shadow: 0 1px 2px rgba(0,0,0,0.15);\r\n text-shadow: 0 -1px rgba(0,0,0,0.6);\r\n}\r\n#{{table.view_id}} .ptsColHeader {\r\n padding: 15px;\r\n}\r\n#{{table.view_id}} .ptsColDesc {\r\n padding: 30px 15px;\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell:nth-child(odd) {\r\n background-color: {{ adjBs(table.params.bg_color.val, 0) }};\r\n}\r\n#{{table.view_id}} .ptsRows .ptsCell:nth-child(even) {\r\n background-color: {{ adjBs(table.params.bg_color.val, -12) }};\r\n}\r\n#{{table.view_id}} .ptsColFooter {\r\n background-color: {{ adjBs(table.params.bg_color.val, -23) }};\r\n padding: 20px;\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -51) }};\r\n box-shadow: inset 0 1px {{ adjBs(table.params.bg_color.val, 2) }},inset 0 0 0 1px rgba(255,255,255,0.1);\r\n \r\n /* gradient */\r\n background-image: linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* W3C */\r\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, -23) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -44) }}\'); /* IE5.5 - 7 */\r\n -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'{{ adjBs(table.params.bg_color.val, -23) }}\', endColorstr=\'{{ adjBs(table.params.bg_color.val, -44) }}\'); /* IE8 */\r\n background: -ms-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* IE9 */\r\n background: -moz-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* Firefox */ \r\n background: -o-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* Opera 11 */\r\n background: -webkit-linear-gradient(top, {{ adjBs(table.params.bg_color.val, -23) }}, {{ adjBs(table.params.bg_color.val, -44) }}); /* Chrome 11 */\r\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0, {{ adjBs(table.params.bg_color.val, -23) }}), color-stop(1, {{ adjBs(table.params.bg_color.val, -44) }})); /* Chrome 10, Safari */\r\n}\r\n#{{table.view_id}} .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, 110) }}; /* background color for non-css3 browsers */\r\n}\r\n#{{table.view_id}} .ptsActBtn {\r\n height: 50px;\r\n padding: 0 2em;\r\n cursor: pointer;\r\n font-weight: 400;\r\n font-size: 1.4em;\r\n text-decoration: none;\r\n display: inline-block;\r\n padding: 4px 20px;\r\n width: 100%;\r\n border-radius: 3px;\r\n}\r\n\r\n#{{table.view_id}} .ptsActBtn .ptsEditArea {\r\n text-decoration: none !important;\r\n border: none !important;\r\n width: 100%;\r\n text-transform: none;\r\n line-height: 2em;\r\n color: #fff;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -webkit-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -moz-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -ms-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n -o-transition: box-shadow 0.3s ease, margin 0.3s ease, font 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColHeader {\r\n border-top-left-radius: 5px;\r\n border-top-right-radius: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColFooter {\r\n border-bottom-left-radius: 5px;\r\n border-bottom-right-radius: 5px;\r\n}\r\n\r\n/*start for desc col color */\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColHeader {\r\n background-color: #fff;\r\n}\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColDesc{\r\n background-color: #fff;\r\n}\r\n/*end for desc col color */\r\n\r\n/*start for col color 1*/\r\n#{{table.view_id}} .ptsCol-1 .ptsColHeader {\r\n background-color: #ed8000;\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-1 .ptsActBtn:hover {\r\n background-color: #f19300;\r\n}\r\n#{{table.view_id}} .ptsCol-1 .ptsActBtn {\r\n background-color: #ed8000;\r\n}\r\n/*end for col color 1*/\r\n\r\n/*start for col color 2*/\r\n#{{table.view_id}} .ptsCol-2 .ptsColHeader {\r\n background-color: #D85200;\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-2 .ptsActBtn:hover {\r\n background-color: #E06400;\r\n}\r\n#{{table.view_id}} .ptsCol-2 .ptsActBtn {\r\n background-color: #D85200;\r\n}\r\n/*end for col color 2*/\r\n\r\n/*start for col color 3*/\r\n#{{table.view_id}} .ptsCol-3 .ptsColHeader {\r\n background-color: #B5280B;\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsColDesc,\r\n#{{table.view_id}} .ptsCol-3 .ptsActBtn:hover {\r\n background-color: #C3350F;\r\n}\r\n#{{table.view_id}} .ptsCol-3 .ptsActBtn {\r\n background-color: #B5280B;\r\n}\r\n/*end for col color 3*/\r\n\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}\r\n','img' => 'okul.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-11-02 17:05:29','is_pro' => '0'),
152
  'nflGZoHy' => array('unique_id' => 'nflGZoHy','label' => 'Botein','original_id' => '0','params' => 'YToxOTp7czoxOToidGFibGVfd2lkdGhfbWVhc3VyZSI7YToxOntzOjM6InZhbCI7czoxOiIlIjt9czoxMDoiY2FsY193aWR0aCI7YToxOntzOjM6InZhbCI7czo1OiJ0YWJsZSI7fXM6MTE6InRhYmxlX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjM6IjEwMCI7fXM6OToiY29sX3dpZHRoIjthOjE6e3M6MzoidmFsIjtzOjM6IjE4NiI7fXM6ODoiY29sc19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiNCI7fXM6ODoicm93c19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiNCI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9czoxNDoiY2VsbF9jb2xvcl9jc3MiO2E6MTp7czozOiJ2YWwiO3M6OTU6IiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0gLnB0c0NvbERlc2MgLnB0c0VsIHsNCgliYWNrZ3JvdW5kLWNvbG9yOiB7e2VsLmNvbG9yfX07DQp9Ijt9czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9czoxNzoidGV4dF9jb2xvcl9oZWFkZXIiO2E6MTp7czozOiJ2YWwiO3M6NDoiIzMzMyI7fXM6MTA6InRleHRfY29sb3IiO2E6MTp7czozOiJ2YWwiO3M6NDoiIzMzMyI7fXM6MTI6ImVuYl9kZXNjX2NvbCI7YToxOntzOjM6InZhbCI7czoxOiIwIjt9czoxMToiZm9udF9mYW1pbHkiO2E6MTp7czozOiJ2YWwiO3M6OToiT3BlbiBTYW5zIjt9czoxOToiZW5iX2hvdmVyX2FuaW1hdGlvbiI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czoxMzoidHh0X2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNjQ6IjxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxMnB0O1wiPllvdXIgVGV4dDwvc3Bhbj48L3A+PC9kaXY+Ijt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjE0OiJpY29uX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoyMjg6IjxkaXYgZGF0YS1pY29uPVwiZmEtY29nXCIgZGF0YS1jb2xvcj1cInJnYigwLCAyMjAsIDIyMylcIiBkYXRhLXR5cGU9XCJpY29uXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaWNvblwiIGNsYXNzPVwicHRzSWNvbiBwdHNFbCBwdHNFbElucHV0XCI+PGkgY2xhc3M9XCJmYSBmYS0yeCBwdHNJbnB1dFNoZWxsIGZhLWNvZ1wiIHN0eWxlPVwiY29sb3I6IHJnYigwLCAyMjAsIDIyMyk7XCI+PC9pPjwvZGl2PiI7fXM6MTM6Im5ld19jZWxsX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjQzOiI8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQk8cD48c3BhbiBzdHlsZT1cIiBmb250LXNpemU6IDE4cHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDE4cHQ7XCI+WW91ciB0ZXh0PC9zcGFuPjwvcD4NCgkJPC9kaXY+DQoJPC9kaXY+DQo8L2Rpdj4iO31zOjE1OiJuZXdfY29sdW1uX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MTc1NToiPGRpdiBjbGFzcz1cInB0c0VsIHB0c0NvbCBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NvbFwiIGRhdGEtY29sb3I9XCIjZmZmXCIgZGF0YS1lbmItY29sb3I9XCIxXCI+DQoJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xIZWFkZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+PHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDI0cHQ7XCI+UGxhbjwvc3Bhbj48L3A+PC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xEZXNjIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQk8cD48c3BhbiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogNDhwdDsgY29sb3I6ICMzMzM7XCIgc3R5bGU9XCJmb250LXNpemU6IDQ4cHQ7IGNvbG9yOiAjMzMzO1wiPjEwMDwvc3Bhbj48L3A+PHA+PHNwYW4gZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7IGNvbG9yOiAjMzMzO1wiIHN0eWxlPVwiZm9udC1zaXplOiAxMnB0OyBjb2xvcjogIzMzMztcIj5taW51dGVzPGJyIGRhdGEtbWNlLWJvZ3VzPVwiMVwiPjwvc3Bhbj48L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCIgZm9udC1zaXplOiAxOHB0O1wiIGRhdGEtbWNlLXN0eWxlPVwiZm9udC1zaXplOiAxOHB0O1wiPjEwICQvbW9udGg8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+CQkJCQ0KCQkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJCTxwPjxzcGFuIHN0eWxlPVwiIGZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5QcmljZSBmb3IgMiBob3VycyA1JDwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCQk8ZGl2IGNsYXNzPVwicHRzQ29sRm9vdGVyIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c1RvZ1wiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNBY3RCdG4gcHRzRWwgcHRzRWxJbnB1dFwiIGRhdGEtZWw9XCJidG5cIiAgZGF0YS1iZ2NvbG9yPVwiIzUyQzkzQlwiIGRhdGEtYmdjb2xvci10bz1cImJnXCI+DQoJCQkJCTxhIHRhcmdldD1cIl9ibGFua1wiIGhyZWY9XCJodHRwczovL3N1cHN5c3RpYy5jb20vXCIgY2xhc3M9XCJwdHNBZGRCZ0VsIHB0c0VkaXRBcmVhIHB0c0lucHV0U2hlbGxcIj5TdGFydCB3b3JrPC9hPg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCTwvZGl2Pg0KPC9kaXY+Ijt9fQ==','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsElWithArea ptsTableDescCol\" data-el=\"table_col\" data-color=\"#fff\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">PLAN</span></p></div>\r\n </div>\r\n <div class=\"ptsColDesc\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 23pt; color: #333;\" style=\"font-size: 23pt; color: #333;\">Number</span></p><p><span data-mce-style=\"font-size: 12pt; color: #333;\" style=\"font-size: 12pt; color: #333;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">Price</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" class=\"ptsEditArea ptsInputShell\" href=\"https://supsystic.com/\">Action</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-el=\"table_col\" data-color=\"#fff\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">BASE</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 48pt; color: #333;\" style=\"font-size: 48pt; color: #333;\">65</span></p><p><span data-mce-style=\"font-size: 12pt; color: #333;\" style=\"font-size: 12pt; color: #333;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">15 $/month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute 0.25$</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsAddBgEl ptsEditArea ptsInputShell\">Start work</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-el=\"table_col\" data-color=\"#00AED6\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">ECONOMY</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">140</span></p><p><span data-mce-style=\"font-size: 12pt;\" style=\"font-size: 12pt;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">30 $/month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute 0.20$</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Start work</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-el=\"table_col\" data-color=\"#008CB1\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">STANDART</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\">\r\n <p><span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">240</span></p><p><span data-mce-style=\"font-size: 12pt;\" style=\"font-size: 12pt;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">45 $/month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute 0.2$</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Start work</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-4 ptsElWithArea\" data-el=\"table_col\" data-color=\"#006380\" data-enb-color=\"1\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 24pt;\">PREMIUM</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\">\r\n <p><span data-mce-style=\"font-size: 48pt;\" style=\"font-size: 48pt;\">380</span></p><p><span data-mce-style=\"font\" style=\"font-size: 12pt;\">minutes<br data-mce-bogus=\"1\"></span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\">75 $/month</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\" font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Price for 1 minute 0.2$</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColFooter ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor=\"#52C93B\" data-bgcolor-to=\"bg\" style=\"background-color: #52C93B\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\">Start work</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} span, #{{table.view_id}} p {\r\n word-break: break-word;\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -40) }};\r\n}\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColFooter {\r\n visibility: hidden;\r\n}\r\n#{{table.view_id}} .ptsTableElementContent {\r\n padding-bottom: 15px;\r\n}\r\n{% if (table.params.cols_num.val > 1) %}\r\n#{{table.view_id}} .ptsCol:not(:last-child) {\r\n border-right: none;\r\n}\r\n{% endif %}\r\n#{{table.view_id}} .ptsColDesc {\r\n text-align: center;\r\n}\r\n#{{table.view_id}}.ptsBlockMobile .ptsCol {\r\n border-right: 1px solid {{ adjBs(table.params.bg_color.val, -40) }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent .ptsRows {\r\n background-color: {{ table.params.bg_color.val }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell {\r\n padding: 12px;\r\n border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n border-top: 1px solid {{ adjBs(table.params.bg_color.val, -20) }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell:last-of-type {\r\n border-bottom: none;\r\n}\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn {\r\n width: 100%;\r\n border-radius: 3px;\r\n cursor: pointer;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn .ptsEditArea {\r\n font-size: 1.4em;\r\n width: 100%;\r\n padding: 10px 0;\r\n text-decoration: none !important;\r\n border: none !important;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsRows {\r\n border-top-width: 1px;\r\n border-bottom-width: 1px;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n/*Animations*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: all 0.3s ease;\r\n -webkit-transition: all 0.3s ease;\r\n -moz-transition: all 0.3s ease;\r\n -ms-transition: all 0.3s ease;\r\n -o-transition: all 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn:hover {\r\n background-color: {{ adjBs(table.params.bg_color.val, -35) }};\r\n}\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc .ptsEl {\r\n border-radius: 50%;\r\n border: 10px solid {{ table.params.bg_color.val }};\r\n padding: 15px 15px;\r\n box-sizing: content-box;\r\n z-index: 1;\r\n background-color: {{ table.params.bg_color.val }};\r\n width: {{table.params.col_width.val / 1.55}}px;\r\n height: {{table.params.col_width.val / 1.55}}px;\r\n position: relative;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsColDesc .ptsEl {\r\n width: {{table.params.col_width.val / 1.40}}px;\r\n height: {{table.params.col_width.val / 1.40}}px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n padding: 35px 0 10px 0;\r\n background-color: {{ adjBs(table.params.bg_color.val, -10) }};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n position: relative;\r\n padding: 5px 0 10px 0;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc:after {\r\n content: \'\';\r\n background-color: {{ adjBs(table.params.bg_color.val, -10) }};\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 50%;\r\n z-index: 0;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc .ptsEl p {\r\n line-height: 1;\r\n padding: 10px 0 0 0;\r\n margin: 0 0;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc .ptsEl p:first-child {\r\n margin-top: 5px;\r\n}\r\n#{{table.view_id}} .ptsCol-0 .ptsColDesc .ptsEl p:first-child {\r\n margin-top: 30px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter {\r\n padding: 15px 0 0 0;\r\n margin-top: 40px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter .ptsActBtn {\r\n width: auto;\r\n padding: 7px 12px;\r\n border-radius: 2px;\r\n cursor: pointer;\r\n transition: box-shadow .5s ease-out;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter .ptsActBtn:hover {\r\n box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter .ptsActBtn a {\r\n padding: 0;\r\n color: {{ table.params.bg_color.val }};\r\n font-size: 17px;\r\n text-decoration: blink;\r\n \r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell {\r\n padding: 1px 0;\r\n border: none;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc .ptsEl p:last-child {\r\n position: absolute;\r\n left: 0;\r\n right: 0;\r\n bottom: 0;\r\n height: 40%;\r\n}\r\n/** Default colum style **/\r\n/*start for col color 2*/\r\n#{{table.view_id}} .ptsCol-2 .ptsColDesc .ptsEl {\r\n background-color: #00AED6;\r\n}\r\n/*end for col color 2*/\r\n/*start for col color 3*/\r\n#{{table.view_id}} .ptsCol-3 .ptsColDesc .ptsEl {\r\n background-color: #008CB1;\r\n}\r\n/*end for col color 3*/\r\n/*start for col color 4*/\r\n#{{table.view_id}} .ptsCol-4 .ptsColDesc .ptsEl {\r\n background-color: #006380;\r\n}\r\n/*end for col color 4*/','img' => 'botein.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-11-03 08:45:18','is_pro' => '0'),
153
  'vpQwsfZU' => array('unique_id' => 'vpQwsfZU','label' => 'Becrux','original_id' => '0','params' => 'YToxOTp7czo4OiJiZ19jb2xvciI7YToxOntzOjM6InZhbCI7czo0OiIjZmZmIjt9czo4OiJjb2xzX251bSI7YToxOntzOjM6InZhbCI7czoxOiIzIjt9czoxOToidGFibGVfd2lkdGhfbWVhc3VyZSI7YToxOntzOjM6InZhbCI7czoxOiIlIjt9czoxNDoiaWNvbl9pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjI4OiI8ZGl2IGRhdGEtaWNvbj1cImZhLWNvZ1wiIGRhdGEtY29sb3I9XCJyZ2IoMCwgMjIwLCAyMjMpXCIgZGF0YS10eXBlPVwiaWNvblwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX2ljb25cIiBjbGFzcz1cInB0c0ljb24gcHRzRWwgcHRzRWxJbnB1dFwiPjxpIGNsYXNzPVwiZmEgZmEtMnggcHRzSW5wdXRTaGVsbCBmYS1jb2dcIiBzdHlsZT1cImNvbG9yOiByZ2IoMCwgMjIwLCAyMjMpO1wiPjwvaT48L2Rpdj4iO31zOjEwOiJ0ZXh0X2NvbG9yIjthOjE6e3M6MzoidmFsIjtzOjc6IiM1MDUwNTAiO31zOjE0OiJjZWxsX2NvbG9yX2NzcyI7YToxOntzOjM6InZhbCI7czo2MTg6IiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzQ29sIC5wdHNUYWJsZUVsZW1lbnRDb250ZW50IHsNCgltYXJnaW4tbGVmdDogNXB4Ow0KICAJYm9yZGVyOiBzb2xpZCAxcHgge3sgYWRqQnMoZWwuY29sb3IsIC0xMCkgfX07DQogICAgYm9yZGVyLWJvdHRvbTogc29saWQgMnB4IHt7IGFkakJzKGVsLmNvbG9yLCAtMTUpIH19Ow0KICAgIGJvcmRlci10b3Atd2lkdGg6IDJweDsNCiAgCWJhY2tncm91bmQtY29sb3I6IHt7IGVsLmNvbG9yIH19Ow0KDQp9DQoNCiN7e3RhYmxlLnZpZXdfaWR9fSAucHRzQ29sLXt7ZWwubnVtfX0ucHRzQ29sIC5wdHNDb2xGb290ZXIgew0KCXBhZGRpbmc6IDIwcHg7DQogIAlib3JkZXI6IDFweCBzb2xpZCB7eyBhZGpCcyhlbC5jb2xvciwgLTM1KSB9fTsNCiAgCWJhY2tncm91bmQtaW1hZ2U6IGxpbmVhci1ncmFkaWVudCh0byBib3R0b20sIHt7YWRqQnMoZWwuY29sb3IsIDIwKX19LCB7e2FkakJzKGVsLmNvbG9yLCAtMjApfX0pOw0KfQ0KDQoje3t0YWJsZS52aWV3X2lkfX0gLnB0c0NvbC17e2VsLm51bX19LnB0c0NvbCAucHRzQWN0QnQ6aG92ZXIgew0KCWJhY2tncm91bmQtY29sb3I6IHt7YWRqQnMoZWwuY29sb3IsIDIwKX19Ow0KfSI7fXM6ODoicm93c19udW0iO2E6MTp7czozOiJ2YWwiO3M6MToiOCI7fXM6MTk6ImVuYl9ob3Zlcl9hbmltYXRpb24iO2E6MTp7czozOiJ2YWwiO3M6MToiMCI7fXM6MTM6Im5ld19jZWxsX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MjQyOiI8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5Zb3VyIFRleHQ8L3NwYW4+PC9wPg0KCQk8L2Rpdj4NCgk8L2Rpdj4NCjwvZGl2PiI7fXM6MTI6ImVuYl9kZXNjX2NvbCI7YToxOntzOjM6InZhbCI7czoxOiIxIjt9czoxMDoiY2FsY193aWR0aCI7YToxOntzOjM6InZhbCI7czo1OiJ0YWJsZSI7fXM6MTM6InR4dF9pdGVtX2h0bWwiO2E6MTp7czozOiJ2YWwiO3M6MTY0OiI8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj48cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5Zb3VyIFRleHQ8L3NwYW4+PC9wPjwvZGl2PiI7fXM6MTU6Im5ld19jb2x1bW5faHRtbCI7YToxOntzOjM6InZhbCI7czoyNjc4OiI8ZGl2IGNsYXNzPVwicHRzRWwgcHRzQ29sIHB0c0VsV2l0aEFyZWFcIiBkYXRhLWNvbG9yPVwicmdiKDUxLCAxNTMsIDI1NSlcIiBkYXRhLWVsPVwidGFibGVfY29sXCIgZGF0YS1lbmItY29sb3I9XCIwXCI+DQoJPGRpdiBjbGFzcz1cInB0c1RhYmxlRWxlbWVudENvbnRlbnQgcHRzRWxBcmVhXCI+DQoJCTxkaXYgY2xhc3M9XCJwdHNDb2xIZWFkZXIgcHRzVG9nZ2xlXCI+DQoJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+PHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+U0lOR0xFIExJQ0VOU0U8L3NwYW4+PC9wPjwvZGl2Pg0KCQkJPC9kaXY+DQoJCTwvZGl2Pg0KCQk8ZGl2IGNsYXNzPVwicHRzQ29sRGVzYyBwdHNUb2dnbGVcIj4NCgkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzRWxcIiBkYXRhLWVsPVwidGFibGVfY2VsbF90eHRcIiBkYXRhLXR5cGU9XCJ0eHRcIj4NCgkJCQkJPHA+PHNwYW4gZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDM2cHQ7XCIgc3R5bGU9XCJmb250LXNpemU6IDM2cHQ7XCI+JDI5PC9zcGFuPjwvcD48cD5PTkUgVElNRSBGRUU8L3A+DQoJCQkJPC9kaXY+DQoJCQk8L2Rpdj4NCgkJPC9kaXY+DQoJCTxkaXYgY2xhc3M9XCJwdHNSb3dzIHB0c1RvZ2dsZVwiPg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+MTAgdXNlciBhY2NvdW50czwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj5GcmVlIDMwLWRheSB0cmlhbDwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4yMDAgcHJvamVjdHM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQkJPGRpdiBjbGFzcz1cInB0c0NlbGxcIj4NCgkJCQk8ZGl2IGNsYXNzPVwicHRzVG9nXCI+DQoJCQkJCTxkaXYgY2xhc3M9XCJwdHNFbFwiIGRhdGEtZWw9XCJ0YWJsZV9jZWxsX3R4dFwiIGRhdGEtdHlwZT1cInR4dFwiPg0KCQkJCQkJPHA+PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCIgZGF0YS1tY2Utc3R5bGU9XCJmb250LXNpemU6IDEycHQ7XCI+Tm8gZW5jcnlwdGlvbjwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMDAgTUIgU3RvcmFnZTwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMCBjdXN0b20gZG9tYWluczwvc3Bhbj48L3A+DQoJCQkJCTwvZGl2Pg0KCQkJCTwvZGl2Pg0KCQkJPC9kaXY+DQoJCQk8ZGl2IGNsYXNzPVwicHRzQ2VsbFwiPg0KCQkJCTxkaXYgY2xhc3M9XCJwdHNUb2dcIj4NCgkJCQkJPGRpdiBjbGFzcz1cInB0c0VsXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfdHh0XCIgZGF0YS10eXBlPVwidHh0XCI+DQoJCQkJCQk8cD48c3BhbiBzdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIiBkYXRhLW1jZS1zdHlsZT1cImZvbnQtc2l6ZTogMTJwdDtcIj4xMDAgc3ViIGRvbWFpbnM8L3NwYW4+PC9wPg0KCQkJCQk8L2Rpdj4NCgkJCQk8L2Rpdj4NCgkJCTwvZGl2Pg0KCQk8L2Rpdj4NCgk8L2Rpdj4NCjwvZGl2PiI7fXM6MTU6InRleHRfY29sb3JfZGVzYyI7YToxOntzOjM6InZhbCI7czo3OiIjNTA1MDU1Ijt9czo5OiJjb2xfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTg2Ijt9czoxMToidGFibGVfd2lkdGgiO2E6MTp7czozOiJ2YWwiO3M6MzoiMTAwIjt9czoxMzoiaW1nX2l0ZW1faHRtbCI7YToxOntzOjM6InZhbCI7czoxNzg6IjxkaXYgY2xhc3M9XCJwdHNFbCBwdHNFbEltZyBwdHNFbFdpdGhBcmVhXCIgZGF0YS1lbD1cInRhYmxlX2NlbGxfaW1nXCIgZGF0YS10eXBlPVwiaW1nXCI+DQoJPGRpdiBjbGFzcz1cInB0c0VsQXJlYVwiPjxpbWcgc3JjPVwiW1BUU19BU1NFVFNfVVJMXWltZy9leGFtcGxlLmpwZ1wiIC8+PC9kaXY+DQo8L2Rpdj4iO31zOjExOiJmb250X2ZhbWlseSI7YToxOntzOjM6InZhbCI7czo5OiJPcGVuIFNhbnMiO31zOjE3OiJ0ZXh0X2NvbG9yX2hlYWRlciI7YToxOntzOjM6InZhbCI7czo3OiIjMjdBRTYwIjt9fQ==','html' => '<div class=\"ptsContainer\">\r\n <div class=\"ptsColsWrapper\">\r\n {% if (table.params.enb_desc_col.val == 1 or isEditMode) %}\r\n <div class=\"ptsEl ptsCol ptsCol-0 ptsElWithArea ptsTableDescCol\" data-el=\"table_col_desc\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 18pt; font-weight: bold;\" data-mce-style=\"font-size: 18pt; font-weight: bold;\">Plan</span></p></div>\r\n </div>\r\n <div class=\"ptsColDesc\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 18pt;\" style=\"font-size: 18pt;\">(Price)</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows\">\r\n <div class=\"ptsCell\">\r\n\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Email Previews</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Builder</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Page Testing</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Interactive Testing</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Spam Filter Tests</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500,000 Tracking Opens</span></p>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"\">2 Users Free</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n <div class=\"ptsEl ptsCol ptsCol-1 ptsElWithArea\" data-el=\"table_col\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 18pt; font-weight: bold;\" data-mce-style=\"font-size: 18pt; font-weight: bold;\">Basic</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 18pt;\" style=\"font-size: 18pt;\">($79/mo)</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"bg\" data-bgcolor=\"#27AE60\" style=\"background-color: #27AE60;\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Start Free Trial</a>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Email Previews</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Builder</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Page Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Interactive Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Spam Filter Tests</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500,000 Tracking Opens</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"\">2 Users Free</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-2 ptsElWithArea\" data-el=\"table_col\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 18pt; font-weight: bold; color: #515E78;\" data-mce-style=\"font-size: 18pt; font-weight: bold; color: #515E78;\">Plus</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 18pt;\" style=\"font-size: 18pt;\">($149/mo)</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"bg\" data-bgcolor=\"#515E78\" style=\"background-color: #515E78;\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Start Free Trial</a>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Email Previews</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Builder</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Page Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Interactive Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Spam Filter Tests</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">500,000 Tracking Opens</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"\">2 Users Free</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsEl ptsCol ptsCol-3 ptsElWithArea\" data-el=\"table_col\">\r\n <div class=\"ptsTableElementContent ptsElArea\">\r\n <div class=\"ptsColHeader ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\"><p><span style=\"font-size: 18pt; font-weight: bold; color: #FB9B7A;\" data-mce-style=\"font-size: 18pt; font-weight: bold; color: #FB9B7A;\">Premium</span></p></div>\r\n </div>\r\n </div>\r\n <div class=\"ptsColDesc ptsToggle\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span data-mce-style=\"font-size: 18pt; color: #505055;\" style=\"font-size: 18pt;\">($399/mo)</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsRows ptsToggle\">\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsActBtn ptsEl ptsElInput\" data-el=\"btn\" data-bgcolor-to=\"bg\" data-bgcolor=\"#FB9B72\" style=\"background-color: #FB9B72;\">\r\n <a target=\"_blank\" href=\"https://supsystic.com/\" class=\"ptsEditArea ptsInputShell\" style=\"color: #fff;\">Start Free Trial</a>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Email Previews</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Builder</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Page Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Interactive Testing</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">Spam Filter Tests</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"font-size: 12pt;\">2 Million Tracking Opens</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"ptsCell\">\r\n <div class=\"ptsTog\">\r\n <div class=\"ptsEl\" data-el=\"table_cell_txt\" data-type=\"txt\">\r\n <p><span style=\"font-size: 12pt;\" data-mce-style=\"\">10 Users Free</span></p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div style=\"clear: both;\"></div>\r\n</div>','css' => '#{{table.view_id}} {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n width: {{ table.params.table_width.val }}{{ table.params.table_width_measure.val }};\r\n {% endif %}\r\n}\r\n#{{table.view_id}} .ptsCol {\r\n {% if table.params.calc_width.val == \'table\' %}\r\n {% if table.params.enb_desc_col.val and table.params.enb_desc_col.val != \"0\" %}\r\n width: {{ 100 / (table.params.cols_num.val + 1) }}%;\r\n {% else%}\r\n width: {{ 100 / table.params.cols_num.val }}%;\r\n {% endif %}\r\n {% else%}\r\n width: {{ table.params.col_width.val }}px;\r\n {% endif %}\r\n \r\n padding: 0px 2.5px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent {\r\n box-sizing: border-box;\r\n border: solid 1px {{ adjBs(table.params.bg_color.val, -10) }};\r\n border-bottom: solid 2px {{ adjBs(table.params.bg_color.val, -15) }};\r\n border-top-width: 2px;\r\n background-color: {{ table.params.bg_color.val }};\r\n\r\n}\r\n#{{table.view_id}} .ptsColHeader {\r\n padding: 15px;\r\n font-size: 24px;\r\n font-weight: bold;\r\n padding-top: 21px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n font-size: 24px;\r\n padding-top: 6px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n padding-top: 30px;\r\n padding-bottom: 16px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows .ptsCell {\r\n padding: 7px 12px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColFooter {\r\n padding: 20px;\r\n border: 1px solid {{ adjBs(table.params.bg_color.val, -35) }};\r\n background-image: linear-gradient(to bottom, {{adjBs(table.params.bg_color.val, 20)}}, {{adjBs(table.params.bg_color.val, -20)}});\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn {\r\n border-radius: 3px;\r\n cursor: pointer;\r\n margin-bottom: 17px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBt:hover {\r\n background-color: {{adjBs(table.params.bg_color.val, 20)}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn .ptsEditArea {\r\n width: 100%;\r\n padding: 6px 16px;\r\n text-decoration: none !important;\r\n border: none !important;\r\n}\r\n#{{table.view_id}} .ptsTableDescCol {\r\n {% if table.params.enb_desc_col.val == 0 %}\r\n display: none;\r\n {% endif %}\r\n}\r\n\r\n\r\n#{{table.view_id}} .ptsCol.ptsTableDescCol .ptsColFooter {\r\n visibility: hidden;\r\n}\r\n#{{table.view_id}} p {\r\n margin: 0;\r\n}\r\n/*Animations*/\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent,\r\n#{{table.view_id}} .ptsCol .ptsTableElementContent span {\r\n transition: all 0.3s ease;\r\n -webkit-transition: all 0.3s ease;\r\n -moz-transition: all 0.3s ease;\r\n -ms-transition: all 0.3s ease;\r\n -o-transition: all 0.3s ease;\r\n}\r\n#{{table.view_id}} .ptsCol.hover .ptsTableElementContent {\r\n z-index: 101;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\r\n margin-top: -20px;\r\n}\r\n#{{table.view_id}} .ptsCol .ptsActBtn a {\r\n font-size: 14px;\r\n}\r\n/*Colors set*/\r\n#{{table.view_id}} .ptsCol .ptsColHeader {\r\n color: {{table.params.text_color_header.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsColDesc {\r\n color: {{table.params.text_color_desc.val}};\r\n}\r\n#{{table.view_id}} .ptsCol .ptsRows {\r\n color: {{table.params.text_color.val}};\r\n}','img' => 'becrux.jpg','sort_order' => '0','is_base' => '1','date_created' => '2015-11-03 15:09:42','is_pro' => '0'),
classes/view.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  abstract class viewPts extends baseObjectPts {
3
- /*
4
  * @deprecated
5
  */
6
  protected $_tpl = PTS_DEFAULT;
@@ -41,7 +41,7 @@ abstract class viewPts extends baseObjectPts {
41
  public function getContent($tpl = '') {
42
  $tpl = (empty($tpl)) ? $this->_tpl : $tpl;
43
  $path = $this->getPath($tpl);
44
- if($path) {
45
  $content = '';
46
  ob_start();
47
  require($path);
@@ -75,7 +75,7 @@ abstract class viewPts extends baseObjectPts {
75
  public function getCode() {
76
  return $this->_code;
77
  }
78
-
79
  /**
80
  * This will display form for our widgets
81
  */
1
  <?php
2
  abstract class viewPts extends baseObjectPts {
3
+ /*
4
  * @deprecated
5
  */
6
  protected $_tpl = PTS_DEFAULT;
41
  public function getContent($tpl = '') {
42
  $tpl = (empty($tpl)) ? $this->_tpl : $tpl;
43
  $path = $this->getPath($tpl);
44
+ if($path) {
45
  $content = '';
46
  ob_start();
47
  require($path);
75
  public function getCode() {
76
  return $this->_code;
77
  }
78
+
79
  /**
80
  * This will display form for our widgets
81
  */
config.php CHANGED
@@ -47,7 +47,7 @@
47
  define('PTS_EOL', "\n");
48
 
49
  define('PTS_PLUGIN_INSTALLED', true);
50
- define('PTS_VERSION', '1.7.11');
51
  define('PTS_USER', 'user');
52
 
53
  define('PTS_CLASS_PREFIX', 'ptsc');
47
  define('PTS_EOL', "\n");
48
 
49
  define('PTS_PLUGIN_INSTALLED', true);
50
+ define('PTS_VERSION', '1.8.5');
51
  define('PTS_USER', 'user');
52
 
53
  define('PTS_CLASS_PREFIX', 'ptsc');
js/nonce.js ADDED
File without changes
languages/pricing-table-by-supsystic-fr_FR.po CHANGED
@@ -1,6201 +1,6201 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Pricing Table by Supsystic\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2019-06-06 13:36+0300\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Serge <balandin999@gmail.com>\n"
8
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
9
- "Language: fr_FR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Generator: Poedit 2.2.4\n"
17
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPath-1: ..\n"
20
-
21
- #: ../akismet/class.akismet-admin.php:84
22
- msgid "Comment History"
23
- msgstr "Historique Commentaire"
24
-
25
- #: ../akismet/class.akismet-admin.php:88
26
- #: ../akismet/class.akismet-admin.php:1189
27
- msgid "Akismet"
28
- msgstr "Akismet"
29
-
30
- #: ../akismet/class.akismet-admin.php:89
31
- msgid ""
32
- "We collect information about visitors who comment on Sites that use our "
33
- "Akismet anti-spam service. The information we collect depends on how the "
34
- "User sets up Akismet for the Site, but typically includes the commenter's IP "
35
- "address, user agent, referrer, and Site URL (along with other information "
36
- "directly provided by the commenter such as their name, username, email "
37
- "address, and the comment itself)."
38
- msgstr ""
39
- "Nous recueillons des informations sur les visiteurs qui commentent les sites "
40
- "qui utilisent notre service anti-spam Akismet. Les informations que nous "
41
- "recueillons dépendent de la façon dont l'utilisateur met en place Akismet "
42
- "pour le Site, mais comprend généralement l'adresse IP du commentateur, "
43
- "l'agent utilisateur, le référent et l'URL du site (ainsi que d'autres "
44
- "informations directement fournies par le commentateur tels que leur nom, nom "
45
- "d'utilisateur, e-mail l'adresse, et le commentaire lui-même)."
46
-
47
- #: ../akismet/class.akismet-admin.php:107
48
- #: ../akismet/class.akismet-admin.php:239
49
- #: ../google-maps-easy/modules/adminmenu/mod.php:14
50
- #: ../google-maps-easy/modules/options/mod.php:13
51
- #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:14
52
- #: ../pricing-table-by-supsystic/modules/options/mod.php:46
53
- #: modules/adminmenu/mod.php:14 modules/options/mod.php:46
54
- msgid "Settings"
55
- msgstr "Réglages"
56
-
57
- #: ../akismet/class.akismet-admin.php:114
58
- #: ../akismet/class.akismet-admin.php:117
59
- msgid "Akismet Anti-Spam"
60
- msgstr "Akismet Anti-Spam"
61
-
62
- #: ../akismet/class.akismet-admin.php:146
63
- msgid "Remove this URL"
64
- msgstr "Retirer cette URL"
65
-
66
- #: ../akismet/class.akismet-admin.php:147
67
- msgid "Removing..."
68
- msgstr "Suppression..."
69
-
70
- #: ../akismet/class.akismet-admin.php:148
71
- msgid "URL removed"
72
- msgstr "URL supprimée"
73
-
74
- #: ../akismet/class.akismet-admin.php:149
75
- msgid "(undo)"
76
- msgstr "(revenir)"
77
-
78
- #: ../akismet/class.akismet-admin.php:150
79
- msgid "Re-adding..."
80
- msgstr "Rétablir…"
81
-
82
- #: ../akismet/class.akismet-admin.php:177
83
- #: ../akismet/class.akismet-admin.php:215
84
- #: ../akismet/class.akismet-admin.php:228
85
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:126
86
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:96
87
- #: modules/supsystic_promo/mod.php:96
88
- msgid "Overview"
89
- msgstr "Vue d’ensemble"
90
-
91
- #: ../akismet/class.akismet-admin.php:188
92
- msgid "New to Akismet"
93
- msgstr "Nouveau sur Akismet"
94
-
95
- #: ../akismet/class.akismet-admin.php:192
96
- #, php-format
97
- msgid "Sign up for an account on %s to get an API Key."
98
- msgstr "Inscrivez-vous pour un compte sur %s pour obtenir une clé API."
99
-
100
- #: ../akismet/class.akismet-admin.php:199
101
- msgid "Enter an API Key"
102
- msgstr "Entrer une clé API"
103
-
104
- #: ../akismet/class.akismet-admin.php:252
105
- msgid "Account"
106
- msgstr "Compte"
107
-
108
- #: ../akismet/class.akismet-admin.php:273
109
- msgid "Cheatin&#8217; uh?"
110
- msgstr "Alors on triche ?"
111
-
112
- #: ../akismet/class.akismet-admin.php:361
113
- #, php-format
114
- msgid "<a href=\"%s\">Akismet</a> blocks spam from getting to your blog. "
115
- msgstr "<a href=\"%s\">Akismet</a> bloque les spams sur votre blog. "
116
-
117
- #: ../akismet/class.akismet-admin.php:373
118
- #, php-format
119
- msgid ""
120
- "There&#8217;s nothing in your <a href='%s'>spam queue</a> at the moment."
121
- msgstr ""
122
- "Il n’y a rien dans votre <a href='%s'>file d'attente de spam</a> pour le "
123
- "moment."
124
-
125
- #: ../akismet/class.akismet-admin.php:397
126
- msgid "Checking for Spam"
127
- msgstr "Vérification présente de spam"
128
-
129
- #: ../akismet/class.akismet-admin.php:398
130
- msgid "(%1$s%)"
131
- msgstr ""
132
-
133
- #: ../akismet/class.akismet-admin.php:505
134
- msgid "Awaiting spam check"
135
- msgstr "En attente de vérification de spam"
136
-
137
- #: ../akismet/class.akismet-admin.php:509
138
- msgid "Flagged as spam by Akismet"
139
- msgstr "Jugé comme spam par Akismet"
140
-
141
- #: ../akismet/class.akismet-admin.php:511
142
- msgid "Cleared by Akismet"
143
- msgstr "Nettoyé par Akismet"
144
-
145
- #: ../akismet/class.akismet-admin.php:515
146
- #, php-format
147
- msgid "Flagged as spam by %s"
148
- msgstr "Signalé comme spam par %s"
149
-
150
- #: ../akismet/class.akismet-admin.php:517
151
- #, php-format
152
- msgid "Un-spammed by %s"
153
- msgstr "Non-spamé par %s"
154
-
155
- #: ../akismet/class.akismet-admin.php:581
156
- msgid "Akismet re-checked and caught this comment as spam."
157
- msgstr "Ce commentaire a été re-vérifié par Akismet et considéré comme spam."
158
-
159
- #: ../akismet/class.akismet-admin.php:584
160
- msgid "Akismet caught this comment as spam."
161
- msgstr "Akismet a considéré ce commentaire comme spam."
162
-
163
- #: ../akismet/class.akismet-admin.php:587
164
- msgid "Akismet re-checked and cleared this comment."
165
- msgstr "Ce commentaire a été re-vérifié et autorisé par Akismet."
166
-
167
- #: ../akismet/class.akismet-admin.php:590
168
- msgid "Akismet cleared this comment."
169
- msgstr "Akismet a effacé ce commentaire."
170
-
171
- #: ../akismet/class.akismet-admin.php:593
172
- msgid "Comment was caught by wp_blacklist_check."
173
- msgstr "Le commentaire a était bloqué par wp_blacklist_check."
174
-
175
- #: ../akismet/class.akismet-admin.php:597
176
- #, php-format
177
- msgid "%s reported this comment as spam."
178
- msgstr "%s a considéré ce commentaire comme un spam."
179
-
180
- #: ../akismet/class.akismet-admin.php:600
181
- msgid "This comment was reported as spam."
182
- msgstr "Ce commentaire a été considéré comme spam."
183
-
184
- #: ../akismet/class.akismet-admin.php:605
185
- #, php-format
186
- msgid "%s reported this comment as not spam."
187
- msgstr "%s a considéré ce commentaire comme n'étant pas un spam."
188
-
189
- #: ../akismet/class.akismet-admin.php:608
190
- msgid "This comment was reported as not spam."
191
- msgstr "Ce commentaire a été reporté comme spam."
192
-
193
- #: ../akismet/class.akismet-admin.php:612
194
- msgid "Akismet caught this comment as spam during an automatic retry."
195
- msgstr ""
196
- "Akismet a considéré ce commentaire comme spam lors d’une nouvelle tentative "
197
- "automatique."
198
-
199
- #: ../akismet/class.akismet-admin.php:615
200
- msgid "Akismet cleared this comment during an automatic retry."
201
- msgstr "Akismet a effacé ce commentaire lors d’une tentative automatique."
202
-
203
- #: ../akismet/class.akismet-admin.php:619
204
- #, php-format
205
- msgid ""
206
- "Akismet was unable to check this comment (response: %s) but will "
207
- "automatically retry later."
208
- msgstr ""
209
- "Akismet n’a pas pu vérifier ce commentaire (réponse: %s), mais essayera à "
210
- "nouveau plus tard."
211
-
212
- #: ../akismet/class.akismet-admin.php:624
213
- #, php-format
214
- msgid "Akismet was unable to recheck this comment (response: %s)."
215
- msgstr ""
216
- "Akismet n'a pas été en mesure de revérifier ce commentaire (réponse: %s)."
217
-
218
- #: ../akismet/class.akismet-admin.php:632
219
- #, php-format
220
- msgid "Comment status was changed to %s"
221
- msgstr "Le statut des commentaires a été changé en %s"
222
-
223
- #: ../akismet/class.akismet-admin.php:638
224
- #, php-format
225
- msgid "%1$s changed the comment status to %2$s."
226
- msgstr "%1$s a changé le statut de commentaire à: %2$s."
227
-
228
- #: ../akismet/class.akismet-admin.php:865
229
- #, php-format
230
- msgid ""
231
- "Please check your <a href=\"%s\">Akismet configuration</a> and contact your "
232
- "web host if problems persist."
233
- msgstr ""
234
- "Veuillez vérifier votre <a href=\"%s\">configuration d'Akismet</a> et "
235
- "contactez votre hébergeur web si les problèmes persistent."
236
-
237
- #: ../akismet/class.akismet-admin.php:972
238
- msgid "Cleaning up spam takes time."
239
- msgstr "Nettoyer les commentaires indésirables prend du temps."
240
-
241
- #: ../akismet/class.akismet-admin.php:1048
242
- msgid ""
243
- "There were no comments to check. Akismet will only check comments in the "
244
- "Pending queue."
245
- msgstr ""
246
- "Il n'y avait aucun commentaire à vérifier. Akismet vérifiera uniquement les "
247
- "commentaires dans la file d'attente en attente."
248
-
249
- #: ../akismet/class.akismet-admin.php:1055
250
- msgid "No comments were caught as spam."
251
- msgstr "%s commentaires ont été pris comme spam."
252
-
253
- #: ../akismet/class.akismet-admin.php:1167
254
- msgid ""
255
- "Used by millions, Akismet is quite possibly the best way in the world to "
256
- "<strong>protect your blog from spam</strong>. Your site is fully configured "
257
- "and being protected, even while you sleep."
258
- msgstr ""
259
- "Utilisé par des millions, Akismet est peut-être la meilleure façon dans le "
260
- "monde de <strong>protéger votre blog contre le spam</strong> . Votre site "
261
- "est entièrement configuré et protégé, même si vous dormez."
262
-
263
- #: ../akismet/class.akismet-admin.php:1170
264
- msgid ""
265
- "Used by millions, Akismet is quite possibly the best way in the world to "
266
- "<strong>protect your blog from spam</strong>. It keeps your site protected "
267
- "even while you sleep. To get started, just go to <a href=\"admin.php?"
268
- "page=akismet-key-config\">your Akismet Settings page</a> to set up your API "
269
- "key."
270
- msgstr ""
271
- "Utilisé par des millions, Akismet est peut-être la meilleure façon dans le "
272
- "monde de <strong>protéger votre blog contre le spam</strong> . Il garde "
273
- "votre site protégé même si vous dormez. Pour commencer, accédez à <a href="
274
- "\"admin.php?page=akismet-key-config\">votre page Paramètres Akismet</a> pour "
275
- "configurer votre clé API."
276
-
277
- #: ../akismet/class.akismet-cli.php:36
278
- #, php-format
279
- msgid "Comment #%d is spam."
280
- msgstr "Le commentaire #%d est un spam."
281
-
282
- #: ../akismet/class.akismet-cli.php:39
283
- #, php-format
284
- msgid "Comment #%d is not spam."
285
- msgstr "Le commentaire #%d n'est pas un spam."
286
-
287
- #: ../akismet/class.akismet-cli.php:43
288
- msgid "Failed to connect to Akismet."
289
- msgstr "Échec de la connexion à Akismet."
290
-
291
- #: ../akismet/class.akismet-cli.php:46
292
- #, php-format
293
- msgid "Comment #%d could not be checked."
294
- msgstr "Le commentaire #%d n'a pas pu être vérifié."
295
-
296
- #: ../akismet/class.akismet-cli.php:134
297
- msgid "API key must be set to fetch stats."
298
- msgstr "La clé API doit être définie pour récupérer les statistiques."
299
-
300
- #: ../akismet/class.akismet-cli.php:159
301
- msgid "Currently unable to fetch stats. Please try again."
302
- msgstr ""
303
- "Actuellement incapable d’aller chercher les statistiques. Veuillez réessayer."
304
-
305
- #: ../akismet/class.akismet-cli.php:165
306
- msgid "Stats response could not be decoded."
307
- msgstr "La réponse des statistiques n’a pas pu être décodée."
308
-
309
- #: ../akismet/class.akismet-rest-api.php:27
310
- #: ../akismet/class.akismet-rest-api.php:101
311
- #: ../akismet/class.akismet-rest-api.php:114
312
- #: ../akismet/class.akismet-rest-api.php:127
313
- msgid "A 12-character Akismet API key. Available at akismet.com/get/"
314
- msgstr "Une clé Akismet API de 12 caractères. Disponible sur akismet.com/get/"
315
-
316
- #: ../akismet/class.akismet-rest-api.php:51
317
- msgid ""
318
- "If true, Akismet will automatically discard the worst spam automatically "
319
- "rather than putting it in the spam folder."
320
- msgstr ""
321
- "Si vrai, Akismet rejettera automatiquement les pires spams plutôt que de le "
322
- "mettre dans le dossier spam."
323
-
324
- #: ../akismet/class.akismet-rest-api.php:56
325
- msgid ""
326
- "If true, show the number of approved comments beside each comment author in "
327
- "the comments list page."
328
- msgstr ""
329
- "Si c’est vrai, indiquez le nombre de commentaires approuvés à côté de chaque "
330
- "auteur de commentaire dans la page de liste des commentaires."
331
-
332
- #: ../akismet/class.akismet-rest-api.php:71
333
- #: ../akismet/class.akismet-rest-api.php:80
334
- msgid ""
335
- "The time period for which to retrieve stats. Options: 60-days, 6-months, all"
336
- msgstr ""
337
- "La période de temps pour récupérer les statistiques. Options : 60 jours, 6 "
338
- "mois, tous"
339
-
340
- #: ../akismet/class.akismet-rest-api.php:152
341
- msgid "This site's API key is hardcoded and cannot be changed via the API."
342
- msgstr ""
343
- "La clé API de ce site est codée en dur et ne peut pas être modifiée via "
344
- "l’API."
345
-
346
- #: ../akismet/class.akismet-rest-api.php:158
347
- msgid "The value provided is not a valid and registered API key."
348
- msgstr "La valeur fournie n’est pas une clé API valide et enregistrée."
349
-
350
- #: ../akismet/class.akismet-rest-api.php:174
351
- msgid "This site's API key is hardcoded and cannot be deleted."
352
- msgstr "La clé API de ce site est codée en dur et ne peut pas être supprimée."
353
-
354
- #: ../akismet/class.akismet-widget.php:12
355
- msgid "Akismet Widget"
356
- msgstr "Akismet Widget"
357
-
358
- #: ../akismet/class.akismet-widget.php:13
359
- msgid "Display the number of spam comments Akismet has caught"
360
- msgstr "Afficher le nombre de commentaires spam qu’Akismet a bloqué"
361
-
362
- #: ../akismet/class.akismet-widget.php:69
363
- #: ../akismet/class.akismet-widget.php:90
364
- msgid "Spam Blocked"
365
- msgstr "Spam bloqué"
366
-
367
- #: ../akismet/class.akismet.php:231
368
- msgid "Comment discarded."
369
- msgstr "Commentaire rejeté."
370
-
371
- #: ../akismet/class.akismet.php:512
372
- msgid "Comment not found."
373
- msgstr "Commentaire non trouvé."
374
-
375
- #: ../akismet/class.akismet.php:1277
376
- #, php-format
377
- msgid ""
378
- "Please <a href=\"%1$s\">upgrade WordPress</a> to a current version, or <a "
379
- "href=\"%2$s\">downgrade to version 2.4 of the Akismet plugin</a>."
380
- msgstr ""
381
- "Merci de <a href=\"%1$s\">mettre à jour Wordpress</a> dans sa version "
382
- "actuelle, ou <a href=\"%2$s\">rétrograder à la version 2.4 du plugin "
383
- "Akismet</a>."
384
-
385
- #: ../akismet/class.akismet.php:1418
386
- #, php-format
387
- msgid ""
388
- "This site uses Akismet to reduce spam. <a href=\"%s\" target=\"_blank\" rel="
389
- "\"nofollow noopener\">Learn how your comment data is processed</a>."
390
- msgstr ""
391
- "Ce site utilise Akismet pour réduire le spam. <a href=« %s » "
392
- "target=« _blank » rel=« nofollow noopener »>Apprendre comment vos données de "
393
- "commentaire sont traitées</a>."
394
-
395
- #: ../akismet/views/config.php:233
396
- msgid "Upgrade"
397
- msgstr "Mise à jour"
398
-
399
- #: ../akismet/views/config.php:233
400
- msgid "Change"
401
- msgstr "Changer"
402
-
403
- #: ../akismet/views/notice.php:11
404
- msgid ""
405
- "<strong>Almost done</strong> - configure Akismet and say goodbye to spam"
406
- msgstr ""
407
- "<strong>C’est presque fini</strong> - configurez Akismet et dîtes adieu aux "
408
- "indésirables"
409
-
410
- #: ../akismet/views/notice.php:45
411
- #, php-format
412
- msgid ""
413
- "Your web host or server administrator has disabled PHP&#8217;s "
414
- "<code>gethostbynamel</code> function. <strong>Akismet cannot work correctly "
415
- "until this is fixed.</strong> Please contact your web host or firewall "
416
- "administrator and give them <a href=\"%s\" target=\"_blank\">this "
417
- "information about Akismet&#8217;s system requirements</a>."
418
- msgstr ""
419
- "Votre hébergeur ou administrateur du serveur a désactivé le PHP&#8217;s "
420
- "<code>gethostbynamel</code>. <strong>Akismet ne peut pas fonctionner "
421
- "correctement tant que le PHP est désactivé.</strong> Veuillez contactez "
422
- "votre hébergeur web ou administrateur, et donnez lui <a href=\"%s\" target="
423
- "\"_blank\">cette information sur la configuration requise pour Akismet&#8217;"
424
- "s</a> ."
425
-
426
- #: ../akismet/views/notice.php:50
427
- #, php-format
428
- msgid ""
429
- "Your firewall may be blocking Akismet from connecting to its API. Please "
430
- "contact your host and refer to <a href=\"%s\" target=\"_blank\">our guide "
431
- "about firewalls</a>."
432
- msgstr ""
433
- "Votre pare-feu bloque probablement Askimet. Veuillez contacter votre "
434
- "hébergeur web ou reportez-vous à <a href=\"%s\" target=\"_blank\">notre "
435
- "guide sur les pare-feu</a> ."
436
-
437
- #: ../akismet/views/notice.php:55
438
- #, php-format
439
- msgid ""
440
- "We cannot process your payment. Please <a href=\"%s\" target=\"_blank"
441
- "\">update your payment details</a>."
442
- msgstr ""
443
- "Nous ne pouvons pas traiter votre paiement. Merci de <a href=\"%s\" target="
444
- "\"_blank\">mettre à jour vos informations de paiement</a> ."
445
-
446
- #: ../akismet/views/notice.php:60
447
- #, php-format
448
- msgid ""
449
- "Please visit your <a href=\"%s\" target=\"_blank\">Akismet account page</a> "
450
- "to reactivate your subscription."
451
- msgstr ""
452
- "Veuillez visitez la <a href=\"%s\" target=\"_blank\">page de compte Akismet</"
453
- "a> afin de réactiver votre abonnement."
454
-
455
- #: ../akismet/views/notice.php:65 ../akismet/views/notice.php:75
456
- #, php-format
457
- msgid ""
458
- "Please contact <a href=\"%s\" target=\"_blank\">Akismet support</a> for "
459
- "assistance."
460
- msgstr ""
461
- "Veuillez contacter le <a href=\"%s\" target=\"_blank\">support Akismet</a> "
462
- "pour assistance."
463
-
464
- #: ../akismet/views/notice.php:70
465
- #, php-format
466
- msgid ""
467
- "You can help us fight spam and upgrade your account by <a href=\"%s\" target="
468
- "\"_blank\">contributing a token amount</a>."
469
- msgstr ""
470
- "Vous pouvez nous aider à combattre le spam et mettre à jour votre compte en "
471
- "<a href=\"%s\" target=\"_blank\">contribuant à notre plugin</a> ."
472
-
473
- #: ../akismet/views/notice.php:81
474
- #, php-format
475
- msgid ""
476
- "In 2012, Akismet began using subscription plans for all accounts (even free "
477
- "ones). A plan has not been assigned to your account, and we&#8217;d "
478
- "appreciate it if you&#8217;d <a href=\"%s\" target=\"_blank\">sign into your "
479
- "account</a> and choose one."
480
- msgstr ""
481
- "En 2012, Akismet a commencé à utiliser des plans de souscription pour tous "
482
- "les comptes (même les gratuits). Un plan n'a pas été affecté à votre compte, "
483
- "et nous serions reconnaissants si vous vous <a href=\"%s\" target=\"_blank"
484
- "\">connectez à votre compte</a> et choisissez en un."
485
-
486
- #: ../akismet/views/notice.php:83 ../akismet/views/notice.php:124
487
- #: ../akismet/views/notice.php:131
488
- #, php-format
489
- msgid ""
490
- "Please <a href=\"%s\" target=\"_blank\">contact our support team</a> with "
491
- "any questions."
492
- msgstr ""
493
- "Merci de <a href=\"%s\" target=\"_blank\">contacter notre équipe "
494
- "d'assistance</a> pour toute question."
495
-
496
- #: ../akismet/views/notice.php:101
497
- #, php-format
498
- msgid "Would you like to <a href=\"%s\">check pending comments</a>?"
499
- msgstr "Voulez-vous <a href=\"%s\">vérifier les commentaires en attente</a> ?"
500
-
501
- #: ../akismet/views/notice.php:115
502
- #, php-format
503
- msgid ""
504
- "The connection to akismet.com could not be established. Please refer to <a "
505
- "href=\"%s\" target=\"_blank\">our guide about firewalls</a> and check your "
506
- "server configuration."
507
- msgstr ""
508
- "La connexion à akismet.com n'a pas pu être établie. Merci de vous référer à "
509
- "<a href=\"%s\" target=\"_blank\">notre guide sur</a> les pare-feu</a> et "
510
- "vérifier la configuration de votre serveur."
511
-
512
- #: ../akismet/views/notice.php:122
513
- #, php-format
514
- msgid ""
515
- "Your Pro subscription allows the use of Akismet on only one site. Please <a "
516
- "href=\"%s\" target=\"_blank\">purchase additional Pro subscriptions</a> or "
517
- "upgrade to an Enterprise subscription that allows the use of Akismet on "
518
- "unlimited sites."
519
- msgstr ""
520
- "Votre abonnement Pro permet l'utilisation d'Akismet sur un seul site. Merci "
521
- "d'<a href=\"%s\" target=\"_blank\">acheter des abonnements supplémentaires "
522
- "Pro</a> ou passer à un abonnement Enterprise qui permet l'utilisation "
523
- "d'Akismet sur un nombre illimité de sites web."
524
-
525
- #: ../akismet/views/notice.php:129
526
- #, php-format
527
- msgid ""
528
- "To continue your service, <a href=\"%s\" target=\"_blank\">upgrade to an "
529
- "Enterprise subscription</a>, which covers an unlimited number of sites."
530
- msgstr ""
531
- "Pour continuer votre service, <a href=\"%s\" target=\"_blank\">passer à un "
532
- "abonnement Entreprise</a> , qui couvre un nombre illimité de sites."
533
-
534
- #: ../akismet/views/notice.php:139
535
- #, php-format
536
- msgid ""
537
- " Please <a href=\"%s\">enable</a> or <a href=\"%s\">disable</a> this "
538
- "feature. <a href=\"%s\" id=\"akismet-privacy-notice-control-notice-info-link"
539
- "\" target=\"_blank\">More information</a>."
540
- msgstr ""
541
- " Veuillez <a href=\"%s\">activer</a> ou <a href=\"%s\">désactiver</a> cette "
542
- "fonctionnalité. <a href=\"%s\" id=\"akismet-privacy-notice-control-notice-"
543
- "info-link\" target=\"_blank\">Plus d’informations</a>."
544
-
545
- #: ../akismet/views/start.php:31 ../akismet/views/start.php:63
546
- #, php-format
547
- msgid "You are connected as %s."
548
- msgstr "Vous êtes connecté en temps que %s."
549
-
550
- #: ../akismet/views/start.php:43
551
- #, php-format
552
- msgid "Your subscription for %s is cancelled."
553
- msgstr "Votre abonnement pour %s est annulé."
554
-
555
- #: ../akismet/views/start.php:48
556
- #, php-format
557
- msgid "Your subscription for %s is suspended."
558
- msgstr "Votre inscription pour %s est suspendue."
559
-
560
- #: ../akismet/views/start.php:69
561
- msgid "Sign up with a different email address"
562
- msgstr "Inscrivez-vous avec une adresse mail différente"
563
-
564
- #: ../akismet/views/start.php:77
565
- msgid "Get your API key"
566
- msgstr "Obtenez votre clé API"
567
-
568
- #: ../doc/price-table-builder-supsystic/tables_builder/controller.php:49
569
- #: ../doc/price-table-supsystic-pro/license/controller.php:6
570
- #: ../google-maps-easy/classes/controller.php:198
571
- #: ../google-maps-easy/classes/controller.php:206
572
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/controller.php:15
573
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/controller.php:38
574
- #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:9
575
- #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:39
576
- #: ../google-maps-easy/doc/google-maps-easy-pro/kml/controller.php:32
577
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/controller.php:6
578
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:8
579
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:46
580
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:61
581
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:9
582
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:39
583
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/kml/controller.php:9
584
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/controller.php:6
585
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:8
586
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:46
587
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:61
588
- #: ../google-maps-easy/modules/adminmenu/controller.php:29
589
- #: ../google-maps-easy/modules/csv/controller.php:327
590
- #: ../google-maps-easy/modules/gmap/controller.php:55
591
- #: ../google-maps-easy/modules/gmap/controller.php:72
592
- #: ../google-maps-easy/modules/gmap/controller.php:80
593
- #: ../google-maps-easy/modules/marker/controller.php:8
594
- #: ../google-maps-easy/modules/marker/controller.php:46
595
- #: ../google-maps-easy/modules/marker/controller.php:61
596
- #: ../google-maps-easy/modules/marker/controller.php:101
597
- #: ../google-maps-easy/modules/marker_groups/controller.php:79
598
- #: ../google-maps-easy/modules/marker_groups/controller.php:103
599
- #: ../google-maps-easy/modules/options/controller.php:6
600
- #: ../pricing-table-by-supsystic/classes/controller.php:213
601
- #: ../pricing-table-by-supsystic/classes/controller.php:221
602
- #: ../pricing-table-by-supsystic/modules/mail/controller.php:23
603
- #: ../pricing-table-by-supsystic/modules/options/controller.php:6
604
- #: ../pricing-table-by-supsystic/modules/tables/controller.php:6
605
- #: ../pricing-table-by-supsystic/modules/tables/controller.php:117
606
- #: ../pricing-table-by-supsystic/modules/tables/controller.php:126
607
- #: ../pricing-table-by-supsystic/modules/tables/controller.php:134
608
- #: ../pricing-table-by-supsystic/modules/tables/controller.php:252
609
- #: classes/controller.php:213 classes/controller.php:221
610
- #: modules/mail/controller.php:23 modules/options/controller.php:6
611
- #: modules/tables/controller.php:6 modules/tables/controller.php:117
612
- #: modules/tables/controller.php:126 modules/tables/controller.php:134
613
- #: modules/tables/controller.php:252
614
- msgid "Done"
615
- msgstr "Terminé"
616
-
617
- #: ../doc/price-table-builder-supsystic/tables_builder/mod.php:10
618
- msgid "All Dev Tables"
619
- msgstr "Toutes les tables de développement"
620
-
621
- #: ../doc/price-table-builder-supsystic/tables_builder/models/tables_builder.php:55
622
- msgid "Empty Label"
623
- msgstr "Libellé vide"
624
-
625
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:5
626
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:8
627
- msgid "Create New Block"
628
- msgstr "Créer un nouveau bloc"
629
-
630
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:8
631
- #: ../google-maps-easy/modules/marker_groups/mod.php:11
632
- msgid "Add New"
633
- msgstr "Ajouter un nouveau"
634
-
635
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:11
636
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:14
637
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:14
638
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:17
639
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:15
640
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:5
641
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:8
642
- #: modules/tables/views/tpl/tablesAdmin.php:5
643
- #: modules/tables/views/tpl/tablesAdmin.php:8
644
- msgid "Delete selected"
645
- msgstr "Supprimer la sélection"
646
-
647
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:17
648
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:20
649
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:22
650
- msgid "Clear All"
651
- msgstr "Tout effacer"
652
-
653
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:19
654
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2062
655
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:34
656
- msgid "Clear"
657
- msgstr "Effacer"
658
-
659
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:22
660
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:23
661
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:87
662
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:5
663
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:6
664
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:25
665
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:26
666
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:11
667
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:12
668
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:14
669
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:15
670
- #: modules/tables/views/tpl/tablesAdmin.php:11
671
- #: modules/tables/views/tpl/tablesAdmin.php:12
672
- #: modules/tables/views/tpl/tablesImportExport.php:14
673
- #: modules/tables/views/tpl/tablesImportExport.php:15
674
- msgid "Search"
675
- msgstr "Rechercher"
676
-
677
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:32
678
- msgid "You have no Blocks for now."
679
- msgstr "Vous n’avez pas de Blocs pour l’instant."
680
-
681
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:8
682
- #, php-format
683
- msgid "Editor Block %s"
684
- msgstr "Bloc éditeur %s"
685
-
686
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:18
687
- #: ../google-maps-easy/classes/tables/modules.php:7
688
- #: ../google-maps-easy/classes/tables/modules_type.php:8
689
- #: ../google-maps-easy/classes/tables/options.php:10
690
- msgid "Label"
691
- msgstr "Libellé"
692
-
693
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:34
694
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:10
695
- msgid "PRO"
696
- msgstr "PRO"
697
-
698
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:41
699
- msgid "Image (relative name)"
700
- msgstr "Image (nom relatif)"
701
-
702
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:50
703
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:115
704
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:13
705
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:10
706
- #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:6
707
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:69
708
- #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:6
709
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:21
710
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:28
711
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:751
712
- #: modules/mail/views/tpl/mailAdmin.php:69
713
- #: modules/options/views/tpl/optionsSettingsTabContent.php:6
714
- #: modules/tables/views/tpl/tablesAddNewAdmin.php:21
715
- #: modules/tables/views/tpl/tablesEditFormControls.php:28
716
- #: modules/tables/views/tpl/tablesEditorFooter.php:751
717
- msgid "Save"
718
- msgstr "Enregistrer"
719
-
720
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:57
721
- msgid "CSS"
722
- msgstr "CSS"
723
-
724
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:64
725
- msgid "HTML"
726
- msgstr "HTML"
727
-
728
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:73
729
- msgid "Add Setting"
730
- msgstr "Ajouter des paramètres"
731
-
732
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:79
733
- msgid "Param Key"
734
- msgstr "Clé de paramètre"
735
-
736
- #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:85
737
- msgid "Param Value"
738
- msgstr "Valeur de Paramètre"
739
-
740
- #: ../doc/price-table-supsystic-pro/license/mod.php:23
741
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:30
742
- #, php-format
743
- msgid ""
744
- "Your license is expired. Once you extend your license - you will be able to "
745
- "Update PRO version. To extend PRO version license - follow <a href=\"%s\" "
746
- "target=\"_blank\">this link</a>, then - go to <a href=\"%s\">License</a> tab "
747
- "anc click on \"Re-activate\" button to re-activate your PRO version."
748
- msgstr ""
749
- "Votre licence est expirée. Une fois que vous aurez réactivé votre licence - "
750
- "vous pourrez mettre à jour la version PRO. Pour passer à la version PRO - "
751
- "suivez <a href=\"%s\" target=\"_blank\">ce lien</a>, puis - allez sur "
752
- "l'onglet <a href=\"%s\">Licence</a> et cliquez sur le bouton \"Re-activate\" "
753
- "pour réactiver votre version PRO."
754
-
755
- #: ../doc/price-table-supsystic-pro/license/mod.php:32
756
- #, php-format
757
- msgid ""
758
- "Your plugin PRO license is expired. It means your PRO version will work as "
759
- "usual - with all features and options, but you will not be able to update "
760
- "the PRO version and use PRO support. To extend PRO version license - follow "
761
- "<a href=\"%s\" target=\"_blank\">this link</a>"
762
- msgstr ""
763
- "Votre licence de plugin PRO est expirée. Cela signifie que votre version PRO "
764
- "fonctionnera comme d’habitude - avec toutes les fonctionnalités et options, "
765
- "MAIS vous ne pourrez pas mettre à jour la version PRO et utiliser le support "
766
- "PRO. Pour étendre la licence de la version PRO - suivez <a href=« %s » "
767
- "target=« _blank »>ce lien</a>"
768
-
769
- #: ../doc/price-table-supsystic-pro/license/mod.php:37
770
- #, php-format
771
- msgid ""
772
- "You need to activate your copy of PRO version %s plugin. Go to <a href=\"%s"
773
- "\">License</a> tab and finish your software activation process."
774
- msgstr ""
775
- "Vous devez activer votre copie du plugin PRO version %s. Allez dans l’onglet "
776
- "<a href=« %s »>License</a> et terminez votre processus d’activation du "
777
- "logiciel."
778
-
779
- #: ../doc/price-table-supsystic-pro/license/mod.php:63
780
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:70
781
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:51
782
- msgid "License"
783
- msgstr "Licence"
784
-
785
- #: ../doc/price-table-supsystic-pro/license/models/license.php:54
786
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:54
787
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:54
788
- msgid "Please enter your License Key"
789
- msgstr "S'il vous plaît entrer votre clé de licence"
790
-
791
- #: ../doc/price-table-supsystic-pro/license/models/license.php:56
792
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:56
793
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:56
794
- msgid "Please enter your Email address"
795
- msgstr "S'il vous plaît, veuillez entrer votre adresse email"
796
-
797
- #: ../doc/price-table-supsystic-pro/license/models/license.php:150
798
- msgid ""
799
- "There was a problem with sending request to our autentification server. "
800
- "Please try latter."
801
- msgstr ""
802
- "Il y a eu un problème lors de l'envoi de la requête d'authentification à "
803
- "notre serveur. Merci d'essayer plus tard."
804
-
805
- #: ../doc/price-table-supsystic-pro/license/models/license.php:174
806
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:178
807
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:154
808
- #, php-format
809
- msgid "License for plugin %s will expire today."
810
- msgstr "La licence pour le plugin %s expire aujourd'hui."
811
-
812
- #: ../doc/price-table-supsystic-pro/license/models/license.php:176
813
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:180
814
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:156
815
- #, php-format
816
- msgid "License for plugin %s will expire tomorrow."
817
- msgstr "La licence pour le plugin %s prendra fin demain."
818
-
819
- #: ../doc/price-table-supsystic-pro/license/models/license.php:178
820
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:182
821
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:158
822
- #, php-format
823
- msgid "License for plugin %s will expire in %d days."
824
- msgstr "La licence pour le plugin %s expirera dans %d jours."
825
-
826
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:4
827
- #, php-format
828
- msgid ""
829
- "Congradulations! PRO version of %s plugin is activated and working fine!"
830
- msgstr ""
831
- "Toutes nos félicitations ! La version PRO du plugin %s est installée et "
832
- "activée avec succès !"
833
-
834
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:6
835
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
836
- #, php-format
837
- msgid ""
838
- "Your license for PRO version of %s plugin - expired. You can <a href=\"%s\" "
839
- "target=\"_blank\">click here</a> to extend your license, then - click on "
840
- "\"Re-activate\" button to re-activate your PRO version."
841
- msgstr ""
842
- "Votre licence pour la version PRO du plugin %s - expirée. Vous pouvez <a "
843
- "href=« %s » target=« _blank »>cliquez ici</a> pour étendre votre licence, "
844
- "puis - cliquez sur « Réactiver » pour réactiver votre version PRO."
845
-
846
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:8
847
- #, php-format
848
- msgid ""
849
- "Congradulations! You have successfully installed PRO version of %s plugin. "
850
- "Final step to finish Your PRO version setup - is to enter your Email and "
851
- "License Key on this page. This will activate Your copy of software on this "
852
- "site."
853
- msgstr ""
854
- "Félicitations ! Vous avez correctement installé la version PRO du plugin %s. "
855
- "La Dernière étape pour terminer l’installation de votre version PRO est "
856
- "d’entrer votre Email et la clé de licence sur cette page. Cela activera "
857
- "votre copie du logiciel sur ce site."
858
-
859
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:20
860
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
861
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
862
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:225
863
- msgid "Email"
864
- msgstr "Email"
865
-
866
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:23
867
- msgid ""
868
- "Your email address, used on checkout procedure on <a href=\"%\" target="
869
- "\"_blank\">%s</a>"
870
- msgstr ""
871
- "Votre adresse e-mail, utilisée lors de la procédure d’achat sur <a href=\"%"
872
- "\" target=\"_blank\">%s</a>"
873
-
874
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:31
875
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
876
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
877
- msgid "License Key"
878
- msgstr "Clé de licence"
879
-
880
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:34
881
- msgid ""
882
- "Your License Key from your account on <a href=\"%\" target=\"_blank\">%s</a>"
883
- msgstr ""
884
- "Votre clé de licence pour votre compte sur <a href=\"%s\" target=\"_blank\">"
885
- "%s</a>"
886
-
887
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:47
888
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
889
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
890
- msgid "Re-activate"
891
- msgstr "Réactiver"
892
-
893
- #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:49
894
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
895
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
896
- msgid "Activate"
897
- msgstr "Activer"
898
-
899
- #: ../doc/price-table-supsystic-pro/wpUpdater.php:68
900
- msgid ""
901
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
902
- "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
903
- msgstr ""
904
- "Une erreur HTTP est arrivée durant la requête au système.</p> <p><a href=\"?"
905
- "\" onclick=\"document.location.reload(); return false;\">Essayez encore</a>"
906
-
907
- #: ../doc/price-table-supsystic-pro/wpUpdater.php:73
908
- #: ../google-maps-easy/doc/google-maps-easy-pro/wpUpdater.php:75
909
- msgid "An unknown error occurred"
910
- msgstr "Une erreur inconnue s’est produite"
911
-
912
- #: ../google-maps-easy/classes/field.php:131
913
- #: ../pricing-table-by-supsystic/classes/field.php:131
914
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:40
915
- #: classes/field.php:131 modules/tables/views/tpl/tablesAddNewAdmin.php:40
916
- msgid "Select"
917
- msgstr "Sélectionner"
918
-
919
- #: ../google-maps-easy/classes/field.php:170
920
- #: ../google-maps-easy/classes/field.php:179
921
- #: ../google-maps-easy/classes/field.php:184
922
- #: ../pricing-table-by-supsystic/classes/field.php:170
923
- #: ../pricing-table-by-supsystic/classes/field.php:179
924
- #: ../pricing-table-by-supsystic/classes/field.php:184 classes/field.php:170
925
- #: classes/field.php:179 classes/field.php:184
926
- msgid "N/A"
927
- msgstr "N/A"
928
-
929
- #: ../google-maps-easy/classes/field.php:277
930
- #: ../pricing-table-by-supsystic/classes/field.php:277 classes/field.php:277
931
- msgid "Add Checkbox"
932
- msgstr "Ajouter une case à cocher"
933
-
934
- #: ../google-maps-easy/classes/field.php:282
935
- #: ../google-maps-easy/classes/field.php:287
936
- #: ../pricing-table-by-supsystic/classes/field.php:282
937
- #: ../pricing-table-by-supsystic/classes/field.php:287 classes/field.php:282
938
- #: classes/field.php:287
939
- msgid "Add Item"
940
- msgstr "Ajouter un item"
941
-
942
- #: ../google-maps-easy/classes/field.php:293
943
- #: ../pricing-table-by-supsystic/classes/field.php:293 classes/field.php:293
944
- msgid "Add Radio Button"
945
- msgstr "Ajouter bouton radio"
946
-
947
- #: ../google-maps-easy/classes/field.php:311
948
- #: ../pricing-table-by-supsystic/classes/field.php:311 classes/field.php:311
949
- msgid "Dimensions"
950
- msgstr "Dimensions"
951
-
952
- #: ../google-maps-easy/classes/field.php:314
953
- #: ../pricing-table-by-supsystic/classes/field.php:314 classes/field.php:314
954
- msgid "width"
955
- msgstr "largeur"
956
-
957
- #: ../google-maps-easy/classes/field.php:316
958
- #: ../pricing-table-by-supsystic/classes/field.php:316 classes/field.php:316
959
- msgid "height"
960
- msgstr "hauteur"
961
-
962
- #: ../google-maps-easy/classes/field.php:323
963
- msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
964
- msgstr "Cliquez pour définir le champ &quot;id&quot ; et &quot;class&quot; ;"
965
-
966
- #: ../google-maps-easy/classes/field.php:324
967
- #: ../pricing-table-by-supsystic/classes/field.php:324 classes/field.php:324
968
- msgid "Attributes"
969
- msgstr "Attributs"
970
-
971
- #: ../google-maps-easy/classes/field.php:402
972
- #: ../pricing-table-by-supsystic/classes/field.php:402 classes/field.php:402
973
- msgid "There are no configuration options for this module"
974
- msgstr "Il n'y a pas d'options de configuration pour ce module"
975
-
976
- #: ../google-maps-easy/classes/fieldAdapter.php:93
977
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:93
978
- #: classes/fieldAdapter.php:93
979
- msgid "Apply To"
980
- msgstr "Appliquer à"
981
-
982
- #: ../google-maps-easy/classes/fieldAdapter.php:95
983
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:26
984
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:11
985
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:23
986
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:54
987
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:402
988
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1591
989
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1940
990
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:95
991
- #: classes/fieldAdapter.php:95
992
- msgid "Address"
993
- msgstr "Adresse"
994
-
995
- #: ../google-maps-easy/classes/fieldAdapter.php:96
996
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:96
997
- #: classes/fieldAdapter.php:96
998
- msgid "Destination"
999
- msgstr "Destination"
1000
-
1001
- #: ../google-maps-easy/classes/fieldAdapter.php:97
1002
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:97
1003
- #: classes/fieldAdapter.php:97
1004
- msgid "Country"
1005
- msgstr "Pays"
1006
-
1007
- #: ../google-maps-easy/classes/fieldAdapter.php:100
1008
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:100
1009
- #: classes/fieldAdapter.php:100
1010
- msgid "Categories"
1011
- msgstr "Catégories"
1012
-
1013
- #: ../google-maps-easy/classes/fieldAdapter.php:101
1014
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:101
1015
- #: classes/fieldAdapter.php:101
1016
- msgid "You have no categories"
1017
- msgstr "Vous n'avez pas de catégories"
1018
-
1019
- #: ../google-maps-easy/classes/fieldAdapter.php:102
1020
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:102
1021
- #: classes/fieldAdapter.php:102
1022
- msgid "Brands"
1023
- msgstr "Marques"
1024
-
1025
- #: ../google-maps-easy/classes/fieldAdapter.php:103
1026
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:103
1027
- #: classes/fieldAdapter.php:103
1028
- msgid "You have no brands"
1029
- msgstr "Vous n'avez pas de marque"
1030
-
1031
- #: ../google-maps-easy/classes/fieldAdapter.php:105
1032
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:105
1033
- #: classes/fieldAdapter.php:105
1034
- msgid "Tax Rate"
1035
- msgstr "Taux de TVA"
1036
-
1037
- #: ../google-maps-easy/classes/fieldAdapter.php:106
1038
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:106
1039
- #: classes/fieldAdapter.php:106
1040
- msgid "Absolute"
1041
- msgstr "Absolue"
1042
-
1043
- #: ../google-maps-easy/classes/fieldAdapter.php:134
1044
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:134
1045
- #: classes/fieldAdapter.php:134
1046
- msgid "Not selected"
1047
- msgstr "Non sélectionné"
1048
-
1049
- #: ../google-maps-easy/classes/fieldAdapter.php:184
1050
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:184
1051
- #: classes/fieldAdapter.php:184
1052
- msgid "class"
1053
- msgstr "class"
1054
-
1055
- #: ../google-maps-easy/classes/fieldAdapter.php:186
1056
- #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:186
1057
- #: classes/fieldAdapter.php:186
1058
- msgid "id"
1059
- msgstr "id"
1060
-
1061
- #: ../google-maps-easy/classes/frame.php:137
1062
- #: ../pricing-table-by-supsystic/classes/frame.php:137 classes/frame.php:137
1063
- msgid "You have no permissions to view this page"
1064
- msgstr "Vous n'avez pas d'autorisations pour afficher cette page"
1065
-
1066
- #: ../google-maps-easy/classes/html.php:207
1067
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1722
1068
- #: ../pricing-table-by-supsystic/classes/html.php:227 classes/html.php:227
1069
- msgid "Upload"
1070
- msgstr "Téléverser"
1071
-
1072
- #: ../google-maps-easy/classes/html.php:627
1073
- #: ../pricing-table-by-supsystic/classes/html.php:635 classes/html.php:635
1074
- msgid "ON"
1075
- msgstr "ON"
1076
-
1077
- #: ../google-maps-easy/classes/html.php:628
1078
- #: ../pricing-table-by-supsystic/classes/html.php:636 classes/html.php:636
1079
- msgid "OFF"
1080
- msgstr "OFF"
1081
-
1082
- #: ../google-maps-easy/classes/html.php:652
1083
- #: ../pricing-table-by-supsystic/classes/html.php:660 classes/html.php:660
1084
- #, php-format
1085
- msgid "Select %s"
1086
- msgstr "Sélectionner %s"
1087
-
1088
- #: ../google-maps-easy/classes/modInstaller.php:34
1089
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:34
1090
- #: classes/modInstaller.php:34
1091
- #, php-format
1092
- msgid "Move files for %s failed"
1093
- msgstr "Echec de déplacement des fichiers pour %s"
1094
-
1095
- #: ../google-maps-easy/classes/modInstaller.php:37
1096
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:37
1097
- #: classes/modInstaller.php:37
1098
- #, php-format
1099
- msgid "%s is not plugin module"
1100
- msgstr "%s n'est pas le module du plugin"
1101
-
1102
- #: ../google-maps-easy/classes/modInstaller.php:76
1103
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:76
1104
- #: classes/modInstaller.php:76
1105
- msgid "Can not create module directory. Try to set permission to "
1106
- msgstr ""
1107
- "Impossible de créer un répertoire de modules. Essayez de redéfinir la "
1108
- "permission de "
1109
-
1110
- #: ../google-maps-easy/classes/modInstaller.php:104
1111
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:104
1112
- #: classes/modInstaller.php:104
1113
- msgid "No modules were found in XML file"
1114
- msgstr "Aucun module trouvé dans le fichier XML"
1115
-
1116
- #: ../google-maps-easy/classes/modInstaller.php:108
1117
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:108
1118
- #: classes/modInstaller.php:108
1119
- msgid "Invalid XML file"
1120
- msgstr "Fichier XML non valide"
1121
-
1122
- #: ../google-maps-easy/classes/modInstaller.php:110
1123
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:110
1124
- #: classes/modInstaller.php:110
1125
- msgid "No XML file were found"
1126
- msgstr "Le fichier XML est introuvable"
1127
-
1128
- #: ../google-maps-easy/classes/modInstaller.php:123
1129
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:123
1130
- #: classes/modInstaller.php:123
1131
- msgid "No modules were found in installation file"
1132
- msgstr "Aucun module n’a été trouvé dans le fichier d’installation"
1133
-
1134
- #: ../google-maps-easy/classes/modInstaller.php:127
1135
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:127
1136
- #: classes/modInstaller.php:127
1137
- msgid "No installation file were found"
1138
- msgstr "Aucun fichier d'installation n'a été trouvé"
1139
-
1140
- #: ../google-maps-easy/classes/modInstaller.php:146
1141
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:149
1142
- #: classes/modInstaller.php:149
1143
- #, php-format
1144
- msgid "Install %s failed"
1145
- msgstr "L’installation de %s a échoué"
1146
-
1147
- #: ../google-maps-easy/classes/modInstaller.php:152
1148
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:155
1149
- #: classes/modInstaller.php:155
1150
- msgid "Error Activate module"
1151
- msgstr "Erreur activation du module"
1152
-
1153
- #: ../google-maps-easy/classes/modInstaller.php:181
1154
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:184
1155
- #: classes/modInstaller.php:184
1156
- msgid "Error Deactivation module"
1157
- msgstr "Erreur de désactivation du module"
1158
-
1159
- #: ../google-maps-easy/classes/modInstaller.php:198
1160
- #: ../pricing-table-by-supsystic/classes/modInstaller.php:201
1161
- #: classes/modInstaller.php:201
1162
- msgid "Error Activating module"
1163
- msgstr "Erreur activation du module"
1164
-
1165
- #: ../google-maps-easy/classes/model.php:174
1166
- #: ../google-maps-easy/classes/model.php:186
1167
- #: ../pricing-table-by-supsystic/classes/model.php:186
1168
- #: ../pricing-table-by-supsystic/classes/model.php:198
1169
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:45
1170
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:65
1171
- #: classes/model.php:186 classes/model.php:198
1172
- #: modules/tables/models/tables.php:45 modules/tables/models/tables.php:65
1173
- msgid "Database error detected"
1174
- msgstr "Erreur de base de données détectée"
1175
-
1176
- #: ../google-maps-easy/classes/model.php:176
1177
- #: ../google-maps-easy/modules/gmap/models/gmap.php:186
1178
- #: ../google-maps-easy/modules/icons/models/icons.php:149
1179
- #: ../google-maps-easy/modules/marker/models/marker.php:327
1180
- #: ../google-maps-easy/modules/marker_groups/models/marker_groups.php:57
1181
- #: ../pricing-table-by-supsystic/classes/model.php:188
1182
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:47
1183
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:198
1184
- #: classes/model.php:188 modules/tables/models/tables.php:47
1185
- #: modules/tables/models/tables.php:198
1186
- msgid "Invalid ID"
1187
- msgstr "ID non valide"
1188
-
1189
- #: ../google-maps-easy/classes/model.php:209
1190
- #: ../pricing-table-by-supsystic/classes/model.php:230 classes/model.php:230
1191
- msgid "Empty or invalid ID"
1192
- msgstr "ID vide ou invalide"
1193
-
1194
- #: ../google-maps-easy/classes/table.php:277
1195
- msgid "Nothing to update"
1196
- msgstr "Rien à mettre à jour"
1197
-
1198
- #: ../google-maps-easy/classes/table.php:293
1199
- #: ../pricing-table-by-supsystic/classes/table.php:294 classes/table.php:294
1200
- msgid "Database error. Please contact your developer."
1201
- msgstr "Erreur de base de données. Veuillez contacter votre développeur."
1202
-
1203
- #: ../google-maps-easy/classes/tables/heatmaps.php:7
1204
- msgid "Heatmap ID"
1205
- msgstr "ID de la carte thermique"
1206
-
1207
- #: ../google-maps-easy/classes/tables/heatmaps.php:8
1208
- #: ../google-maps-easy/classes/tables/marker.php:13
1209
- #: ../google-maps-easy/classes/tables/shapes.php:12
1210
- msgid "Map Id"
1211
- msgstr "Carte Id"
1212
-
1213
- #: ../google-maps-easy/classes/tables/heatmaps.php:9
1214
- msgid "Heatmap coordinates list"
1215
- msgstr "Liste des coordonnées de la carte thermique"
1216
-
1217
- #: ../google-maps-easy/classes/tables/heatmaps.php:10
1218
- #: ../google-maps-easy/classes/tables/marker.php:17
1219
- #: ../google-maps-easy/classes/tables/modules.php:10
1220
- #: ../google-maps-easy/classes/tables/options.php:11
1221
- #: ../google-maps-easy/classes/tables/shapes.php:15
1222
- msgid "Params"
1223
- msgstr "Paramètres"
1224
-
1225
- #: ../google-maps-easy/classes/tables/heatmaps.php:11
1226
- #: ../google-maps-easy/classes/tables/marker.php:19
1227
- #: ../google-maps-easy/classes/tables/shapes.php:13
1228
- msgid "Creation date"
1229
- msgstr "Date de création"
1230
-
1231
- #: ../google-maps-easy/classes/tables/marker.php:7
1232
- msgid "Marker ID"
1233
- msgstr "ID Lieu"
1234
-
1235
- #: ../google-maps-easy/classes/tables/marker.php:8
1236
- msgid "Marker name"
1237
- msgstr "Nom du lieu"
1238
-
1239
- #: ../google-maps-easy/classes/tables/marker.php:9
1240
- msgid "Description Of Marker"
1241
- msgstr "Description du lieu"
1242
-
1243
- #: ../google-maps-easy/classes/tables/marker.php:10
1244
- msgid "X coordinate of marker (lng)"
1245
- msgstr "Coordonnée X du marqueur (lng)"
1246
-
1247
- #: ../google-maps-easy/classes/tables/marker.php:11
1248
- msgid "Y coordinate of marker (lat)"
1249
- msgstr "Coordonnée Y du marqueur (lat)"
1250
-
1251
- #: ../google-maps-easy/classes/tables/marker.php:12
1252
- msgid "Path of icon file"
1253
- msgstr "Chemin d’accès du fichier d’icônes"
1254
-
1255
- #: ../google-maps-easy/classes/tables/marker.php:14
1256
- msgid "Marker Address"
1257
- msgstr "Adresse du marqueur"
1258
-
1259
- #: ../google-maps-easy/classes/tables/marker.php:15
1260
- msgid "Id of Marker's group"
1261
- msgstr "Id du groupe de Marker"
1262
-
1263
- #: ../google-maps-easy/classes/tables/marker.php:16
1264
- #: ../google-maps-easy/classes/tables/shapes.php:14
1265
- msgid "Animation"
1266
- msgstr "Animation"
1267
-
1268
- #: ../google-maps-easy/classes/tables/marker.php:18
1269
- #: ../google-maps-easy/classes/tables/options.php:15
1270
- #: ../google-maps-easy/classes/tables/shapes.php:16
1271
- msgid "Sort Order"
1272
- msgstr "Ordre de tri"
1273
-
1274
- #: ../google-maps-easy/classes/tables/marker.php:20
1275
- msgid "Period date from"
1276
- msgstr "Date de la période du"
1277
-
1278
- #: ../google-maps-easy/classes/tables/marker.php:21
1279
- msgid "Period date to"
1280
- msgstr "Date de la période jusqu’au"
1281
-
1282
- #: ../google-maps-easy/classes/tables/marker.php:22
1283
- msgid "Import Kml Layer unique index"
1284
- msgstr "Import Kml Layer unique index"
1285
-
1286
- #: ../google-maps-easy/classes/tables/marker.php:23
1287
- msgid "User who created marker"
1288
- msgstr "Utilisateur qui a créé le marqueur"
1289
-
1290
- #: ../google-maps-easy/classes/tables/modules.php:8
1291
- #: ../google-maps-easy/classes/tables/options.php:13
1292
- msgid "Type"
1293
- msgstr "Type"
1294
-
1295
- #: ../google-maps-easy/classes/tables/modules.php:9
1296
- msgid "Active"
1297
- msgstr "Actif"
1298
-
1299
- #: ../google-maps-easy/classes/tables/modules.php:11
1300
- msgid "Has Tab"
1301
- msgstr "Has Tab"
1302
-
1303
- #: ../google-maps-easy/classes/tables/modules.php:12
1304
- #: ../google-maps-easy/classes/tables/options.php:12
1305
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:12
1306
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:24
1307
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:55
1308
- msgid "Description"
1309
- msgstr "Description"
1310
-
1311
- #: ../google-maps-easy/classes/tables/modules.php:13
1312
- #: ../google-maps-easy/classes/tables/options.php:8
1313
- #: ../google-maps-easy/classes/tables/usage.php:9
1314
- msgid "Code"
1315
- msgstr "Code"
1316
-
1317
- #: ../google-maps-easy/classes/tables/modules.php:14
1318
- msgid "External plugin directory"
1319
- msgstr "Répertoire de plugins externes"
1320
-
1321
- #: ../google-maps-easy/classes/tables/modules_type.php:7
1322
- #: ../google-maps-easy/classes/tables/options.php:7
1323
- #: ../google-maps-easy/classes/tables/options_categories.php:7
1324
- #: ../google-maps-easy/modules/gmap/views/gmap.php:272
1325
- msgid "ID"
1326
- msgstr "ID"
1327
-
1328
- #: ../google-maps-easy/classes/tables/options.php:9
1329
- msgid "Value"
1330
- msgstr "Valeur"
1331
-
1332
- #: ../google-maps-easy/classes/tables/options.php:14
1333
- msgid "Category ID"
1334
- msgstr "ID de catégorie"
1335
-
1336
- #: ../google-maps-easy/classes/tables/options.php:16
1337
- msgid "Value Type"
1338
- msgstr "Type de valeur"
1339
-
1340
- #: ../google-maps-easy/classes/tables/options_categories.php:8
1341
- msgid "Method"
1342
- msgstr "Méthode"
1343
-
1344
- #: ../google-maps-easy/classes/tables/shapes.php:7
1345
- msgid "Shape ID"
1346
- msgstr "ID forme"
1347
-
1348
- #: ../google-maps-easy/classes/tables/shapes.php:8
1349
- msgid "Shape name"
1350
- msgstr "Nom de forme"
1351
-
1352
- #: ../google-maps-easy/classes/tables/shapes.php:9
1353
- msgid "Description of Shape"
1354
- msgstr "Description de la forme"
1355
-
1356
- #: ../google-maps-easy/classes/tables/shapes.php:10
1357
- msgid "Shape coordinates list"
1358
- msgstr "Liste des coordonnées de forme"
1359
-
1360
- #: ../google-maps-easy/classes/tables/shapes.php:11
1361
- msgid "Shape type"
1362
- msgstr "Type de forme"
1363
-
1364
- #: ../google-maps-easy/classes/tables/usage.php:8
1365
- msgid "Usage id"
1366
- msgstr "Utilisation id"
1367
-
1368
- #: ../google-maps-easy/classes/tables/usage.php:10
1369
- msgid "Visits Count"
1370
- msgstr "Nombre de visites"
1371
-
1372
- #: ../google-maps-easy/classes/validator.php:30
1373
- #: ../pricing-table-by-supsystic/classes/validator.php:30
1374
- #: classes/validator.php:30
1375
- #, php-format
1376
- msgid "Invalid length for %s, max length is %s"
1377
- msgstr "Longueur non valide pour %s, la longueur maximale est de %s"
1378
-
1379
- #: ../google-maps-easy/classes/validator.php:43
1380
- #: ../pricing-table-by-supsystic/classes/validator.php:43
1381
- #: classes/validator.php:43
1382
- #, php-format
1383
- msgid "Invalid numeric value for %s"
1384
- msgstr "Valeur numérique non valide pour %s"
1385
-
1386
- #: ../google-maps-easy/classes/validator.php:71
1387
- #: ../google-maps-easy/modules/supsystic_promo/controller.php:39
1388
- #: ../pricing-table-by-supsystic/classes/validator.php:71
1389
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:39
1390
- #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
1391
- #, php-format
1392
- msgid "Please enter %s"
1393
- msgstr "Veuillez entrer %s"
1394
-
1395
- #: ../google-maps-easy/classes/validator.php:78
1396
- #: ../google-maps-easy/modules/supsystic_promo/controller.php:39
1397
- #: ../pricing-table-by-supsystic/classes/validator.php:78
1398
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:39
1399
- #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
1400
- #, php-format
1401
- msgid "Please select %s"
1402
- msgstr "SVP sélectionnez %s"
1403
-
1404
- #: ../google-maps-easy/classes/validator.php:85
1405
- #: ../google-maps-easy/classes/validator.php:101
1406
- #: ../pricing-table-by-supsystic/classes/validator.php:85
1407
- #: ../pricing-table-by-supsystic/classes/validator.php:101
1408
- #: classes/validator.php:85 classes/validator.php:101
1409
- #, php-format
1410
- msgid "Invalid %s"
1411
- msgstr "%s non valide"
1412
-
1413
- #: ../google-maps-easy/classes/validator.php:88
1414
- #: ../pricing-table-by-supsystic/classes/validator.php:88
1415
- #: classes/validator.php:88
1416
- #, php-format
1417
- msgid "%s is already registered"
1418
- msgstr "%s est déjà enregistré"
1419
-
1420
- #: ../google-maps-easy/doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
1421
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
1422
- msgid "Exit Full Screen"
1423
- msgstr "Sortir du plein écran"
1424
-
1425
- #: ../google-maps-easy/doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
1426
- #: ../google-maps-easy/doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
1427
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
1428
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
1429
- msgid "Open Full Screen"
1430
- msgstr "Ouvrir en plein écran"
1431
-
1432
- #: ../google-maps-easy/doc/google-maps-easy-pro/add_map_options/views/tpl/printInfoWndBtn.php:8
1433
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/add_map_options/views/tpl/printInfoWndBtn.php:8
1434
- msgid "Print"
1435
- msgstr "Imprimer"
1436
-
1437
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:96
1438
- msgid "Category"
1439
- msgstr "Catégorie"
1440
-
1441
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:97
1442
- msgid "Calendar"
1443
- msgstr "Calendrier"
1444
-
1445
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:106
1446
- msgid "All Time"
1447
- msgstr "Tout le temps"
1448
-
1449
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:115
1450
- msgid "Search..."
1451
- msgstr "Rechercher..."
1452
-
1453
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:167
1454
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:49
1455
- msgid "Search address..."
1456
- msgstr "Recherche Adresse…"
1457
-
1458
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:191
1459
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:61
1460
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:84
1461
- msgid "Reset"
1462
- msgstr "Réinitialiser"
1463
-
1464
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:204
1465
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:47
1466
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:97
1467
- msgid "Find"
1468
- msgstr "Chercher"
1469
-
1470
- #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:216
1471
- msgid "Search area have no markers, please try to modify search criteria."
1472
- msgstr ""
1473
- "La zone de recherche n’a pas de marqueurs, veuillez essayer de modifier les "
1474
- "critères de recherche."
1475
-
1476
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
1477
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
1478
- msgid "Get Direction"
1479
- msgstr "Obtenir l'itinéraire"
1480
-
1481
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:23
1482
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:23
1483
- msgid "Type the address..."
1484
- msgstr "Tapez l'adresse..."
1485
-
1486
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:32
1487
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:32
1488
- msgid "or"
1489
- msgstr "ou"
1490
-
1491
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:35
1492
- msgid "Get current user location"
1493
- msgstr "Obtenir l'emplacement actuel de l'utilisateur"
1494
-
1495
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:45
1496
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:45
1497
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:10
1498
- msgid "Go"
1499
- msgstr "Aller"
1500
-
1501
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
1502
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
1503
- msgid "The Geolocation service failed."
1504
- msgstr "Le service de géolocalisation a échoué."
1505
-
1506
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
1507
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
1508
- msgid "Your browser does not support geolocation."
1509
- msgstr "Votre navigateur ne prend pas en charge la géolocalisation."
1510
-
1511
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
1512
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
1513
- msgid "Route could not be found. Please, try to select another address!"
1514
- msgstr ""
1515
- "La route n'a pas pu être trouvée. S'il vous plaît, essayez de sélectionner "
1516
- "une autre adresse!"
1517
-
1518
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
1519
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
1520
- msgid "Please, select address from search list!"
1521
- msgstr "S'il vous plaît, sélectionnez l'adresse de la liste de recherche!"
1522
-
1523
- #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsPanel.php:4
1524
- msgid "List of Direction's Steps will be here..."
1525
- msgstr "La liste des étapes de la Direction sera ici..."
1526
-
1527
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/controller.php:49
1528
- msgid "Adding markers from the frontend is disabled for the Current Map"
1529
- msgstr ""
1530
- "L'ajout de marqueurs à partir de la frontend est désactivé pour la carte "
1531
- "actuelle"
1532
-
1533
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/mod.php:25
1534
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:9
1535
- msgid "Empty or Invalid Map ID. Please, check your Marker Form Shortcode."
1536
- msgstr ""
1537
- "Carte ID vide ou invalide. S'il vous plaît, vérifiez votre code shortcode de "
1538
- "formulaire de marqueur."
1539
-
1540
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/models/frontend_actions.php:33
1541
- #, php-format
1542
- msgid ""
1543
- "You have exceeded the limit on adding markers from current IP address. "
1544
- "Please try again after %s minutes."
1545
- msgstr ""
1546
- "Vous avez dépassé la limite sur l'ajout de marqueurs à partir de l'adresse "
1547
- "IP actuelle. S'il vous plaît essayer à nouveau après %s minutes."
1548
-
1549
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:16
1550
- msgid "Marker Form will be displayed only for logged in users."
1551
- msgstr ""
1552
- "Le formulaire de marqueur ne s'affichera que pour les utilisateurs connectés."
1553
-
1554
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:17
1555
- msgid "Log In"
1556
- msgstr "Connexion"
1557
-
1558
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:23
1559
- msgid "Marker Form"
1560
- msgstr "Formulaire de marqueur"
1561
-
1562
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:24
1563
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1540
1564
- msgid "Marker Name"
1565
- msgstr "Nom du lieu"
1566
-
1567
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:25
1568
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1633
1569
- msgid "Marker Category"
1570
- msgstr "Catégorie du marqueur"
1571
-
1572
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:27
1573
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1553
1574
- msgid "Marker Description"
1575
- msgstr "Description du Marqueur"
1576
-
1577
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:35
1578
- #: ../google-maps-easy/modules/gmap/views/gmap.php:310
1579
- #: ../google-maps-easy/modules/gmap/views/gmap.php:377
1580
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:207
1581
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:236
1582
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:537
1583
- #: ../google-maps-easy/modules/marker/mod.php:20
1584
- #: ../google-maps-easy/modules/marker_groups/views/marker_groups.php:26
1585
- msgid "None"
1586
- msgstr "Aucun"
1587
-
1588
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:56
1589
- msgid ""
1590
- "Marker's Form is not displayed, because the option &quot;Add markers on "
1591
- "frontend&quot; is disabled for the Current Map"
1592
- msgstr ""
1593
- "Le formulaire de marqueur n'est pas affiché, parce que l'option 'quot;"
1594
- "Ajouter des marqueurs sur frontend'quot; est désactivé e pour la carte "
1595
- "actuelle"
1596
-
1597
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:20
1598
- msgid "You need to use marker form on page with map"
1599
- msgstr ""
1600
- "Vous devez utiliser le formulaire de marqueur sur la page avec la carte"
1601
-
1602
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:24
1603
- msgid "Use this form to add markers to your map"
1604
- msgstr "Utilisez ce formulaire pour ajouter des marqueurs à votre carte"
1605
-
1606
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:46
1607
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1927
1608
- msgid "Add by Click"
1609
- msgstr "Ajouter par clic"
1610
-
1611
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:58
1612
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1082
1613
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1580
1614
- msgid "Choose Icon"
1615
- msgstr "Choisissez l’icône"
1616
-
1617
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:65
1618
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2114
1619
- msgid "Save Marker"
1620
- msgstr "Enregistrer le marqueur"
1621
-
1622
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:90
1623
- msgid "Choose the marker"
1624
- msgstr "Choisissez le marqueur"
1625
-
1626
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:99
1627
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2120
1628
- msgid "Delete Marker"
1629
- msgstr "Supprimer un marqueur"
1630
-
1631
- #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:101
1632
- msgid "You need to choose the marker"
1633
- msgstr "Vous devez choisir le marqueur"
1634
-
1635
- #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:28
1636
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:28
1637
- msgid "Empty or invalid Heatmap ID"
1638
- msgstr "ID Heatmap vide ou invalide"
1639
-
1640
- #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:35
1641
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:35
1642
- msgid "Heatmap Not Found"
1643
- msgstr "Heatmap introuvable"
1644
-
1645
- #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:41
1646
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:41
1647
- msgid "Cannot remove Heatmap"
1648
- msgstr "Ne peut pas supprimer Heatmap"
1649
-
1650
- #: ../google-maps-easy/doc/google-maps-easy-pro/kml/controller.php:39
1651
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/kml/controller.php:16
1652
- msgid "Security check failed"
1653
- msgstr "Le contrôle de sécurité a échoué"
1654
-
1655
- #: ../google-maps-easy/doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:6
1656
- msgid "KML Layers Filter"
1657
- msgstr "Filtre KML Layers"
1658
-
1659
- #: ../google-maps-easy/doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:16
1660
- msgid "KML data loading"
1661
- msgstr "Chargement de données KML"
1662
-
1663
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:30
1664
- #, php-format
1665
- msgid ""
1666
- "Your license is expired. Once you extend your license - you will be able to "
1667
- "Update PRO version. To extend PRO version license - follow <a href='%s' "
1668
- "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab and "
1669
- "click on &quot;Re-activate&quot; button to re-activate your PRO version."
1670
- msgstr ""
1671
- "Votre licence est expirée. Une fois que vous avez prolongé votre licence - "
1672
- "vous serez en mesure de mettre à jour la version PRO. Pour étendre la "
1673
- "licence de version PRO - suivez <a href='%s' target='_blank'>ce lien,</"
1674
- "a>puis - allez à l'onglet <a href='%s'>Licence</a> et cliquez sur \"Réactiver"
1675
- "\" bouton pour réactiver votre version PRO."
1676
-
1677
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:39
1678
- #, php-format
1679
- msgid ""
1680
- "Your plugin PRO license is expired. It means your PRO version will work as "
1681
- "usual - with all features and options, but you will not be able to update "
1682
- "the PRO version and use PRO support. To extend PRO version license - follow "
1683
- "<a href='%s' target='_blank'>this link</a>"
1684
- msgstr ""
1685
- "Votre licence de plugin PRO est expirée. Cela signifie que votre version PRO "
1686
- "fonctionnera comme d’habitude - avec toutes les fonctionnalités et options, "
1687
- "MAIS vous ne pourrez pas mettre à jour la version PRO et utiliser le support "
1688
- "PRO. Pour étendre la licence de la version PRO - suivez <a href=« %s » "
1689
- "target=« _blank »>ce lien</a>"
1690
-
1691
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:44
1692
- #, php-format
1693
- msgid ""
1694
- "You need to activate your copy of PRO version %s plugin. Go to <a "
1695
- "href='%s'>License</a> tab and finish your software activation process."
1696
- msgstr ""
1697
- "Vous devez activer votre copie du plugin PRO version %s. Allez dans l’onglet "
1698
- "<a href=« %s »>License</a> et terminez votre processus d’activation du "
1699
- "logiciel."
1700
-
1701
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:93
1702
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:74
1703
- msgid "Activate License"
1704
- msgstr "Activer la licence"
1705
-
1706
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:95
1707
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:76
1708
- msgid "Renew License"
1709
- msgstr "Renouveler la licence"
1710
-
1711
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:138
1712
- msgid ""
1713
- "There was a problem with sending request to your authentication server. "
1714
- "Please try later."
1715
- msgstr ""
1716
- "Il y avait un problème avec l'envoi de demande à votre serveur "
1717
- "d'authentification. S'll vous plaît, essayez plus tard."
1718
-
1719
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
1720
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
1721
- #, php-format
1722
- msgid ""
1723
- "Congratulations! PRO version of %s plugin is activated and working fine!"
1724
- msgstr ""
1725
- "Félicitations! PRO version de plugin %s est activé et fonctionne très bien!"
1726
-
1727
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
1728
- #, php-format
1729
- msgid ""
1730
- "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
1731
- "target='_blank'>click here</a> to extend your license, then - click on &quot;"
1732
- "Re-activate&quot; button to re-activate your PRO version."
1733
- msgstr ""
1734
- "Votre licence pour la version PRO de %s plugin - expiré. Vous pouvez <a "
1735
- "href='%s' target='_blank'>cliquer ici</a> pour étendre votre licence, puis - "
1736
- "cliquez sur le bouton \"Réactiver\" pour réactiver votre version PRO."
1737
-
1738
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
1739
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
1740
- #, php-format
1741
- msgid ""
1742
- "Congratulations! You have successfully installed PRO version of %s plugin. "
1743
- "Final step to finish Your PRO version setup - is to enter your Email and "
1744
- "License Key on this page. This will activate Your copy of software on this "
1745
- "site."
1746
- msgstr ""
1747
- "Félicitations ! Vous avez correctement installé la version PRO du plugin %s. "
1748
- "La Dernière étape pour terminer l’installation de votre version PRO est "
1749
- "d’entrer votre Email et la clé de licence sur cette page. Cela activera "
1750
- "votre copie du logiciel sur ce site."
1751
-
1752
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
1753
- #, php-format
1754
- msgid ""
1755
- "Your email address, used on checkout procedure on <a href='%s' "
1756
- "target='_blank'>%s</a>"
1757
- msgstr ""
1758
- "Votre adresse e-mail, utilisée lors de la procédure d’achat sur <a href='%s' "
1759
- "target='_blank'>%s</a>"
1760
-
1761
- #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
1762
- #, php-format
1763
- msgid ""
1764
- "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
1765
- msgstr ""
1766
- "Votre clé de licence pour votre compte sur <a href=\"%s\" target=\"_blank\">"
1767
- "%s</a>"
1768
-
1769
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderSimple.php:39
1770
- #, php-format
1771
- msgid "View %s results"
1772
- msgstr "Afficher les résultats de %s"
1773
-
1774
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:10
1775
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:22
1776
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:53
1777
- #: ../google-maps-easy/modules/gmap/views/gmap.php:273
1778
- msgid "Title"
1779
- msgstr "Titre"
1780
-
1781
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:13
1782
- #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:26
1783
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:57
1784
- msgid "Directions"
1785
- msgstr "Directions"
1786
-
1787
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/mod.php:35
1788
- #: ../google-maps-easy/modules/gmap/mod.php:98
1789
- msgid "Empty or Invalid Map ID"
1790
- msgstr "ID de carte vide ou invalide"
1791
-
1792
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/mod.php:35
1793
- msgid "Please, check your shortcode."
1794
- msgstr "S'il vous plaît, vérifiez votre code court."
1795
-
1796
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/places.php:8
1797
- #: ../google-maps-easy/modules/gmap/views/gmap.php:91
1798
- #, php-format
1799
- msgid "Map with ID %d not found"
1800
- msgstr "Carte avec ID %d introuvable"
1801
-
1802
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/places.php:9
1803
- #: ../google-maps-easy/modules/gmap/views/gmap.php:92
1804
- msgid "Map not found"
1805
- msgstr "Carte introuvable"
1806
-
1807
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/places.php:12
1808
- msgid "You must activate using of Places Toolbar in map admin area"
1809
- msgstr ""
1810
- "Vous devez activer l'utilisation de Places Toolbar dans la zone "
1811
- "d'administration de la carte"
1812
-
1813
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:26
1814
- msgid "Type address..."
1815
- msgstr "Adresse de type..."
1816
-
1817
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:54
1818
- msgid "More results"
1819
- msgstr "Charger plus de résultats"
1820
-
1821
- #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:65
1822
- msgid "No Places was found by your request"
1823
- msgstr "Aucun endroit n'a été trouvé par votre demande"
1824
-
1825
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:42
1826
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:57
1827
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:42
1828
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:57
1829
- msgid "Figure Not Found"
1830
- msgstr "Figure non trouvée"
1831
-
1832
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:48
1833
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:63
1834
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:48
1835
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:63
1836
- msgid "Cannot remove figure"
1837
- msgstr "Ne peut pas supprimer la figure"
1838
-
1839
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:99
1840
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:99
1841
- msgid "Empty or invalid figure ID"
1842
- msgstr "ID de figure vide ou invalide"
1843
-
1844
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/models/shape.php:43
1845
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/models/shape.php:43
1846
- msgid "Please enter figure name"
1847
- msgstr "S'il vous plaît entrer le nom de la figure"
1848
-
1849
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/models/shape.php:104
1850
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/models/shape.php:104
1851
- #: ../google-maps-easy/modules/marker/models/marker.php:259
1852
- msgid "Address is empty or not match"
1853
- msgstr "L'adresse est vide ou ne correspond pas"
1854
-
1855
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/models/shape.php:159
1856
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/models/shape.php:158
1857
- msgid "Invalid Figure ID"
1858
- msgstr "ID figure invalide"
1859
-
1860
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
1861
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
1862
- #: ../google-maps-easy/modules/gmap/mod.php:22
1863
- #: ../google-maps-easy/modules/marker/views/tpl/markerListOperations.php:1
1864
- #: ../google-maps-easy/modules/marker_groups/mod.php:14
1865
- #: ../google-maps-easy/modules/marker_groups/mod.php:17
1866
- #: ../pricing-table-by-supsystic/modules/tables/mod.php:23
1867
- #: modules/tables/mod.php:23
1868
- msgid "Edit"
1869
- msgstr "Editer"
1870
-
1871
- #: ../google-maps-easy/doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
1872
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
1873
- #: ../google-maps-easy/modules/marker/views/tpl/markerListOperations.php:1
1874
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:56
1875
- #: modules/tables/views/tpl/tablesEditFormControls.php:56
1876
- msgid "Delete"
1877
- msgstr "Supprimer"
1878
-
1879
- #: ../google-maps-easy/doc/google-maps-easy-pro/wpUpdater.php:70
1880
- msgid ""
1881
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
1882
- "onclick='document.location.reload(); return false;'>Try again</a>"
1883
- msgstr ""
1884
- "Une erreur HTTP inattendue s'est produite pendant la demande d'API.<p><p><a "
1885
- "href='?' onclick='document.location.reload(); return false;'>Réessayez</a>"
1886
-
1887
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:111
1888
- msgid "Please, type a search address."
1889
- msgstr "S'il vous plaît, tapez une adresse de recherche."
1890
-
1891
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:117
1892
- msgid "Search area have no markers, please try to modify search criterias."
1893
- msgstr ""
1894
- "Zone de recherche n'ont pas de marqueurs, s'il vous plaît essayer de "
1895
- "modifier les critères de recherche."
1896
-
1897
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:35
1898
- msgid "Get current user position"
1899
- msgstr "Obtenir la position actuelle de l'utilisateur"
1900
-
1901
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:38
1902
- #, php-format
1903
- msgid ""
1904
- "Your license for PRO version of %s plugin - expired. You can <a href=\"%s\" "
1905
- "target=\"_blank\">click here</a> to extend your license, then - go to <a "
1906
- "href=\"%s\">License</a> tab anc click on \"Re-activate\" button to re-"
1907
- "activate your PRO version."
1908
- msgstr ""
1909
- "Votre licence pour la version PRO de %s plugin - expiré. Vous pouvez <a href="
1910
- "\"%s\" target=\"_blank\">cliquer ici</a> pour étendre votre licence, puis - "
1911
- "allez sur <a href=\"%s\">l'onglet Licence</a> anc cliquez sur \"Réactiver\" "
1912
- "bouton pour réactiver votre version PRO."
1913
-
1914
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:131
1915
- msgid ""
1916
- "There was a problem with sending request to our authentification server. "
1917
- "Please try later."
1918
- msgstr ""
1919
- "Il y avait un problème avec l'envoi de demande à notre serveur "
1920
- "d'authentification. S'll vous plaît, essayez plus tard."
1921
-
1922
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
1923
- #, php-format
1924
- msgid ""
1925
- "Your email address, used on checkout procedure on <a href=\"%s\" target="
1926
- "\"_blank\">%s</a>"
1927
- msgstr ""
1928
- "Votre adresse e-mail, utilisée lors de la procédure de caisse sur <a href="
1929
- "\"%s\" target=\"_blank\">%s</a>"
1930
-
1931
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
1932
- #, php-format
1933
- msgid ""
1934
- "Your License Key from your account on <a href=\"%s\" target=\"_blank\">%s</a>"
1935
- msgstr ""
1936
- "Votre clé de licence pour votre compte sur <a href=\"%s\" target=\"_blank\">"
1937
- "%s</a>"
1938
-
1939
- #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:15
1940
- #: ../google-maps-easy/modules/marker_groups/models/marker_groups.php:221
1941
- msgid "Uncategorized"
1942
- msgstr "Non classé"
1943
-
1944
- #: ../google-maps-easy/modules/adminmenu/controller.php:7
1945
- msgid "Your name field is required."
1946
- msgstr "Votre champ de nom est requis."
1947
-
1948
- #: ../google-maps-easy/modules/adminmenu/controller.php:8
1949
- msgid "Your website field is required."
1950
- msgstr "Votre site Web est nécessaire."
1951
-
1952
- #: ../google-maps-easy/modules/adminmenu/controller.php:9
1953
- msgid "Your e-mail field is required."
1954
- msgstr "Votre champ e-mail est nécessaire."
1955
-
1956
- #: ../google-maps-easy/modules/adminmenu/controller.php:10
1957
- msgid "Subject field is required."
1958
- msgstr "Le champ de sujet est exigé."
1959
-
1960
- #: ../google-maps-easy/modules/adminmenu/controller.php:11
1961
- msgid "You must select a valid category."
1962
- msgstr "Vous devez sélectionner une catégorie valide."
1963
-
1964
- #: ../google-maps-easy/modules/adminmenu/controller.php:12
1965
- msgid "Message field is required."
1966
- msgstr "Le champ de message est requis."
1967
-
1968
- #: ../google-maps-easy/modules/adminmenu/mod.php:13
1969
- #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:13
1970
- #: modules/adminmenu/mod.php:13
1971
- #, php-format
1972
- msgid ""
1973
- "Cool WordPress plugins from supsystic.com developers. I tried %s - and this "
1974
- "was what I need! #supsystic.com"
1975
- msgstr ""
1976
- "De superbes plugins Wordpress de l'équipe de supsystic.com. J’ai essayé %s - "
1977
- "et c’est ce dont j’avais besoin ! #supsystic.com"
1978
-
1979
- #: ../google-maps-easy/modules/adminmenu/mod.php:15
1980
- #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:15
1981
- #: modules/adminmenu/mod.php:15
1982
- msgid "More plugins for your WordPress site here!"
1983
- msgstr "Plus de plugins pour votre site WordPress ici!"
1984
-
1985
- #: ../google-maps-easy/modules/adminmenu/mod.php:16
1986
- #: ../google-maps-easy/modules/adminmenu/mod.php:17
1987
- #: ../google-maps-easy/modules/adminmenu/mod.php:18
1988
- #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:16
1989
- #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:17
1990
- #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:18
1991
- #: modules/adminmenu/mod.php:16 modules/adminmenu/mod.php:17
1992
- #: modules/adminmenu/mod.php:18
1993
- msgid "Spread the word!"
1994
- msgstr "Passez le mot!"
1995
-
1996
- #: ../google-maps-easy/modules/csv/controller.php:7
1997
- #, php-format
1998
- msgid "Maps from %s - %s"
1999
- msgstr "Cartes de %s - %s"
2000
-
2001
- #: ../google-maps-easy/modules/csv/controller.php:10
2002
- msgid "You have no maps for now."
2003
- msgstr "Vous n'avez pas de cartes pour le moment."
2004
-
2005
- #: ../google-maps-easy/modules/csv/controller.php:55
2006
- #, php-format
2007
- msgid "Markers from %s"
2008
- msgstr "Marqueurs de %s"
2009
-
2010
- #: ../google-maps-easy/modules/csv/controller.php:58
2011
- msgid "You have no markers for now."
2012
- msgstr "Vous n'avez pas de marqueurs pour le moment."
2013
-
2014
- #: ../google-maps-easy/modules/csv/controller.php:97
2015
- #, php-format
2016
- msgid "Figures from %s"
2017
- msgstr "Chiffres de %s"
2018
-
2019
- #: ../google-maps-easy/modules/csv/controller.php:100
2020
- msgid "You have no figures for now."
2021
- msgstr "Vous n'avez pas de chiffres pour l'instant."
2022
-
2023
- #: ../google-maps-easy/modules/csv/controller.php:139
2024
- #, php-format
2025
- msgid "Heatmap from %s"
2026
- msgstr "Carte thermique à partir de %s"
2027
-
2028
- #: ../google-maps-easy/modules/csv/controller.php:142
2029
- msgid "You have no heatmap for now."
2030
- msgstr "Vous n'avez pas de carte thermique pour l'instant."
2031
-
2032
- #: ../google-maps-easy/modules/csv/controller.php:201
2033
- msgid "Missing File"
2034
- msgstr "Fichier manquant"
2035
-
2036
- #: ../google-maps-easy/modules/csv/controller.php:203
2037
- #, php-format
2038
- msgid "File uploaded with error code %s"
2039
- msgstr "Fichier téléchargé avec code d'erreur %s"
2040
-
2041
- #: ../google-maps-easy/modules/csv/controller.php:317
2042
- msgid ""
2043
- "File should contain more then 1 row, at least 1 row should be for headers"
2044
- msgstr ""
2045
- "Le fichier devrait contenir plus d'1 ligne, au moins 1 ligne pour les en-"
2046
- "têtes"
2047
-
2048
- #: ../google-maps-easy/modules/csv/controller.php:319
2049
- msgid "Empty data in file"
2050
- msgstr "Données vides dans le fichier"
2051
-
2052
- #: ../google-maps-easy/modules/csv/mod.php:11
2053
- msgid "Maps Import / Export"
2054
- msgstr "Cartes Importation / Exportation"
2055
-
2056
- #: ../google-maps-easy/modules/csv/models/csv.php:133
2057
- msgid "Can not detect import list type"
2058
- msgstr "Impossible de détecter le type de liste d'importation"
2059
-
2060
- #: ../google-maps-easy/modules/csv/models/csv.php:135
2061
- msgid "Can not find fields names"
2062
- msgstr "Impossible de trouver des noms de champs"
2063
-
2064
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:8
2065
- msgid "Maps"
2066
- msgstr "Cartes"
2067
-
2068
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:13
2069
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:34
2070
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:55
2071
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:76
2072
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:8
2073
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:27
2074
- #: modules/tables/views/tpl/tablesImportExport.php:8
2075
- #: modules/tables/views/tpl/tablesImportExport.php:27
2076
- msgid "Export"
2077
- msgstr "Exporter"
2078
-
2079
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:18
2080
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:39
2081
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:60
2082
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:81
2083
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:5
2084
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:52
2085
- #: modules/tables/views/tpl/tablesImportExport.php:5
2086
- #: modules/tables/views/tpl/tablesImportExport.php:52
2087
- msgid "Import"
2088
- msgstr "Importer"
2089
-
2090
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:29
2091
- #: ../google-maps-easy/modules/gmap/views/gmap.php:275
2092
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:64
2093
- msgid "Markers"
2094
- msgstr "Marqueurs"
2095
-
2096
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:50
2097
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:73
2098
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:276
2099
- msgid "Figures"
2100
- msgstr "Figures"
2101
-
2102
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:71
2103
- msgid "HeatMap Layer"
2104
- msgstr "Carte thermique"
2105
-
2106
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:93
2107
- msgid "CSV Options"
2108
- msgstr "Options CSV"
2109
-
2110
- #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:99
2111
- msgid "Delimiter"
2112
- msgstr "Délimiteur"
2113
-
2114
- #: ../google-maps-easy/modules/gmap/controller.php:23
2115
- msgid "Map data not found"
2116
- msgstr "Données cartographiques non trouvées"
2117
-
2118
- #: ../google-maps-easy/modules/gmap/mod.php:19
2119
- msgid "Add Map"
2120
- msgstr "Ajouter une carte"
2121
-
2122
- #: ../google-maps-easy/modules/gmap/mod.php:25
2123
- msgid "All Maps"
2124
- msgstr "Toutes les cartes"
2125
-
2126
- #: ../google-maps-easy/modules/gmap/mod.php:35
2127
- msgid "No Map Found"
2128
- msgstr "Aucune carte trouvée"
2129
-
2130
- #: ../google-maps-easy/modules/gmap/mod.php:98
2131
- msgid "Please, check your Map Shortcode."
2132
- msgstr "S'il vous plaît, consultez votre code court carte."
2133
-
2134
- #: ../google-maps-easy/modules/gmap/mod.php:118
2135
- msgid "Top Center"
2136
- msgstr "En haut au centre"
2137
-
2138
- #: ../google-maps-easy/modules/gmap/mod.php:119
2139
- msgid "Top Left"
2140
- msgstr "En haut à gauche"
2141
-
2142
- #: ../google-maps-easy/modules/gmap/mod.php:120
2143
- msgid "Top Right"
2144
- msgstr "En haut à droite"
2145
-
2146
- #: ../google-maps-easy/modules/gmap/mod.php:121
2147
- msgid "Left Top"
2148
- msgstr "En haut à gauche"
2149
-
2150
- #: ../google-maps-easy/modules/gmap/mod.php:122
2151
- msgid "Right Top"
2152
- msgstr "En haut à droite"
2153
-
2154
- #: ../google-maps-easy/modules/gmap/mod.php:123
2155
- msgid "Left Center"
2156
- msgstr "Centré à gauche"
2157
-
2158
- #: ../google-maps-easy/modules/gmap/mod.php:124
2159
- msgid "Right Center"
2160
- msgstr "Au centre à droite"
2161
-
2162
- #: ../google-maps-easy/modules/gmap/mod.php:125
2163
- msgid "Left Bottom"
2164
- msgstr "En bas à gauche"
2165
-
2166
- #: ../google-maps-easy/modules/gmap/mod.php:126
2167
- msgid "Right Bottom"
2168
- msgstr "En bas à droite"
2169
-
2170
- #: ../google-maps-easy/modules/gmap/mod.php:127
2171
- msgid "Bottom Center"
2172
- msgstr "Bas Centre"
2173
-
2174
- #: ../google-maps-easy/modules/gmap/mod.php:128
2175
- msgid "Bottom Left"
2176
- msgstr "En bas à gauche"
2177
-
2178
- #: ../google-maps-easy/modules/gmap/mod.php:129
2179
- msgid "Bottom Right"
2180
- msgstr "En bas à droite"
2181
-
2182
- #: ../google-maps-easy/modules/gmap/mod.php:134
2183
- msgid "meters"
2184
- msgstr "mètres"
2185
-
2186
- #: ../google-maps-easy/modules/gmap/mod.php:135
2187
- msgid "miles"
2188
- msgstr "miles"
2189
-
2190
- #: ../google-maps-easy/modules/gmap/mod.php:161
2191
- msgid "Slider"
2192
- msgstr "Slider"
2193
-
2194
- #: ../google-maps-easy/modules/gmap/mod.php:162
2195
- msgid "Slider - Title and Img"
2196
- msgstr "Slider - Titre et Img"
2197
-
2198
- #: ../google-maps-easy/modules/gmap/mod.php:163
2199
- msgid "Slider Vertical"
2200
- msgstr "Slider Vertical"
2201
-
2202
- #: ../google-maps-easy/modules/gmap/mod.php:164
2203
- #: ../google-maps-easy/modules/gmap/mod.php:166
2204
- msgid "Slider Vertical - Title and Img"
2205
- msgstr "Slider Vertical - Titre et Img"
2206
-
2207
- #: ../google-maps-easy/modules/gmap/mod.php:165
2208
- msgid "Slider Vertical - Title and Description"
2209
- msgstr "Slider Vertical - Titre et Description"
2210
-
2211
- #: ../google-maps-easy/modules/gmap/mod.php:167
2212
- msgid "Slider Table"
2213
- msgstr "Slider Tab"
2214
-
2215
- #: ../google-maps-easy/modules/gmap/mod.php:168
2216
- msgid "Slider Checkbox Table"
2217
- msgstr "Table de la case à cocher Slider"
2218
-
2219
- #: ../google-maps-easy/modules/gmap/mod.php:194
2220
- msgid "Google Map"
2221
- msgstr "Google Map"
2222
-
2223
- #: ../google-maps-easy/modules/gmap/models/gmap.php:94
2224
- msgid "Please enter Map Name"
2225
- msgstr "S'il vous plaît entrer nom de la carte"
2226
-
2227
- #: ../google-maps-easy/modules/gmap/models/gmap.php:123
2228
- #: ../google-maps-easy/modules/marker_groups/models/marker_groups.php:145
2229
- msgid "Empty Params"
2230
- msgstr "Params vides"
2231
-
2232
- #: ../google-maps-easy/modules/gmap/models/gmap.php:132
2233
- #: ../google-maps-easy/modules/gmap/models/gmap.php:233
2234
- msgid "Invalid Map ID"
2235
- msgstr "ID de carte invalide"
2236
-
2237
- #: ../google-maps-easy/modules/gmap/views/gmap.php:274
2238
- msgid "Html options"
2239
- msgstr "Options Html"
2240
-
2241
- #: ../google-maps-easy/modules/gmap/views/gmap.php:276
2242
- msgid "Operations"
2243
- msgstr "Opérations"
2244
-
2245
- #: ../google-maps-easy/modules/gmap/views/gmap.php:391
2246
- msgid "Error inside google maps plugin."
2247
- msgstr "Erreur à l'intérieur de google maps plugin."
2248
-
2249
- #: ../google-maps-easy/modules/gmap/views/gmap.php:395
2250
- #: ../google-maps-easy/modules/gmap/views/gmap.php:400
2251
- msgid ""
2252
- "To use this feature, You need to reactivate your Google Maps Easy plugin."
2253
- msgstr ""
2254
- "Pour utiliser cette fonctionnalité, vous devez réactiver votre plugin Google "
2255
- "Maps Easy."
2256
-
2257
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:8
2258
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:11
2259
- msgid "Clone selected"
2260
- msgstr "Clone sélectionné"
2261
-
2262
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:33
2263
- #, php-format
2264
- msgid ""
2265
- "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
2266
- "a> your first Map!"
2267
- msgstr ""
2268
- "Vous n'avez pas de cartes pour l'instant. <a href='%s' style='font-style: "
2269
- "italic;'>Créez</a> votre première carte !"
2270
-
2271
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapDrawMap.php:25
2272
- msgid ""
2273
- "This feature available in PRO version. You can get it <a href=\"\" target="
2274
- "\"_blank\">here</a>."
2275
- msgstr ""
2276
- "Cette fonctionnalité est disponible en version PRO. Vous pouvez l'obtenir <a "
2277
- "href=\"\" target=\"_blank\">ici</a>."
2278
-
2279
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapDrawMap.php:28
2280
- msgid "You need to upgrade PRO plugin to latest version to use this feature"
2281
- msgstr ""
2282
- "Vous devez mettre à niveau le plugin PRO à la dernière version pour utiliser "
2283
- "cette fonctionnalité"
2284
-
2285
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:4
2286
- #, php-format
2287
- msgid ""
2288
- "This option is available in <a target='_blank' href='%s'>PRO version</a> "
2289
- "only, you can get it <a target='_blank' href='%s'>here.</a>"
2290
- msgstr ""
2291
- "Cette option est disponible en <a target='_blank' href='%s'>version PRO</a> "
2292
- "seulement, vous pouvez l'obtenir <a target='_blank' href='%s'>ici.</a>"
2293
-
2294
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:23
2295
- msgid "Insert to Contact Form"
2296
- msgstr "Insérer le formulaire de contact"
2297
-
2298
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:29
2299
- msgid "Integrate with Membership"
2300
- msgstr "Intégrer avec l'adhésion"
2301
-
2302
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:37
2303
- msgid "Enable for Membership"
2304
- msgstr "Activer l'adhésion"
2305
-
2306
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:44
2307
- msgid "Map shortcode"
2308
- msgstr "Mapper un shortcode"
2309
-
2310
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:45
2311
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:11
2312
- #: modules/tables/views/tpl/tablesEditFormControls.php:11
2313
- msgid "PHP code"
2314
- msgstr "Code PHP"
2315
-
2316
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:47
2317
- msgid "Shortcode will appear after you save map."
2318
- msgstr "Shortcode apparaîtra après avoir sauvegraphié la carte."
2319
-
2320
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:58
2321
- msgid "Map"
2322
- msgstr "Carte"
2323
-
2324
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:66
2325
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:75
2326
- msgid "New"
2327
- msgstr "Créer"
2328
-
2329
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:82
2330
- msgid "Heatmap Layer"
2331
- msgstr "Heatmap Layer"
2332
-
2333
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:94
2334
- msgid "Map Name"
2335
- msgstr "Nom de la carte"
2336
-
2337
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:96
2338
- msgid "Your map name"
2339
- msgstr "Nom de votre carte"
2340
-
2341
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:108
2342
- msgid "Map Width"
2343
- msgstr "Largeur de la carte"
2344
-
2345
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:110
2346
- msgid "Your map width"
2347
- msgstr "Largeur de votre carte"
2348
-
2349
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:120
2350
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:153
2351
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1366
2352
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1420
2353
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1442
2354
- msgid "Pixels"
2355
- msgstr "Pixels"
2356
-
2357
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:123
2358
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:156
2359
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1332
2360
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1372
2361
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1424
2362
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1446
2363
- msgid "Px"
2364
- msgstr "Px"
2365
-
2366
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:127
2367
- msgid "Percent"
2368
- msgstr "Pourcent"
2369
-
2370
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:134
2371
- msgid "Map Height"
2372
- msgstr "Hauteur de la carte"
2373
-
2374
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:136
2375
- msgid ""
2376
- "Your map height.<br /><br />If Adapt map to screen height option is checked "
2377
- "- map height will be recalculated on frontend and can be equals to:"
2378
- "<ul><li>1) your device screen height - height from top of page to top of map "
2379
- "(if screen height > height from top of page to top of map)</li><li>2) your "
2380
- "device screen height (in other cases)</li></ul>Recalculation will be done "
2381
- "for maps in page content and widgets except of maps which displaying in "
2382
- "Google Maps Easy widget popup (Display as image mode)."
2383
- msgstr ""
2384
- "La hauteur de votre carte.<br><br>Si l'option Adapt map to screen height est "
2385
- "vérifiée - la hauteur de la carte sera recalculée sur le frontend et peut "
2386
- "être égale à :<ul><li>1) la hauteur de l'écran de votre appareil - hauteur "
2387
- "du haut de la page en haut de la carte (si la hauteur de l'écran - hauteur "
2388
- "de haut en haut de la carte)</li><li>2) hauteur de l'écran de votre appareil "
2389
- "(dans d'autres cas)</li></ul>Le recalcul sera effectué pour les cartes dans "
2390
- "le contenu de la page et les widgets, sauf pour les cartes qui s'affichent "
2391
- "dans Google Maps Easy widget popup (Afficher en mode image)."
2392
-
2393
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:165
2394
- msgid "Adapt map to screen height"
2395
- msgstr "Adapter la carte à la hauteur de l'écran"
2396
-
2397
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:171
2398
- msgid "Content Before"
2399
- msgstr "Avant le contenu"
2400
-
2401
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:180
2402
- msgid "Content After"
2403
- msgstr "Après le contenu"
2404
-
2405
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:200
2406
- msgid "Map type control"
2407
- msgstr "Contrôle du type de carte"
2408
-
2409
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:202
2410
- msgid ""
2411
- "Control view for map type - you can see it in left upper corner by default"
2412
- msgstr ""
2413
- "Vue de contrôle pour le type de carte - vous pouvez le voir dans le coin "
2414
- "supérieur gauche par défaut"
2415
-
2416
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:207
2417
- msgid "Dropdown Menu"
2418
- msgstr "Menu déroulant"
2419
-
2420
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:207
2421
- msgid "Horizontal Bar"
2422
- msgstr "Barre horizontale"
2423
-
2424
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:213
2425
- msgid "Change type control position on map"
2426
- msgstr "Changer la position de contrôle de type sur la carte"
2427
-
2428
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:220
2429
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:249
2430
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:282
2431
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:385
2432
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:605
2433
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:696
2434
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:713
2435
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:730
2436
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:754
2437
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:850
2438
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:991
2439
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1008
2440
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1025
2441
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1068
2442
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1108
2443
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1190
2444
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1465
2445
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1516
2446
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1762
2447
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1776
2448
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1798
2449
- #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:70
2450
- #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:52
2451
- #: modules/options/views/tpl/optionsSettingsTabContent.php:52
2452
- msgid "PRO option"
2453
- msgstr "Option PRO"
2454
-
2455
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:228
2456
- msgid "Zoom control"
2457
- msgstr "Contrôle du zoom"
2458
-
2459
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:230
2460
- msgid ""
2461
- "Zoom control type on your map. Note, to view Zoom control on the map the "
2462
- "Custom Map Controls option must be disabled."
2463
- msgstr ""
2464
- "Type de contrôle de zoom sur votre carte. Remarque, pour afficher le "
2465
- "contrôle Zoom sur la carte, l'option Contrôles de carte personnalisée doit "
2466
- "être désactivée."
2467
-
2468
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:236
2469
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:591
2470
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1288
2471
- msgid "Default"
2472
- msgstr "Par défaut"
2473
-
2474
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:242
2475
- msgid "Change zoom control position on map"
2476
- msgstr "Modifier la position de contrôle du zoom sur la carte"
2477
-
2478
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:253
2479
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:585
2480
- #: modules/tables/views/tpl/tablesEditAdmin.php:585
2481
- msgid "Notice"
2482
- msgstr "Notification"
2483
-
2484
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:255
2485
- msgid ""
2486
- "Standard Zoom control will not displaying for this map, because the Custom "
2487
- "Map Controls option enabled now."
2488
- msgstr ""
2489
- "Le contrôle de zoom standard ne s'affiche pas pour cette carte, car l'option "
2490
- "Contrôles de carte personnalisée s'affiche maintenant."
2491
-
2492
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:263
2493
- msgid "Street view control"
2494
- msgstr "Street view contrôle"
2495
-
2496
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:265
2497
- msgid ""
2498
- "Street view control usually is located on right lower corner of your map"
2499
- msgstr ""
2500
- "Le contrôle de vue de rue est habituellement situé au coin inférieur droit "
2501
- "de votre carte"
2502
-
2503
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:275
2504
- msgid "Change street view control position on map"
2505
- msgstr "Changer la position de contrôle de vue de rue sur la carte"
2506
-
2507
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:339
2508
- msgid "Draggable"
2509
- msgstr "Déplaçable"
2510
-
2511
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:341
2512
- msgid "Enable or disable possibility to drag your map using mouse"
2513
- msgstr ""
2514
- "Activer ou désactiver la possibilité de faire glisser votre carte à l'aide "
2515
- "de la souris"
2516
-
2517
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:350
2518
- msgid "Mouse wheel to zoom"
2519
- msgstr "Roue de souris pour zoomer"
2520
-
2521
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:352
2522
- msgid ""
2523
- "Sometimes you need to disable possibility to zoom your map using mouse "
2524
- "wheel. This can be required for example - if you need to use your wheel for "
2525
- "some other action, for example scroll your site even if mouse is over your "
2526
- "map."
2527
- msgstr ""
2528
- "Parfois, vous devez désactiver la possibilité de zoomer votre carte à l'aide "
2529
- "de la roue de la souris. Cela peut être nécessaire par exemple - si vous "
2530
- "avez besoin d'utiliser votre roue pour une autre action, par exemple faire "
2531
- "défiler votre site, même si la souris est sur votre carte."
2532
-
2533
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:363
2534
- msgid "Double click to zoom"
2535
- msgstr "Double clic pour zoomer"
2536
-
2537
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:365
2538
- msgid ""
2539
- "By default double left click on map will zoom it in. But you can change this "
2540
- "here."
2541
- msgstr ""
2542
- "Par défaut, le double clic gauche sur la carte le zoome. Mais vous pouvez "
2543
- "changer cela ici."
2544
-
2545
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:374
2546
- msgid "Set Static"
2547
- msgstr "Définir statique"
2548
-
2549
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:376
2550
- msgid ""
2551
- "Show map as a Static image. This will allow you to make it cheeper according "
2552
- "to new Google Maps API usage Rates. Be aware - not all options will work in "
2553
- "this mode!"
2554
- msgstr ""
2555
- "Afficher la carte sous forme d'image statique. Cela vous permettra de le "
2556
- "rendre cheeper selon les nouveaux taux d'utilisation de l'API Google Maps. "
2557
- "Soyez conscient - pas toutes les options fonctionneront dans ce mode!"
2558
-
2559
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:395
2560
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:44
2561
- msgid "Map Center"
2562
- msgstr "Centre de la carte"
2563
-
2564
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:397
2565
- msgid ""
2566
- "Sets map center. You can set map center in next ways: type address to use "
2567
- "its coords, type the coords' values in appropriate fields or just drag the "
2568
- "map on preview."
2569
- msgstr ""
2570
- "Définit le centre de la carte. Vous pouvez définir le centre de carte de la "
2571
- "prochaine manière : tapez l'adresse pour utiliser ses coords, tapez les "
2572
- "valeurs des coords dans les champs appropriés ou faites simplement glisser "
2573
- "la carte sur aperçu."
2574
-
2575
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:411
2576
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1605
2577
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1949
2578
- msgid "Latitude"
2579
- msgstr "Latitude"
2580
-
2581
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:419
2582
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1619
2583
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1958
2584
- msgid "Longitude"
2585
- msgstr "Longitude"
2586
-
2587
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:430
2588
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:56
2589
- msgid "Map Zoom"
2590
- msgstr "Zoom de la carte"
2591
-
2592
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:432
2593
- msgid ""
2594
- "Sets map zoom.<br /><br />\n"
2595
- "\t\t\t\t\t\t\t\t\t\t\t<b>Preset Zoom</b> - sets zoom value for map. You can "
2596
- "change this value just change zoom on the map preview.<br /><br />\n"
2597
- "\t\t\t\t\t\t\t\t\t\t\t<b>Fit Bounds</b> - map zoom will be changed on "
2598
- "frontend in a way that all markers and figures will be visible.<br /><br />\n"
2599
- "\t\t\t\t\t\t\t\t\t\t\t<b>Min Zoom Level</b> - sets minimum zoom level "
2600
- "(maximum estrangement), which can be applied for map.<br /><br />\n"
2601
- "\t\t\t\t\t\t\t\t\t\t\t<b>Max Zoom Level</b> - sets maximum zoom level "
2602
- "(maximum approximation), which can be applied for map.\n"
2603
- "\t\t\t\t\t\t\t\t\t\t\t"
2604
- msgstr ""
2605
- "Définit le zoom de la carte.<br /><br />br />.\n"
2606
- "\t\t\t\t\t\t\t\t\t\t\t<b>Preset Zoom</b> - définit la valeur du zoom pour la "
2607
- "carte. Vous pouvez changer cette valeur en changeant simplement le zoom sur "
2608
- "l’aperçu de la carte.<br /><br />br />>.\n"
2609
- "\t\t\t\t\t\t\t\t\t\t\t<b>Fit Bounds</b> - le zoom de la carte sera modifié "
2610
- "en façade de manière à ce que tous les marqueurs et figures soient visibles. "
2611
- "<br /><br />br />>.\n"
2612
- "\t\t\t\t\t\t\t\t\t\t\t<b>Min Zoom Level</b> - définit le niveau de zoom "
2613
- "minimum (éloignement maximum), qui peut être appliqué pour map.<br /><br /"
2614
- "><br />.\n"
2615
- "\t\t\t\t\t\t\t\t\t\t\t<b>Niveau de zoom maximum </b> - définit le niveau de "
2616
- "zoom maximum (approximation maximum), qui peut être appliqué à la carte.\n"
2617
- "\t\t\t\t\t\t\t\t\t\t\t"
2618
-
2619
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:446
2620
- msgid "Preset Zoom"
2621
- msgstr "Zoom préréglé"
2622
-
2623
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:446
2624
- msgid "Fit Bounds"
2625
- msgstr "Ajustement des limites"
2626
-
2627
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:453
2628
- msgid "Zoom Level"
2629
- msgstr "Niveau de zoom"
2630
-
2631
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:463
2632
- msgid "Mobile Zoom Level"
2633
- msgstr "Niveau Zoom Mobile"
2634
-
2635
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:474
2636
- msgid "Min Zoom Level"
2637
- msgstr "Niveau Min Zoom"
2638
-
2639
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:483
2640
- msgid "Max Zoom Level"
2641
- msgstr "Niveau du Zoom Max"
2642
-
2643
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:497
2644
- msgid "Google Map Theme"
2645
- msgstr "Thème Google Map"
2646
-
2647
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:499
2648
- msgid ""
2649
- "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
2650
- "Terrain - here. By default your map will have Road Map Google maps theme."
2651
- msgstr ""
2652
- "Vous pouvez sélectionner votre thème Google Map - Feuille de route, hybride, "
2653
- "satellite ou terrain - ici. Par défaut, votre carte aura Road Map Google "
2654
- "Maps thème."
2655
-
2656
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:503
2657
- msgid "Road Map"
2658
- msgstr "Carte routière"
2659
-
2660
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:503
2661
- msgid "Hybrid"
2662
- msgstr "Hybride"
2663
-
2664
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:503
2665
- msgid "Satellite"
2666
- msgstr "Satellite"
2667
-
2668
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:503
2669
- msgid "Terrain"
2670
- msgstr "Terrain"
2671
-
2672
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:511
2673
- msgid "Map Stylization"
2674
- msgstr "Stylisation des cartes"
2675
-
2676
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:513
2677
- msgid ""
2678
- "Make your map unique with our Map Themes, just try to change it here - and "
2679
- "you will see results on your Map Preview."
2680
- msgstr ""
2681
- "Rendez votre carte unique avec nos thèmes de carte, essayez simplement de la "
2682
- "changer ici - et vous verrez les résultats sur votre aperçu de carte."
2683
-
2684
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:523
2685
- msgid "Get 300+ Themes with PRO"
2686
- msgstr "Obtenez plus de 300 thèmes en version PRO"
2687
-
2688
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:531
2689
- msgid "Markers Clusterization"
2690
- msgstr "Clusterisation des marqueurs"
2691
-
2692
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:533
2693
- msgid ""
2694
- "If you have many markers - you can have a problems with viewing them when "
2695
- "zoom out for example: they will just cover each-other. Marker clusterization "
2696
- "can solve this problem by grouping your markers in groups when they are too "
2697
- "close to each-other."
2698
- msgstr ""
2699
- "Si vous avez de nombreux marqueurs - vous pouvez avoir un problème avec leur "
2700
- "visualisation lors du zoom arrière par exemple: ils vont simplement couvrir "
2701
- "les uns les autres. La clusterisation des marqueurs peut résoudre ce "
2702
- "problème en regroupant vos marqueurs en groupes lorsqu'ils sont trop proches "
2703
- "les uns des autres."
2704
-
2705
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:537
2706
- msgid "Base Clusterization"
2707
- msgstr "Clusterisation de base"
2708
-
2709
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:549
2710
- msgid "/gmap/img/m1.png"
2711
- msgstr "/gmap/img/m1.png"
2712
-
2713
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:566
2714
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1083
2715
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1581
2716
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:83
2717
- msgid "Upload Icon"
2718
- msgstr "Télécharger une icône"
2719
-
2720
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:567
2721
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:84
2722
- msgid "Default Icon"
2723
- msgstr "Icône par défaut"
2724
-
2725
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:571
2726
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:58
2727
- msgid "Cluster Icon"
2728
- msgstr "Icône de cluster"
2729
-
2730
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:581
2731
- msgid "Cluster Area Size"
2732
- msgstr "Taille de la zone de cluster"
2733
-
2734
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:583
2735
- msgid ""
2736
- "Sets the grid size of cluster. The higher the size - the more area of "
2737
- "capture the markers to the cluster."
2738
- msgstr ""
2739
- "Définit la taille de la grille de cluster. Plus la taille est élevée - plus "
2740
- "la zone de capture des marqueurs à l'amas."
2741
-
2742
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:600
2743
- msgid "Markers List"
2744
- msgstr "Liste des marqueurs"
2745
-
2746
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:602
2747
- msgid ""
2748
- "Display all map markers - as list below Your map. This will help your users "
2749
- "get more info about your markers and find required marker more faster."
2750
- msgstr ""
2751
- "Afficher tous les marqueurs de carte - comme liste ci-dessous Votre carte. "
2752
- "Cela aidera vos utilisateurs à obtenir plus d'informations sur vos marqueurs "
2753
- "et à trouver le marqueur requis plus rapidement."
2754
-
2755
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:609
2756
- msgid "Select Markers List type"
2757
- msgstr "Sélectionnez le type de liste de marqueurs"
2758
-
2759
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:616
2760
- msgid "Markers List Color"
2761
- msgstr "Couleur de liste de marqueurs"
2762
-
2763
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:623
2764
- msgid "Hide empty blocks"
2765
- msgstr "Masquer les blocs vides"
2766
-
2767
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:633
2768
- msgid "Collapse markers list on mobile"
2769
- msgstr "Liste des marqueurs d’effondrement sur mobile"
2770
-
2771
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:644
2772
- msgid "Autoplay options"
2773
- msgstr "Options de lecture automatique"
2774
-
2775
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:645
2776
- msgid ""
2777
- "Using for all markers lists types with slides.<br /><br /><b>Steps</b>: "
2778
- "Steps to go for each auto play request. Possible value can be 1, 2, -1, "
2779
- "-2 ...<br /><br /><b>Idle</b>: Interval to go for next slide since the "
2780
- "previous stopped if the slider is auto playing, default value is 3000<br /"
2781
- "><br /><b>Duration</b>: Specifies default duration (swipe) for slide in "
2782
- "milliseconds, default value is 160"
2783
- msgstr ""
2784
- "L'utilisation de tous les marqueurs répertorie les types de diapositives."
2785
- "<br><br><b>Étapes</b>: Étapes à suivre pour chaque demande de lecture "
2786
- "automatique. La valeur possible peut être 1, 2, -1, -2 ...<br><br><b>Idle</"
2787
- "b>: Intervalle pour aller pour la diapositive suivante depuis l'arrêt "
2788
- "précédent si le curseur est en lecture automatique, la valeur par défaut est "
2789
- "de 3000<br><br><b>Durée</b>: Spécifie la durée par défaut (balayage) pour "
2790
- "glisser en millisecondes, la valeur par défaut est de 160"
2791
-
2792
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:652
2793
- msgid "Enable Autoplay"
2794
- msgstr "Activer la lecture auto"
2795
-
2796
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:660
2797
- msgid "Steps"
2798
- msgstr "Étapes"
2799
-
2800
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:670
2801
- msgid "Idle (milliseconds)"
2802
- msgstr "Idle (millisecondes)"
2803
-
2804
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:678
2805
- msgid "Duration (milliseconds)"
2806
- msgstr "Durée (millisecondes)"
2807
-
2808
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:691
2809
- msgid "Traffic Layer"
2810
- msgstr "Traffic Layer"
2811
-
2812
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:693
2813
- msgid "Add real-time traffic information to your map."
2814
- msgstr "Ajoutez des informations de trafic en temps réel à votre carte."
2815
-
2816
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:708
2817
- msgid "Transit Layer"
2818
- msgstr "Transports en commun"
2819
-
2820
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:710
2821
- msgid ""
2822
- "Display the public transit network of a city on your map. When the Transit "
2823
- "Layer is enabled, and the map is centered on a city that supports transit "
2824
- "information, the map will display major transit lines as thick, colored "
2825
- "lines."
2826
- msgstr ""
2827
- "Affichez le réseau de transport en commun d'une ville sur votre carte. "
2828
- "Lorsque la couche de transport en commun est activée et que la carte est "
2829
- "centrée sur une ville qui prend en charge l'information sur le transport en "
2830
- "commun, la carte affiche les principales lignes de transport en commun sous "
2831
- "forme de lignes épaisses et colorées."
2832
-
2833
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:725
2834
- msgid "Bicycling Layer"
2835
- msgstr "Pistes cyclables"
2836
-
2837
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:727
2838
- msgid ""
2839
- "Add a layer of bike paths, suggested bike routes and other overlays specific "
2840
- "to bicycling usage on top of the given map.Dark green routes indicated "
2841
- "dedicated bicycle routes. Light green routes indicate streets with dedicated "
2842
- "bike lanes. Dashed routes indicate streets or paths otherwise recommended "
2843
- "for bicycle usage."
2844
- msgstr ""
2845
- "Ajoutez une couche de pistes cyclables, des pistes cyclables suggérées et "
2846
- "d'autres superpositions spécifiques à l'utilisation du vélo en plus de la "
2847
- "carte donnée. Les itinéraires vert foncé indiquaient des pistes cyclables "
2848
- "réservées. Des routes vert clair indiquent les rues avec des pistes "
2849
- "cyclables réservées. Les itinéraires en pointillés indiquent les rues ou les "
2850
- "sentiers autrement recommandés pour l'utilisation du vélo."
2851
-
2852
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:745
2853
- msgid "Add KML layers"
2854
- msgstr "Ajouter des Loyers KML"
2855
-
2856
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:747
2857
- msgid ""
2858
- "Add KML files to display custom layers on the map. Additional options:<br /"
2859
- "><br /><b>Enable KML layers filter</b> - add form to map for dynamically "
2860
- "enable / disable KML layers and sublayers. <br /><br /> <b>Load KML faster</"
2861
- "b> - Use for large KML files. <b>Warning </b>- filters will stop working!<br"
2862
- msgstr ""
2863
- "Ajoutez des fichiers KML pour afficher des couches personnalisées sur la "
2864
- "carte. Options supplémentaires :<br><br>Activer le filtre des <b>couches "
2865
- "KML</b> - ajouter de la forme à la carte pour activer / désactiver "
2866
- "dynamiquement les couches et les sous-couches KML.<br><br> <b>Chargez KML "
2867
- "plus rapidement</b> - Utilisez pour les fichiers KML volumineux. "
2868
- "<b>Attention </b>- les filtres cesseront de fonctionner!<br>"
2869
-
2870
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:763
2871
- msgid "Load kml faster"
2872
- msgstr "Chargez kml plus rapidement"
2873
-
2874
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:777
2875
- msgid "Enable KML layers filter"
2876
- msgstr "Activer le filtre KML"
2877
-
2878
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:783
2879
- msgid "Enter KML file URL"
2880
- msgstr "Entrez l'URL du fichier KML"
2881
-
2882
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:786
2883
- msgid "Hide Sublayers at KML filter"
2884
- msgstr "Masquer les sous-couches au filtre KML"
2885
-
2886
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:789
2887
- msgid "Remove KML field"
2888
- msgstr "Supprimer le champ KML"
2889
-
2890
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:805
2891
- msgid "or Upload KML file"
2892
- msgstr "ou Télécharger le fichier KML"
2893
-
2894
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:808
2895
- msgid "Import markers from layer"
2896
- msgstr "Marqueurs d'importation du Layer"
2897
-
2898
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:829
2899
- msgid "Add more files"
2900
- msgstr "Ajouter plus de fichiers"
2901
-
2902
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:839
2903
- msgid "Custom Map Controls"
2904
- msgstr "Contrôles de carte personnalisés"
2905
-
2906
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:844
2907
- msgid "Add custom map controls to the map."
2908
- msgstr "Ajouter des contrôles de carte personnalisés."
2909
-
2910
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:860
2911
- msgid "Controls type"
2912
- msgstr "Type de contrôle"
2913
-
2914
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:863
2915
- msgid "Square"
2916
- msgstr "Carré"
2917
-
2918
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:863
2919
- msgid "Rounded edges"
2920
- msgstr "Bords arrondis"
2921
-
2922
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:863
2923
- msgid "Round"
2924
- msgstr "Rond"
2925
-
2926
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:869
2927
- msgid "Background color"
2928
- msgstr "Couleur d’arrière plan"
2929
-
2930
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:877
2931
- msgid "Text color"
2932
- msgstr "Couleur du texte"
2933
-
2934
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:885
2935
- msgid "Controls unit of measurement"
2936
- msgstr "Unité de mesure de contrôle"
2937
-
2938
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:895
2939
- msgid "Controls position"
2940
- msgstr "Position de contrôle"
2941
-
2942
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:905
2943
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1206
2944
- msgid "Min Search Radius:"
2945
- msgstr "Min Search Radius:"
2946
-
2947
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:913
2948
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1214
2949
- msgid "Max Search Radius:"
2950
- msgstr "Rayon de recherche maximum:"
2951
-
2952
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:921
2953
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1222
2954
- msgid "Search Step:"
2955
- msgstr "Étape de recherche:"
2956
-
2957
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:929
2958
- msgid "Search Country"
2959
- msgstr "Rechercher Pays"
2960
-
2961
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:947
2962
- msgid "Use improved markers search"
2963
- msgstr "Utiliser la recherche de marqueurs améliorée"
2964
-
2965
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:949
2966
- msgid ""
2967
- "This option allows you to search and show multiple markers for selected "
2968
- "date, categories and keywords. NOTE: it removes separate markers categories "
2969
- "filter button from custom map controls."
2970
- msgstr ""
2971
- "Cette option vous permet de rechercher et d'afficher plusieurs marqueurs "
2972
- "pour la date sélectionnée, les catégories et les mots clés. REMARQUE : il "
2973
- "supprime les catégories de marqueurs séparées du bouton de filtre des "
2974
- "contrôles de carte personnalisés."
2975
-
2976
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:961
2977
- msgid "Center Search Button"
2978
- msgstr "Centrer le bouton de recherche"
2979
-
2980
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:963
2981
- msgid "Check this option if you want to separate and center search button"
2982
- msgstr ""
2983
- "Vérifiez cette option si vous souhaitez séparer et centrer le bouton de "
2984
- "recherche"
2985
-
2986
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:976
2987
- msgid "Disable filter button"
2988
- msgstr "Bouton de filtre de désactivé"
2989
-
2990
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:978
2991
- msgid "Check this option if you want to disable filters button on frontend"
2992
- msgstr ""
2993
- "Vérifiez cette option si vous souhaitez désactiver le bouton filtres sur "
2994
- "frontend"
2995
-
2996
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:986
2997
- msgid "Full Screen Button"
2998
- msgstr "Bouton Plein Ecran"
2999
-
3000
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:988
3001
- msgid "Add a button on map to open it full screen."
3002
- msgstr "Ajoutez un bouton sur la carte pour l'ouvrir en plein écran."
3003
-
3004
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1003
3005
- msgid "Hide POI"
3006
- msgstr "Masquer POI"
3007
-
3008
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1005
3009
- msgid ""
3010
- "Hide the Points Of Interest - landmark or other object, the marked points on "
3011
- "the map, for example: hotels, campsites, fuel stations etc."
3012
- msgstr ""
3013
- "Masquer les points d'intérêt - point de repère ou autre objet, les points "
3014
- "marqués sur la carte, par exemple: hôtels, campings, stations-service, etc."
3015
-
3016
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1020
3017
- msgid "Hide Countries"
3018
- msgstr "Cacher Pays"
3019
-
3020
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1022
3021
- msgid "Hide all administrative data about countries: names, borders etc."
3022
- msgstr ""
3023
- "Masquer toutes les données administratives sur les pays : noms, frontières, "
3024
- "etc."
3025
-
3026
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1037
3027
- msgid "Hide Tooltips of Markers"
3028
- msgstr "Masquer les outils des marqueurs"
3029
-
3030
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1039
3031
- msgid "Hide the tooltips, which displayed by mouse hover on markers' icons."
3032
- msgstr ""
3033
- "Masquer les pointes d'outils, qui s'affichent par la souris planer sur les "
3034
- "icônes des marqueurs."
3035
-
3036
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1050
3037
- msgid "Center on current opened marker"
3038
- msgstr "Centre sur le marqueur ouvert courant"
3039
-
3040
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1052
3041
- msgid ""
3042
- "On frontend the map will be centered on current marker with opened info "
3043
- "window."
3044
- msgstr ""
3045
- "Sur le frontend la carte sera centrée sur le marqueur actuel avec fenêtre "
3046
- "d'information ouverte."
3047
-
3048
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1063
3049
- msgid "Center on current user location"
3050
- msgstr "Centre sur l'emplacement actuel de l'utilisateur"
3051
-
3052
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1065
3053
- msgid "On frontend map will be centered on current user location."
3054
- msgstr ""
3055
- "Sur la carte frontend sera centrée sur l'emplacement actuel de l'utilisateur."
3056
-
3057
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1094
3058
- msgid "Add markers on frontend"
3059
- msgstr "Ajouter des marqueurs sur le frontend"
3060
-
3061
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1096
3062
- msgid ""
3063
- "You can add markers at the current map with the frontend using the form, "
3064
- "which can be displayed using the shortcode (it placed below preview map). "
3065
- "Additional options that affect the operation of the form:<br /><br /"
3066
- "><b>Logged In Users Only</b> - form will be displayed only for logged in "
3067
- "users.<br /><br /><b>Disable WP Editor</b> - disable / enable WP Editor for "
3068
- "the Marker Description field of the form.<br /><br /><b>Delete markers</b> - "
3069
- "disable / enable interface for deleting markers on frontend. Each user can "
3070
- "delete only his own markers.<br /><br /><b>Use markers categories</b> - "
3071
- "disable / enable interface for choose the marker category on frontend.<br /"
3072
- "><br /><b>Use limits for marker's adding</b> - allows you to limit the "
3073
- "number of markers, which user can add from one IP address at the current map "
3074
- "for a certain amount of time.<br /><br /><b>Max marker's count</b> - the "
3075
- "maximum number of markers, which can be added over certain amount of time."
3076
- "<br /><br /><b>For allotted time (minutes)</b> - the number of minutes, "
3077
- "during which you can add the maximum number of markers.<br /><br />For "
3078
- "example, during three minutes you can add only two markers at the map. If "
3079
- "you try to add a third marker - the form will not be saved and you will see "
3080
- "the notice with amount of time you must wait. After the right amount of time "
3081
- "will pass - you can add next two markers, etc.<br /><br />You can add "
3082
- "markers at the current map with the frontend using the form, which can be "
3083
- "displayed using the shortcode. Please place this shortcode at the same page "
3084
- "as it's map map. Please note that the page will be overloaded after adding "
3085
- "marker."
3086
- msgstr ""
3087
- "Vous pouvez ajouter des marqueurs à la carte actuelle avec le frontend à "
3088
- "l'aide du formulaire, qui peut être affiché à l'aide du code court (il a "
3089
- "placé ci-dessous la carte de prévisualisation). Options supplémentaires qui "
3090
- "affectent le fonctionnement du formulaire :<br><br><b>Logged In Users Only</"
3091
- "b> - formulaire ne sera affiché que pour les utilisateurs connectés."
3092
- "<br><br><b>Désactiver WP Editor</b> - désactiver / activer WP Editor pour le "
3093
- "champ Descriptif marker du formulaire.<br><br><b>Supprimer les marqueurs</b> "
3094
- "- désactiver / activer l'interface pour supprimer les marqueurs sur "
3095
- "frontend. Chaque utilisateur ne peut supprimer que ses propres marqueurs."
3096
- "<br><br>Utilisez les catégories de <b>marqueurs</b> - désactiver / activer "
3097
- "l'interface pour choisir la catégorie de marqueurs sur frontend."
3098
- "<br><br><b>Limites d'utilisation pour l'ajout de marqueur</b> - vous permet "
3099
- "de limiter le nombre de marqueurs, que l'utilisateur peut ajouter à partir "
3100
- "d'une adresse IP à la carte actuelle pour un certain laps de temps."
3101
- "<br><br><b>Nombre de marqueurs maximaux</b> - le nombre maximum de "
3102
- "marqueurs, qui peut être ajouté sur une certaine quantité de temps."
3103
- "<br><br>Pour le <b>temps alloué (minutes)</b> - le nombre de minutes, au "
3104
- "cours de laquelle vous pouvez ajouter le nombre maximum de marqueurs."
3105
- "<br><br>Par exemple, pendant trois minutes, vous pouvez ajouter seulement "
3106
- "deux marqueurs à la carte. Si vous essayez d'ajouter un troisième marqueur - "
3107
- "le formulaire ne sera pas enregistré et vous verrez l'avis avec le temps que "
3108
- "vous devez attendre. Après la bonne quantité de temps passera - vous pouvez "
3109
- "ajouter les deux marqueurs suivants, etc.<br><br>Vous pouvez ajouter des "
3110
- "marqueurs à la carte actuelle avec le frontend à l'aide du formulaire, qui "
3111
- "peut être affiché à l'aide du code court. S'il vous plaît placer ce code "
3112
- "court à la même page que sa carte. Veuillez noter que la page sera "
3113
- "surchargée après l'ajout de marqueur."
3114
-
3115
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1127
3116
- msgid "Logged In Users Only"
3117
- msgstr "Utilisateurs connectés seulement"
3118
-
3119
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1134
3120
- msgid "Disable WP Editor"
3121
- msgstr "Désactiver l'éditeur WP"
3122
-
3123
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1141
3124
- msgid "Delete markers"
3125
- msgstr "Supprimer les lieux"
3126
-
3127
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1148
3128
- msgid "Use markers categories"
3129
- msgstr "Utiliser les catégories de marqueurs"
3130
-
3131
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1155
3132
- msgid "Use limits for marker's adding"
3133
- msgstr "Utiliser des limites pour l'ajout de marqueurs"
3134
-
3135
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1160
3136
- msgid "Max marker's count"
3137
- msgstr "Nombre de marqueurs max"
3138
-
3139
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1168
3140
- msgid "For allotted time (minutes)"
3141
- msgstr "Pour le temps imparti (minutes)"
3142
-
3143
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1181
3144
- msgid "Use Places Toolbar"
3145
- msgstr "Utilisez Lieux Barre d'outils"
3146
-
3147
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1183
3148
- msgid ""
3149
- "Activate the toolbar for search Places (restaurants, schools, museums, etc.) "
3150
- "on the map. Use the shortcode to display toolbar on wherever you need, but "
3151
- "toolbar must be placed on the same page as its map."
3152
- msgstr ""
3153
- "Activer la barre d'outils pour les lieux de recherche (restaurants, écoles, "
3154
- "musées, etc.) sur la carte. Utilisez le code court pour afficher la barre "
3155
- "d'outils là où vous en avez besoin, mais la barre d'outils doit être placée "
3156
- "sur la même page que sa carte."
3157
-
3158
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1234
3159
- msgid "Filter background"
3160
- msgstr "Fond du filtre"
3161
-
3162
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1236
3163
- msgid "Background color for markers filter. (for 7 markers list type)"
3164
- msgstr ""
3165
- "Couleur de fond pour filtre de marqueurs. (pour 7 marqueurs type de liste)"
3166
-
3167
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1247
3168
- msgid "Filters select all button title"
3169
- msgstr "Les filtres sélectionnent tous les titres du bouton"
3170
-
3171
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1249
3172
- msgid "Filters select all button title. (for 7 markers list type)"
3173
- msgstr ""
3174
- "Les filtres sélectionnent tous les titres du bouton. (pour 7 marqueurs type "
3175
- "de liste)"
3176
-
3177
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1260
3178
- msgid "Show all parent categories in Filter"
3179
- msgstr "Afficher toutes les catégories de parents dans Filtre"
3180
-
3181
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1262
3182
- msgid ""
3183
- "Show parent categories even if they have no markers, but their child "
3184
- "categories have."
3185
- msgstr ""
3186
- "Afficher les catégories de parents, même s'ils n'ont pas de marqueurs, mais "
3187
- "leurs catégories d'enfants ont."
3188
-
3189
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1273
3190
- msgid "Info Window"
3191
- msgstr "Fenêtre d'informations"
3192
-
3193
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1275
3194
- msgid "Parameters of markers / shapes info-window PopUp"
3195
- msgstr "Paramètres des marqueurs / formes info-fenêtre PopUp"
3196
-
3197
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1282
3198
- msgid "Appearance"
3199
- msgstr "Apparence"
3200
-
3201
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1284
3202
- msgid "Choose the appearance type of infowindow."
3203
- msgstr "Choisissez le type d'apparence de l'infowindow."
3204
-
3205
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1288
3206
- msgid "Rounded Edges"
3207
- msgstr "Bords arrondis"
3208
-
3209
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1297
3210
- msgid "Hide Close Button"
3211
- msgstr "Masquer le bouton Fermer"
3212
-
3213
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1305
3214
- msgid "Width"
3215
- msgstr "Largeur"
3216
-
3217
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1307
3218
- msgid "Width of info window"
3219
- msgstr "Largeur de fenêtre d'information"
3220
-
3221
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1321
3222
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1361
3223
- msgid "Auto"
3224
- msgstr "Automatique"
3225
-
3226
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1326
3227
- msgid ""
3228
- "The value defines maximum width of the description. Window will be drawn "
3229
- "according to content size but not wider than the value."
3230
- msgstr ""
3231
- "La valeur définit la largeur maximale de la description. La fenêtre sera "
3232
- "dessinée en fonction de la taille du contenu, mais pas plus large que la "
3233
- "valeur."
3234
-
3235
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1345
3236
- msgid "Height"
3237
- msgstr "Hauteur"
3238
-
3239
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1347
3240
- msgid "Height of info window"
3241
- msgstr "Hauteur de la fenêtre d'information"
3242
-
3243
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1385
3244
- msgid "Title Color"
3245
- msgstr "Couleur du titre"
3246
-
3247
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1387
3248
- msgid "You can set your info window title color here"
3249
- msgstr "Vous pouvez définir votre couleur de titre de fenêtre d'info ici"
3250
-
3251
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1397
3252
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:47
3253
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:189
3254
- #: modules/tables/views/tpl/tablesEditAdmin.php:189
3255
- msgid "Background Color"
3256
- msgstr "Couleur d’arrière-plan"
3257
-
3258
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1399
3259
- msgid "You can set your info window background color here"
3260
- msgstr "Vous pouvez définir votre couleur de fond de fenêtre d'info ici"
3261
-
3262
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1409
3263
- msgid "Title Font Size"
3264
- msgstr "Taille de la police du titre"
3265
-
3266
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1411
3267
- msgid "You can set your info window title font size here"
3268
- msgstr ""
3269
- "Vous pouvez définir votre taille de police de titre de fenêtre d'information "
3270
- "ici"
3271
-
3272
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1431
3273
- msgid "Description Font Size"
3274
- msgstr "Taille de la police pour la description"
3275
-
3276
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1433
3277
- msgid "You can set your info window description font size here"
3278
- msgstr ""
3279
- "Vous pouvez définir la taille de la police de description de fenêtre "
3280
- "d'information ici"
3281
-
3282
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1456
3283
- msgid "Directions Button"
3284
- msgstr "Bouton Itinéraire"
3285
-
3286
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1459
3287
- msgid ""
3288
- "Add a button at marker info window to get direction from the entered address "
3289
- "to the marker. If Show route data option is enabled - the total route time "
3290
- "and distance will be shown by click on the route polyline."
3291
- msgstr ""
3292
- "Ajoutez un bouton à la fenêtre d'information de marqueur pour obtenir la "
3293
- "direction de l'adresse saisie au marqueur. Si l'option de données "
3294
- "d'itinéraire afficher est activée - le temps et la distance d'itinéraire "
3295
- "total seront affichés par clic sur la polyligne d'itinéraire."
3296
-
3297
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1478
3298
- msgid "Show alternate routes"
3299
- msgstr "Afficher d'autres itinéraires"
3300
-
3301
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1486
3302
- msgid "Show route data"
3303
- msgstr "Afficher les données d'itinéraire"
3304
-
3305
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1494
3306
- msgid "Show route steps"
3307
- msgstr "Afficher les étapes de l'itinéraire"
3308
-
3309
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1502
3310
- msgid "Use miles"
3311
- msgstr "Utiliser des miles"
3312
-
3313
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1511
3314
- msgid "Print Button"
3315
- msgstr "Bouton Imprimer"
3316
-
3317
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1513
3318
- msgid "Add Print button to markers info window"
3319
- msgstr "Ajouter le bouton d'impression à la fenêtre d'information de marqueurs"
3320
-
3321
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1542
3322
- msgid "Your marker title"
3323
- msgstr "Votre titre de marqueur"
3324
-
3325
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1555
3326
- msgid ""
3327
- "Write here all text, that you want to appear in marker info-window PopUp"
3328
- msgstr ""
3329
- "Écrivez ici tout le texte, que vous voulez apparaître dans le marqueur info-"
3330
- "fenêtre PopUp"
3331
-
3332
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1571
3333
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:209
3334
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:388
3335
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:601
3336
- #: modules/tables/views/tpl/tablesEditorFooter.php:209
3337
- #: modules/tables/views/tpl/tablesEditorFooter.php:388
3338
- #: modules/tables/views/tpl/tablesEditorFooter.php:601
3339
- msgid "Icon"
3340
- msgstr "Icône"
3341
-
3342
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1573
3343
- msgid "Your marker Icon, that will appear on your map for this marker"
3344
- msgstr "L'icône de votre marqueur, qui apparaîtra sur votre carte"
3345
-
3346
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1593
3347
- msgid "Search your location by address, just start typing here"
3348
- msgstr ""
3349
- "Recherchez votre emplacement par adresse, il suffit de commencer à taper ici"
3350
-
3351
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1607
3352
- msgid "Latitude for your marker"
3353
- msgstr "Latitude pour votre marqueur"
3354
-
3355
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1621
3356
- msgid "Longitude for your marker"
3357
- msgstr "Longitude pour votre marqueur"
3358
-
3359
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1635
3360
- msgid "Choose marker category"
3361
- msgstr "Choisir la catégorie du marqueur"
3362
-
3363
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1649
3364
- msgid "Marker Link"
3365
- msgstr "Lien du marqueur"
3366
-
3367
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1651
3368
- msgid "Link for opening by click on the marker"
3369
- msgstr "Lien à ouvrir lors du click sur le marqueur"
3370
-
3371
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1667
3372
- msgid "Open in new window"
3373
- msgstr "Ouvrir dans une nouvelle fenêtre"
3374
-
3375
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1675
3376
- msgid "Show description by default"
3377
- msgstr "Afficher la description par défaut"
3378
-
3379
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1677
3380
- msgid "Open marker description when map load"
3381
- msgstr "Ouvrir la description du marqueur au chargement de la carte"
3382
-
3383
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1687
3384
- msgid "Show description by mouse hover"
3385
- msgstr "Montrer la description en survolant à la souris"
3386
-
3387
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1689
3388
- msgid "Open marker description by mouse hover"
3389
- msgstr "Ouvrez la description de marqueur par vol stationnaire de souris"
3390
-
3391
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1699
3392
- msgid "Hide description on mouse leave"
3393
- msgstr "Masquer la description en survolant à la souris"
3394
-
3395
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1701
3396
- msgid "Hide description when mouse leaves the marker area"
3397
- msgstr "Masquer la description lorsque la souris quitte la zone du marqueur"
3398
-
3399
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1711
3400
- msgid "Marker List Default Image"
3401
- msgstr "Image par défaut de liste de marqueurs"
3402
-
3403
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1713
3404
- msgid ""
3405
- "If there is no image tag in the marker description - this image will be used "
3406
- "for displaying in the map's markers list"
3407
- msgstr ""
3408
- "S'il n'y a pas d'étiquette d'image dans la description du marqueur - cette "
3409
- "image sera utilisée pour s'afficher dans la liste des marqueurs de la carte"
3410
-
3411
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1744
3412
- msgid "Exclude from Cluster"
3413
- msgstr "Exclure du cluster"
3414
-
3415
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1746
3416
- msgid ""
3417
- "Exclude marker from cluster if Markers Clusterization option is enabled."
3418
- msgstr ""
3419
- "Exclure le marqueur du cluster si l'option de clusterisation des marqueurs "
3420
- "est activée."
3421
-
3422
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1757
3423
- msgid "Display period for the markers"
3424
- msgstr "Période d'affichage pour les marqueurs"
3425
-
3426
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1759
3427
- msgid ""
3428
- "Display markers on the map by a selected period. A marker will automatically "
3429
- "start to appear on the specified date and disappear automatically at the "
3430
- "appointed time."
3431
- msgstr ""
3432
- "Afficher les marqueurs sur la carte par une période sélectionnée. Un "
3433
- "marqueur commence automatiquement à apparaître à la date spécifiée et "
3434
- "disparaît automatiquement à l'heure prévue."
3435
-
3436
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1771
3437
- msgid "Period From"
3438
- msgstr "Période du"
3439
-
3440
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1793
3441
- msgid "Period To"
3442
- msgstr "Période jusqu’à"
3443
-
3444
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1827
3445
- msgid "Figure Name"
3446
- msgstr "Nom de la figure"
3447
-
3448
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1829
3449
- msgid "Your figure title"
3450
- msgstr "Votre titre de figure"
3451
-
3452
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1840
3453
- msgid "Figure Type"
3454
- msgstr "Type de figure"
3455
-
3456
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1842
3457
- msgid ""
3458
- "Type of your figure:<br /><br /><b>Polyline</b> - a series of straight "
3459
- "segments on the map.<br /><br /><b>Polygon</b> - area enclosed by a closed "
3460
- "path (or loop), which is defined by a series of coordinates.<br /><br /"
3461
- "><b>Circle</b> - circle shape,defined by center coordinates and radius."
3462
- msgstr ""
3463
- "Type de votre figure:<br><br><b>Polyline</b> - une série de segments droits "
3464
- "sur la carte.<br><br><b>Polygone</b> - zone entourée d'un chemin fermé (ou "
3465
- "boucle), qui est définie par une série de coordonnées.<br><br><b>Cercle</b> "
3466
- "- forme de cercle, définie par les coordonnées du centre et le rayon."
3467
-
3468
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1850
3469
- msgid "Polyline"
3470
- msgstr "Polyligne"
3471
-
3472
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1851
3473
- msgid "Polygon"
3474
- msgstr "Polygone"
3475
-
3476
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1852
3477
- msgid "Circle"
3478
- msgstr "Cercle"
3479
-
3480
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1861
3481
- msgid "Line Color"
3482
- msgstr "Couleur de ligne"
3483
-
3484
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1868
3485
- msgid "Line Opacity"
3486
- msgstr "Opacité de la ligne"
3487
-
3488
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1879
3489
- msgid "Line Weight"
3490
- msgstr "Epaisseur de trait"
3491
-
3492
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1887
3493
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:57
3494
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:288
3495
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:323
3496
- #: modules/tables/views/tpl/tablesEditorFooter.php:57
3497
- #: modules/tables/views/tpl/tablesEditorFooter.php:288
3498
- #: modules/tables/views/tpl/tablesEditorFooter.php:323
3499
- msgid "Fill Color"
3500
- msgstr "Couleur de remplissage"
3501
-
3502
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1894
3503
- msgid "Fill Opacity"
3504
- msgstr "Opacité du remplissage"
3505
-
3506
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1907
3507
- msgid "Figure Description"
3508
- msgstr "Description d'une figure"
3509
-
3510
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1909
3511
- msgid "Write here all text, that you want to appear in shape info-window PopUp"
3512
- msgstr ""
3513
- "Écrivez ici tout le texte, que vous voulez apparaître en forme info-fenêtre "
3514
- "PopUp"
3515
-
3516
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1921
3517
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1999
3518
- msgid "Points"
3519
- msgstr "Points"
3520
-
3521
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1923
3522
- msgid ""
3523
- "Figure's points list: you can search the point by address (just start typing "
3524
- "in Address field), type the Latitude and Longitude of point in appropriate "
3525
- "fields or activate Add by Click button, and then draw figure on the map by "
3526
- "clicking on it. Important! You must deactivate Add by Click button after "
3527
- "ending of the draw."
3528
- msgstr ""
3529
- "Liste de points de figure : vous pouvez rechercher le point par adresse (il "
3530
- "suffit de commencer à taper dans le champ Adresse), tapez la Latitude et la "
3531
- "Longitude de point dans les champs appropriés ou activez le bouton Ajouter "
3532
- "par clic, puis dessiner la figure sur la carte en cliquant dessus. "
3533
- "important! Vous devez désactiver le bouton Ajouter par clic après la fin du "
3534
- "tirage."
3535
-
3536
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1930
3537
- msgid "Add New Point"
3538
- msgstr "Ajouter nouveau point"
3539
-
3540
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1967
3541
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2023
3542
- msgid "Radius"
3543
- msgstr "Rayon"
3544
-
3545
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1974
3546
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2009
3547
- msgid "Remove Point"
3548
- msgstr "Supprimer un Point"
3549
-
3550
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2001
3551
- msgid ""
3552
- "To add Heatmap Layer points you need to activate Add Points button and draw "
3553
- "each point by click on map. To remove points you need to activate Remove "
3554
- "Points button and delete necessary point by click on it or just click on "
3555
- "Delete Heatmap Layer button to remove all Heatmap Layer points. Important! "
3556
- "You must to deactivate Add by Click and Remove by Click buttons after ending "
3557
- "of the add / remove points."
3558
- msgstr ""
3559
- "Pour ajouter des points Heatmap Layer, vous devez activer le bouton Ajouter "
3560
- "des points et dessiner chaque point en cliquant sur la carte. Pour supprimer "
3561
- "les points, vous devez activer supprimer le bouton Points et supprimer le "
3562
- "point nécessaire en cliquant dessus ou simplement cliquer sur supprimer le "
3563
- "bouton Heatmap Layer pour supprimer tous les points Heatmap Layer. "
3564
- "important! Vous devez désactiver Ajouter par clic et supprimer par clic "
3565
- "boutons après la fin de l'ajouter / supprimer des points."
3566
-
3567
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2006
3568
- msgid "Add Point"
3569
- msgstr "Ajouter un Point"
3570
-
3571
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2014
3572
- msgid "Points Count"
3573
- msgstr "Nombre de points"
3574
-
3575
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2025
3576
- msgid "Heatmap Layer points radius in pixels"
3577
- msgstr "Rayon des points de calque de la carte thermique en pixels"
3578
-
3579
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2036
3580
- msgid "Opacity"
3581
- msgstr "Opacité"
3582
-
3583
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2038
3584
- msgid "Heatmap Layer points opacity"
3585
- msgstr "Opacité des points de calque de la carte thermique"
3586
-
3587
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2053
3588
- msgid "Gradient"
3589
- msgstr "Dégradé"
3590
-
3591
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2055
3592
- msgid "Heatmap Layer points color gradient."
3593
- msgstr "Rayon des points de calque de la carte thermique en pixels."
3594
-
3595
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2059
3596
- msgid "Add Color"
3597
- msgstr "Ajouter une couleur"
3598
-
3599
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2066
3600
- msgid "Remove Color"
3601
- msgstr "Supprimer Couleur"
3602
-
3603
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2099
3604
- msgid "Save Map"
3605
- msgstr "Enregistrer la carte"
3606
-
3607
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2105
3608
- msgid "Delete Map"
3609
- msgstr "Supprimer la carte"
3610
-
3611
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2129
3612
- msgid "Save Figure"
3613
- msgstr "Enregistrer la figure"
3614
-
3615
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2135
3616
- msgid "Delete Figure"
3617
- msgstr "Supprimer la figure"
3618
-
3619
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2144
3620
- msgid "Save Heatmap Layer"
3621
- msgstr "Enregistrer le calque Heatmap"
3622
-
3623
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2150
3624
- msgid "Delete Heatmap Layer"
3625
- msgstr "Supprimer le calque Heatmap"
3626
-
3627
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2156
3628
- msgid "Search by name"
3629
- msgstr "Chercher par nom"
3630
-
3631
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2214
3632
- msgid "Show markers list with your map on frontend"
3633
- msgstr "Afficher la liste des lieux avec votre carte sur le frontend"
3634
-
3635
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2221
3636
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2222
3637
- msgid "Apply"
3638
- msgstr "Appliquer"
3639
-
3640
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2221
3641
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:40
3642
- #: modules/tables/views/tpl/tablesAddNewAdmin.php:40
3643
- msgid "Selected"
3644
- msgstr "Sélectionné"
3645
-
3646
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2222
3647
- msgid "Available in PRO"
3648
- msgstr "Disponible en version PRO"
3649
-
3650
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2230
3651
- msgid "Select Contact Form"
3652
- msgstr "Sélectionnez le formulaire de contact"
3653
-
3654
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2253
3655
- msgid "Oops! Something went wrong..."
3656
- msgstr "Oups! Quelque chose s'est mal passé..."
3657
-
3658
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2256
3659
- #, php-format
3660
- msgid ""
3661
- "Map can not be loaded completely. Probably, you are using our base Google "
3662
- "Map API key.<br /><br />\n"
3663
- "This key is used by default for all our users in accordance with <a target="
3664
- "\"_blank\" href=\"%s\">Google Maps APIs Standard Plan</a>.\n"
3665
- "But each API key has fixed limits on count of maps loads per day.<br /><br /"
3666
- ">\n"
3667
- "You can create <a target=\"_blank\" href=\"%s\">your own Google Maps API "
3668
- "key</a> and type it on <a target=\"_blank\" href=\"%s\">Settings tab</a>.\n"
3669
- "It's free, takes 10-20 minutes of your time and lets to apply your own API "
3670
- "key only for your sites.\n"
3671
- "If you already use own Google Maps API key - you should open <a target="
3672
- "\"_blank\" href=\"%s\">Google Developer console</a> and check:\n"
3673
- "<ul style=\"padding-left: 20px; list-style: decimal;\">\n"
3674
- "<li>Have you set correct settings to use your Google Map API key?</li>\n"
3675
- "<li>Have you paste correct Google Map API key on the <a target=\"_blank\" "
3676
- "href=\"%s\">Settings tab</a>?</li>\n"
3677
- "<li>Open <a target=\"_blank\" href=\"%s\">browser console</a>, find Google "
3678
- "Map API error and read its description in <a target=\"_blank\" href=\"%s"
3679
- "\">Map API Errors table</a>.</li>\n"
3680
- "</ul>"
3681
- msgstr ""
3682
- "Carte ne peut pas être chargé complètement. Probablement, vous utilisez "
3683
- "notre base Google Map API key.<br><br>Cette clé est utilisée par défaut pour "
3684
- "tous nos utilisateurs conformément au <a target=\"_blank\" href=\"%s\">plan "
3685
- "standard Google Maps API</a>.\n"
3686
- "Mais chaque clé API a des limites fixes sur le nombre de charges de cartes "
3687
- "par jour.<br><br>Vous pouvez créer <a target=\"_blank\" href=\"%s\">votre "
3688
- "propre touche API Google Maps</a> et la taper sur <a target=\"_blank\" href="
3689
- "\"%s\">l'onglet Paramètres</a>.\n"
3690
- "Il est gratuit, prend 10-20 minutes de votre temps et permet d'appliquer "
3691
- "votre propre clé API uniquement pour vos sites.\n"
3692
- "Si vous utilisez déjà votre propre clé API Google Maps , vous devez ouvrir "
3693
- "la <a target=\"_blank\" href=\"%s\">console Google Developer</a> et "
3694
- "vérifier :<ul style=\"padding-left: 20px; list-style: decimal;\">\n"
3695
- "<li>Avez-vous réglé les paramètres corrects pour utiliser votre clé API "
3696
- "Google Map ?</li>\n"
3697
- "<li>Avez-vous coller la touche API Google Map correcte sur <a target=\"_blank"
3698
- "\" href=\"%s\">l'onglet Paramètres</a>?</li>\n"
3699
- "<li>Ouvrez <a target=\"_blank\" href=\"%s\">la console de navigateur</a>, "
3700
- "trouver google Map API erreur et lire sa description dans Map <a target="
3701
- "\"_blank\" href=\"%s\">API Errors table</a>.</li>\n"
3702
- "</ul>"
3703
-
3704
- #: ../google-maps-easy/modules/gmap/views/tpl/gmapListMarkers.php:22
3705
- #, php-format
3706
- msgid "and %s more"
3707
- msgstr "et %s plus"
3708
-
3709
- #: ../google-maps-easy/modules/gmap_widget/mod.php:18
3710
- msgid "Displays Most Viewed Products"
3711
- msgstr "Affiche les produits les plus consultés"
3712
-
3713
- #: ../google-maps-easy/modules/gmap_widget/views/gmap_widget.php:30
3714
- msgid "You have no maps"
3715
- msgstr "Vous n'avez pas de cartes"
3716
-
3717
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:8
3718
- msgid "Select map"
3719
- msgstr "Sélectionnez une carte"
3720
-
3721
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:20
3722
- msgid "Widget Map width"
3723
- msgstr "Largeur de carte Widget"
3724
-
3725
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:27
3726
- #, php-format
3727
- msgid "in % or px, for example, 100% or 200px"
3728
- msgstr "en % ou px, par exemple, 100% ou 200px"
3729
-
3730
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:32
3731
- msgid "Widget Map height"
3732
- msgstr "Hauteur de carte de Widget"
3733
-
3734
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:39
3735
- msgid "in px, for example, 200 or 400"
3736
- msgstr "en px, par exemple, 200 ou 400"
3737
-
3738
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:51
3739
- msgid "Set coords, separated by semicolons or marker id"
3740
- msgstr ""
3741
- "Définir les coords, séparés par des points-virgules ou des marqueurs id"
3742
-
3743
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:63
3744
- msgid "Set zoom level from 1 to 21"
3745
- msgstr "Définir le niveau de zoom de 1 à 21"
3746
-
3747
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:68
3748
- msgid "Display as image"
3749
- msgstr "Afficher sous forme d'image"
3750
-
3751
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:76
3752
- msgid ""
3753
- "Map will be displayed as image at sidebar, on click - will be opened in popup"
3754
- msgstr ""
3755
- "La carte s'affichera sous forme d'image à la barre latérale, en clic - sera "
3756
- "ouverte en popup"
3757
-
3758
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:79
3759
- msgid "Image width (in px)"
3760
- msgstr "Largeur de l'image (en px)"
3761
-
3762
- #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:86
3763
- msgid "Image height (in px)"
3764
- msgstr "Hauteur d'image (en px)"
3765
-
3766
- #: ../google-maps-easy/modules/icons/controller.php:20
3767
- msgid "Empty url"
3768
- msgstr "Url vide"
3769
-
3770
- #: ../google-maps-easy/modules/icons/models/icons.php:43
3771
- msgid "Icon no found"
3772
- msgstr "Icône introuvable"
3773
-
3774
- #: ../google-maps-easy/modules/icons/models/icons.php:95
3775
- msgid "File not found"
3776
- msgstr "Fichier non trouvé"
3777
-
3778
- #: ../google-maps-easy/modules/icons/models/icons.php:100
3779
- msgid "Cannot get image"
3780
- msgstr "Impossible d’obtenir l'image"
3781
-
3782
- #: ../google-maps-easy/modules/icons/models/icons.php:111
3783
- msgid "cannot insert to table"
3784
- msgstr "ne peut pas insérer à la table"
3785
-
3786
- #: ../google-maps-easy/modules/mail/mod.php:33
3787
- #: ../pricing-table-by-supsystic/modules/mail/mod.php:37
3788
- #: modules/mail/mod.php:37
3789
- msgid "Can not send email - problem with send server"
3790
- msgstr ""
3791
- "Impossible de ne pas envoyer d'e-mail - problème avec envoyer le serveur"
3792
-
3793
- #: ../google-maps-easy/modules/marker/controller.php:42
3794
- #: ../google-maps-easy/modules/marker/controller.php:57
3795
- msgid "Marker Not Found"
3796
- msgstr "Marqueur non trouvé"
3797
-
3798
- #: ../google-maps-easy/modules/marker/controller.php:48
3799
- msgid "Cannot remove marker"
3800
- msgstr "Ne peut pas enlever le marqueur"
3801
-
3802
- #: ../google-maps-easy/modules/marker/controller.php:63
3803
- msgid "Cannot remove markers"
3804
- msgstr "Ne peut pas enlever les marqueurs"
3805
-
3806
- #: ../google-maps-easy/modules/marker/controller.php:144
3807
- msgid "Empty or invalid marker ID"
3808
- msgstr "ID de marqueur vide ou invalide"
3809
-
3810
- #: ../google-maps-easy/modules/marker/mod.php:21
3811
- msgid "Drop"
3812
- msgstr "Déposer"
3813
-
3814
- #: ../google-maps-easy/modules/marker/mod.php:22
3815
- msgid "Bounce"
3816
- msgstr "Effet rebond"
3817
-
3818
- #: ../google-maps-easy/modules/marker/models/marker.php:82
3819
- msgid "Please enter marker name"
3820
- msgstr "S'il vous plaît entrer le nom du marqueur"
3821
-
3822
- #: ../google-maps-easy/modules/marker/models/marker.php:316
3823
- msgid "Invalid Marker ID"
3824
- msgstr "ID marqueur invalide"
3825
-
3826
- #: ../google-maps-easy/modules/marker_groups/controller.php:53
3827
- msgid "Marker Category data not found"
3828
- msgstr "Données de catégories du marqueur introuvables"
3829
-
3830
- #: ../google-maps-easy/modules/marker_groups/controller.php:99
3831
- msgid "Marker Category Options data not found"
3832
- msgstr "Données sur les options de catégorie de marqueurs non trouvées"
3833
-
3834
- #: ../google-maps-easy/modules/marker_groups/mod.php:8
3835
- msgid "Marker Categories"
3836
- msgstr "Catégories de marqueur"
3837
-
3838
- #: ../google-maps-easy/modules/marker_groups/mod.php:27
3839
- msgid "No Marker Category Found"
3840
- msgstr "Pas de catégories de marqueur trouvés"
3841
-
3842
- #: ../google-maps-easy/modules/marker_groups/models/marker_groups.php:106
3843
- msgid "Please enter Marker Category"
3844
- msgstr "Merci d'entrer une catégorie de marqueur"
3845
-
3846
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:5
3847
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:7
3848
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:6
3849
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:6
3850
- msgid "Add Category"
3851
- msgstr "Ajouter une catégorie"
3852
-
3853
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:10
3854
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:12
3855
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:9
3856
- msgid "Options"
3857
- msgstr "Options"
3858
-
3859
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:17
3860
- msgid "Delete Selected"
3861
- msgstr "Supprimer la sélection"
3862
-
3863
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:35
3864
- #, php-format
3865
- msgid ""
3866
- "You have no Marker Categories for now. <a href='%s' style='font-style: "
3867
- "italic;'>Create</a> your first Marker Category!"
3868
- msgstr ""
3869
- "Vous n'avez pas de marqueur de catégorie pour l'instant. <a href='%s' "
3870
- "style='font-style: italic;'>Créez</a> votre première catégorie de marqueur !"
3871
-
3872
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:20
3873
- msgid "Category Title"
3874
- msgstr "Titre de la catégorie"
3875
-
3876
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:33
3877
- msgid "Parent Category"
3878
- msgstr "Catégorie parente"
3879
-
3880
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:68
3881
- msgid "gmap/img/m1.png"
3882
- msgstr "gmap/img/m1.png"
3883
-
3884
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:17
3885
- msgid "Categories Levels"
3886
- msgstr "Niveaux Catégories"
3887
-
3888
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:24
3889
- msgid "Font Size"
3890
- msgstr "Taille de police"
3891
-
3892
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:25
3893
- msgid ""
3894
- "Set font size in pixels for every level of Categories Tree starting from "
3895
- "first level."
3896
- msgstr ""
3897
- "Définir la taille de la police en pixels pour chaque niveau de catégories "
3898
- "D'arbre à partir du premier niveau."
3899
-
3900
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:30
3901
- msgid "Add Level"
3902
- msgstr "Ajouter Niveau"
3903
-
3904
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:39
3905
- #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:50
3906
- msgid "Remove"
3907
- msgstr "Supprimer"
3908
-
3909
- #: ../google-maps-easy/modules/options/mod.php:108
3910
- #: ../pricing-table-by-supsystic/modules/options/mod.php:113
3911
- #: modules/options/mod.php:113
3912
- msgid "General"
3913
- msgstr "Général"
3914
-
3915
- #: ../google-maps-easy/modules/options/mod.php:110
3916
- msgid "API Domain"
3917
- msgstr "Domaine API"
3918
-
3919
- #: ../google-maps-easy/modules/options/mod.php:110
3920
- msgid "Sets domain for google API scripts"
3921
- msgstr "Définit le domaine pour les scripts Google API"
3922
-
3923
- #: ../google-maps-easy/modules/options/mod.php:111
3924
- msgid "User API key"
3925
- msgstr "Clé API utilisateur"
3926
-
3927
- #: ../google-maps-easy/modules/options/mod.php:111
3928
- msgid ""
3929
- "You can use your own Google API key, check the <a href='//supsystic.com/"
3930
- "google-maps-api-key/' target='_blank'>instruction</a> how to create it. To "
3931
- "use plugin's default API key leave this field blank."
3932
- msgstr ""
3933
- "Vous pouvez utiliser votre propre clé <a href='//supsystic.com/google-maps-"
3934
- "api-key/' target='_blank'></a> API Google, vérifier l'instruction comment la "
3935
- "créer. Pour utiliser la clé API par défaut de plugin, laissez ce champ vide."
3936
-
3937
- #: ../google-maps-easy/modules/options/mod.php:112
3938
- #: ../pricing-table-by-supsystic/modules/options/mod.php:115
3939
- #: modules/options/mod.php:115
3940
- msgid "Send usage statistics"
3941
- msgstr "Envoyer les statistiques d'utilisation"
3942
-
3943
- #: ../google-maps-easy/modules/options/mod.php:112
3944
- msgid ""
3945
- "Send information about what plugin options you prefer to use, this will help "
3946
- "us make our solution better for You."
3947
- msgstr ""
3948
- "Envoyer-nous des informations sur les options de ce plugin que vous préférez "
3949
- "utiliser, cela nous aidera à l'améliorer."
3950
-
3951
- #: ../google-maps-easy/modules/options/mod.php:113
3952
- #: ../pricing-table-by-supsystic/modules/options/mod.php:116
3953
- #: modules/options/mod.php:116
3954
- msgid "Enable promo link"
3955
- msgstr "Activer le lien promo"
3956
-
3957
- #: ../google-maps-easy/modules/options/mod.php:113
3958
- msgid ""
3959
- "We are trying to make our plugin better for you, and you can help us with "
3960
- "this. Just check this option - and small promotion link will be added in the "
3961
- "bottom of your Google Maps. This is easy for you - but very helpful for us!"
3962
- msgstr ""
3963
- "Nous essayons de rendre notre plugin mieux pour vous, et vous pouvez nous "
3964
- "aider avec cela. Il suffit de vérifier cette option - et petit lien de "
3965
- "promotion sera ajouté dans le bas de votre Google Maps. C'est facile pour "
3966
- "vous - mais très utile pour nous!"
3967
-
3968
- #: ../google-maps-easy/modules/options/mod.php:114
3969
- msgid "User role can use plugin"
3970
- msgstr "Rôle de l’utilisateur pour utiliser le plugin"
3971
-
3972
- #: ../google-maps-easy/modules/options/mod.php:114
3973
- msgid "User with next roles will have access to whole plugin from admin area."
3974
- msgstr ""
3975
- "Les utilisateurs avec les rôles suivants auront accès à l'ensemble du plugin "
3976
- "dans la zone d’administration."
3977
-
3978
- #: ../google-maps-easy/modules/options/models/modules.php:35
3979
- #: ../pricing-table-by-supsystic/modules/options/models/modules.php:32
3980
- #: modules/options/models/modules.php:32
3981
- msgid "Module Updated"
3982
- msgstr "Mise à jour des modules"
3983
-
3984
- #: ../google-maps-easy/modules/options/models/modules.php:50
3985
- #: ../pricing-table-by-supsystic/modules/options/models/modules.php:47
3986
- #: modules/options/models/modules.php:47
3987
- msgid "Module Update Failed"
3988
- msgstr "Échec de mise à jour du module"
3989
-
3990
- #: ../google-maps-easy/modules/options/models/modules.php:53
3991
- #: ../pricing-table-by-supsystic/modules/options/models/modules.php:50
3992
- #: modules/options/models/modules.php:50
3993
- msgid "Error module ID"
3994
- msgstr "Erreur ID module"
3995
-
3996
- #: ../google-maps-easy/modules/options/models/options.php:64
3997
- #: ../pricing-table-by-supsystic/modules/options/models/options.php:63
3998
- #: modules/options/models/options.php:63
3999
- msgid "Empty data to save option"
4000
- msgstr "Données vide pour l'option de sauvegarde"
4001
-
4002
- #: ../google-maps-easy/modules/options/views/tpl/optionsAdminMain.php:18
4003
- #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsAdminMain.php:18
4004
- #: modules/options/views/tpl/optionsAdminMain.php:18
4005
- msgid "Main page Go here!!!!"
4006
- msgstr "Page d’accueil Allez-y !!!"
4007
-
4008
- #: ../google-maps-easy/modules/options/views/tpl/optionsAdminPage.php:32
4009
- #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsAdminPage.php:36
4010
- #: modules/options/views/tpl/optionsAdminPage.php:36
4011
- msgid "Improve Free version"
4012
- msgstr "Améliorer la version gratuite"
4013
-
4014
- #: ../google-maps-easy/modules/options/views/tpl/optionsAdminPage.php:34
4015
- #, php-format
4016
- msgid ""
4017
- "Please be advised that this option is available only in <a target='_blank' "
4018
- "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
4019
- "class='button'>Get PRO</a> today and get this and other PRO option for your "
4020
- "Maps!"
4021
- msgstr ""
4022
- "Veuillez noter que cette option n'est disponible que dans la <a "
4023
- "target='_blank' href='%s'>version PRO</a>. Vous pouvez <a target='_blank' "
4024
- "href='%s' class='button'>obtenir PRO</a> dès aujourd'hui et obtenir cette "
4025
- "option ET d'autres PRO pour vos cartes!"
4026
-
4027
- #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:3
4028
- #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:3
4029
- #: modules/options/views/tpl/optionsSettingsTabContent.php:3
4030
- msgid "Save all options"
4031
- msgstr "Enregistrer toutes les options"
4032
-
4033
- #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:62
4034
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:47
4035
- #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:44
4036
- #: modules/mail/views/tpl/mailAdmin.php:47
4037
- #: modules/options/views/tpl/optionsSettingsTabContent.php:44
4038
- #, php-format
4039
- msgid "Turned On %s"
4040
- msgstr "Activée sur %s"
4041
-
4042
- #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:63
4043
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:48
4044
- #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:45
4045
- #: modules/mail/views/tpl/mailAdmin.php:48
4046
- #: modules/options/views/tpl/optionsSettingsTabContent.php:45
4047
- #, php-format
4048
- msgid "Turned Off %s"
4049
- msgstr "Désactivée sur %s"
4050
-
4051
- #: ../google-maps-easy/modules/supsystic_promo/controller.php:7
4052
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:7
4053
- #: modules/supsystic_promo/controller.php:7
4054
- msgid "Information was saved. Thank you!"
4055
- msgstr "Les informations ont été sauvegardées. Merci !"
4056
-
4057
- #: ../google-maps-easy/modules/supsystic_promo/controller.php:23
4058
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:23
4059
- #: modules/supsystic_promo/controller.php:23
4060
- msgid ""
4061
- "Please don't send contact requests so often - wait for response for your "
4062
- "previous requests."
4063
- msgstr ""
4064
- "Merci de ne pas envoyer des demandes trop souvent - Veuillez attendre la "
4065
- "réponse à vos demandes précédentes."
4066
-
4067
- #: ../google-maps-easy/modules/supsystic_promo/controller.php:45
4068
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:45
4069
- #: modules/supsystic_promo/controller.php:45
4070
- msgid "Please enter valid email address"
4071
- msgstr "Veuillez entrer un Email valide"
4072
-
4073
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:34
4074
- #, php-format
4075
- msgid ""
4076
- "Please, set your own Google API key in Google Maps Easy plugin <a "
4077
- "href='%s'>Settings</a>! More info about Maps and API keys you can find <a "
4078
- "href='%s' target='_blank'>here</a>."
4079
- msgstr ""
4080
- "S'il vous plaît, définir votre propre clé Google API dans Google Maps <a "
4081
- "href='%s'>Paramètres</a>plugin facile! Plus d'infos sur les cartes et les "
4082
- "clés API que vous pouvez trouver <a href='%s' target='_blank'>ici</a>."
4083
-
4084
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:58
4085
- #, php-format
4086
- msgid ""
4087
- "<h3>Hey, I noticed you just use %s over a week - that's awesome!</"
4088
- "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
4089
- "WordPress? Just to help us spread the word and boost our motivation.</p>"
4090
- msgstr ""
4091
- "<h3>Hey, j'ai remarqué que vous venez d'utiliser %s plus d'une semaine - "
4092
- "c'est génial!</h3><p>Pourriez-vous s'il vous plaît me faire une grande "
4093
- "faveur et lui donner une note de 5 étoiles sur WordPress? Juste pour nous "
4094
- "aider à passer le mot et stimuler notre motivation.</p>"
4095
-
4096
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:59
4097
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:65
4098
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:37
4099
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:43
4100
- #: modules/supsystic_promo/mod.php:37 modules/supsystic_promo/mod.php:43
4101
- msgid "Ok, you deserve it"
4102
- msgstr "D'accord, vous le méritez"
4103
-
4104
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:60
4105
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:66
4106
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:38
4107
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:44
4108
- #: modules/supsystic_promo/mod.php:38 modules/supsystic_promo/mod.php:44
4109
- msgid "Nope, maybe later"
4110
- msgstr "Non, peut-être plus tard"
4111
-
4112
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:61
4113
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:39
4114
- #: modules/supsystic_promo/mod.php:39
4115
- msgid "I already did"
4116
- msgstr "Je l’ai déjà fait"
4117
-
4118
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:62
4119
- #, php-format
4120
- msgid "<h3>More than eleven days with our %s plugin - Congratulations!</h3>"
4121
- msgstr "<h3>Plus de onze jours avec notre plugin %s - Félicitations!</h3>"
4122
-
4123
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:63
4124
- msgid ""
4125
- "<p>On behalf of the entire <a href='https://supsystic.com/' "
4126
- "target='_blank'>supsystic.com</a> company I would like to thank you for been "
4127
- "with us, and I really hope that our software helped you.</p>"
4128
- msgstr ""
4129
- "<p>Au nom de <a href='https://supsystic.com/' target='_blank'>toute</a> la "
4130
- "supsystic.com société, je tiens à vous remercier d'avoir été avec nous, et "
4131
- "j'espère vraiment que notre logiciel vous a aidé.</p>"
4132
-
4133
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:64
4134
- msgid ""
4135
- "<p>And today, if you want, - you can help us. This is really simple - you "
4136
- "can just add small promo link to our site under your maps. This is small "
4137
- "step for you, but a big help for us! Sure, if you don't want - just skip "
4138
- "this and continue enjoy our software!</p>"
4139
- msgstr ""
4140
- "<p>Et aujourd'hui, si vous voulez, vous pouvez nous aider. C'est vraiment "
4141
- "simple - vous pouvez simplement ajouter un petit lien promo à notre site "
4142
- "sous vos cartes. C'est un petit pas pour vous, mais une grande aide pour "
4143
- "nous! Bien sûr, si vous ne voulez pas - il suffit de sauter cela et "
4144
- "continuer à profiter de notre logiciel!</p>"
4145
-
4146
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:67
4147
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:45
4148
- #: modules/supsystic_promo/mod.php:45
4149
- msgid "Skip"
4150
- msgstr "Ignorer"
4151
-
4152
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:69
4153
- #, php-format
4154
- msgid ""
4155
- "Check out <a href='%s' target='_blank' class='button button-primary' data-"
4156
- "statistic-code='hide'>our other Plugins</a>! Years of experience in "
4157
- "WordPress plugins developers made that list unbreakable!"
4158
- msgstr ""
4159
- "Découvrez <a href='%s' target='_blank' class='button button-primary' data-"
4160
- "statistic-code='hide'>nos autres Plugins</a>! Des années d'expérience dans "
4161
- "les développeurs de plugins WordPress ont rendu cette liste incassable !"
4162
-
4163
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:80
4164
- #, php-format
4165
- msgid ""
4166
- "Tired from Google Maps and it's pricings? We developed <b>Free Maps "
4167
- "alternative for You</b> - <a href='%s' target='_blank'>Ultimate Maps by "
4168
- "Supsystic</a>! Just try it in <a href='%s' target='_blank'>few clicks</a>!"
4169
- msgstr ""
4170
- "Fatigué de Google Maps et c'est les prix? Nous avons développé <b>free Maps "
4171
- "alternative for You</b> - Ultimate Maps de <a href='%s' "
4172
- "target='_blank'>Supsystic</a>! Il suffit de l'essayer en <a href='%s' "
4173
- "target='_blank'>quelques clics</a>!"
4174
-
4175
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:129
4176
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:99
4177
- #: modules/supsystic_promo/mod.php:99
4178
- msgid "Featured Plugins"
4179
- msgstr "Plugins intégrés"
4180
-
4181
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:155
4182
- msgid "Welcome to Supsystic Secure"
4183
- msgstr "Bienvenue à Supsystic Secure"
4184
-
4185
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:224
4186
- msgid "Name"
4187
- msgstr "Nom"
4188
-
4189
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:226
4190
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:197
4191
- #: modules/supsystic_promo/mod.php:197
4192
- msgid "Website"
4193
- msgstr "Site web"
4194
-
4195
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:227
4196
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:198
4197
- #: modules/supsystic_promo/mod.php:198
4198
- msgid "Subject"
4199
- msgstr "Sujet"
4200
-
4201
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:228
4202
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:199
4203
- #: modules/supsystic_promo/mod.php:199
4204
- msgid "Topic"
4205
- msgstr "Sujet"
4206
-
4207
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:229
4208
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:200
4209
- #: modules/supsystic_promo/mod.php:200
4210
- msgid "Plugin options"
4211
- msgstr "Options de l'extension"
4212
-
4213
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:230
4214
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:201
4215
- #: modules/supsystic_promo/mod.php:201
4216
- msgid "Report a bug"
4217
- msgstr "Signaler un bug"
4218
-
4219
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:231
4220
- msgid "Require a new functionality"
4221
- msgstr "Demander une nouvelle fonctionnalité"
4222
-
4223
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:232
4224
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:203
4225
- #: modules/supsystic_promo/mod.php:203
4226
- msgid "Other"
4227
- msgstr "Autre"
4228
-
4229
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:234
4230
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:205
4231
- #: modules/supsystic_promo/mod.php:205
4232
- msgid "Message"
4233
- msgstr "Message"
4234
-
4235
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:234
4236
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:205
4237
- #: modules/supsystic_promo/mod.php:205
4238
- msgid "Hello Supsystic Team!"
4239
- msgstr "Bonjour l’équipe Supsystic !"
4240
-
4241
- #: ../google-maps-easy/modules/supsystic_promo/mod.php:281
4242
- msgid "Heatmap"
4243
- msgstr "Carte thermique"
4244
-
4245
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:32
4246
- msgid "How to create Google Maps API Key?"
4247
- msgstr "Comment créer Google Maps API Key ?"
4248
-
4249
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:33
4250
- msgid ""
4251
- "Your map suddenly stopped working and you get the following error?"
4252
- "<blockquote style='color: gray; font-style: italic;'>Oops! Something went "
4253
- "wrong.This page didn't load Google Maps correctly. See the JavaScript "
4254
- "console for technical details.</blockquote>Please check you browser console, "
4255
- "if you'll see such error <blockquote style='color: gray; font-style: "
4256
- "italic;'>This site has exceeded its daily quota for maps.</blockquote> - "
4257
- "this <a href='//supsystic.com/google-maps-api-key/' target='_blank'>article</"
4258
- "a> is written for you and required for reading."
4259
- msgstr ""
4260
- "Votre carte a soudainement cessé de fonctionner et vous obtenez l'erreur "
4261
- "suivante? <blockquote style='color: gray; font-style: italic;'>Oups! Quelque "
4262
- "chose s'est mal passé. Cette page n'a pas chargé Google Maps correctement. "
4263
- "Voir la console JavaScript pour plus</blockquote> de détails techniques. "
4264
- "S'il vous plaît vérifier votre console de navigateur, si vous verrez une "
4265
- "telle erreur Ce site a dépassé son quota quotidien pour les <blockquote "
4266
- "style='color: gray; font-style: italic;'>cartes.</blockquote> - cet <a "
4267
- "href='//supsystic.com/google-maps-api-key/' target='_blank'>article</a> est "
4268
- "écrit pour vous et nécessaire pour la lecture."
4269
-
4270
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:37
4271
- msgid "How to use Google Maps Easy Widget?"
4272
- msgstr "Comment utiliser le Widget Google Maps Easy ?"
4273
-
4274
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:38
4275
- msgid ""
4276
- "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
4277
- "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
4278
- "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
4279
- "map for widget and configure the settings - Widget Map width and height.<br /"
4280
- ">5. Click 'Save'."
4281
- msgstr ""
4282
- "1. Allez dans Apparence -> Widgets dans le menu de navigation Wordpress<br /"
4283
- ">2. Trouvez \"Google Maps Easy\" dans la liste des widgets disponibles.<br /"
4284
- ">3. Déposer le widget Google Maps Easy dans la zone des widgets dont vous "
4285
- "avez besoin.<br />4. Choisissez la carte pour le widget et configurez les "
4286
- "paramètres largeur et hauteur de la carte<br />5. Cliquer sur \"Sauvegarder"
4287
- "\"."
4288
-
4289
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:39
4290
- msgid "How to add map into the site content?"
4291
- msgstr "Comment ajouter une carte dans le contenu du site ?"
4292
-
4293
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:40
4294
- msgid ""
4295
- "You can add a map in the site content via shortcode or php code. Learn more "
4296
- "about how to do this <a href='http://supsystic.com/add-map-into-site-"
4297
- "content/'>here</a>."
4298
- msgstr ""
4299
- "Vous pouvez ajouter une carte dans le contenu du site par un shortcode ou du "
4300
- "code php. Apprenez en plus sur la manière de le faire <a href='http://"
4301
- "supsystic.com/add-map-into-site-content/'>au bout de ce lien</a>."
4302
-
4303
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:41
4304
- msgid "How to add map in popup window?"
4305
- msgstr "Comment ajouter une carte dans une fenêtre popup?"
4306
-
4307
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:42
4308
- msgid ""
4309
- "You can add a map in popup window by inserting map shortcode in any popup "
4310
- "text field. Learn more about how to do this <a href='http://supsystic.com/"
4311
- "add-map-in-popup-window/'>here</a>."
4312
- msgstr ""
4313
- "Vous pouvez ajouter une carte dans une fenètre popup en ajoutant un "
4314
- "shortcode de carte dans n'importe quel champ texte de popup. Apprenez en "
4315
- "plus sur la manière de le faire <a href='http://supsystic.com/add-map-in-"
4316
- "popup-window/''>au bout de ce lien</a>."
4317
-
4318
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:43
4319
- msgid "How to zoom and center the initial map on markers?"
4320
- msgstr "Comment zoomer et centrer la carte initiale sur les marqueurs ?"
4321
-
4322
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:44
4323
- msgid ""
4324
- "There is a few different ways to zoom and centralize map. The easiest one is "
4325
- "to drag your map using mouse - 'Draggable' option must be enabled, or with "
4326
- "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
4327
- "zoom-and-center-the-initial-map-on-markers/'>Read more...</a>"
4328
- msgstr ""
4329
- "Il existe différentes façons de zoomer et de centraliser la carte. Le plus "
4330
- "simple est de faire glisser votre carte à l'aide de la souris - l'option "
4331
- "'Draggable' doit être activée, ou avec l'aide du contrôleur de panoramique "
4332
- "en aperçu en direct. <a href='http://supsystic.com/how-to-zoom-and-center-"
4333
- "the-initial-map-on-markers/'>Lire la suite...</a>"
4334
-
4335
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:45
4336
- msgid "How to get PRO version of plugin for FREE?"
4337
- msgstr "Comment obtenir la version PRO de plugin GRATUIT?"
4338
-
4339
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:45
4340
- #, php-format
4341
- msgid ""
4342
- "You have an incredible opportunity to get PRO version for free. Make "
4343
- "Translation of plugin! It will be amazing if you take advantage of this "
4344
- "offer! More info you can find here <a target='_blank' href='%s'>Get PRO "
4345
- "version of any plugin for FREE'</a>"
4346
- msgstr ""
4347
- "Vous avez une occasion incroyable d'obtenir la version PRO gratuitement. "
4348
- "Faire la traduction de plugin! Ce sera incroyable si vous profitez de cette "
4349
- "offre! Plus d'infos que vous pouvez trouver ici <a target='_blank' "
4350
- "href='%s'>Get PRO version de n'importe quel plugin GRATUIT'</a>"
4351
-
4352
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:46
4353
- msgid "Translation"
4354
- msgstr "Traduction"
4355
-
4356
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:46
4357
- #, php-format
4358
- msgid ""
4359
- "All available languages are provided with the Supsystic Google Maps plugin. "
4360
- "If your language isn't available, your plugin will be in English by default."
4361
- "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
4362
- "b><br />Translate or update a translation Google Maps WordPress plugin in "
4363
- "your language and get a Premium license for FREE. <a target='_blank' "
4364
- "href='%s'>Contact us</a>."
4365
- msgstr ""
4366
- "Toutes les langues disponibles sont fournies avec le plugin Supsystic Google "
4367
- "Maps. Si votre langue n'est pas disponible, votre plugin sera en anglais par "
4368
- "défaut.<br><b>Traductions disponibles: anglais, polonais, allemand, "
4369
- "espagnol, russe</b><br>Traduisez ou mettez à jour une traduction Google Maps "
4370
- "WordPress plugin dans votre langue et obtenir une licence Premium "
4371
- "GRATUITEMENT. <a target='_blank' href='%s'>Contactez-nous</a>."
4372
-
4373
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:62
4374
- #, php-format
4375
- msgid ""
4376
- "There was some problem while trying to retrieve our news, but you can always "
4377
- "check all list <a target='_blank' href='%s'>here</a>."
4378
- msgstr ""
4379
- "Il y avait un problème tout en essayant de récupérer nos nouvelles, mais "
4380
- "vous pouvez toujours vérifier toute la liste <a target='_blank' "
4381
- "href='%s'>ici</a>."
4382
-
4383
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:73
4384
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:78
4385
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:80
4386
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:81
4387
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:46
4388
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:51
4389
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:53
4390
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:54
4391
- #: modules/supsystic_promo/views/supsystic_promo.php:46
4392
- #: modules/supsystic_promo/views/supsystic_promo.php:51
4393
- #: modules/supsystic_promo/views/supsystic_promo.php:53
4394
- #: modules/supsystic_promo/views/supsystic_promo.php:54
4395
- msgid "Yes"
4396
- msgstr "Oui"
4397
-
4398
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:73
4399
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:78
4400
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:80
4401
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:81
4402
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:46
4403
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:51
4404
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:53
4405
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:54
4406
- #: modules/supsystic_promo/views/supsystic_promo.php:46
4407
- #: modules/supsystic_promo/views/supsystic_promo.php:51
4408
- #: modules/supsystic_promo/views/supsystic_promo.php:53
4409
- #: modules/supsystic_promo/views/supsystic_promo.php:54
4410
- msgid "No"
4411
- msgstr "Non"
4412
-
4413
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:104
4414
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:68
4415
- #: modules/supsystic_promo/views/supsystic_promo.php:68
4416
- msgid "Popup Plugin"
4417
- msgstr "Popup Plugin"
4418
-
4419
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:104
4420
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:68
4421
- #: modules/supsystic_promo/views/supsystic_promo.php:68
4422
- msgid ""
4423
- "The Best WordPress PopUp option plugin to help you gain more subscribers, "
4424
- "social followers or advertisement. Responsive pop-ups with friendly options."
4425
- msgstr ""
4426
- "Le meilleur plugin de PopUp de WordPress pour vous aider à gagner plus "
4427
- "d'abonnés, de followers sociaux ou de publicité. Popups responsive avec "
4428
- "options conviviales."
4429
-
4430
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:105
4431
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:69
4432
- #: modules/supsystic_promo/views/supsystic_promo.php:69
4433
- msgid "Photo Gallery Plugin"
4434
- msgstr "Photo Gallery Plugin"
4435
-
4436
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:105
4437
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:69
4438
- #: modules/supsystic_promo/views/supsystic_promo.php:69
4439
- msgid ""
4440
- "Photo Gallery Plugin with a great number of layouts will help you to create "
4441
- "quality respectable portfolios and image galleries."
4442
- msgstr ""
4443
- "Plugin de galerie de photos avec un grand nombre de mises en page pour vous "
4444
- "aider à créer des portfolio de bonne qualité et des galeries d'images."
4445
-
4446
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:106
4447
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:70
4448
- #: modules/supsystic_promo/views/supsystic_promo.php:70
4449
- msgid "Contact Form Plugin"
4450
- msgstr "Formulaire de contact Plugin"
4451
-
4452
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:106
4453
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:70
4454
- #: modules/supsystic_promo/views/supsystic_promo.php:70
4455
- msgid ""
4456
- "One of the best plugin for creating Contact Forms on your WordPress site. "
4457
- "Changeable fonts, backgrounds, an option for adding fields etc."
4458
- msgstr ""
4459
- "L'un des meilleurs plugins pour créer des formulaires de contact sur votre "
4460
- "site WordPress. Polices modifiables, arrière-plans, option pour ajouter des "
4461
- "champs, etc."
4462
-
4463
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:107
4464
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:71
4465
- #: modules/supsystic_promo/views/supsystic_promo.php:71
4466
- msgid "Newsletter Plugin"
4467
- msgstr "Newsletter Plugin"
4468
-
4469
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:107
4470
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:71
4471
- #: modules/supsystic_promo/views/supsystic_promo.php:71
4472
- msgid ""
4473
- "Supsystic Newsletter plugin for automatic mailing of your letters. You will "
4474
- "have no need to control it or send them manually. No coding, hard skills or "
4475
- "long hours of customizing are required."
4476
- msgstr ""
4477
- "Plugin de Newsletter par Supsystic pour l'envoi automatique de vos lettres. "
4478
- "Aucun codage, compétences techniques ou de longues heures de "
4479
- "personnalisation ne sont nécessaires."
4480
-
4481
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:108
4482
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:72
4483
- #: modules/supsystic_promo/views/supsystic_promo.php:72
4484
- msgid "Membership by Supsystic"
4485
- msgstr "Adhésion par Supsystic"
4486
-
4487
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:108
4488
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:72
4489
- #: modules/supsystic_promo/views/supsystic_promo.php:72
4490
- msgid ""
4491
- "Create online membership community with custom user profiles, roles, "
4492
- "FrontEnd registration and login. Members Directory, activity, groups, "
4493
- "messages."
4494
- msgstr ""
4495
- "Créez une communauté d'adhésion en ligne avec des profils d'utilisateurs "
4496
- "personnalisés, des rôles, l'enregistrement FrontEnd et la connexion. "
4497
- "Répertoire des membres, activité, groupes, messages."
4498
-
4499
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:109
4500
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:73
4501
- #: modules/supsystic_promo/views/supsystic_promo.php:73
4502
- msgid "Data Tables Generator"
4503
- msgstr "Data Tables Generator"
4504
-
4505
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:109
4506
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:73
4507
- #: modules/supsystic_promo/views/supsystic_promo.php:73
4508
- msgid ""
4509
- "Create and manage beautiful data tables with custom design. No HTML "
4510
- "knowledge is required."
4511
- msgstr ""
4512
- "Créez et gérez de beaux tableaux de données avec un design personnalisé. "
4513
- "Aucune connaissance HTML n'est requise."
4514
-
4515
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:110
4516
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:74
4517
- #: modules/supsystic_promo/views/supsystic_promo.php:74
4518
- msgid "Slider Plugin"
4519
- msgstr "Extension slider"
4520
-
4521
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:110
4522
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:74
4523
- #: modules/supsystic_promo/views/supsystic_promo.php:74
4524
- msgid ""
4525
- "Creating slideshows with Slider plugin is fast and easy. Simply select "
4526
- "images from your WordPress Media Library, Flickr, Instagram or Facebook, set "
4527
- "slide captions, links and SEO fields all from one page."
4528
- msgstr ""
4529
- "Créer des diaporamas avec le plugin Slider est rapide et facile. Il suffit "
4530
- "de sélectionner des images de votre bibliothèque WordPress, Flickr, "
4531
- "Instagram ou Facebook, définissez des légendes de diapositives, des liens et "
4532
- "des champs SEO à partir d'une seule page."
4533
-
4534
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:111
4535
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:75
4536
- #: modules/supsystic_promo/views/supsystic_promo.php:75
4537
- msgid "Social Share Buttons"
4538
- msgstr "Social Share Buttons"
4539
-
4540
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:111
4541
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:75
4542
- #: modules/supsystic_promo/views/supsystic_promo.php:75
4543
- msgid ""
4544
- "Social share buttons to increase social traffic and popularity. Social "
4545
- "sharing to Facebook, Twitter and other social networks."
4546
- msgstr ""
4547
- "Boutons de partage des réseaux sociaux pour augmenter le trafic social et la "
4548
- "popularité. Partage social sur Facebook, Twitter et autres réseaux sociaux."
4549
-
4550
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:112
4551
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:76
4552
- #: modules/supsystic_promo/views/supsystic_promo.php:76
4553
- msgid "Live Chat Plugin"
4554
- msgstr "Live Chat Plugin"
4555
-
4556
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:112
4557
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:76
4558
- #: modules/supsystic_promo/views/supsystic_promo.php:76
4559
- msgid ""
4560
- "Be closer to your visitors and customers with Live Chat Support by "
4561
- "Supsystic. Help you visitors, support them in real-time with exceptional "
4562
- "Live Chat WordPress plugin by Supsystic."
4563
- msgstr ""
4564
- "Soyez plus proche de vos visiteurs et clients avec Live Chat Support par "
4565
- "Supsystic. Aidez vos visiteurs, soutenez-les en temps réel avec le plugin "
4566
- "WordPress exceptionnel Live Chat de Supsystic."
4567
-
4568
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:113
4569
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:77
4570
- #: ../pricing-table-by-supsystic/modules/tables/mod.php:77
4571
- #: modules/supsystic_promo/views/supsystic_promo.php:77
4572
- #: modules/tables/mod.php:77
4573
- msgid "Pricing Table"
4574
- msgstr "Tableau de prix"
4575
-
4576
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:113
4577
- msgid ""
4578
- "It's never been so easy to create and manage pricing and comparison tables "
4579
- "with table builder. Any element of the table can be customise with mouse "
4580
- "click."
4581
- msgstr ""
4582
- "Il n'a jamais été aussi facile de créer et de gérer des tableaux de prix et "
4583
- "de comparaison avec un constructeur de table. Tout élément de la table peut "
4584
- "être personnalisé en un clic de souris."
4585
-
4586
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:114
4587
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:78
4588
- #: modules/supsystic_promo/views/supsystic_promo.php:78
4589
- msgid "Coming Soon Plugin"
4590
- msgstr "Coming Soon Plugin"
4591
-
4592
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:114
4593
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:78
4594
- #: modules/supsystic_promo/views/supsystic_promo.php:78
4595
- msgid ""
4596
- "Coming soon page with drag-and-drop builder or under construction | "
4597
- "maintenance mode to notify visitors and collects emails."
4598
- msgstr ""
4599
- "Page \"Bientôt Disponible\" ou \"en Construction\" / Mode maintenance pour "
4600
- "informer les visiteurs et récupérer les adresses mail. Fourni avec un "
4601
- "éditeur Glisser / déposer facile."
4602
-
4603
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:115
4604
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:79
4605
- #: modules/supsystic_promo/views/supsystic_promo.php:79
4606
- msgid "Backup Plugin"
4607
- msgstr "Backup Plugin"
4608
-
4609
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:115
4610
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:79
4611
- #: modules/supsystic_promo/views/supsystic_promo.php:79
4612
- msgid ""
4613
- "Backup and Restore WordPress Plugin by Supsystic provides quick and "
4614
- "unhitched DropBox, FTP, Amazon S3, Google Drive backup for your WordPress "
4615
- "website."
4616
- msgstr ""
4617
- "Plugin de Sauvegarde et restauration WordPress par Supsystic fournissant une "
4618
- "sauvegarde rapide et détachable sur DropBox, FTP, Amazon S3, Google Drive "
4619
- "pour votre site Wordpress."
4620
-
4621
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:116
4622
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:80
4623
- #: modules/supsystic_promo/views/supsystic_promo.php:80
4624
- msgid "Google Maps Easy"
4625
- msgstr "Google Maps Easy"
4626
-
4627
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:116
4628
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:80
4629
- #: modules/supsystic_promo/views/supsystic_promo.php:80
4630
- msgid ""
4631
- "Display custom Google Maps. Set markers and locations with text, images, "
4632
- "categories and links. Customize google map in a simple and intuitive way."
4633
- msgstr ""
4634
- "Afficher des cartes Google personnalisées. Définissez des marqueurs et des "
4635
- "emplacements avec du texte, des images, des catégories et des liens. "
4636
- "Personnalisez Google map de manière simple et intuitive."
4637
-
4638
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:117
4639
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:81
4640
- #: modules/supsystic_promo/views/supsystic_promo.php:81
4641
- msgid "Digital Publication Plugin"
4642
- msgstr "Digital Publication Plugin"
4643
-
4644
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:117
4645
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:81
4646
- #: modules/supsystic_promo/views/supsystic_promo.php:81
4647
- msgid ""
4648
- "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, "
4649
- "Portfolios. Convert images, posts, PDF to the page flip book."
4650
- msgstr ""
4651
- "Plugin de Publication numérique par Supsystic pour les magazines, "
4652
- "catalogues, portfolios. Convertir des images, des messages, PDF vers une "
4653
- "page flip book."
4654
-
4655
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:118
4656
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:82
4657
- #: modules/supsystic_promo/views/supsystic_promo.php:82
4658
- msgid "Kinsta Hosting"
4659
- msgstr "Hébergement Kinsta"
4660
-
4661
- #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:118
4662
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:109
4663
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:82
4664
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:6
4665
- #: modules/supsystic_promo/views/supsystic_promo.php:82
4666
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:6
4667
- msgid ""
4668
- "If you want to host a business site or a blog, Kinsta managed WordPress "
4669
- "hosting is the best place to stop on. Without any hesitation, we can say "
4670
- "Kinsta is incredible when it comes to uptime and speed."
4671
- msgstr ""
4672
- "Si vous voulez héberger un site d'affaires ou un blog, Kinsta géré WordPress "
4673
- "hébergement est le meilleur endroit. Sans aucune hésitation, nous pouvons "
4674
- "dire Kinsta est incroyable quand il s'agit de temps de disponibilité et de "
4675
- "vitesse."
4676
-
4677
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:4
4678
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:78
4679
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/adminFooter.php:4
4680
- #: modules/supsystic_promo/views/tpl/adminFooter.php:4
4681
- msgid "Version"
4682
- msgstr "Version"
4683
-
4684
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:15
4685
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/adminFooter.php:9
4686
- #: modules/supsystic_promo/views/tpl/adminFooter.php:9
4687
- msgid "Support"
4688
- msgstr "Support"
4689
-
4690
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:19
4691
- msgid "Add your"
4692
- msgstr "Ajoutez votre"
4693
-
4694
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminPromoTabContent.php:7
4695
- msgid "Get it now!"
4696
- msgstr "Obtenez-le maintenant !"
4697
-
4698
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/discountMsg.php:37
4699
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/discountMsg.php:37
4700
- #: modules/supsystic_promo/views/tpl/discountMsg.php:37
4701
- #, php-format
4702
- msgid ""
4703
- "Upgrade to bundle and get an access to <a href=\"%s\" target=\"_blank\">all "
4704
- "14 plugins</a> more than 80%% off!"
4705
- msgstr ""
4706
- "Mise à niveau pour emballer et obtenir un accès à <a href=\"%s\" target="
4707
- "\"_blank\">tous les 14 plugins</a> de plus de 80%% de remise!"
4708
-
4709
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/discountMsg.php:38
4710
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/discountMsg.php:38
4711
- #: modules/supsystic_promo/views/tpl/discountMsg.php:38
4712
- msgid "Buy Now"
4713
- msgstr "Acheter maintenant"
4714
-
4715
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/featuredPlugins.php:3
4716
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/featuredPlugins.php:3
4717
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:3
4718
- msgid "Get plugins bundle today and save over 80%"
4719
- msgstr "Obtenez le pack de plugins dès aujourd'hui et économisez plus de 80%"
4720
-
4721
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/featuredPlugins.php:6
4722
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/featuredPlugins.php:6
4723
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:6
4724
- msgid "Check It out"
4725
- msgstr "A considérer"
4726
-
4727
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/featuredPlugins.php:31
4728
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/featuredPlugins.php:31
4729
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:31
4730
- msgid "More info"
4731
- msgstr "En savoir plus"
4732
-
4733
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/featuredPlugins.php:35
4734
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/featuredPlugins.php:35
4735
- #: modules/supsystic_promo/views/tpl/featuredPlugins.php:35
4736
- msgid "Download"
4737
- msgstr "Télécharger"
4738
-
4739
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:5
4740
- msgid "FAQ and Documentation"
4741
- msgstr "FAQ et documentation"
4742
-
4743
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:17
4744
- msgid "Check all FAQs"
4745
- msgstr "Consultez les FAQ"
4746
-
4747
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:22
4748
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:102
4749
- msgid "Video tutorial"
4750
- msgstr "Tutoriel vidéo"
4751
-
4752
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:31
4753
- msgid "PRO Features"
4754
- msgstr "Fonctionnalités PRO"
4755
-
4756
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:40
4757
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:12
4758
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:12
4759
- msgid "Server Settings"
4760
- msgstr "Paramètres serveur"
4761
-
4762
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:53
4763
- msgid "News"
4764
- msgstr "Actualités"
4765
-
4766
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:59
4767
- msgid "All news and info"
4768
- msgstr "Toutes les actualités et infos"
4769
-
4770
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:64
4771
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:25
4772
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:25
4773
- msgid "Contact form"
4774
- msgstr "Formulaire de contact"
4775
-
4776
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:96
4777
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:57
4778
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:57
4779
- msgid "Send email"
4780
- msgstr "Envoyer l'email"
4781
-
4782
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:105
4783
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:66
4784
- #: modules/supsystic_promo/views/tpl/overviewTabContent.php:66
4785
- msgid ""
4786
- "Your email was send, we will try to respond to you as soon as possible. "
4787
- "Thank you for support!"
4788
- msgstr ""
4789
- "Votre e-mail a été envoyé, nous allons essayer de vous répondre dès que "
4790
- "possible. Merci pour votre soutien!"
4791
-
4792
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:76
4793
- msgid "Welcome to"
4794
- msgstr "Bienvenue sur"
4795
-
4796
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:84
4797
- #, php-format
4798
- msgid "This is first start up of the %s plugin."
4799
- msgstr "Il s'agit du premier démarrage du plugin %s."
4800
-
4801
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:85
4802
- msgid ""
4803
- "If you are newbie - check all features on that page, if you are guru - "
4804
- "please correct us."
4805
- msgstr ""
4806
- "Si vous êtes débutant - vérifiez toutes les fonctionnalités sur cette page, "
4807
- "si vous êtes gourou - s'il vous plaît nous corriger."
4808
-
4809
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:94
4810
- msgid "Please, post url"
4811
- msgstr "S'il vous plaît, poster URL"
4812
-
4813
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:108
4814
- msgid "What to do next? Check below section"
4815
- msgstr "Que faire ensuite? Vérifier la section ci-dessous"
4816
-
4817
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:112
4818
- msgid "Boost us"
4819
- msgstr "Boostez-nous"
4820
-
4821
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:113
4822
- #, php-format
4823
- msgid ""
4824
- "It's amazing when you boost development with your feedback and ratings. So "
4825
- "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
4826
- "help us."
4827
- msgstr ""
4828
- "C'est incroyable quand vous stimulez le développement avec vos commentaires "
4829
- "et vos évaluations. Nous créons donc une <a target='_blank' href='%s'>page "
4830
- "de boost</a> spéciale pour vous aider à nous aider."
4831
-
4832
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:117
4833
- msgid "Documentation"
4834
- msgstr "Documentation"
4835
-
4836
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:118
4837
- #, php-format
4838
- msgid ""
4839
- "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
4840
- "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
4841
- msgstr ""
4842
- "Consultez la <a target='_blank' href='%s'>documentation</a> et la section "
4843
- "FAQ. Si vous ne pouvez pas résoudre vos problèmes - <a target='_blank' "
4844
- "href='%s'>contactez-nous</a>."
4845
-
4846
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:122
4847
- msgid "Full Features List"
4848
- msgstr "Liste complète des fonctionnalités"
4849
-
4850
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:123
4851
- msgid "There are so many features, so we can't post it here. Like"
4852
- msgstr ""
4853
- "Il ya tellement de fonctionnalités, donc nous ne pouvons pas le poster ici. "
4854
- "comme"
4855
-
4856
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:125
4857
- msgid "Captcha for admin login"
4858
- msgstr "Captcha pour la connexion admin"
4859
-
4860
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:126
4861
- msgid "htaccess admin protect"
4862
- msgstr "htaccess admin protégé"
4863
-
4864
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:127
4865
- msgid "Hide directory files listing"
4866
- msgstr "Masquer la liste des fichiers d'annuaire"
4867
-
4868
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:128
4869
- msgid "Check files and directories write permissions"
4870
- msgstr "Vérifier les fichiers et les répertoires écrivent des autorisations"
4871
-
4872
- #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:130
4873
- #, php-format
4874
- msgid "So check full features list <a target='_blank' href='%s'>here</a>."
4875
- msgstr ""
4876
- "Donc, vérifiez la liste complète des fonctionnalités <a target='_blank' "
4877
- "href='%s'>ici</a>."
4878
-
4879
- #: ../hello.php:62
4880
- msgid "Quote from Hello Dolly song, by Jerry Herman:"
4881
- msgstr "Citation de Hello Dolly song, par Jerry Herman:"
4882
-
4883
- #: ../pricing-table-by-supsystic/classes/field.php:323 classes/field.php:323
4884
- msgid "Click to set field \"id\" and \"class\""
4885
- msgstr "Cliquez pour définir champ \"id\" et \"class\""
4886
-
4887
- #: ../pricing-table-by-supsystic/classes/table.php:278 classes/table.php:278
4888
- msgid "Nothig to update"
4889
- msgstr "Rien à mettre à jour"
4890
-
4891
- #: ../pricing-table-by-supsystic/modules/mail/controller.php:7
4892
- #: modules/mail/controller.php:7
4893
- msgid "Now check your email inbox / spam folders for test mail."
4894
- msgstr ""
4895
- "Veuillez vérifiez votre boîte de réception / dossier anti-spam pour le mail "
4896
- "test."
4897
-
4898
- #: ../pricing-table-by-supsystic/modules/mail/mod.php:50
4899
- #: modules/mail/mod.php:50
4900
- msgid "Mail"
4901
- msgstr "Email"
4902
-
4903
- #: ../pricing-table-by-supsystic/modules/mail/mod.php:52
4904
- #: modules/mail/mod.php:52
4905
- msgid "Mail function tested and work"
4906
- msgstr "Fonction email testée et fonctionnelle"
4907
-
4908
- #: ../pricing-table-by-supsystic/modules/mail/mod.php:53
4909
- #: modules/mail/mod.php:53
4910
- msgid "Notify Email"
4911
- msgstr "Notifier l'e-mail"
4912
-
4913
- #: ../pricing-table-by-supsystic/modules/mail/mod.php:53
4914
- #: modules/mail/mod.php:53
4915
- msgid "Email address used for all email notifications from plugin"
4916
- msgstr "Adresse email utilisée pour toutes les notifications email du plugin"
4917
-
4918
- #: ../pricing-table-by-supsystic/modules/mail/models/mail.php:7
4919
- #: modules/mail/models/mail.php:7
4920
- msgid "Test email functionslity"
4921
- msgstr "Fonctionnalité de l'email de test"
4922
-
4923
- #: ../pricing-table-by-supsystic/modules/mail/models/mail.php:8
4924
- #: modules/mail/models/mail.php:8
4925
- #, php-format
4926
- msgid "This is test email for testing email functionality on your site, %s."
4927
- msgstr ""
4928
- "Il s'agit de test e-mail pour tester la fonctionnalité de messagerie sur "
4929
- "votre site, %s."
4930
-
4931
- #: ../pricing-table-by-supsystic/modules/mail/models/mail.php:15
4932
- #: modules/mail/models/mail.php:15
4933
- msgid "Empty email address"
4934
- msgstr "Adresse email vide"
4935
-
4936
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:3
4937
- #: modules/mail/views/tpl/mailAdmin.php:3
4938
- msgid "Send test email to"
4939
- msgstr "Envoyer un courriel test"
4940
-
4941
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:10
4942
- #: modules/mail/views/tpl/mailAdmin.php:10
4943
- msgid "Send test"
4944
- msgstr "Envoyer le test"
4945
-
4946
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:12
4947
- #: modules/mail/views/tpl/mailAdmin.php:12
4948
- msgid "This option allow you to check your server mail functionality"
4949
- msgstr ""
4950
- "Cette option vous permet de vérifier la fonctionnalité de votre messagerie "
4951
- "serveur"
4952
-
4953
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:15
4954
- #: modules/mail/views/tpl/mailAdmin.php:15
4955
- msgid "Did you received test email?"
4956
- msgstr "Avez-vous reçu un courriel de test?"
4957
-
4958
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:18
4959
- #: modules/mail/views/tpl/mailAdmin.php:18
4960
- msgid "Yes! It work!"
4961
- msgstr "Oui! Ça marche !"
4962
-
4963
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:22
4964
- #: modules/mail/views/tpl/mailAdmin.php:22
4965
- msgid "No, I need to contact my hosting provider with mail function issue."
4966
- msgstr ""
4967
- "Non, je dois contacter mon hébergeur pour le problème de fonctionnement de "
4968
- "la messagerie."
4969
-
4970
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:26
4971
- #: modules/mail/views/tpl/mailAdmin.php:26
4972
- msgid "Great! Mail function was tested and working fine."
4973
- msgstr "Génial! La fonction de courrier a été testée et fonctionne très bien."
4974
-
4975
- #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:29
4976
- #: modules/mail/views/tpl/mailAdmin.php:29
4977
- msgid ""
4978
- "Bad, please contact your hosting provider and ask them to setup mail "
4979
- "functionality on your server."
4980
- msgstr ""
4981
- "Désolé, SVP contactez votre hébergeur et demandez-lui de vérifier la "
4982
- "fonctionnalité de messagerie sur votre serveur."
4983
-
4984
- #: ../pricing-table-by-supsystic/modules/options/mod.php:115
4985
- #: modules/options/mod.php:115
4986
- msgid ""
4987
- "Send information about what plugin options you prefer to use, this will help "
4988
- "us to make our solution better for You."
4989
- msgstr ""
4990
- "Envoyer des informations sur les options de plugin que vous préférez "
4991
- "utiliser, cela nous aidera à rendre notre solution meilleure pour vous."
4992
-
4993
- #: ../pricing-table-by-supsystic/modules/options/mod.php:116
4994
- #: modules/options/mod.php:116
4995
- msgid ""
4996
- "We are trying to make our plugin better for you, and you can help us with "
4997
- "this. Just check this option - and small promotion link will be added in the "
4998
- "bottom of your Pricing Table. This is easy for you - but very helpful for us!"
4999
- msgstr ""
5000
- "Nous essayons de rendre notre plugin mieux pour vous, et vous pouvez nous "
5001
- "aider avec cela. Il suffit de vérifier cette option - et petit lien de "
5002
- "promotion sera ajouté dans le bas de votre tableau de tarification. C'est "
5003
- "facile pour vous - mais très utile pour nous!"
5004
-
5005
- #: ../pricing-table-by-supsystic/modules/options/mod.php:117
5006
- #: modules/options/mod.php:117
5007
- msgid "User with such role can use plugin"
5008
- msgstr "L'utilisateur avec un tel rôle peut utiliser le plugin"
5009
-
5010
- #: ../pricing-table-by-supsystic/modules/options/mod.php:117
5011
- #: modules/options/mod.php:117
5012
- msgid ""
5013
- "User with the next roles will have access to the whole plugin from admin "
5014
- "area."
5015
- msgstr ""
5016
- "L'utilisateur avec les rôles suivants aura accès à l'ensemble du plugin de "
5017
- "la zone d'administration."
5018
-
5019
- #: ../pricing-table-by-supsystic/modules/options/mod.php:118
5020
- #: modules/options/mod.php:118
5021
- msgid "Disable autosave in Pricing Table"
5022
- msgstr "Désactiver l'enregistrement automatique dans le tableau des prix"
5023
-
5024
- #: ../pricing-table-by-supsystic/modules/options/mod.php:118
5025
- #: modules/options/mod.php:118
5026
- msgid ""
5027
- "By default our plugin will make autosave of all your changes that you do in "
5028
- "Pricing Table edit screen, but you can disable this feature here. Just don't "
5029
- "forget to save your Pricing Table each time you make any changes in it."
5030
- msgstr ""
5031
- "Par défaut, notre plugin fera autosave de toutes vos modifications que vous "
5032
- "faites dans l'écran de modification de la table de tarification, mais vous "
5033
- "pouvez désactiver cette fonctionnalité ici. N'oubliez pas d'enregistrer "
5034
- "votre tableau de tarification chaque fois que vous y apporterez des "
5035
- "modifications."
5036
-
5037
- #: ../pricing-table-by-supsystic/modules/options/mod.php:119
5038
- #: modules/options/mod.php:119
5039
- msgid "Disable CDN usage"
5040
- msgstr "Désactiver l'utilisation du CDN"
5041
-
5042
- #: ../pricing-table-by-supsystic/modules/options/mod.php:119
5043
- #: modules/options/mod.php:119
5044
- #, php-format
5045
- msgid ""
5046
- "By default our plugin is using CDN server to store there part of it's files "
5047
- "- images, javascript and CSS libraries. This was designed in that way to "
5048
- "reduce plugin size, make it lighter and easier for usage. But if you need to "
5049
- "store all files - on your server - you can disable this option here, then "
5050
- "upload plugin CDN files from <a href=\"%s\" target=\"_blank\">here</a> to "
5051
- "your own site to %s folder."
5052
- msgstr ""
5053
- "Par défaut, notre plugin utilise le serveur CDN pour stocker une partie de "
5054
- "ses fichiers - images, javascript et bibliothèques CSS. Ceci a été conçu de "
5055
- "cette façon pour réduire la taille du plugin, le rendre plus léger et plus "
5056
- "facile à utiliser. Mais si vous avez besoin de stocker tous les fichiers - "
5057
- "sur votre serveur - vous pouvez désactiver cette option ici, puis "
5058
- "télécharger des fichiers CDN plugin à partir <a href=\"%s\" target=\"_blank"
5059
- "\">d'ici</a> à votre propre site à %s dossier."
5060
-
5061
- #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsAdminPage.php:38
5062
- #: modules/options/views/tpl/optionsAdminPage.php:38
5063
- #, php-format
5064
- msgid ""
5065
- "Please be advised that this option is available only in <a target=\"_blank\" "
5066
- "href=\"%s\">PRO version</a>. You can <a target=\"_blank\" href=\"%s\" class="
5067
- "\"button\">Get PRO</a> today and get this and other PRO option for your "
5068
- "Pricing Tables!"
5069
- msgstr ""
5070
- "Veuillez noter que cette option n'est disponible que dans la <a target="
5071
- "\"_blank\" href=\"%s\">version PRO</a>. Vous pouvez <a target=\"_blank\" "
5072
- "href=\"%s\" class=\"button\">obtenir PRO</a> aujourd'hui et obtenir cette "
5073
- "option ET d'autres PRO pour vos tables de tarification!"
5074
-
5075
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:36
5076
- #: modules/supsystic_promo/mod.php:36
5077
- #, php-format
5078
- msgid ""
5079
- "<h3>Hey, I noticed you just use %s over a week – that’s awesome!</"
5080
- "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
5081
- "WordPress? Just to help us spread the word and boost our motivation.</p>"
5082
- msgstr ""
5083
- "<h3>Hey, j’ai remarqué que vous utilisiez %s depuis plus d’une semaine – "
5084
- "c’est génial !</h3><p>Pourriez-vous, s’il vous plaît, me faire une grande "
5085
- "faveur et lui donner une note de 5 étoiles sur WordPress ? Juste pour nous "
5086
- "aider en nous motivant !!.</p>"
5087
-
5088
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:40
5089
- #: modules/supsystic_promo/mod.php:40
5090
- #, php-format
5091
- msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
5092
- msgstr "<h3>Plus de onze jours avec notre plugin %s - félicitations !</h3>"
5093
-
5094
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:41
5095
- #: modules/supsystic_promo/mod.php:41
5096
- msgid ""
5097
- "<p>On behalf of the entire <a href=\"https://supsystic.com/\" target=\"_blank"
5098
- "\">supsystic.com</a> company I would like to thank you for been with us, and "
5099
- "I really hope that our software helped you.</p>"
5100
- msgstr ""
5101
- "<p>Au nom de l'équipe de <a href=\"https://supsystic.com/\" target=\"_blank"
5102
- "\">supsystic.com</a> , je tiens à vous remercier pour avoir été avec nous, "
5103
- "et j’espère vraiment que notre logiciel vous a aidé.</p>"
5104
-
5105
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:42
5106
- #: modules/supsystic_promo/mod.php:42
5107
- msgid ""
5108
- "<p>And today, if you want, - you can help us. This is really simple - you "
5109
- "can just add small promo link to our site under your tables. This is small "
5110
- "step for you, but a big help for us! Sure, if you don't want - just skip "
5111
- "this and continue enjoy our software!</p>"
5112
- msgstr ""
5113
- "<p>Et aujourd'hui, si vous voulez, vous pouvez nous aider. C'est vraiment "
5114
- "simple - vous pouvez simplement ajouter un petit lien promo à notre site "
5115
- "sous vos tables. C'est un petit pas pour vous, mais une grande aide pour "
5116
- "nous! Bien sûr, si vous ne voulez pas - il suffit de sauter cela et "
5117
- "continuer à profiter de notre logiciel!</p>"
5118
-
5119
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:47
5120
- #: modules/supsystic_promo/mod.php:47
5121
- #, php-format
5122
- msgid ""
5123
- "Check out <a href=\"%s\" target=\"_blank\" class=\"button button-primary\" "
5124
- "data-statistic-code=\"hide\">our other Plugins</a>! Years of experience in "
5125
- "WordPress plugins developers made those list unbreakable!"
5126
- msgstr ""
5127
- "Découvrez <a href=\"%s\" target=\"_blank\" class=\"button button-primary\" "
5128
- "data-statistic-code=\"hide\">nos autres Plugins</a>! Des années d'expérience "
5129
- "dans les développeurs de plugins WordPress ont rendu cette liste incassable!"
5130
-
5131
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:125
5132
- #: modules/supsystic_promo/mod.php:125
5133
- msgid "Welcome to Supsystic"
5134
- msgstr "Bienvenue à Supsystic"
5135
-
5136
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:195
5137
- #: modules/supsystic_promo/mod.php:195
5138
- msgid "Your name"
5139
- msgstr "Votre nom"
5140
-
5141
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:196
5142
- #: modules/supsystic_promo/mod.php:196
5143
- msgid "Your email"
5144
- msgstr "Votre email"
5145
-
5146
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:202
5147
- #: modules/supsystic_promo/mod.php:202
5148
- msgid "Require a new functionallity"
5149
- msgstr "Besoin d'une nouvelle fonctionnalité"
5150
-
5151
- #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:77
5152
- #: modules/supsystic_promo/views/supsystic_promo.php:77
5153
- msgid ""
5154
- "It’s never been so easy to create and manage pricing and comparison tables "
5155
- "with table builder. Any element of the table can be customise with mouse "
5156
- "click."
5157
- msgstr ""
5158
- "Il n'a jamais été aussi facile de créer et de gérer des tableaux de prix et "
5159
- "de comparaison avec un constructeur de table. Tout élément de la table peut "
5160
- "être personnalisé en un clic de souris."
5161
-
5162
- #: ../pricing-table-by-supsystic/modules/tables/controller.php:243
5163
- #: modules/tables/controller.php:243
5164
- msgid "Done, redirecting to new Table..."
5165
- msgstr "Fait, redirection vers la nouvelle table..."
5166
-
5167
- #: ../pricing-table-by-supsystic/modules/tables/mod.php:20
5168
- #: modules/tables/mod.php:20
5169
- msgid "Add New Table"
5170
- msgstr "Ajoutez un nouveau tableau"
5171
-
5172
- #: ../pricing-table-by-supsystic/modules/tables/mod.php:26
5173
- #: modules/tables/mod.php:26
5174
- msgid "Show All Tables"
5175
- msgstr "Tout afficher"
5176
-
5177
- #: ../pricing-table-by-supsystic/modules/tables/mod.php:29
5178
- #: modules/tables/mod.php:29
5179
- msgid "Tables Import / Export"
5180
- msgstr "Tables Importation / Exportation"
5181
-
5182
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:30
5183
- #: modules/tables/models/tables.php:30
5184
- msgid "Please select Table template from list below"
5185
- msgstr "S'il vous plaît sélectionnez le modèle de table de la liste ci-dessous"
5186
-
5187
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:32
5188
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:323
5189
- #: modules/tables/models/tables.php:32 modules/tables/models/tables.php:323
5190
- msgid "Please enter Name"
5191
- msgstr "Veuillez saisir le nom"
5192
-
5193
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:196
5194
- #: modules/tables/models/tables.php:196
5195
- msgid "Name can not be empty"
5196
- msgstr "Le nom ne peut pas être vide"
5197
-
5198
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:304
5199
- #: modules/tables/models/tables.php:304
5200
- msgid "Provided data was corrupted"
5201
- msgstr "Les données fournies sont corrompues"
5202
-
5203
- #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:321
5204
- #: modules/tables/models/tables.php:321
5205
- msgid "Where is ID?"
5206
- msgstr "Où est ID ?"
5207
-
5208
- #: ../pricing-table-by-supsystic/modules/tables/views/tables.php:48
5209
- #: modules/tables/views/tables.php:48
5210
- msgid "Modify Table Template"
5211
- msgstr "Modifier le modèle de table"
5212
-
5213
- #: ../pricing-table-by-supsystic/modules/tables/views/tables.php:57
5214
- #: ../pricing-table-by-supsystic/modules/tables/views/tables.php:89
5215
- #: modules/tables/views/tables.php:57 modules/tables/views/tables.php:89
5216
- msgid "Cannot find required Table"
5217
- msgstr "Ne pas trouver la table requise"
5218
-
5219
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:5
5220
- #: modules/tables/views/tpl/tablesAddNewAdmin.php:5
5221
- #, php-format
5222
- msgid ""
5223
- "Change Template to any other from list below or <a class=\"button\" href=\"%s"
5224
- "\">return to Table edit</a>"
5225
- msgstr ""
5226
- "Modifier le modèle à n'importe quel autre de la liste ci-dessous ou <a class="
5227
- "\"button\" href=\"%s\">revenir à la modification</a> de tableau"
5228
-
5229
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:7
5230
- #: modules/tables/views/tpl/tablesAddNewAdmin.php:7
5231
- msgid "Choose Table Template. You can change it later."
5232
- msgstr "Choisissez Le modèle de table. Vous pouvez le changer plus tard."
5233
-
5234
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:16
5235
- #: modules/tables/views/tpl/tablesAddNewAdmin.php:16
5236
- msgid "Table Name"
5237
- msgstr "Nom de la table"
5238
-
5239
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:38
5240
- #: modules/tables/views/tpl/tablesAddNewAdmin.php:38
5241
- msgid "Get in PRO"
5242
- msgstr "Entrez dans PRO"
5243
-
5244
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:55
5245
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:36
5246
- #: modules/tables/views/tpl/tablesAddNewAdmin.php:55
5247
- #: modules/tables/views/tpl/tablesEditFormControls.php:36
5248
- msgid "Change Template"
5249
- msgstr "Changer de modèle"
5250
-
5251
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:57
5252
- #: modules/tables/views/tpl/tablesAddNewAdmin.php:57
5253
- msgid "Are you sure want to change your current template - to "
5254
- msgstr "Voulez-vous changer votre modèle actuel - à "
5255
-
5256
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:21
5257
- #: modules/tables/views/tpl/tablesAdmin.php:21
5258
- #, php-format
5259
- msgid ""
5260
- "You have no Tables for now. <a href=\"%s\" style=\"font-style: italic;"
5261
- "\">Create</a> your First Table!"
5262
- msgstr ""
5263
- "Vous n'avez pas de tables pour l'instant. <a href=\"%s\" style=\"font-style: "
5264
- "italic;\">Créez</a> votre première table!"
5265
-
5266
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:25
5267
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:26
5268
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:54
5269
- #: modules/tables/views/tpl/tablesEditAdmin.php:25
5270
- #: modules/tables/views/tpl/tablesEditAdmin.php:26
5271
- #: modules/tables/views/tpl/tablesEditAdmin.php:54
5272
- msgid "Rows"
5273
- msgstr "Lignes"
5274
-
5275
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:28
5276
- #: modules/tables/views/tpl/tablesEditAdmin.php:28
5277
- msgid "Columns"
5278
- msgstr "Colonnes"
5279
-
5280
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:29
5281
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:54
5282
- #: modules/tables/views/tpl/tablesEditAdmin.php:29
5283
- #: modules/tables/views/tpl/tablesEditAdmin.php:54
5284
- msgid "Cols"
5285
- msgstr "Colonnes"
5286
-
5287
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:36
5288
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:37
5289
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:61
5290
- #: modules/tables/views/tpl/tablesEditAdmin.php:36
5291
- #: modules/tables/views/tpl/tablesEditAdmin.php:37
5292
- #: modules/tables/views/tpl/tablesEditAdmin.php:61
5293
- msgid "Add Row"
5294
- msgstr "Ajouter une rangée"
5295
-
5296
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:39
5297
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:98
5298
- #: modules/tables/views/tpl/tablesEditAdmin.php:39
5299
- #: modules/tables/views/tpl/tablesEditorFooter.php:98
5300
- msgid "Add Column"
5301
- msgstr "Ajouter une colonne"
5302
-
5303
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:40
5304
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:61
5305
- #: modules/tables/views/tpl/tablesEditAdmin.php:40
5306
- #: modules/tables/views/tpl/tablesEditAdmin.php:61
5307
- msgid "Add Col"
5308
- msgstr "Ajouter Colonne"
5309
-
5310
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:44
5311
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:66
5312
- #: modules/tables/views/tpl/tablesEditAdmin.php:44
5313
- #: modules/tables/views/tpl/tablesEditAdmin.php:66
5314
- msgid "New row will be added in the end of your table rows area."
5315
- msgstr ""
5316
- "Une nouvelle ligne sera ajoutée à l'extrémité de votre zone de rangées de "
5317
- "table."
5318
-
5319
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:46
5320
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:64
5321
- #: modules/tables/views/tpl/tablesEditAdmin.php:46
5322
- #: modules/tables/views/tpl/tablesEditAdmin.php:64
5323
- msgid "New column will be added in the end of your table."
5324
- msgstr "Une nouvelle colonne sera ajoutée à la fin de votre table."
5325
-
5326
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:76
5327
- #: modules/tables/views/tpl/tablesEditAdmin.php:76
5328
- msgid "Table Width"
5329
- msgstr "Largeur de la table"
5330
-
5331
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:77
5332
- #: modules/tables/views/tpl/tablesEditAdmin.php:77
5333
- msgid "Tbl. Width"
5334
- msgstr "Tbl. Largeur"
5335
-
5336
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:97
5337
- #: modules/tables/views/tpl/tablesEditAdmin.php:97
5338
- msgid ""
5339
- "Set width for table. Width for each column in this case will be calculated "
5340
- "as width of whole table divided for total columns number."
5341
- msgstr ""
5342
- "Définir la largeur pour la table. La largeur de chaque colonne dans ce cas "
5343
- "sera calculée comme largeur de la table entière divisée pour le nombre total "
5344
- "de colonnes."
5345
-
5346
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:107
5347
- #: modules/tables/views/tpl/tablesEditAdmin.php:107
5348
- msgid "Column Width"
5349
- msgstr "Largeur colonne"
5350
-
5351
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:113
5352
- #: modules/tables/views/tpl/tablesEditAdmin.php:113
5353
- msgid ""
5354
- "Set width for each column. Total table width in this case will be calculated "
5355
- "as sum of all your columns width."
5356
- msgstr ""
5357
- "Définir la largeur pour chaque colonne. La largeur totale de la table dans "
5358
- "ce cas sera calculée comme une somme de toute la largeur de vos colonnes."
5359
-
5360
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:119
5361
- #: modules/tables/views/tpl/tablesEditAdmin.php:119
5362
- msgid "Text Align"
5363
- msgstr "Alignement du texte"
5364
-
5365
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:125
5366
- #: modules/tables/views/tpl/tablesEditAdmin.php:125
5367
- msgid "Text align in table: left, center, right"
5368
- msgstr "Texte aligné dans la table : gauche, centre, droite"
5369
-
5370
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:134
5371
- #: modules/tables/views/tpl/tablesEditAdmin.php:134
5372
- msgid "Enable Responsivity"
5373
- msgstr "Activer la réceptivité"
5374
-
5375
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:135
5376
- #: modules/tables/views/tpl/tablesEditAdmin.php:135
5377
- msgid "Enb. Responsivity"
5378
- msgstr "Enb. Sensibilité"
5379
-
5380
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:136
5381
- #: modules/tables/views/tpl/tablesEditAdmin.php:136
5382
- msgid ""
5383
- "When device screen is small (mobile device or some tablets) usually table "
5384
- "will go into responsive mode: all columns will be shown one-by-one below "
5385
- "each other. But if you need to disable this feature - you can do this with "
5386
- "this option. This feature influences only on frontend table view."
5387
- msgstr ""
5388
- "Lorsque l'écran de l'appareil est petit (appareil mobile ou certaines "
5389
- "tablettes) table généralement passer en mode réactif: toutes les colonnes "
5390
- "seront affichées un par un en dessous de l'autre. Mais si vous avez besoin "
5391
- "de désactiver cette fonctionnalité - vous pouvez le faire avec cette option. "
5392
- "Cette fonctionnalité n'influence que sur la vue de table frontend."
5393
-
5394
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:142
5395
- #: modules/tables/views/tpl/tablesEditAdmin.php:142
5396
- msgid "Min Column Width"
5397
- msgstr "Largeur de colonne min"
5398
-
5399
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:147
5400
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:217
5401
- #: modules/tables/views/tpl/tablesEditAdmin.php:147
5402
- #: modules/tables/views/tpl/tablesEditAdmin.php:217
5403
- msgid "px"
5404
- msgstr "px"
5405
-
5406
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:148
5407
- #: modules/tables/views/tpl/tablesEditAdmin.php:148
5408
- msgid ""
5409
- "Column width (is indicated in pixels by default) at which table will go to "
5410
- "responsive mode"
5411
- msgstr ""
5412
- "Largeur de colonne (indiquée en pixels par défaut) à laquelle la table "
5413
- "passera en mode réactif"
5414
-
5415
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:156
5416
- #: modules/tables/views/tpl/tablesEditAdmin.php:156
5417
- msgid "Font"
5418
- msgstr "Police"
5419
-
5420
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:161
5421
- #: modules/tables/views/tpl/tablesEditAdmin.php:161
5422
- msgid ""
5423
- "Font for table. You can always set other font for any text element using "
5424
- "text editor tool. Just click on text - and start edit it!"
5425
- msgstr ""
5426
- "Font pour table. Vous pouvez toujours définir d'autres polices pour "
5427
- "n'importe quel élément texte à l'aide de l'outil d'éditeur de texte. Il "
5428
- "suffit de cliquer sur le texte - et commencer à l'éditer!"
5429
-
5430
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:166
5431
- #: modules/tables/views/tpl/tablesEditAdmin.php:166
5432
- msgid "Table Align"
5433
- msgstr "Tableau Align"
5434
-
5435
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:172
5436
- #: modules/tables/views/tpl/tablesEditAdmin.php:172
5437
- msgid "Table align in page: left, center, right, none"
5438
- msgstr "Tableau aligner dans la page: gauche, centre, droite, aucun"
5439
-
5440
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:177
5441
- #: modules/tables/views/tpl/tablesEditAdmin.php:177
5442
- msgid "Description Text Color"
5443
- msgstr "Couleur du texte de description"
5444
-
5445
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:178
5446
- #: modules/tables/views/tpl/tablesEditAdmin.php:178
5447
- msgid "Desc. Text Color"
5448
- msgstr "Desc. Couleur de texte"
5449
-
5450
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:184
5451
- #: modules/tables/views/tpl/tablesEditAdmin.php:184
5452
- msgid ""
5453
- "Text color for table columns description element. You can always specify "
5454
- "text color for any text element inside table using text editor."
5455
- msgstr ""
5456
- "Couleur de texte pour élément de description de colonnes de table. Vous "
5457
- "pouvez toujours spécifier la couleur du texte pour n'importe quel élément de "
5458
- "texte à l'intérieur de la table à l'aide de l'éditeur de texte."
5459
-
5460
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:195
5461
- #: modules/tables/views/tpl/tablesEditAdmin.php:195
5462
- msgid "Common background color for table."
5463
- msgstr "Couleur commune de fond pour la table."
5464
-
5465
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:200
5466
- #: modules/tables/views/tpl/tablesEditAdmin.php:200
5467
- msgid "Header Text Color"
5468
- msgstr "Couleur du texte d’en-tête"
5469
-
5470
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:206
5471
- #: modules/tables/views/tpl/tablesEditAdmin.php:206
5472
- msgid ""
5473
- "Text color for table columns header element. You can always specify text "
5474
- "color for any text element inside table using text editor."
5475
- msgstr ""
5476
- "Couleur de texte pour l'élément d'en-tête de colonnes de table. Vous pouvez "
5477
- "toujours spécifier la couleur du texte pour n'importe quel élément de texte "
5478
- "à l'intérieur de la table à l'aide de l'éditeur de texte."
5479
-
5480
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:211
5481
- #: modules/tables/views/tpl/tablesEditAdmin.php:211
5482
- msgid "Vertical Padding"
5483
- msgstr "Marge interne verticale"
5484
-
5485
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:212
5486
- #: modules/tables/views/tpl/tablesEditAdmin.php:212
5487
- msgid "Vert. Padding"
5488
- msgstr "Vert. Padding"
5489
-
5490
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:218
5491
- #: modules/tables/views/tpl/tablesEditAdmin.php:218
5492
- msgid "Vertical padding for column."
5493
- msgstr "Padding vertical pour colonne."
5494
-
5495
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:223
5496
- #: modules/tables/views/tpl/tablesEditAdmin.php:223
5497
- msgid "Rows Text Color"
5498
- msgstr "Couleur de texte de lignes"
5499
-
5500
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:229
5501
- #: modules/tables/views/tpl/tablesEditAdmin.php:229
5502
- msgid ""
5503
- "Common text color for table. You can always specify text color for any text "
5504
- "element inside table using text editor."
5505
- msgstr ""
5506
- "Couleur de texte commune pour la table. Vous pouvez toujours spécifier la "
5507
- "couleur du texte pour n'importe quel élément de texte à l'intérieur de la "
5508
- "table à l'aide de l'éditeur de texte."
5509
-
5510
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:239
5511
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:289
5512
- #: modules/tables/views/tpl/tablesEditAdmin.php:239
5513
- #: modules/tables/views/tpl/tablesEditAdmin.php:289
5514
- msgid "Enable Description Row"
5515
- msgstr "Activer la ligne de description"
5516
-
5517
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:239
5518
- #: modules/tables/views/tpl/tablesEditAdmin.php:239
5519
- msgid "Enable Description Column"
5520
- msgstr "Activer la colonne de description"
5521
-
5522
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:242
5523
- #: modules/tables/views/tpl/tablesEditAdmin.php:242
5524
- msgid "Enb. Desc. Row"
5525
- msgstr "Enb. Desc. Ligne"
5526
-
5527
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:242
5528
- #: modules/tables/views/tpl/tablesEditAdmin.php:242
5529
- msgid "Enb. Desc. Col"
5530
- msgstr "Enb. Desc. Col"
5531
-
5532
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:244
5533
- #: modules/tables/views/tpl/tablesEditAdmin.php:244
5534
- msgid ""
5535
- "Add additional description column into table. You can add there descriptions "
5536
- "for your rows."
5537
- msgstr ""
5538
- "Ajoutez une colonne de description supplémentaire dans le tableau. Vous "
5539
- "pouvez y ajouter des descriptions pour vos lignes."
5540
-
5541
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:255
5542
- #: modules/tables/views/tpl/tablesEditAdmin.php:255
5543
- msgid "Enable Head Column"
5544
- msgstr "Activer la colonne de tête"
5545
-
5546
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:255
5547
- #: modules/tables/views/tpl/tablesEditAdmin.php:255
5548
- msgid "Enable Head Row"
5549
- msgstr "Activer la ligne de tête"
5550
-
5551
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:259
5552
- #: modules/tables/views/tpl/tablesEditAdmin.php:259
5553
- msgid "Enb. Head Column"
5554
- msgstr "Enb. Colonne de tête"
5555
-
5556
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:259
5557
- #: modules/tables/views/tpl/tablesEditAdmin.php:259
5558
- msgid "Enb. Head Row"
5559
- msgstr "Enb. Ligne de tête"
5560
-
5561
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:261
5562
- #: modules/tables/views/tpl/tablesEditAdmin.php:261
5563
- msgid ""
5564
- "By unchecking the box you hide head row in all columns. Usually it is the "
5565
- "first row in table."
5566
- msgstr ""
5567
- "En décochant la case, vous cachez la ligne de tête dans toutes les colonnes. "
5568
- "Habituellement, c'est la première rangée dans la table."
5569
-
5570
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:272
5571
- #: modules/tables/views/tpl/tablesEditAdmin.php:272
5572
- msgid "Enable Footer Column"
5573
- msgstr "Activer la colonne Footer"
5574
-
5575
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:272
5576
- #: modules/tables/views/tpl/tablesEditAdmin.php:272
5577
- msgid "Enable Footer Row"
5578
- msgstr "Activer Footer Row"
5579
-
5580
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:277
5581
- #: modules/tables/views/tpl/tablesEditAdmin.php:277
5582
- msgid "Enb. Footer Column"
5583
- msgstr "Enb. Colonne Footer"
5584
-
5585
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:277
5586
- #: modules/tables/views/tpl/tablesEditAdmin.php:277
5587
- msgid "Enb. Footer Row"
5588
- msgstr "Enb. Ligne De Footer"
5589
-
5590
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:279
5591
- #: modules/tables/views/tpl/tablesEditAdmin.php:279
5592
- msgid ""
5593
- "By ubchecking the box you hide footer row in all columns. Usually it is last "
5594
- "row in table."
5595
- msgstr ""
5596
- "En vérifiant la boîte, vous cachez la ligne pied dans toutes les colonnes. "
5597
- "Habituellement, il est dernière rangée dans la table."
5598
-
5599
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:290
5600
- #: modules/tables/views/tpl/tablesEditAdmin.php:290
5601
- msgid "Enb. Description Row"
5602
- msgstr "Enb. Ligne de description"
5603
-
5604
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:291
5605
- #: modules/tables/views/tpl/tablesEditAdmin.php:291
5606
- msgid "By ubchecking the box you hide description row in all columns."
5607
- msgstr ""
5608
- "En vérifiant la case, vous cachez la ligne de description dans toutes les "
5609
- "colonnes."
5610
-
5611
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:300
5612
- #: modules/tables/views/tpl/tablesEditAdmin.php:300
5613
- msgid "Enable Hover Animation"
5614
- msgstr "Activer l'animation Hover"
5615
-
5616
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:301
5617
- #: modules/tables/views/tpl/tablesEditAdmin.php:301
5618
- msgid ""
5619
- "Animate column when mouse is hovering on it. Will work ONLY on frontend, "
5620
- "disabled in admin area WySiWyg editor as it can break it in edit mode."
5621
- msgstr ""
5622
- "Animer la colonne lorsque la souris est planant sur elle. Fonctionnera "
5623
- "uniquement sur frontend, désactivé dans la zone d'administration WySiWyg "
5624
- "éditeur car il peut le briser en mode de modification."
5625
-
5626
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:310
5627
- #: modules/tables/views/tpl/tablesEditAdmin.php:310
5628
- msgid "Enable Responsive Text"
5629
- msgstr "Activer le texte responsive"
5630
-
5631
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:311
5632
- #: modules/tables/views/tpl/tablesEditAdmin.php:311
5633
- msgid "Enb. Responsive Text"
5634
- msgstr "Enb. Texte responsive"
5635
-
5636
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:320
5637
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:321
5638
- #: modules/tables/views/tpl/tablesEditAdmin.php:320
5639
- #: modules/tables/views/tpl/tablesEditAdmin.php:321
5640
- msgid "Disable Custom Tooltip Styles"
5641
- msgstr "Désactiver les styles de conseils d'outils personnalisés"
5642
-
5643
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:323
5644
- #: modules/tables/views/tpl/tablesEditAdmin.php:323
5645
- msgid "Disable supsystic styles for tooltips in your pricing table"
5646
- msgstr ""
5647
- "Disable styles supsystic pour les conseils d'outils dans votre tableau de "
5648
- "tarification"
5649
-
5650
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:329
5651
- #: modules/tables/views/tpl/tablesEditAdmin.php:329
5652
- msgid "To enable Toggle option order PRO version. As low as $29"
5653
- msgstr "Activer la bascule pour le prix avec la version PRO. Seulement à $29"
5654
-
5655
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:344
5656
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:345
5657
- #: modules/tables/views/tpl/tablesEditAdmin.php:344
5658
- #: modules/tables/views/tpl/tablesEditAdmin.php:345
5659
- msgid "Enable Switch Toggle"
5660
- msgstr "Activer switch Toggle"
5661
-
5662
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:350
5663
- #: modules/tables/views/tpl/tablesEditAdmin.php:350
5664
- msgid ""
5665
- "Enable Switch Toggle. You need add at list two options to use switch toggle "
5666
- "button functionality!"
5667
- msgstr ""
5668
- "Activer Switch Toggle. Vous devez ajouter à la liste deux options pour "
5669
- "utiliser la fonctionnalité de bouton de bascule de commutateur !"
5670
-
5671
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:354
5672
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:355
5673
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:197
5674
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:376
5675
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:500
5676
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:595
5677
- #: modules/tables/views/tpl/tablesEditAdmin.php:354
5678
- #: modules/tables/views/tpl/tablesEditAdmin.php:355
5679
- #: modules/tables/views/tpl/tablesEditorFooter.php:197
5680
- #: modules/tables/views/tpl/tablesEditorFooter.php:376
5681
- #: modules/tables/views/tpl/tablesEditorFooter.php:500
5682
- #: modules/tables/views/tpl/tablesEditorFooter.php:595
5683
- msgid "Text"
5684
- msgstr "Texte"
5685
-
5686
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:360
5687
- #: modules/tables/views/tpl/tablesEditAdmin.php:360
5688
- msgid "Text placed above the switch"
5689
- msgstr "Texte placé au-dessus de l'interrupteur"
5690
-
5691
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:365
5692
- #: modules/tables/views/tpl/tablesEditAdmin.php:365
5693
- msgid "Select type"
5694
- msgstr "Sélectionnez le type"
5695
-
5696
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:371
5697
- #: modules/tables/views/tpl/tablesEditAdmin.php:371
5698
- msgid "Select switch type. Toggle button allows to show only first two options"
5699
- msgstr ""
5700
- "Sélectionnez le type de commutateur. Le bouton Toggle permet d'afficher "
5701
- "uniquement les deux premières options"
5702
-
5703
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:376
5704
- #: modules/tables/views/tpl/tablesEditAdmin.php:376
5705
- msgid "Select position"
5706
- msgstr "Sélectionnez la position"
5707
-
5708
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:382
5709
- #: modules/tables/views/tpl/tablesEditAdmin.php:382
5710
- msgid "Choose vertical position for switch"
5711
- msgstr "Choisissez la position verticale pour le commutateur"
5712
-
5713
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:387
5714
- #: modules/tables/views/tpl/tablesEditAdmin.php:387
5715
- msgid "Align"
5716
- msgstr "Alignement"
5717
-
5718
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:393
5719
- #: modules/tables/views/tpl/tablesEditAdmin.php:393
5720
- msgid "Select switch horizontal position"
5721
- msgstr "Sélectionnez la position horizontale de commutateur"
5722
-
5723
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:399
5724
- #: modules/tables/views/tpl/tablesEditAdmin.php:399
5725
- msgid "Button border color"
5726
- msgstr "Couleur de bordure du bouton"
5727
-
5728
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:400
5729
- #: modules/tables/views/tpl/tablesEditAdmin.php:400
5730
- msgid "Switch but. border color"
5731
- msgstr "Commutateur, bouton couleur de bordure"
5732
-
5733
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:406
5734
- #: modules/tables/views/tpl/tablesEditAdmin.php:406
5735
- msgid "Choose switch button border color"
5736
- msgstr "Choisissez la couleur de bordure de bouton d'interrupteur"
5737
-
5738
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:410
5739
- #: modules/tables/views/tpl/tablesEditAdmin.php:410
5740
- msgid "Button color"
5741
- msgstr "Couleur du bouton"
5742
-
5743
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:411
5744
- #: modules/tables/views/tpl/tablesEditAdmin.php:411
5745
- msgid "Switch but. color"
5746
- msgstr "Commutateur, Bouton Couleur"
5747
-
5748
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:417
5749
- #: modules/tables/views/tpl/tablesEditAdmin.php:417
5750
- msgid "Choose switch button background color"
5751
- msgstr "Choisissez la couleur d'arrière-plan de bouton de commutateur"
5752
-
5753
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:420
5754
- #: modules/tables/views/tpl/tablesEditAdmin.php:420
5755
- msgid "Button text color"
5756
- msgstr "Couleur texte bouton"
5757
-
5758
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:421
5759
- #: modules/tables/views/tpl/tablesEditAdmin.php:421
5760
- msgid "Switch but. text color"
5761
- msgstr "Commutateur, couleur de texte"
5762
-
5763
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:427
5764
- #: modules/tables/views/tpl/tablesEditAdmin.php:427
5765
- msgid "Choose switch button text color"
5766
- msgstr "Choisissez la couleur de texte de bouton de commutateur"
5767
-
5768
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:430
5769
- #: modules/tables/views/tpl/tablesEditAdmin.php:430
5770
- msgid "Button text color (not active)"
5771
- msgstr "Couleur de texte de bouton (non actif)"
5772
-
5773
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:431
5774
- #: modules/tables/views/tpl/tablesEditAdmin.php:431
5775
- msgid "But. text color (not active)"
5776
- msgstr "Couleur de texte de bouton (non actif)"
5777
-
5778
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:437
5779
- #: modules/tables/views/tpl/tablesEditAdmin.php:437
5780
- msgid "Choose switch button text color (not active position)"
5781
- msgstr ""
5782
- "Choisissez la couleur de texte de bouton de commutateur (pas la position "
5783
- "active)"
5784
-
5785
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:447
5786
- #: modules/tables/views/tpl/tablesEditAdmin.php:447
5787
- msgid "Switch name"
5788
- msgstr "Commutateur"
5789
-
5790
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:508
5791
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:532
5792
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:557
5793
- #: modules/tables/views/tpl/tablesEditAdmin.php:508
5794
- #: modules/tables/views/tpl/tablesEditAdmin.php:532
5795
- #: modules/tables/views/tpl/tablesEditAdmin.php:557
5796
- msgid "Default selected"
5797
- msgstr "Sélectionné par défaut"
5798
-
5799
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:586
5800
- #: modules/tables/views/tpl/tablesEditAdmin.php:586
5801
- msgid ""
5802
- "Please be adviced that all columns in your table have enabled Fill color "
5803
- "feature - so changing background color for table may not influence to all "
5804
- "table view, or maybe will not influence to table view at all (depending of "
5805
- "template that you selected for your table)."
5806
- msgstr ""
5807
- "S'il vous plaît être conseillé que toutes les colonnes de votre table ont "
5808
- "activé remplir la fonction couleur - de sorte que la couleur de fond "
5809
- "changeante pour la table peut ne pas influencer à toute la vue de table, ou "
5810
- "peut-être ne sera pas influencer à la vue de table à tous (selon le modèle "
5811
- "que vous avez sélectionné pour votre table)."
5812
-
5813
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:1
5814
- #: modules/tables/views/tpl/tablesEditFormControls.php:1
5815
- msgid "Click to Edit"
5816
- msgstr "Cliquez pour Éditer"
5817
-
5818
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:10
5819
- #: modules/tables/views/tpl/tablesEditFormControls.php:10
5820
- msgid "Shortcode"
5821
- msgstr "Code court"
5822
-
5823
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:26
5824
- #: modules/tables/views/tpl/tablesEditFormControls.php:26
5825
- msgid "Save all changes"
5826
- msgstr "Sauvegarder toutes les modifications"
5827
-
5828
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:32
5829
- #: modules/tables/views/tpl/tablesEditFormControls.php:32
5830
- msgid "Preview"
5831
- msgstr "Aperçu"
5832
-
5833
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:38
5834
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:40
5835
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:72
5836
- #: modules/tables/views/tpl/tablesEditFormControls.php:38
5837
- #: modules/tables/views/tpl/tablesEditFormControls.php:40
5838
- #: modules/tables/views/tpl/tablesEditFormControls.php:72
5839
- msgid "Edit Css"
5840
- msgstr "Modifier Css"
5841
-
5842
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:42
5843
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:44
5844
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:78
5845
- #: modules/tables/views/tpl/tablesEditFormControls.php:42
5846
- #: modules/tables/views/tpl/tablesEditFormControls.php:44
5847
- #: modules/tables/views/tpl/tablesEditFormControls.php:78
5848
- msgid "Edit HTML"
5849
- msgstr "Éditer le HTML"
5850
-
5851
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:46
5852
- #: modules/tables/views/tpl/tablesEditFormControls.php:46
5853
- msgid "Clone to New Table"
5854
- msgstr "Clone à nouvelle table"
5855
-
5856
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:48
5857
- #: modules/tables/views/tpl/tablesEditFormControls.php:48
5858
- msgid "Clone"
5859
- msgstr "Dupliquer"
5860
-
5861
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:60
5862
- #: modules/tables/views/tpl/tablesEditFormControls.php:60
5863
- msgid "Clone Table"
5864
- msgstr "Table clone"
5865
-
5866
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:63
5867
- #: modules/tables/views/tpl/tablesEditFormControls.php:63
5868
- msgid "New Name"
5869
- msgstr "Nouveau nom"
5870
-
5871
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:64
5872
- #: modules/tables/views/tpl/tablesEditFormControls.php:64
5873
- msgid "Copy"
5874
- msgstr "Copier"
5875
-
5876
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:5
5877
- #: modules/tables/views/tpl/tablesEditorFooter.php:5
5878
- msgid "Content align"
5879
- msgstr "Contenu aligné"
5880
-
5881
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:25
5882
- #: modules/tables/views/tpl/tablesEditorFooter.php:25
5883
- msgid "Add Slide"
5884
- msgstr "Ajouter une diapo"
5885
-
5886
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:33
5887
- #: modules/tables/views/tpl/tablesEditorFooter.php:33
5888
- msgid "Add Image"
5889
- msgstr "Ajouter une image"
5890
-
5891
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:41
5892
- #: modules/tables/views/tpl/tablesEditorFooter.php:41
5893
- msgid "Add Menu Item"
5894
- msgstr "Ajouter un élément de menu"
5895
-
5896
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:49
5897
- #: modules/tables/views/tpl/tablesEditorFooter.php:49
5898
- msgid "Manage Slides"
5899
- msgstr "Gérer les diapositives (Slides)"
5900
-
5901
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:71
5902
- #: modules/tables/views/tpl/tablesEditorFooter.php:71
5903
- msgid "Background Image..."
5904
- msgstr "Image de fond..."
5905
-
5906
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:82
5907
- #: modules/tables/views/tpl/tablesEditorFooter.php:82
5908
- msgid "Add Field"
5909
- msgstr "Ajouter un champ"
5910
-
5911
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:90
5912
- #: modules/tables/views/tpl/tablesEditorFooter.php:90
5913
- msgid "Subscribe Settings"
5914
- msgstr "Paramètres d’abonnement"
5915
-
5916
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:109
5917
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:254
5918
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:565
5919
- #: modules/tables/views/tpl/tablesEditorFooter.php:109
5920
- #: modules/tables/views/tpl/tablesEditorFooter.php:254
5921
- #: modules/tables/views/tpl/tablesEditorFooter.php:565
5922
- msgid "Select image"
5923
- msgstr "Sélectionner une image"
5924
-
5925
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:117
5926
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:262
5927
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:587
5928
- #: modules/tables/views/tpl/tablesEditorFooter.php:117
5929
- #: modules/tables/views/tpl/tablesEditorFooter.php:262
5930
- #: modules/tables/views/tpl/tablesEditorFooter.php:587
5931
- msgid "Video"
5932
- msgstr "Vidéo"
5933
-
5934
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:125
5935
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:175
5936
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:420
5937
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:486
5938
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:573
5939
- #: modules/tables/views/tpl/tablesEditorFooter.php:125
5940
- #: modules/tables/views/tpl/tablesEditorFooter.php:175
5941
- #: modules/tables/views/tpl/tablesEditorFooter.php:420
5942
- #: modules/tables/views/tpl/tablesEditorFooter.php:486
5943
- #: modules/tables/views/tpl/tablesEditorFooter.php:573
5944
- msgid "Link"
5945
- msgstr "Lien"
5946
-
5947
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:131
5948
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:162
5949
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:182
5950
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:238
5951
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:426
5952
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:455
5953
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:493
5954
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:548
5955
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:580
5956
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:642
5957
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:857
5958
- #: modules/tables/views/tpl/tablesEditorFooter.php:131
5959
- #: modules/tables/views/tpl/tablesEditorFooter.php:162
5960
- #: modules/tables/views/tpl/tablesEditorFooter.php:182
5961
- #: modules/tables/views/tpl/tablesEditorFooter.php:238
5962
- #: modules/tables/views/tpl/tablesEditorFooter.php:426
5963
- #: modules/tables/views/tpl/tablesEditorFooter.php:455
5964
- #: modules/tables/views/tpl/tablesEditorFooter.php:493
5965
- #: modules/tables/views/tpl/tablesEditorFooter.php:548
5966
- #: modules/tables/views/tpl/tablesEditorFooter.php:580
5967
- #: modules/tables/views/tpl/tablesEditorFooter.php:642
5968
- #: modules/tables/views/tpl/tablesEditorFooter.php:857
5969
- msgid "Tooltip"
5970
- msgstr "Info-bulle"
5971
-
5972
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:137
5973
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:143
5974
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:219
5975
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:273
5976
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:436
5977
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:529
5978
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:617
5979
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:623
5980
- #: modules/tables/views/tpl/tablesEditorFooter.php:137
5981
- #: modules/tables/views/tpl/tablesEditorFooter.php:143
5982
- #: modules/tables/views/tpl/tablesEditorFooter.php:219
5983
- #: modules/tables/views/tpl/tablesEditorFooter.php:273
5984
- #: modules/tables/views/tpl/tablesEditorFooter.php:436
5985
- #: modules/tables/views/tpl/tablesEditorFooter.php:529
5986
- #: modules/tables/views/tpl/tablesEditorFooter.php:617
5987
- #: modules/tables/views/tpl/tablesEditorFooter.php:623
5988
- msgid "link"
5989
- msgstr "lien"
5990
-
5991
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:148
5992
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:224
5993
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:441
5994
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:534
5995
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:628
5996
- #: modules/tables/views/tpl/tablesEditorFooter.php:148
5997
- #: modules/tables/views/tpl/tablesEditorFooter.php:224
5998
- #: modules/tables/views/tpl/tablesEditorFooter.php:441
5999
- #: modules/tables/views/tpl/tablesEditorFooter.php:534
6000
- #: modules/tables/views/tpl/tablesEditorFooter.php:628
6001
- msgid "title"
6002
- msgstr "titre"
6003
-
6004
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:153
6005
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:229
6006
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:446
6007
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:539
6008
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:633
6009
- #: modules/tables/views/tpl/tablesEditorFooter.php:153
6010
- #: modules/tables/views/tpl/tablesEditorFooter.php:229
6011
- #: modules/tables/views/tpl/tablesEditorFooter.php:446
6012
- #: modules/tables/views/tpl/tablesEditorFooter.php:539
6013
- #: modules/tables/views/tpl/tablesEditorFooter.php:633
6014
- msgid "open link in a new window"
6015
- msgstr "lien ouvert dans une nouvelle fenêtre"
6016
-
6017
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:157
6018
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:233
6019
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:450
6020
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:543
6021
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:637
6022
- #: modules/tables/views/tpl/tablesEditorFooter.php:157
6023
- #: modules/tables/views/tpl/tablesEditorFooter.php:233
6024
- #: modules/tables/views/tpl/tablesEditorFooter.php:450
6025
- #: modules/tables/views/tpl/tablesEditorFooter.php:543
6026
- #: modules/tables/views/tpl/tablesEditorFooter.php:637
6027
- msgid "add nofollow attribute"
6028
- msgstr "ajouter l'attribut nofollow"
6029
-
6030
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:188
6031
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:414
6032
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:479
6033
- #: modules/tables/views/tpl/tablesEditorFooter.php:188
6034
- #: modules/tables/views/tpl/tablesEditorFooter.php:414
6035
- #: modules/tables/views/tpl/tablesEditorFooter.php:479
6036
- msgid "Color"
6037
- msgstr "Couleur"
6038
-
6039
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:203
6040
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:382
6041
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:506
6042
- #: modules/tables/views/tpl/tablesEditorFooter.php:203
6043
- #: modules/tables/views/tpl/tablesEditorFooter.php:382
6044
- #: modules/tables/views/tpl/tablesEditorFooter.php:506
6045
- msgid "Image / Video"
6046
- msgstr "Image / Vidéo"
6047
-
6048
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:298
6049
- #: modules/tables/views/tpl/tablesEditorFooter.php:298
6050
- msgid "Background Image"
6051
- msgstr "Image d’arrière-plan"
6052
-
6053
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:335
6054
- #: modules/tables/views/tpl/tablesEditorFooter.php:335
6055
- msgid "Badge for Column"
6056
- msgstr "Insigne pour colonne"
6057
-
6058
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:338
6059
- #: modules/tables/views/tpl/tablesEditorFooter.php:338
6060
- msgid "Schedule column"
6061
- msgstr "Colonne de l'annexe"
6062
-
6063
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:353
6064
- #: modules/tables/views/tpl/tablesEditorFooter.php:353
6065
- msgid "Schedule"
6066
- msgstr "Planifier"
6067
-
6068
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:356
6069
- #: modules/tables/views/tpl/tablesEditorFooter.php:356
6070
- msgid "From"
6071
- msgstr "De"
6072
-
6073
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:361
6074
- #: modules/tables/views/tpl/tablesEditorFooter.php:361
6075
- msgid "To"
6076
- msgstr "À"
6077
-
6078
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:394
6079
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:512
6080
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:607
6081
- #: modules/tables/views/tpl/tablesEditorFooter.php:394
6082
- #: modules/tables/views/tpl/tablesEditorFooter.php:512
6083
- #: modules/tables/views/tpl/tablesEditorFooter.php:607
6084
- msgid "Button"
6085
- msgstr "Bouton"
6086
-
6087
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:410
6088
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:470
6089
- #: modules/tables/views/tpl/tablesEditorFooter.php:410
6090
- #: modules/tables/views/tpl/tablesEditorFooter.php:470
6091
- msgid "Change Icon"
6092
- msgstr "Changer d'icône"
6093
-
6094
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:475
6095
- #: modules/tables/views/tpl/tablesEditorFooter.php:475
6096
- msgid "Icon Size"
6097
- msgstr "Taille de l’icône"
6098
-
6099
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:656
6100
- #: modules/tables/views/tpl/tablesEditorFooter.php:656
6101
- msgid "Icons Library"
6102
- msgstr "Bibliothèque d'icônes"
6103
-
6104
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:661
6105
- #: modules/tables/views/tpl/tablesEditorFooter.php:661
6106
- msgid "Search, for example - pencil, music, ..."
6107
- msgstr "Recherche, par exemple - crayon, musique, ..."
6108
-
6109
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:664
6110
- #: modules/tables/views/tpl/tablesEditorFooter.php:664
6111
- msgid ""
6112
- "Nothing found for <span class=\"ptsNothingFoundKeys\"></span>, maybe try to "
6113
- "search something else?"
6114
- msgstr ""
6115
- "Rien trouvé <span class=\"ptsNothingFoundKeys\"> </span>pour , peut-être "
6116
- "essayer de chercher autre chose?"
6117
-
6118
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:668
6119
- #: modules/tables/views/tpl/tablesEditorFooter.php:668
6120
- msgid "Close"
6121
- msgstr "Fermer"
6122
-
6123
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:681
6124
- #: modules/tables/views/tpl/tablesEditorFooter.php:681
6125
- msgid "Badges Library"
6126
- msgstr "Bibliothèque d'insignes"
6127
-
6128
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:689
6129
- #: modules/tables/views/tpl/tablesEditorFooter.php:689
6130
- msgid "Badge Label"
6131
- msgstr "Label du badge"
6132
-
6133
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:690
6134
- #: modules/tables/views/tpl/tablesEditorFooter.php:690
6135
- msgid "Sale!"
6136
- msgstr "Promo!"
6137
-
6138
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:715
6139
- #: modules/tables/views/tpl/tablesEditorFooter.php:715
6140
- msgid "Badge Background Color"
6141
- msgstr "Couleur d’arrière plan du badge"
6142
-
6143
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:722
6144
- #: modules/tables/views/tpl/tablesEditorFooter.php:722
6145
- msgid "Badge Text Color"
6146
- msgstr "Couleur du texte du badge"
6147
-
6148
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:729
6149
- #: modules/tables/views/tpl/tablesEditorFooter.php:729
6150
- msgid "Select position for Badge"
6151
- msgstr "Sélectionnez la position pour badge"
6152
-
6153
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:761
6154
- #: modules/tables/views/tpl/tablesEditorFooter.php:761
6155
- msgid "Move cell"
6156
- msgstr "Déplacer la cellule"
6157
-
6158
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:765
6159
- #: modules/tables/views/tpl/tablesEditorFooter.php:765
6160
- msgid "Add row after"
6161
- msgstr "Ajouter une ligne après"
6162
-
6163
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:770
6164
- #: modules/tables/views/tpl/tablesEditorFooter.php:770
6165
- msgid "Add row before"
6166
- msgstr "Ajouter une ligne avant"
6167
-
6168
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:776
6169
- #: modules/tables/views/tpl/tablesEditorFooter.php:776
6170
- msgid "Combining with the previous row"
6171
- msgstr "Combinaison avec la rangée précédente"
6172
-
6173
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:780
6174
- #: modules/tables/views/tpl/tablesEditorFooter.php:780
6175
- msgid "Combining with the next row"
6176
- msgstr "Combinaison avec la rangée suivante"
6177
-
6178
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:785
6179
- #: modules/tables/views/tpl/tablesEditorFooter.php:785
6180
- msgid "Add One Cell"
6181
- msgstr "Ajouter une cellule"
6182
-
6183
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:804
6184
- #: modules/tables/views/tpl/tablesEditorFooter.php:804
6185
- msgid "Edit Tooltip for Cell"
6186
- msgstr "Modifier Tooltip pour Cell"
6187
-
6188
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:812
6189
- #: modules/tables/views/tpl/tablesEditorFooter.php:812
6190
- msgid "Remove Row"
6191
- msgstr "Supprimer la rangée"
6192
-
6193
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:47
6194
- #: modules/tables/views/tpl/tablesImportExport.php:47
6195
- msgid "Incorrect data!"
6196
- msgstr "Données incorrectes !"
6197
-
6198
- #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:48
6199
- #: modules/tables/views/tpl/tablesImportExport.php:48
6200
- msgid "Success"
6201
- msgstr "Succès"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Pricing Table by Supsystic\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-06-06 13:36+0300\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Serge <balandin999@gmail.com>\n"
8
+ "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
9
+ "Language: fr_FR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Generator: Poedit 2.2.4\n"
17
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPath-1: ..\n"
20
+
21
+ #: ../akismet/class.akismet-admin.php:84
22
+ msgid "Comment History"
23
+ msgstr "Historique Commentaire"
24
+
25
+ #: ../akismet/class.akismet-admin.php:88
26
+ #: ../akismet/class.akismet-admin.php:1189
27
+ msgid "Akismet"
28
+ msgstr "Akismet"
29
+
30
+ #: ../akismet/class.akismet-admin.php:89
31
+ msgid ""
32
+ "We collect information about visitors who comment on Sites that use our "
33
+ "Akismet anti-spam service. The information we collect depends on how the "
34
+ "User sets up Akismet for the Site, but typically includes the commenter's IP "
35
+ "address, user agent, referrer, and Site URL (along with other information "
36
+ "directly provided by the commenter such as their name, username, email "
37
+ "address, and the comment itself)."
38
+ msgstr ""
39
+ "Nous recueillons des informations sur les visiteurs qui commentent les sites "
40
+ "qui utilisent notre service anti-spam Akismet. Les informations que nous "
41
+ "recueillons dépendent de la façon dont l'utilisateur met en place Akismet "
42
+ "pour le Site, mais comprend généralement l'adresse IP du commentateur, "
43
+ "l'agent utilisateur, le référent et l'URL du site (ainsi que d'autres "
44
+ "informations directement fournies par le commentateur tels que leur nom, nom "
45
+ "d'utilisateur, e-mail l'adresse, et le commentaire lui-même)."
46
+
47
+ #: ../akismet/class.akismet-admin.php:107
48
+ #: ../akismet/class.akismet-admin.php:239
49
+ #: ../google-maps-easy/modules/adminmenu/mod.php:14
50
+ #: ../google-maps-easy/modules/options/mod.php:13
51
+ #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:14
52
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:46
53
+ #: modules/adminmenu/mod.php:14 modules/options/mod.php:46
54
+ msgid "Settings"
55
+ msgstr "Réglages"
56
+
57
+ #: ../akismet/class.akismet-admin.php:114
58
+ #: ../akismet/class.akismet-admin.php:117
59
+ msgid "Akismet Anti-Spam"
60
+ msgstr "Akismet Anti-Spam"
61
+
62
+ #: ../akismet/class.akismet-admin.php:146
63
+ msgid "Remove this URL"
64
+ msgstr "Retirer cette URL"
65
+
66
+ #: ../akismet/class.akismet-admin.php:147
67
+ msgid "Removing..."
68
+ msgstr "Suppression..."
69
+
70
+ #: ../akismet/class.akismet-admin.php:148
71
+ msgid "URL removed"
72
+ msgstr "URL supprimée"
73
+
74
+ #: ../akismet/class.akismet-admin.php:149
75
+ msgid "(undo)"
76
+ msgstr "(revenir)"
77
+
78
+ #: ../akismet/class.akismet-admin.php:150
79
+ msgid "Re-adding..."
80
+ msgstr "Rétablir…"
81
+
82
+ #: ../akismet/class.akismet-admin.php:177
83
+ #: ../akismet/class.akismet-admin.php:215
84
+ #: ../akismet/class.akismet-admin.php:228
85
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:126
86
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:96
87
+ #: modules/supsystic_promo/mod.php:96
88
+ msgid "Overview"
89
+ msgstr "Vue d’ensemble"
90
+
91
+ #: ../akismet/class.akismet-admin.php:188
92
+ msgid "New to Akismet"
93
+ msgstr "Nouveau sur Akismet"
94
+
95
+ #: ../akismet/class.akismet-admin.php:192
96
+ #, php-format
97
+ msgid "Sign up for an account on %s to get an API Key."
98
+ msgstr "Inscrivez-vous pour un compte sur %s pour obtenir une clé API."
99
+
100
+ #: ../akismet/class.akismet-admin.php:199
101
+ msgid "Enter an API Key"
102
+ msgstr "Entrer une clé API"
103
+
104
+ #: ../akismet/class.akismet-admin.php:252
105
+ msgid "Account"
106
+ msgstr "Compte"
107
+
108
+ #: ../akismet/class.akismet-admin.php:273
109
+ msgid "Cheatin&#8217; uh?"
110
+ msgstr "Alors on triche ?"
111
+
112
+ #: ../akismet/class.akismet-admin.php:361
113
+ #, php-format
114
+ msgid "<a href=\"%s\">Akismet</a> blocks spam from getting to your blog. "
115
+ msgstr "<a href=\"%s\">Akismet</a> bloque les spams sur votre blog. "
116
+
117
+ #: ../akismet/class.akismet-admin.php:373
118
+ #, php-format
119
+ msgid ""
120
+ "There&#8217;s nothing in your <a href='%s'>spam queue</a> at the moment."
121
+ msgstr ""
122
+ "Il n’y a rien dans votre <a href='%s'>file d'attente de spam</a> pour le "
123
+ "moment."
124
+
125
+ #: ../akismet/class.akismet-admin.php:397
126
+ msgid "Checking for Spam"
127
+ msgstr "Vérification présente de spam"
128
+
129
+ #: ../akismet/class.akismet-admin.php:398
130
+ msgid "(%1$s%)"
131
+ msgstr ""
132
+
133
+ #: ../akismet/class.akismet-admin.php:505
134
+ msgid "Awaiting spam check"
135
+ msgstr "En attente de vérification de spam"
136
+
137
+ #: ../akismet/class.akismet-admin.php:509
138
+ msgid "Flagged as spam by Akismet"
139
+ msgstr "Jugé comme spam par Akismet"
140
+
141
+ #: ../akismet/class.akismet-admin.php:511
142
+ msgid "Cleared by Akismet"
143
+ msgstr "Nettoyé par Akismet"
144
+
145
+ #: ../akismet/class.akismet-admin.php:515
146
+ #, php-format
147
+ msgid "Flagged as spam by %s"
148
+ msgstr "Signalé comme spam par %s"
149
+
150
+ #: ../akismet/class.akismet-admin.php:517
151
+ #, php-format
152
+ msgid "Un-spammed by %s"
153
+ msgstr "Non-spamé par %s"
154
+
155
+ #: ../akismet/class.akismet-admin.php:581
156
+ msgid "Akismet re-checked and caught this comment as spam."
157
+ msgstr "Ce commentaire a été re-vérifié par Akismet et considéré comme spam."
158
+
159
+ #: ../akismet/class.akismet-admin.php:584
160
+ msgid "Akismet caught this comment as spam."
161
+ msgstr "Akismet a considéré ce commentaire comme spam."
162
+
163
+ #: ../akismet/class.akismet-admin.php:587
164
+ msgid "Akismet re-checked and cleared this comment."
165
+ msgstr "Ce commentaire a été re-vérifié et autorisé par Akismet."
166
+
167
+ #: ../akismet/class.akismet-admin.php:590
168
+ msgid "Akismet cleared this comment."
169
+ msgstr "Akismet a effacé ce commentaire."
170
+
171
+ #: ../akismet/class.akismet-admin.php:593
172
+ msgid "Comment was caught by wp_blacklist_check."
173
+ msgstr "Le commentaire a était bloqué par wp_blacklist_check."
174
+
175
+ #: ../akismet/class.akismet-admin.php:597
176
+ #, php-format
177
+ msgid "%s reported this comment as spam."
178
+ msgstr "%s a considéré ce commentaire comme un spam."
179
+
180
+ #: ../akismet/class.akismet-admin.php:600
181
+ msgid "This comment was reported as spam."
182
+ msgstr "Ce commentaire a été considéré comme spam."
183
+
184
+ #: ../akismet/class.akismet-admin.php:605
185
+ #, php-format
186
+ msgid "%s reported this comment as not spam."
187
+ msgstr "%s a considéré ce commentaire comme n'étant pas un spam."
188
+
189
+ #: ../akismet/class.akismet-admin.php:608
190
+ msgid "This comment was reported as not spam."
191
+ msgstr "Ce commentaire a été reporté comme spam."
192
+
193
+ #: ../akismet/class.akismet-admin.php:612
194
+ msgid "Akismet caught this comment as spam during an automatic retry."
195
+ msgstr ""
196
+ "Akismet a considéré ce commentaire comme spam lors d’une nouvelle tentative "
197
+ "automatique."
198
+
199
+ #: ../akismet/class.akismet-admin.php:615
200
+ msgid "Akismet cleared this comment during an automatic retry."
201
+ msgstr "Akismet a effacé ce commentaire lors d’une tentative automatique."
202
+
203
+ #: ../akismet/class.akismet-admin.php:619
204
+ #, php-format
205
+ msgid ""
206
+ "Akismet was unable to check this comment (response: %s) but will "
207
+ "automatically retry later."
208
+ msgstr ""
209
+ "Akismet n’a pas pu vérifier ce commentaire (réponse: %s), mais essayera à "
210
+ "nouveau plus tard."
211
+
212
+ #: ../akismet/class.akismet-admin.php:624
213
+ #, php-format
214
+ msgid "Akismet was unable to recheck this comment (response: %s)."
215
+ msgstr ""
216
+ "Akismet n'a pas été en mesure de revérifier ce commentaire (réponse: %s)."
217
+
218
+ #: ../akismet/class.akismet-admin.php:632
219
+ #, php-format
220
+ msgid "Comment status was changed to %s"
221
+ msgstr "Le statut des commentaires a été changé en %s"
222
+
223
+ #: ../akismet/class.akismet-admin.php:638
224
+ #, php-format
225
+ msgid "%1$s changed the comment status to %2$s."
226
+ msgstr "%1$s a changé le statut de commentaire à: %2$s."
227
+
228
+ #: ../akismet/class.akismet-admin.php:865
229
+ #, php-format
230
+ msgid ""
231
+ "Please check your <a href=\"%s\">Akismet configuration</a> and contact your "
232
+ "web host if problems persist."
233
+ msgstr ""
234
+ "Veuillez vérifier votre <a href=\"%s\">configuration d'Akismet</a> et "
235
+ "contactez votre hébergeur web si les problèmes persistent."
236
+
237
+ #: ../akismet/class.akismet-admin.php:972
238
+ msgid "Cleaning up spam takes time."
239
+ msgstr "Nettoyer les commentaires indésirables prend du temps."
240
+
241
+ #: ../akismet/class.akismet-admin.php:1048
242
+ msgid ""
243
+ "There were no comments to check. Akismet will only check comments in the "
244
+ "Pending queue."
245
+ msgstr ""
246
+ "Il n'y avait aucun commentaire à vérifier. Akismet vérifiera uniquement les "
247
+ "commentaires dans la file d'attente en attente."
248
+
249
+ #: ../akismet/class.akismet-admin.php:1055
250
+ msgid "No comments were caught as spam."
251
+ msgstr "%s commentaires ont été pris comme spam."
252
+
253
+ #: ../akismet/class.akismet-admin.php:1167
254
+ msgid ""
255
+ "Used by millions, Akismet is quite possibly the best way in the world to "
256
+ "<strong>protect your blog from spam</strong>. Your site is fully configured "
257
+ "and being protected, even while you sleep."
258
+ msgstr ""
259
+ "Utilisé par des millions, Akismet est peut-être la meilleure façon dans le "
260
+ "monde de <strong>protéger votre blog contre le spam</strong> . Votre site "
261
+ "est entièrement configuré et protégé, même si vous dormez."
262
+
263
+ #: ../akismet/class.akismet-admin.php:1170
264
+ msgid ""
265
+ "Used by millions, Akismet is quite possibly the best way in the world to "
266
+ "<strong>protect your blog from spam</strong>. It keeps your site protected "
267
+ "even while you sleep. To get started, just go to <a href=\"admin.php?"
268
+ "page=akismet-key-config\">your Akismet Settings page</a> to set up your API "
269
+ "key."
270
+ msgstr ""
271
+ "Utilisé par des millions, Akismet est peut-être la meilleure façon dans le "
272
+ "monde de <strong>protéger votre blog contre le spam</strong> . Il garde "
273
+ "votre site protégé même si vous dormez. Pour commencer, accédez à <a href="
274
+ "\"admin.php?page=akismet-key-config\">votre page Paramètres Akismet</a> pour "
275
+ "configurer votre clé API."
276
+
277
+ #: ../akismet/class.akismet-cli.php:36
278
+ #, php-format
279
+ msgid "Comment #%d is spam."
280
+ msgstr "Le commentaire #%d est un spam."
281
+
282
+ #: ../akismet/class.akismet-cli.php:39
283
+ #, php-format
284
+ msgid "Comment #%d is not spam."
285
+ msgstr "Le commentaire #%d n'est pas un spam."
286
+
287
+ #: ../akismet/class.akismet-cli.php:43
288
+ msgid "Failed to connect to Akismet."
289
+ msgstr "Échec de la connexion à Akismet."
290
+
291
+ #: ../akismet/class.akismet-cli.php:46
292
+ #, php-format
293
+ msgid "Comment #%d could not be checked."
294
+ msgstr "Le commentaire #%d n'a pas pu être vérifié."
295
+
296
+ #: ../akismet/class.akismet-cli.php:134
297
+ msgid "API key must be set to fetch stats."
298
+ msgstr "La clé API doit être définie pour récupérer les statistiques."
299
+
300
+ #: ../akismet/class.akismet-cli.php:159
301
+ msgid "Currently unable to fetch stats. Please try again."
302
+ msgstr ""
303
+ "Actuellement incapable d’aller chercher les statistiques. Veuillez réessayer."
304
+
305
+ #: ../akismet/class.akismet-cli.php:165
306
+ msgid "Stats response could not be decoded."
307
+ msgstr "La réponse des statistiques n’a pas pu être décodée."
308
+
309
+ #: ../akismet/class.akismet-rest-api.php:27
310
+ #: ../akismet/class.akismet-rest-api.php:101
311
+ #: ../akismet/class.akismet-rest-api.php:114
312
+ #: ../akismet/class.akismet-rest-api.php:127
313
+ msgid "A 12-character Akismet API key. Available at akismet.com/get/"
314
+ msgstr "Une clé Akismet API de 12 caractères. Disponible sur akismet.com/get/"
315
+
316
+ #: ../akismet/class.akismet-rest-api.php:51
317
+ msgid ""
318
+ "If true, Akismet will automatically discard the worst spam automatically "
319
+ "rather than putting it in the spam folder."
320
+ msgstr ""
321
+ "Si vrai, Akismet rejettera automatiquement les pires spams plutôt que de le "
322
+ "mettre dans le dossier spam."
323
+
324
+ #: ../akismet/class.akismet-rest-api.php:56
325
+ msgid ""
326
+ "If true, show the number of approved comments beside each comment author in "
327
+ "the comments list page."
328
+ msgstr ""
329
+ "Si c’est vrai, indiquez le nombre de commentaires approuvés à côté de chaque "
330
+ "auteur de commentaire dans la page de liste des commentaires."
331
+
332
+ #: ../akismet/class.akismet-rest-api.php:71
333
+ #: ../akismet/class.akismet-rest-api.php:80
334
+ msgid ""
335
+ "The time period for which to retrieve stats. Options: 60-days, 6-months, all"
336
+ msgstr ""
337
+ "La période de temps pour récupérer les statistiques. Options : 60 jours, 6 "
338
+ "mois, tous"
339
+
340
+ #: ../akismet/class.akismet-rest-api.php:152
341
+ msgid "This site's API key is hardcoded and cannot be changed via the API."
342
+ msgstr ""
343
+ "La clé API de ce site est codée en dur et ne peut pas être modifiée via "
344
+ "l’API."
345
+
346
+ #: ../akismet/class.akismet-rest-api.php:158
347
+ msgid "The value provided is not a valid and registered API key."
348
+ msgstr "La valeur fournie n’est pas une clé API valide et enregistrée."
349
+
350
+ #: ../akismet/class.akismet-rest-api.php:174
351
+ msgid "This site's API key is hardcoded and cannot be deleted."
352
+ msgstr "La clé API de ce site est codée en dur et ne peut pas être supprimée."
353
+
354
+ #: ../akismet/class.akismet-widget.php:12
355
+ msgid "Akismet Widget"
356
+ msgstr "Akismet Widget"
357
+
358
+ #: ../akismet/class.akismet-widget.php:13
359
+ msgid "Display the number of spam comments Akismet has caught"
360
+ msgstr "Afficher le nombre de commentaires spam qu’Akismet a bloqué"
361
+
362
+ #: ../akismet/class.akismet-widget.php:69
363
+ #: ../akismet/class.akismet-widget.php:90
364
+ msgid "Spam Blocked"
365
+ msgstr "Spam bloqué"
366
+
367
+ #: ../akismet/class.akismet.php:231
368
+ msgid "Comment discarded."
369
+ msgstr "Commentaire rejeté."
370
+
371
+ #: ../akismet/class.akismet.php:512
372
+ msgid "Comment not found."
373
+ msgstr "Commentaire non trouvé."
374
+
375
+ #: ../akismet/class.akismet.php:1277
376
+ #, php-format
377
+ msgid ""
378
+ "Please <a href=\"%1$s\">upgrade WordPress</a> to a current version, or <a "
379
+ "href=\"%2$s\">downgrade to version 2.4 of the Akismet plugin</a>."
380
+ msgstr ""
381
+ "Merci de <a href=\"%1$s\">mettre à jour Wordpress</a> dans sa version "
382
+ "actuelle, ou <a href=\"%2$s\">rétrograder à la version 2.4 du plugin "
383
+ "Akismet</a>."
384
+
385
+ #: ../akismet/class.akismet.php:1418
386
+ #, php-format
387
+ msgid ""
388
+ "This site uses Akismet to reduce spam. <a href=\"%s\" target=\"_blank\" rel="
389
+ "\"nofollow noopener\">Learn how your comment data is processed</a>."
390
+ msgstr ""
391
+ "Ce site utilise Akismet pour réduire le spam. <a href=« %s » "
392
+ "target=« _blank » rel=« nofollow noopener »>Apprendre comment vos données de "
393
+ "commentaire sont traitées</a>."
394
+
395
+ #: ../akismet/views/config.php:233
396
+ msgid "Upgrade"
397
+ msgstr "Mise à jour"
398
+
399
+ #: ../akismet/views/config.php:233
400
+ msgid "Change"
401
+ msgstr "Changer"
402
+
403
+ #: ../akismet/views/notice.php:11
404
+ msgid ""
405
+ "<strong>Almost done</strong> - configure Akismet and say goodbye to spam"
406
+ msgstr ""
407
+ "<strong>C’est presque fini</strong> - configurez Akismet et dîtes adieu aux "
408
+ "indésirables"
409
+
410
+ #: ../akismet/views/notice.php:45
411
+ #, php-format
412
+ msgid ""
413
+ "Your web host or server administrator has disabled PHP&#8217;s "
414
+ "<code>gethostbynamel</code> function. <strong>Akismet cannot work correctly "
415
+ "until this is fixed.</strong> Please contact your web host or firewall "
416
+ "administrator and give them <a href=\"%s\" target=\"_blank\">this "
417
+ "information about Akismet&#8217;s system requirements</a>."
418
+ msgstr ""
419
+ "Votre hébergeur ou administrateur du serveur a désactivé le PHP&#8217;s "
420
+ "<code>gethostbynamel</code>. <strong>Akismet ne peut pas fonctionner "
421
+ "correctement tant que le PHP est désactivé.</strong> Veuillez contactez "
422
+ "votre hébergeur web ou administrateur, et donnez lui <a href=\"%s\" target="
423
+ "\"_blank\">cette information sur la configuration requise pour Akismet&#8217;"
424
+ "s</a> ."
425
+
426
+ #: ../akismet/views/notice.php:50
427
+ #, php-format
428
+ msgid ""
429
+ "Your firewall may be blocking Akismet from connecting to its API. Please "
430
+ "contact your host and refer to <a href=\"%s\" target=\"_blank\">our guide "
431
+ "about firewalls</a>."
432
+ msgstr ""
433
+ "Votre pare-feu bloque probablement Askimet. Veuillez contacter votre "
434
+ "hébergeur web ou reportez-vous à <a href=\"%s\" target=\"_blank\">notre "
435
+ "guide sur les pare-feu</a> ."
436
+
437
+ #: ../akismet/views/notice.php:55
438
+ #, php-format
439
+ msgid ""
440
+ "We cannot process your payment. Please <a href=\"%s\" target=\"_blank"
441
+ "\">update your payment details</a>."
442
+ msgstr ""
443
+ "Nous ne pouvons pas traiter votre paiement. Merci de <a href=\"%s\" target="
444
+ "\"_blank\">mettre à jour vos informations de paiement</a> ."
445
+
446
+ #: ../akismet/views/notice.php:60
447
+ #, php-format
448
+ msgid ""
449
+ "Please visit your <a href=\"%s\" target=\"_blank\">Akismet account page</a> "
450
+ "to reactivate your subscription."
451
+ msgstr ""
452
+ "Veuillez visitez la <a href=\"%s\" target=\"_blank\">page de compte Akismet</"
453
+ "a> afin de réactiver votre abonnement."
454
+
455
+ #: ../akismet/views/notice.php:65 ../akismet/views/notice.php:75
456
+ #, php-format
457
+ msgid ""
458
+ "Please contact <a href=\"%s\" target=\"_blank\">Akismet support</a> for "
459
+ "assistance."
460
+ msgstr ""
461
+ "Veuillez contacter le <a href=\"%s\" target=\"_blank\">support Akismet</a> "
462
+ "pour assistance."
463
+
464
+ #: ../akismet/views/notice.php:70
465
+ #, php-format
466
+ msgid ""
467
+ "You can help us fight spam and upgrade your account by <a href=\"%s\" target="
468
+ "\"_blank\">contributing a token amount</a>."
469
+ msgstr ""
470
+ "Vous pouvez nous aider à combattre le spam et mettre à jour votre compte en "
471
+ "<a href=\"%s\" target=\"_blank\">contribuant à notre plugin</a> ."
472
+
473
+ #: ../akismet/views/notice.php:81
474
+ #, php-format
475
+ msgid ""
476
+ "In 2012, Akismet began using subscription plans for all accounts (even free "
477
+ "ones). A plan has not been assigned to your account, and we&#8217;d "
478
+ "appreciate it if you&#8217;d <a href=\"%s\" target=\"_blank\">sign into your "
479
+ "account</a> and choose one."
480
+ msgstr ""
481
+ "En 2012, Akismet a commencé à utiliser des plans de souscription pour tous "
482
+ "les comptes (même les gratuits). Un plan n'a pas été affecté à votre compte, "
483
+ "et nous serions reconnaissants si vous vous <a href=\"%s\" target=\"_blank"
484
+ "\">connectez à votre compte</a> et choisissez en un."
485
+
486
+ #: ../akismet/views/notice.php:83 ../akismet/views/notice.php:124
487
+ #: ../akismet/views/notice.php:131
488
+ #, php-format
489
+ msgid ""
490
+ "Please <a href=\"%s\" target=\"_blank\">contact our support team</a> with "
491
+ "any questions."
492
+ msgstr ""
493
+ "Merci de <a href=\"%s\" target=\"_blank\">contacter notre équipe "
494
+ "d'assistance</a> pour toute question."
495
+
496
+ #: ../akismet/views/notice.php:101
497
+ #, php-format
498
+ msgid "Would you like to <a href=\"%s\">check pending comments</a>?"
499
+ msgstr "Voulez-vous <a href=\"%s\">vérifier les commentaires en attente</a> ?"
500
+
501
+ #: ../akismet/views/notice.php:115
502
+ #, php-format
503
+ msgid ""
504
+ "The connection to akismet.com could not be established. Please refer to <a "
505
+ "href=\"%s\" target=\"_blank\">our guide about firewalls</a> and check your "
506
+ "server configuration."
507
+ msgstr ""
508
+ "La connexion à akismet.com n'a pas pu être établie. Merci de vous référer à "
509
+ "<a href=\"%s\" target=\"_blank\">notre guide sur</a> les pare-feu</a> et "
510
+ "vérifier la configuration de votre serveur."
511
+
512
+ #: ../akismet/views/notice.php:122
513
+ #, php-format
514
+ msgid ""
515
+ "Your Pro subscription allows the use of Akismet on only one site. Please <a "
516
+ "href=\"%s\" target=\"_blank\">purchase additional Pro subscriptions</a> or "
517
+ "upgrade to an Enterprise subscription that allows the use of Akismet on "
518
+ "unlimited sites."
519
+ msgstr ""
520
+ "Votre abonnement Pro permet l'utilisation d'Akismet sur un seul site. Merci "
521
+ "d'<a href=\"%s\" target=\"_blank\">acheter des abonnements supplémentaires "
522
+ "Pro</a> ou passer à un abonnement Enterprise qui permet l'utilisation "
523
+ "d'Akismet sur un nombre illimité de sites web."
524
+
525
+ #: ../akismet/views/notice.php:129
526
+ #, php-format
527
+ msgid ""
528
+ "To continue your service, <a href=\"%s\" target=\"_blank\">upgrade to an "
529
+ "Enterprise subscription</a>, which covers an unlimited number of sites."
530
+ msgstr ""
531
+ "Pour continuer votre service, <a href=\"%s\" target=\"_blank\">passer à un "
532
+ "abonnement Entreprise</a> , qui couvre un nombre illimité de sites."
533
+
534
+ #: ../akismet/views/notice.php:139
535
+ #, php-format
536
+ msgid ""
537
+ " Please <a href=\"%s\">enable</a> or <a href=\"%s\">disable</a> this "
538
+ "feature. <a href=\"%s\" id=\"akismet-privacy-notice-control-notice-info-link"
539
+ "\" target=\"_blank\">More information</a>."
540
+ msgstr ""
541
+ " Veuillez <a href=\"%s\">activer</a> ou <a href=\"%s\">désactiver</a> cette "
542
+ "fonctionnalité. <a href=\"%s\" id=\"akismet-privacy-notice-control-notice-"
543
+ "info-link\" target=\"_blank\">Plus d’informations</a>."
544
+
545
+ #: ../akismet/views/start.php:31 ../akismet/views/start.php:63
546
+ #, php-format
547
+ msgid "You are connected as %s."
548
+ msgstr "Vous êtes connecté en temps que %s."
549
+
550
+ #: ../akismet/views/start.php:43
551
+ #, php-format
552
+ msgid "Your subscription for %s is cancelled."
553
+ msgstr "Votre abonnement pour %s est annulé."
554
+
555
+ #: ../akismet/views/start.php:48
556
+ #, php-format
557
+ msgid "Your subscription for %s is suspended."
558
+ msgstr "Votre inscription pour %s est suspendue."
559
+
560
+ #: ../akismet/views/start.php:69
561
+ msgid "Sign up with a different email address"
562
+ msgstr "Inscrivez-vous avec une adresse mail différente"
563
+
564
+ #: ../akismet/views/start.php:77
565
+ msgid "Get your API key"
566
+ msgstr "Obtenez votre clé API"
567
+
568
+ #: ../doc/price-table-builder-supsystic/tables_builder/controller.php:49
569
+ #: ../doc/price-table-supsystic-pro/license/controller.php:6
570
+ #: ../google-maps-easy/classes/controller.php:198
571
+ #: ../google-maps-easy/classes/controller.php:206
572
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/controller.php:15
573
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/controller.php:38
574
+ #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:9
575
+ #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:39
576
+ #: ../google-maps-easy/doc/google-maps-easy-pro/kml/controller.php:32
577
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/controller.php:6
578
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:8
579
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:46
580
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:61
581
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:9
582
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:39
583
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/kml/controller.php:9
584
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/controller.php:6
585
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:8
586
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:46
587
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:61
588
+ #: ../google-maps-easy/modules/adminmenu/controller.php:29
589
+ #: ../google-maps-easy/modules/csv/controller.php:327
590
+ #: ../google-maps-easy/modules/gmap/controller.php:55
591
+ #: ../google-maps-easy/modules/gmap/controller.php:72
592
+ #: ../google-maps-easy/modules/gmap/controller.php:80
593
+ #: ../google-maps-easy/modules/marker/controller.php:8
594
+ #: ../google-maps-easy/modules/marker/controller.php:46
595
+ #: ../google-maps-easy/modules/marker/controller.php:61
596
+ #: ../google-maps-easy/modules/marker/controller.php:101
597
+ #: ../google-maps-easy/modules/marker_groups/controller.php:79
598
+ #: ../google-maps-easy/modules/marker_groups/controller.php:103
599
+ #: ../google-maps-easy/modules/options/controller.php:6
600
+ #: ../pricing-table-by-supsystic/classes/controller.php:213
601
+ #: ../pricing-table-by-supsystic/classes/controller.php:221
602
+ #: ../pricing-table-by-supsystic/modules/mail/controller.php:23
603
+ #: ../pricing-table-by-supsystic/modules/options/controller.php:6
604
+ #: ../pricing-table-by-supsystic/modules/tables/controller.php:6
605
+ #: ../pricing-table-by-supsystic/modules/tables/controller.php:117
606
+ #: ../pricing-table-by-supsystic/modules/tables/controller.php:126
607
+ #: ../pricing-table-by-supsystic/modules/tables/controller.php:134
608
+ #: ../pricing-table-by-supsystic/modules/tables/controller.php:252
609
+ #: classes/controller.php:213 classes/controller.php:221
610
+ #: modules/mail/controller.php:23 modules/options/controller.php:6
611
+ #: modules/tables/controller.php:6 modules/tables/controller.php:117
612
+ #: modules/tables/controller.php:126 modules/tables/controller.php:134
613
+ #: modules/tables/controller.php:252
614
+ msgid "Done"
615
+ msgstr "Terminé"
616
+
617
+ #: ../doc/price-table-builder-supsystic/tables_builder/mod.php:10
618
+ msgid "All Dev Tables"
619
+ msgstr "Toutes les tables de développement"
620
+
621
+ #: ../doc/price-table-builder-supsystic/tables_builder/models/tables_builder.php:55
622
+ msgid "Empty Label"
623
+ msgstr "Libellé vide"
624
+
625
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:5
626
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:8
627
+ msgid "Create New Block"
628
+ msgstr "Créer un nouveau bloc"
629
+
630
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:8
631
+ #: ../google-maps-easy/modules/marker_groups/mod.php:11
632
+ msgid "Add New"
633
+ msgstr "Ajouter un nouveau"
634
+
635
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:11
636
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:14
637
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:14
638
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:17
639
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:15
640
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:5
641
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:8
642
+ #: modules/tables/views/tpl/tablesAdmin.php:5
643
+ #: modules/tables/views/tpl/tablesAdmin.php:8
644
+ msgid "Delete selected"
645
+ msgstr "Supprimer la sélection"
646
+
647
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:17
648
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:20
649
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:22
650
+ msgid "Clear All"
651
+ msgstr "Tout effacer"
652
+
653
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:19
654
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2062
655
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:34
656
+ msgid "Clear"
657
+ msgstr "Effacer"
658
+
659
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:22
660
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:23
661
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:87
662
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:5
663
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:6
664
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:25
665
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:26
666
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:11
667
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:12
668
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:14
669
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:15
670
+ #: modules/tables/views/tpl/tablesAdmin.php:11
671
+ #: modules/tables/views/tpl/tablesAdmin.php:12
672
+ #: modules/tables/views/tpl/tablesImportExport.php:14
673
+ #: modules/tables/views/tpl/tablesImportExport.php:15
674
+ msgid "Search"
675
+ msgstr "Rechercher"
676
+
677
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbAdmin.php:32
678
+ msgid "You have no Blocks for now."
679
+ msgstr "Vous n’avez pas de Blocs pour l’instant."
680
+
681
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:8
682
+ #, php-format
683
+ msgid "Editor Block %s"
684
+ msgstr "Bloc éditeur %s"
685
+
686
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:18
687
+ #: ../google-maps-easy/classes/tables/modules.php:7
688
+ #: ../google-maps-easy/classes/tables/modules_type.php:8
689
+ #: ../google-maps-easy/classes/tables/options.php:10
690
+ msgid "Label"
691
+ msgstr "Libellé"
692
+
693
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:34
694
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:10
695
+ msgid "PRO"
696
+ msgstr "PRO"
697
+
698
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:41
699
+ msgid "Image (relative name)"
700
+ msgstr "Image (nom relatif)"
701
+
702
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:50
703
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:115
704
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:13
705
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:10
706
+ #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:6
707
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:69
708
+ #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:6
709
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:21
710
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:28
711
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:751
712
+ #: modules/mail/views/tpl/mailAdmin.php:69
713
+ #: modules/options/views/tpl/optionsSettingsTabContent.php:6
714
+ #: modules/tables/views/tpl/tablesAddNewAdmin.php:21
715
+ #: modules/tables/views/tpl/tablesEditFormControls.php:28
716
+ #: modules/tables/views/tpl/tablesEditorFooter.php:751
717
+ msgid "Save"
718
+ msgstr "Enregistrer"
719
+
720
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:57
721
+ msgid "CSS"
722
+ msgstr "CSS"
723
+
724
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:64
725
+ msgid "HTML"
726
+ msgstr "HTML"
727
+
728
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:73
729
+ msgid "Add Setting"
730
+ msgstr "Ajouter des paramètres"
731
+
732
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:79
733
+ msgid "Param Key"
734
+ msgstr "Clé de paramètre"
735
+
736
+ #: ../doc/price-table-builder-supsystic/tables_builder/views/tpl/bbRenderBlockEditor.php:85
737
+ msgid "Param Value"
738
+ msgstr "Valeur de Paramètre"
739
+
740
+ #: ../doc/price-table-supsystic-pro/license/mod.php:23
741
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:30
742
+ #, php-format
743
+ msgid ""
744
+ "Your license is expired. Once you extend your license - you will be able to "
745
+ "Update PRO version. To extend PRO version license - follow <a href=\"%s\" "
746
+ "target=\"_blank\">this link</a>, then - go to <a href=\"%s\">License</a> tab "
747
+ "anc click on \"Re-activate\" button to re-activate your PRO version."
748
+ msgstr ""
749
+ "Votre licence est expirée. Une fois que vous aurez réactivé votre licence - "
750
+ "vous pourrez mettre à jour la version PRO. Pour passer à la version PRO - "
751
+ "suivez <a href=\"%s\" target=\"_blank\">ce lien</a>, puis - allez sur "
752
+ "l'onglet <a href=\"%s\">Licence</a> et cliquez sur le bouton \"Re-activate\" "
753
+ "pour réactiver votre version PRO."
754
+
755
+ #: ../doc/price-table-supsystic-pro/license/mod.php:32
756
+ #, php-format
757
+ msgid ""
758
+ "Your plugin PRO license is expired. It means your PRO version will work as "
759
+ "usual - with all features and options, but you will not be able to update "
760
+ "the PRO version and use PRO support. To extend PRO version license - follow "
761
+ "<a href=\"%s\" target=\"_blank\">this link</a>"
762
+ msgstr ""
763
+ "Votre licence de plugin PRO est expirée. Cela signifie que votre version PRO "
764
+ "fonctionnera comme d’habitude - avec toutes les fonctionnalités et options, "
765
+ "MAIS vous ne pourrez pas mettre à jour la version PRO et utiliser le support "
766
+ "PRO. Pour étendre la licence de la version PRO - suivez <a href=« %s » "
767
+ "target=« _blank »>ce lien</a>"
768
+
769
+ #: ../doc/price-table-supsystic-pro/license/mod.php:37
770
+ #, php-format
771
+ msgid ""
772
+ "You need to activate your copy of PRO version %s plugin. Go to <a href=\"%s"
773
+ "\">License</a> tab and finish your software activation process."
774
+ msgstr ""
775
+ "Vous devez activer votre copie du plugin PRO version %s. Allez dans l’onglet "
776
+ "<a href=« %s »>License</a> et terminez votre processus d’activation du "
777
+ "logiciel."
778
+
779
+ #: ../doc/price-table-supsystic-pro/license/mod.php:63
780
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:70
781
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:51
782
+ msgid "License"
783
+ msgstr "Licence"
784
+
785
+ #: ../doc/price-table-supsystic-pro/license/models/license.php:54
786
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:54
787
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:54
788
+ msgid "Please enter your License Key"
789
+ msgstr "S'il vous plaît entrer votre clé de licence"
790
+
791
+ #: ../doc/price-table-supsystic-pro/license/models/license.php:56
792
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:56
793
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:56
794
+ msgid "Please enter your Email address"
795
+ msgstr "S'il vous plaît, veuillez entrer votre adresse email"
796
+
797
+ #: ../doc/price-table-supsystic-pro/license/models/license.php:150
798
+ msgid ""
799
+ "There was a problem with sending request to our autentification server. "
800
+ "Please try latter."
801
+ msgstr ""
802
+ "Il y a eu un problème lors de l'envoi de la requête d'authentification à "
803
+ "notre serveur. Merci d'essayer plus tard."
804
+
805
+ #: ../doc/price-table-supsystic-pro/license/models/license.php:174
806
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:178
807
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:154
808
+ #, php-format
809
+ msgid "License for plugin %s will expire today."
810
+ msgstr "La licence pour le plugin %s expire aujourd'hui."
811
+
812
+ #: ../doc/price-table-supsystic-pro/license/models/license.php:176
813
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:180
814
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:156
815
+ #, php-format
816
+ msgid "License for plugin %s will expire tomorrow."
817
+ msgstr "La licence pour le plugin %s prendra fin demain."
818
+
819
+ #: ../doc/price-table-supsystic-pro/license/models/license.php:178
820
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:182
821
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:158
822
+ #, php-format
823
+ msgid "License for plugin %s will expire in %d days."
824
+ msgstr "La licence pour le plugin %s expirera dans %d jours."
825
+
826
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:4
827
+ #, php-format
828
+ msgid ""
829
+ "Congradulations! PRO version of %s plugin is activated and working fine!"
830
+ msgstr ""
831
+ "Toutes nos félicitations ! La version PRO du plugin %s est installée et "
832
+ "activée avec succès !"
833
+
834
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:6
835
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
836
+ #, php-format
837
+ msgid ""
838
+ "Your license for PRO version of %s plugin - expired. You can <a href=\"%s\" "
839
+ "target=\"_blank\">click here</a> to extend your license, then - click on "
840
+ "\"Re-activate\" button to re-activate your PRO version."
841
+ msgstr ""
842
+ "Votre licence pour la version PRO du plugin %s - expirée. Vous pouvez <a "
843
+ "href=« %s » target=« _blank »>cliquez ici</a> pour étendre votre licence, "
844
+ "puis - cliquez sur « Réactiver » pour réactiver votre version PRO."
845
+
846
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:8
847
+ #, php-format
848
+ msgid ""
849
+ "Congradulations! You have successfully installed PRO version of %s plugin. "
850
+ "Final step to finish Your PRO version setup - is to enter your Email and "
851
+ "License Key on this page. This will activate Your copy of software on this "
852
+ "site."
853
+ msgstr ""
854
+ "Félicitations ! Vous avez correctement installé la version PRO du plugin %s. "
855
+ "La Dernière étape pour terminer l’installation de votre version PRO est "
856
+ "d’entrer votre Email et la clé de licence sur cette page. Cela activera "
857
+ "votre copie du logiciel sur ce site."
858
+
859
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:20
860
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
861
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:20
862
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:225
863
+ msgid "Email"
864
+ msgstr "Email"
865
+
866
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:23
867
+ msgid ""
868
+ "Your email address, used on checkout procedure on <a href=\"%\" target="
869
+ "\"_blank\">%s</a>"
870
+ msgstr ""
871
+ "Votre adresse e-mail, utilisée lors de la procédure d’achat sur <a href=\"%"
872
+ "\" target=\"_blank\">%s</a>"
873
+
874
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:31
875
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
876
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:31
877
+ msgid "License Key"
878
+ msgstr "Clé de licence"
879
+
880
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:34
881
+ msgid ""
882
+ "Your License Key from your account on <a href=\"%\" target=\"_blank\">%s</a>"
883
+ msgstr ""
884
+ "Votre clé de licence pour votre compte sur <a href=\"%s\" target=\"_blank\">"
885
+ "%s</a>"
886
+
887
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:47
888
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
889
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:47
890
+ msgid "Re-activate"
891
+ msgstr "Réactiver"
892
+
893
+ #: ../doc/price-table-supsystic-pro/license/views/tpl/licenseAdmin.php:49
894
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
895
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:49
896
+ msgid "Activate"
897
+ msgstr "Activer"
898
+
899
+ #: ../doc/price-table-supsystic-pro/wpUpdater.php:68
900
+ msgid ""
901
+ "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
902
+ "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
903
+ msgstr ""
904
+ "Une erreur HTTP est arrivée durant la requête au système.</p> <p><a href=\"?"
905
+ "\" onclick=\"document.location.reload(); return false;\">Essayez encore</a>"
906
+
907
+ #: ../doc/price-table-supsystic-pro/wpUpdater.php:73
908
+ #: ../google-maps-easy/doc/google-maps-easy-pro/wpUpdater.php:75
909
+ msgid "An unknown error occurred"
910
+ msgstr "Une erreur inconnue s’est produite"
911
+
912
+ #: ../google-maps-easy/classes/field.php:131
913
+ #: ../pricing-table-by-supsystic/classes/field.php:131
914
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:40
915
+ #: classes/field.php:131 modules/tables/views/tpl/tablesAddNewAdmin.php:40
916
+ msgid "Select"
917
+ msgstr "Sélectionner"
918
+
919
+ #: ../google-maps-easy/classes/field.php:170
920
+ #: ../google-maps-easy/classes/field.php:179
921
+ #: ../google-maps-easy/classes/field.php:184
922
+ #: ../pricing-table-by-supsystic/classes/field.php:170
923
+ #: ../pricing-table-by-supsystic/classes/field.php:179
924
+ #: ../pricing-table-by-supsystic/classes/field.php:184 classes/field.php:170
925
+ #: classes/field.php:179 classes/field.php:184
926
+ msgid "N/A"
927
+ msgstr "N/A"
928
+
929
+ #: ../google-maps-easy/classes/field.php:277
930
+ #: ../pricing-table-by-supsystic/classes/field.php:277 classes/field.php:277
931
+ msgid "Add Checkbox"
932
+ msgstr "Ajouter une case à cocher"
933
+
934
+ #: ../google-maps-easy/classes/field.php:282
935
+ #: ../google-maps-easy/classes/field.php:287
936
+ #: ../pricing-table-by-supsystic/classes/field.php:282
937
+ #: ../pricing-table-by-supsystic/classes/field.php:287 classes/field.php:282
938
+ #: classes/field.php:287
939
+ msgid "Add Item"
940
+ msgstr "Ajouter un item"
941
+
942
+ #: ../google-maps-easy/classes/field.php:293
943
+ #: ../pricing-table-by-supsystic/classes/field.php:293 classes/field.php:293
944
+ msgid "Add Radio Button"
945
+ msgstr "Ajouter bouton radio"
946
+
947
+ #: ../google-maps-easy/classes/field.php:311
948
+ #: ../pricing-table-by-supsystic/classes/field.php:311 classes/field.php:311
949
+ msgid "Dimensions"
950
+ msgstr "Dimensions"
951
+
952
+ #: ../google-maps-easy/classes/field.php:314
953
+ #: ../pricing-table-by-supsystic/classes/field.php:314 classes/field.php:314
954
+ msgid "width"
955
+ msgstr "largeur"
956
+
957
+ #: ../google-maps-easy/classes/field.php:316
958
+ #: ../pricing-table-by-supsystic/classes/field.php:316 classes/field.php:316
959
+ msgid "height"
960
+ msgstr "hauteur"
961
+
962
+ #: ../google-maps-easy/classes/field.php:323
963
+ msgid "Click to set field &quot;id&quot; and &quot;class&quot;"
964
+ msgstr "Cliquez pour définir le champ &quot;id&quot ; et &quot;class&quot; ;"
965
+
966
+ #: ../google-maps-easy/classes/field.php:324
967
+ #: ../pricing-table-by-supsystic/classes/field.php:324 classes/field.php:324
968
+ msgid "Attributes"
969
+ msgstr "Attributs"
970
+
971
+ #: ../google-maps-easy/classes/field.php:402
972
+ #: ../pricing-table-by-supsystic/classes/field.php:402 classes/field.php:402
973
+ msgid "There are no configuration options for this module"
974
+ msgstr "Il n'y a pas d'options de configuration pour ce module"
975
+
976
+ #: ../google-maps-easy/classes/fieldAdapter.php:93
977
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:93
978
+ #: classes/fieldAdapter.php:93
979
+ msgid "Apply To"
980
+ msgstr "Appliquer à"
981
+
982
+ #: ../google-maps-easy/classes/fieldAdapter.php:95
983
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:26
984
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:11
985
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:23
986
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:54
987
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:402
988
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1591
989
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1940
990
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:95
991
+ #: classes/fieldAdapter.php:95
992
+ msgid "Address"
993
+ msgstr "Adresse"
994
+
995
+ #: ../google-maps-easy/classes/fieldAdapter.php:96
996
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:96
997
+ #: classes/fieldAdapter.php:96
998
+ msgid "Destination"
999
+ msgstr "Destination"
1000
+
1001
+ #: ../google-maps-easy/classes/fieldAdapter.php:97
1002
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:97
1003
+ #: classes/fieldAdapter.php:97
1004
+ msgid "Country"
1005
+ msgstr "Pays"
1006
+
1007
+ #: ../google-maps-easy/classes/fieldAdapter.php:100
1008
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:100
1009
+ #: classes/fieldAdapter.php:100
1010
+ msgid "Categories"
1011
+ msgstr "Catégories"
1012
+
1013
+ #: ../google-maps-easy/classes/fieldAdapter.php:101
1014
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:101
1015
+ #: classes/fieldAdapter.php:101
1016
+ msgid "You have no categories"
1017
+ msgstr "Vous n'avez pas de catégories"
1018
+
1019
+ #: ../google-maps-easy/classes/fieldAdapter.php:102
1020
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:102
1021
+ #: classes/fieldAdapter.php:102
1022
+ msgid "Brands"
1023
+ msgstr "Marques"
1024
+
1025
+ #: ../google-maps-easy/classes/fieldAdapter.php:103
1026
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:103
1027
+ #: classes/fieldAdapter.php:103
1028
+ msgid "You have no brands"
1029
+ msgstr "Vous n'avez pas de marque"
1030
+
1031
+ #: ../google-maps-easy/classes/fieldAdapter.php:105
1032
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:105
1033
+ #: classes/fieldAdapter.php:105
1034
+ msgid "Tax Rate"
1035
+ msgstr "Taux de TVA"
1036
+
1037
+ #: ../google-maps-easy/classes/fieldAdapter.php:106
1038
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:106
1039
+ #: classes/fieldAdapter.php:106
1040
+ msgid "Absolute"
1041
+ msgstr "Absolue"
1042
+
1043
+ #: ../google-maps-easy/classes/fieldAdapter.php:134
1044
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:134
1045
+ #: classes/fieldAdapter.php:134
1046
+ msgid "Not selected"
1047
+ msgstr "Non sélectionné"
1048
+
1049
+ #: ../google-maps-easy/classes/fieldAdapter.php:184
1050
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:184
1051
+ #: classes/fieldAdapter.php:184
1052
+ msgid "class"
1053
+ msgstr "class"
1054
+
1055
+ #: ../google-maps-easy/classes/fieldAdapter.php:186
1056
+ #: ../pricing-table-by-supsystic/classes/fieldAdapter.php:186
1057
+ #: classes/fieldAdapter.php:186
1058
+ msgid "id"
1059
+ msgstr "id"
1060
+
1061
+ #: ../google-maps-easy/classes/frame.php:137
1062
+ #: ../pricing-table-by-supsystic/classes/frame.php:137 classes/frame.php:137
1063
+ msgid "You have no permissions to view this page"
1064
+ msgstr "Vous n'avez pas d'autorisations pour afficher cette page"
1065
+
1066
+ #: ../google-maps-easy/classes/html.php:207
1067
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1722
1068
+ #: ../pricing-table-by-supsystic/classes/html.php:227 classes/html.php:227
1069
+ msgid "Upload"
1070
+ msgstr "Téléverser"
1071
+
1072
+ #: ../google-maps-easy/classes/html.php:627
1073
+ #: ../pricing-table-by-supsystic/classes/html.php:635 classes/html.php:635
1074
+ msgid "ON"
1075
+ msgstr "ON"
1076
+
1077
+ #: ../google-maps-easy/classes/html.php:628
1078
+ #: ../pricing-table-by-supsystic/classes/html.php:636 classes/html.php:636
1079
+ msgid "OFF"
1080
+ msgstr "OFF"
1081
+
1082
+ #: ../google-maps-easy/classes/html.php:652
1083
+ #: ../pricing-table-by-supsystic/classes/html.php:660 classes/html.php:660
1084
+ #, php-format
1085
+ msgid "Select %s"
1086
+ msgstr "Sélectionner %s"
1087
+
1088
+ #: ../google-maps-easy/classes/modInstaller.php:34
1089
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:34
1090
+ #: classes/modInstaller.php:34
1091
+ #, php-format
1092
+ msgid "Move files for %s failed"
1093
+ msgstr "Echec de déplacement des fichiers pour %s"
1094
+
1095
+ #: ../google-maps-easy/classes/modInstaller.php:37
1096
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:37
1097
+ #: classes/modInstaller.php:37
1098
+ #, php-format
1099
+ msgid "%s is not plugin module"
1100
+ msgstr "%s n'est pas le module du plugin"
1101
+
1102
+ #: ../google-maps-easy/classes/modInstaller.php:76
1103
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:76
1104
+ #: classes/modInstaller.php:76
1105
+ msgid "Can not create module directory. Try to set permission to "
1106
+ msgstr ""
1107
+ "Impossible de créer un répertoire de modules. Essayez de redéfinir la "
1108
+ "permission de "
1109
+
1110
+ #: ../google-maps-easy/classes/modInstaller.php:104
1111
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:104
1112
+ #: classes/modInstaller.php:104
1113
+ msgid "No modules were found in XML file"
1114
+ msgstr "Aucun module trouvé dans le fichier XML"
1115
+
1116
+ #: ../google-maps-easy/classes/modInstaller.php:108
1117
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:108
1118
+ #: classes/modInstaller.php:108
1119
+ msgid "Invalid XML file"
1120
+ msgstr "Fichier XML non valide"
1121
+
1122
+ #: ../google-maps-easy/classes/modInstaller.php:110
1123
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:110
1124
+ #: classes/modInstaller.php:110
1125
+ msgid "No XML file were found"
1126
+ msgstr "Le fichier XML est introuvable"
1127
+
1128
+ #: ../google-maps-easy/classes/modInstaller.php:123
1129
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:123
1130
+ #: classes/modInstaller.php:123
1131
+ msgid "No modules were found in installation file"
1132
+ msgstr "Aucun module n’a été trouvé dans le fichier d’installation"
1133
+
1134
+ #: ../google-maps-easy/classes/modInstaller.php:127
1135
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:127
1136
+ #: classes/modInstaller.php:127
1137
+ msgid "No installation file were found"
1138
+ msgstr "Aucun fichier d'installation n'a été trouvé"
1139
+
1140
+ #: ../google-maps-easy/classes/modInstaller.php:146
1141
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:149
1142
+ #: classes/modInstaller.php:149
1143
+ #, php-format
1144
+ msgid "Install %s failed"
1145
+ msgstr "L’installation de %s a échoué"
1146
+
1147
+ #: ../google-maps-easy/classes/modInstaller.php:152
1148
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:155
1149
+ #: classes/modInstaller.php:155
1150
+ msgid "Error Activate module"
1151
+ msgstr "Erreur activation du module"
1152
+
1153
+ #: ../google-maps-easy/classes/modInstaller.php:181
1154
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:184
1155
+ #: classes/modInstaller.php:184
1156
+ msgid "Error Deactivation module"
1157
+ msgstr "Erreur de désactivation du module"
1158
+
1159
+ #: ../google-maps-easy/classes/modInstaller.php:198
1160
+ #: ../pricing-table-by-supsystic/classes/modInstaller.php:201
1161
+ #: classes/modInstaller.php:201
1162
+ msgid "Error Activating module"
1163
+ msgstr "Erreur activation du module"
1164
+
1165
+ #: ../google-maps-easy/classes/model.php:174
1166
+ #: ../google-maps-easy/classes/model.php:186
1167
+ #: ../pricing-table-by-supsystic/classes/model.php:186
1168
+ #: ../pricing-table-by-supsystic/classes/model.php:198
1169
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:45
1170
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:65
1171
+ #: classes/model.php:186 classes/model.php:198
1172
+ #: modules/tables/models/tables.php:45 modules/tables/models/tables.php:65
1173
+ msgid "Database error detected"
1174
+ msgstr "Erreur de base de données détectée"
1175
+
1176
+ #: ../google-maps-easy/classes/model.php:176
1177
+ #: ../google-maps-easy/modules/gmap/models/gmap.php:186
1178
+ #: ../google-maps-easy/modules/icons/models/icons.php:149
1179
+ #: ../google-maps-easy/modules/marker/models/marker.php:327
1180
+ #: ../google-maps-easy/modules/marker_groups/models/marker_groups.php:57
1181
+ #: ../pricing-table-by-supsystic/classes/model.php:188
1182
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:47
1183
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:198
1184
+ #: classes/model.php:188 modules/tables/models/tables.php:47
1185
+ #: modules/tables/models/tables.php:198
1186
+ msgid "Invalid ID"
1187
+ msgstr "ID non valide"
1188
+
1189
+ #: ../google-maps-easy/classes/model.php:209
1190
+ #: ../pricing-table-by-supsystic/classes/model.php:230 classes/model.php:230
1191
+ msgid "Empty or invalid ID"
1192
+ msgstr "ID vide ou invalide"
1193
+
1194
+ #: ../google-maps-easy/classes/table.php:277
1195
+ msgid "Nothing to update"
1196
+ msgstr "Rien à mettre à jour"
1197
+
1198
+ #: ../google-maps-easy/classes/table.php:293
1199
+ #: ../pricing-table-by-supsystic/classes/table.php:294 classes/table.php:294
1200
+ msgid "Database error. Please contact your developer."
1201
+ msgstr "Erreur de base de données. Veuillez contacter votre développeur."
1202
+
1203
+ #: ../google-maps-easy/classes/tables/heatmaps.php:7
1204
+ msgid "Heatmap ID"
1205
+ msgstr "ID de la carte thermique"
1206
+
1207
+ #: ../google-maps-easy/classes/tables/heatmaps.php:8
1208
+ #: ../google-maps-easy/classes/tables/marker.php:13
1209
+ #: ../google-maps-easy/classes/tables/shapes.php:12
1210
+ msgid "Map Id"
1211
+ msgstr "Carte Id"
1212
+
1213
+ #: ../google-maps-easy/classes/tables/heatmaps.php:9
1214
+ msgid "Heatmap coordinates list"
1215
+ msgstr "Liste des coordonnées de la carte thermique"
1216
+
1217
+ #: ../google-maps-easy/classes/tables/heatmaps.php:10
1218
+ #: ../google-maps-easy/classes/tables/marker.php:17
1219
+ #: ../google-maps-easy/classes/tables/modules.php:10
1220
+ #: ../google-maps-easy/classes/tables/options.php:11
1221
+ #: ../google-maps-easy/classes/tables/shapes.php:15
1222
+ msgid "Params"
1223
+ msgstr "Paramètres"
1224
+
1225
+ #: ../google-maps-easy/classes/tables/heatmaps.php:11
1226
+ #: ../google-maps-easy/classes/tables/marker.php:19
1227
+ #: ../google-maps-easy/classes/tables/shapes.php:13
1228
+ msgid "Creation date"
1229
+ msgstr "Date de création"
1230
+
1231
+ #: ../google-maps-easy/classes/tables/marker.php:7
1232
+ msgid "Marker ID"
1233
+ msgstr "ID Lieu"
1234
+
1235
+ #: ../google-maps-easy/classes/tables/marker.php:8
1236
+ msgid "Marker name"
1237
+ msgstr "Nom du lieu"
1238
+
1239
+ #: ../google-maps-easy/classes/tables/marker.php:9
1240
+ msgid "Description Of Marker"
1241
+ msgstr "Description du lieu"
1242
+
1243
+ #: ../google-maps-easy/classes/tables/marker.php:10
1244
+ msgid "X coordinate of marker (lng)"
1245
+ msgstr "Coordonnée X du marqueur (lng)"
1246
+
1247
+ #: ../google-maps-easy/classes/tables/marker.php:11
1248
+ msgid "Y coordinate of marker (lat)"
1249
+ msgstr "Coordonnée Y du marqueur (lat)"
1250
+
1251
+ #: ../google-maps-easy/classes/tables/marker.php:12
1252
+ msgid "Path of icon file"
1253
+ msgstr "Chemin d’accès du fichier d’icônes"
1254
+
1255
+ #: ../google-maps-easy/classes/tables/marker.php:14
1256
+ msgid "Marker Address"
1257
+ msgstr "Adresse du marqueur"
1258
+
1259
+ #: ../google-maps-easy/classes/tables/marker.php:15
1260
+ msgid "Id of Marker's group"
1261
+ msgstr "Id du groupe de Marker"
1262
+
1263
+ #: ../google-maps-easy/classes/tables/marker.php:16
1264
+ #: ../google-maps-easy/classes/tables/shapes.php:14
1265
+ msgid "Animation"
1266
+ msgstr "Animation"
1267
+
1268
+ #: ../google-maps-easy/classes/tables/marker.php:18
1269
+ #: ../google-maps-easy/classes/tables/options.php:15
1270
+ #: ../google-maps-easy/classes/tables/shapes.php:16
1271
+ msgid "Sort Order"
1272
+ msgstr "Ordre de tri"
1273
+
1274
+ #: ../google-maps-easy/classes/tables/marker.php:20
1275
+ msgid "Period date from"
1276
+ msgstr "Date de la période du"
1277
+
1278
+ #: ../google-maps-easy/classes/tables/marker.php:21
1279
+ msgid "Period date to"
1280
+ msgstr "Date de la période jusqu’au"
1281
+
1282
+ #: ../google-maps-easy/classes/tables/marker.php:22
1283
+ msgid "Import Kml Layer unique index"
1284
+ msgstr "Import Kml Layer unique index"
1285
+
1286
+ #: ../google-maps-easy/classes/tables/marker.php:23
1287
+ msgid "User who created marker"
1288
+ msgstr "Utilisateur qui a créé le marqueur"
1289
+
1290
+ #: ../google-maps-easy/classes/tables/modules.php:8
1291
+ #: ../google-maps-easy/classes/tables/options.php:13
1292
+ msgid "Type"
1293
+ msgstr "Type"
1294
+
1295
+ #: ../google-maps-easy/classes/tables/modules.php:9
1296
+ msgid "Active"
1297
+ msgstr "Actif"
1298
+
1299
+ #: ../google-maps-easy/classes/tables/modules.php:11
1300
+ msgid "Has Tab"
1301
+ msgstr "Has Tab"
1302
+
1303
+ #: ../google-maps-easy/classes/tables/modules.php:12
1304
+ #: ../google-maps-easy/classes/tables/options.php:12
1305
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:12
1306
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:24
1307
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:55
1308
+ msgid "Description"
1309
+ msgstr "Description"
1310
+
1311
+ #: ../google-maps-easy/classes/tables/modules.php:13
1312
+ #: ../google-maps-easy/classes/tables/options.php:8
1313
+ #: ../google-maps-easy/classes/tables/usage.php:9
1314
+ msgid "Code"
1315
+ msgstr "Code"
1316
+
1317
+ #: ../google-maps-easy/classes/tables/modules.php:14
1318
+ msgid "External plugin directory"
1319
+ msgstr "Répertoire de plugins externes"
1320
+
1321
+ #: ../google-maps-easy/classes/tables/modules_type.php:7
1322
+ #: ../google-maps-easy/classes/tables/options.php:7
1323
+ #: ../google-maps-easy/classes/tables/options_categories.php:7
1324
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:272
1325
+ msgid "ID"
1326
+ msgstr "ID"
1327
+
1328
+ #: ../google-maps-easy/classes/tables/options.php:9
1329
+ msgid "Value"
1330
+ msgstr "Valeur"
1331
+
1332
+ #: ../google-maps-easy/classes/tables/options.php:14
1333
+ msgid "Category ID"
1334
+ msgstr "ID de catégorie"
1335
+
1336
+ #: ../google-maps-easy/classes/tables/options.php:16
1337
+ msgid "Value Type"
1338
+ msgstr "Type de valeur"
1339
+
1340
+ #: ../google-maps-easy/classes/tables/options_categories.php:8
1341
+ msgid "Method"
1342
+ msgstr "Méthode"
1343
+
1344
+ #: ../google-maps-easy/classes/tables/shapes.php:7
1345
+ msgid "Shape ID"
1346
+ msgstr "ID forme"
1347
+
1348
+ #: ../google-maps-easy/classes/tables/shapes.php:8
1349
+ msgid "Shape name"
1350
+ msgstr "Nom de forme"
1351
+
1352
+ #: ../google-maps-easy/classes/tables/shapes.php:9
1353
+ msgid "Description of Shape"
1354
+ msgstr "Description de la forme"
1355
+
1356
+ #: ../google-maps-easy/classes/tables/shapes.php:10
1357
+ msgid "Shape coordinates list"
1358
+ msgstr "Liste des coordonnées de forme"
1359
+
1360
+ #: ../google-maps-easy/classes/tables/shapes.php:11
1361
+ msgid "Shape type"
1362
+ msgstr "Type de forme"
1363
+
1364
+ #: ../google-maps-easy/classes/tables/usage.php:8
1365
+ msgid "Usage id"
1366
+ msgstr "Utilisation id"
1367
+
1368
+ #: ../google-maps-easy/classes/tables/usage.php:10
1369
+ msgid "Visits Count"
1370
+ msgstr "Nombre de visites"
1371
+
1372
+ #: ../google-maps-easy/classes/validator.php:30
1373
+ #: ../pricing-table-by-supsystic/classes/validator.php:30
1374
+ #: classes/validator.php:30
1375
+ #, php-format
1376
+ msgid "Invalid length for %s, max length is %s"
1377
+ msgstr "Longueur non valide pour %s, la longueur maximale est de %s"
1378
+
1379
+ #: ../google-maps-easy/classes/validator.php:43
1380
+ #: ../pricing-table-by-supsystic/classes/validator.php:43
1381
+ #: classes/validator.php:43
1382
+ #, php-format
1383
+ msgid "Invalid numeric value for %s"
1384
+ msgstr "Valeur numérique non valide pour %s"
1385
+
1386
+ #: ../google-maps-easy/classes/validator.php:71
1387
+ #: ../google-maps-easy/modules/supsystic_promo/controller.php:39
1388
+ #: ../pricing-table-by-supsystic/classes/validator.php:71
1389
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:39
1390
+ #: classes/validator.php:71 modules/supsystic_promo/controller.php:39
1391
+ #, php-format
1392
+ msgid "Please enter %s"
1393
+ msgstr "Veuillez entrer %s"
1394
+
1395
+ #: ../google-maps-easy/classes/validator.php:78
1396
+ #: ../google-maps-easy/modules/supsystic_promo/controller.php:39
1397
+ #: ../pricing-table-by-supsystic/classes/validator.php:78
1398
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:39
1399
+ #: classes/validator.php:78 modules/supsystic_promo/controller.php:39
1400
+ #, php-format
1401
+ msgid "Please select %s"
1402
+ msgstr "SVP sélectionnez %s"
1403
+
1404
+ #: ../google-maps-easy/classes/validator.php:85
1405
+ #: ../google-maps-easy/classes/validator.php:101
1406
+ #: ../pricing-table-by-supsystic/classes/validator.php:85
1407
+ #: ../pricing-table-by-supsystic/classes/validator.php:101
1408
+ #: classes/validator.php:85 classes/validator.php:101
1409
+ #, php-format
1410
+ msgid "Invalid %s"
1411
+ msgstr "%s non valide"
1412
+
1413
+ #: ../google-maps-easy/classes/validator.php:88
1414
+ #: ../pricing-table-by-supsystic/classes/validator.php:88
1415
+ #: classes/validator.php:88
1416
+ #, php-format
1417
+ msgid "%s is already registered"
1418
+ msgstr "%s est déjà enregistré"
1419
+
1420
+ #: ../google-maps-easy/doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
1421
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:3
1422
+ msgid "Exit Full Screen"
1423
+ msgstr "Sortir du plein écran"
1424
+
1425
+ #: ../google-maps-easy/doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
1426
+ #: ../google-maps-easy/doc/google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
1427
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:4
1428
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/add_map_options/views/tpl/fullScreenBtn.php:11
1429
+ msgid "Open Full Screen"
1430
+ msgstr "Ouvrir en plein écran"
1431
+
1432
+ #: ../google-maps-easy/doc/google-maps-easy-pro/add_map_options/views/tpl/printInfoWndBtn.php:8
1433
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/add_map_options/views/tpl/printInfoWndBtn.php:8
1434
+ msgid "Print"
1435
+ msgstr "Imprimer"
1436
+
1437
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:96
1438
+ msgid "Category"
1439
+ msgstr "Catégorie"
1440
+
1441
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:97
1442
+ msgid "Calendar"
1443
+ msgstr "Calendrier"
1444
+
1445
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:106
1446
+ msgid "All Time"
1447
+ msgstr "Tout le temps"
1448
+
1449
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:115
1450
+ msgid "Search..."
1451
+ msgstr "Rechercher..."
1452
+
1453
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:167
1454
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:49
1455
+ msgid "Search address..."
1456
+ msgstr "Recherche Adresse…"
1457
+
1458
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:191
1459
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:61
1460
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:84
1461
+ msgid "Reset"
1462
+ msgstr "Réinitialiser"
1463
+
1464
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:204
1465
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:47
1466
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:97
1467
+ msgid "Find"
1468
+ msgstr "Chercher"
1469
+
1470
+ #: ../google-maps-easy/doc/google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:216
1471
+ msgid "Search area have no markers, please try to modify search criteria."
1472
+ msgstr ""
1473
+ "La zone de recherche n’a pas de marqueurs, veuillez essayer de modifier les "
1474
+ "critères de recherche."
1475
+
1476
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
1477
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:1
1478
+ msgid "Get Direction"
1479
+ msgstr "Obtenir l'itinéraire"
1480
+
1481
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:23
1482
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:23
1483
+ msgid "Type the address..."
1484
+ msgstr "Tapez l'adresse..."
1485
+
1486
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:32
1487
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:32
1488
+ msgid "or"
1489
+ msgstr "ou"
1490
+
1491
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:35
1492
+ msgid "Get current user location"
1493
+ msgstr "Obtenir l'emplacement actuel de l'utilisateur"
1494
+
1495
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:45
1496
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:45
1497
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:10
1498
+ msgid "Go"
1499
+ msgstr "Aller"
1500
+
1501
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
1502
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:65
1503
+ msgid "The Geolocation service failed."
1504
+ msgstr "Le service de géolocalisation a échoué."
1505
+
1506
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
1507
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:71
1508
+ msgid "Your browser does not support geolocation."
1509
+ msgstr "Votre navigateur ne prend pas en charge la géolocalisation."
1510
+
1511
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
1512
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:77
1513
+ msgid "Route could not be found. Please, try to select another address!"
1514
+ msgstr ""
1515
+ "La route n'a pas pu être trouvée. S'il vous plaît, essayez de sélectionner "
1516
+ "une autre adresse!"
1517
+
1518
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
1519
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:83
1520
+ msgid "Please, select address from search list!"
1521
+ msgstr "S'il vous plaît, sélectionnez l'adresse de la liste de recherche!"
1522
+
1523
+ #: ../google-maps-easy/doc/google-maps-easy-pro/directions/views/tpl/directionsPanel.php:4
1524
+ msgid "List of Direction's Steps will be here..."
1525
+ msgstr "La liste des étapes de la Direction sera ici..."
1526
+
1527
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/controller.php:49
1528
+ msgid "Adding markers from the frontend is disabled for the Current Map"
1529
+ msgstr ""
1530
+ "L'ajout de marqueurs à partir de la frontend est désactivé pour la carte "
1531
+ "actuelle"
1532
+
1533
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/mod.php:25
1534
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:9
1535
+ msgid "Empty or Invalid Map ID. Please, check your Marker Form Shortcode."
1536
+ msgstr ""
1537
+ "Carte ID vide ou invalide. S'il vous plaît, vérifiez votre code shortcode de "
1538
+ "formulaire de marqueur."
1539
+
1540
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/models/frontend_actions.php:33
1541
+ #, php-format
1542
+ msgid ""
1543
+ "You have exceeded the limit on adding markers from current IP address. "
1544
+ "Please try again after %s minutes."
1545
+ msgstr ""
1546
+ "Vous avez dépassé la limite sur l'ajout de marqueurs à partir de l'adresse "
1547
+ "IP actuelle. S'il vous plaît essayer à nouveau après %s minutes."
1548
+
1549
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:16
1550
+ msgid "Marker Form will be displayed only for logged in users."
1551
+ msgstr ""
1552
+ "Le formulaire de marqueur ne s'affichera que pour les utilisateurs connectés."
1553
+
1554
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:17
1555
+ msgid "Log In"
1556
+ msgstr "Connexion"
1557
+
1558
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:23
1559
+ msgid "Marker Form"
1560
+ msgstr "Formulaire de marqueur"
1561
+
1562
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:24
1563
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1540
1564
+ msgid "Marker Name"
1565
+ msgstr "Nom du lieu"
1566
+
1567
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:25
1568
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1633
1569
+ msgid "Marker Category"
1570
+ msgstr "Catégorie du marqueur"
1571
+
1572
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:27
1573
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1553
1574
+ msgid "Marker Description"
1575
+ msgstr "Description du Marqueur"
1576
+
1577
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:35
1578
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:310
1579
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:377
1580
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:207
1581
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:236
1582
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:537
1583
+ #: ../google-maps-easy/modules/marker/mod.php:20
1584
+ #: ../google-maps-easy/modules/marker_groups/views/marker_groups.php:26
1585
+ msgid "None"
1586
+ msgstr "Aucun"
1587
+
1588
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/frontend_actions.php:56
1589
+ msgid ""
1590
+ "Marker's Form is not displayed, because the option &quot;Add markers on "
1591
+ "frontend&quot; is disabled for the Current Map"
1592
+ msgstr ""
1593
+ "Le formulaire de marqueur n'est pas affiché, parce que l'option 'quot;"
1594
+ "Ajouter des marqueurs sur frontend'quot; est désactivé e pour la carte "
1595
+ "actuelle"
1596
+
1597
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:20
1598
+ msgid "You need to use marker form on page with map"
1599
+ msgstr ""
1600
+ "Vous devez utiliser le formulaire de marqueur sur la page avec la carte"
1601
+
1602
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:24
1603
+ msgid "Use this form to add markers to your map"
1604
+ msgstr "Utilisez ce formulaire pour ajouter des marqueurs à votre carte"
1605
+
1606
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:46
1607
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1927
1608
+ msgid "Add by Click"
1609
+ msgstr "Ajouter par clic"
1610
+
1611
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:58
1612
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1082
1613
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1580
1614
+ msgid "Choose Icon"
1615
+ msgstr "Choisissez l’icône"
1616
+
1617
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:65
1618
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2114
1619
+ msgid "Save Marker"
1620
+ msgstr "Enregistrer le marqueur"
1621
+
1622
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:90
1623
+ msgid "Choose the marker"
1624
+ msgstr "Choisissez le marqueur"
1625
+
1626
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:99
1627
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2120
1628
+ msgid "Delete Marker"
1629
+ msgstr "Supprimer un marqueur"
1630
+
1631
+ #: ../google-maps-easy/doc/google-maps-easy-pro/frontend_actions/views/tpl/frontend_actionsMarkerForm.php:101
1632
+ msgid "You need to choose the marker"
1633
+ msgstr "Vous devez choisir le marqueur"
1634
+
1635
+ #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:28
1636
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:28
1637
+ msgid "Empty or invalid Heatmap ID"
1638
+ msgstr "ID Heatmap vide ou invalide"
1639
+
1640
+ #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:35
1641
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:35
1642
+ msgid "Heatmap Not Found"
1643
+ msgstr "Heatmap introuvable"
1644
+
1645
+ #: ../google-maps-easy/doc/google-maps-easy-pro/heatmap/controller.php:41
1646
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/heatmap/controller.php:41
1647
+ msgid "Cannot remove Heatmap"
1648
+ msgstr "Ne peut pas supprimer Heatmap"
1649
+
1650
+ #: ../google-maps-easy/doc/google-maps-easy-pro/kml/controller.php:39
1651
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/kml/controller.php:16
1652
+ msgid "Security check failed"
1653
+ msgstr "Le contrôle de sécurité a échoué"
1654
+
1655
+ #: ../google-maps-easy/doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:6
1656
+ msgid "KML Layers Filter"
1657
+ msgstr "Filtre KML Layers"
1658
+
1659
+ #: ../google-maps-easy/doc/google-maps-easy-pro/kml/views/tpl/mapKmlFilter.php:16
1660
+ msgid "KML data loading"
1661
+ msgstr "Chargement de données KML"
1662
+
1663
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:30
1664
+ #, php-format
1665
+ msgid ""
1666
+ "Your license is expired. Once you extend your license - you will be able to "
1667
+ "Update PRO version. To extend PRO version license - follow <a href='%s' "
1668
+ "target='_blank'>this link</a>, then - go to <a href='%s'>License</a> tab and "
1669
+ "click on &quot;Re-activate&quot; button to re-activate your PRO version."
1670
+ msgstr ""
1671
+ "Votre licence est expirée. Une fois que vous avez prolongé votre licence - "
1672
+ "vous serez en mesure de mettre à jour la version PRO. Pour étendre la "
1673
+ "licence de version PRO - suivez <a href='%s' target='_blank'>ce lien,</"
1674
+ "a>puis - allez à l'onglet <a href='%s'>Licence</a> et cliquez sur \"Réactiver"
1675
+ "\" bouton pour réactiver votre version PRO."
1676
+
1677
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:39
1678
+ #, php-format
1679
+ msgid ""
1680
+ "Your plugin PRO license is expired. It means your PRO version will work as "
1681
+ "usual - with all features and options, but you will not be able to update "
1682
+ "the PRO version and use PRO support. To extend PRO version license - follow "
1683
+ "<a href='%s' target='_blank'>this link</a>"
1684
+ msgstr ""
1685
+ "Votre licence de plugin PRO est expirée. Cela signifie que votre version PRO "
1686
+ "fonctionnera comme d’habitude - avec toutes les fonctionnalités et options, "
1687
+ "MAIS vous ne pourrez pas mettre à jour la version PRO et utiliser le support "
1688
+ "PRO. Pour étendre la licence de la version PRO - suivez <a href=« %s » "
1689
+ "target=« _blank »>ce lien</a>"
1690
+
1691
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:44
1692
+ #, php-format
1693
+ msgid ""
1694
+ "You need to activate your copy of PRO version %s plugin. Go to <a "
1695
+ "href='%s'>License</a> tab and finish your software activation process."
1696
+ msgstr ""
1697
+ "Vous devez activer votre copie du plugin PRO version %s. Allez dans l’onglet "
1698
+ "<a href=« %s »>License</a> et terminez votre processus d’activation du "
1699
+ "logiciel."
1700
+
1701
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:93
1702
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:74
1703
+ msgid "Activate License"
1704
+ msgstr "Activer la licence"
1705
+
1706
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/mod.php:95
1707
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:76
1708
+ msgid "Renew License"
1709
+ msgstr "Renouveler la licence"
1710
+
1711
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/models/license.php:138
1712
+ msgid ""
1713
+ "There was a problem with sending request to your authentication server. "
1714
+ "Please try later."
1715
+ msgstr ""
1716
+ "Il y avait un problème avec l'envoi de demande à votre serveur "
1717
+ "d'authentification. S'll vous plaît, essayez plus tard."
1718
+
1719
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
1720
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:4
1721
+ #, php-format
1722
+ msgid ""
1723
+ "Congratulations! PRO version of %s plugin is activated and working fine!"
1724
+ msgstr ""
1725
+ "Félicitations! PRO version de plugin %s est activé et fonctionne très bien!"
1726
+
1727
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:6
1728
+ #, php-format
1729
+ msgid ""
1730
+ "Your license for PRO version of %s plugin - expired. You can <a href='%s' "
1731
+ "target='_blank'>click here</a> to extend your license, then - click on &quot;"
1732
+ "Re-activate&quot; button to re-activate your PRO version."
1733
+ msgstr ""
1734
+ "Votre licence pour la version PRO de %s plugin - expiré. Vous pouvez <a "
1735
+ "href='%s' target='_blank'>cliquer ici</a> pour étendre votre licence, puis - "
1736
+ "cliquez sur le bouton \"Réactiver\" pour réactiver votre version PRO."
1737
+
1738
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
1739
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:8
1740
+ #, php-format
1741
+ msgid ""
1742
+ "Congratulations! You have successfully installed PRO version of %s plugin. "
1743
+ "Final step to finish Your PRO version setup - is to enter your Email and "
1744
+ "License Key on this page. This will activate Your copy of software on this "
1745
+ "site."
1746
+ msgstr ""
1747
+ "Félicitations ! Vous avez correctement installé la version PRO du plugin %s. "
1748
+ "La Dernière étape pour terminer l’installation de votre version PRO est "
1749
+ "d’entrer votre Email et la clé de licence sur cette page. Cela activera "
1750
+ "votre copie du logiciel sur ce site."
1751
+
1752
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
1753
+ #, php-format
1754
+ msgid ""
1755
+ "Your email address, used on checkout procedure on <a href='%s' "
1756
+ "target='_blank'>%s</a>"
1757
+ msgstr ""
1758
+ "Votre adresse e-mail, utilisée lors de la procédure d’achat sur <a href='%s' "
1759
+ "target='_blank'>%s</a>"
1760
+
1761
+ #: ../google-maps-easy/doc/google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
1762
+ #, php-format
1763
+ msgid ""
1764
+ "Your License Key from your account on <a href='%s' target='_blank'>%s</a>"
1765
+ msgstr ""
1766
+ "Votre clé de licence pour votre compte sur <a href=\"%s\" target=\"_blank\">"
1767
+ "%s</a>"
1768
+
1769
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderSimple.php:39
1770
+ #, php-format
1771
+ msgid "View %s results"
1772
+ msgstr "Afficher les résultats de %s"
1773
+
1774
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:10
1775
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:22
1776
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:53
1777
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:273
1778
+ msgid "Title"
1779
+ msgstr "Titre"
1780
+
1781
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:13
1782
+ #: ../google-maps-easy/doc/google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable_Markers.php:26
1783
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:57
1784
+ msgid "Directions"
1785
+ msgstr "Directions"
1786
+
1787
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/mod.php:35
1788
+ #: ../google-maps-easy/modules/gmap/mod.php:98
1789
+ msgid "Empty or Invalid Map ID"
1790
+ msgstr "ID de carte vide ou invalide"
1791
+
1792
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/mod.php:35
1793
+ msgid "Please, check your shortcode."
1794
+ msgstr "S'il vous plaît, vérifiez votre code court."
1795
+
1796
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/places.php:8
1797
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:91
1798
+ #, php-format
1799
+ msgid "Map with ID %d not found"
1800
+ msgstr "Carte avec ID %d introuvable"
1801
+
1802
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/places.php:9
1803
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:92
1804
+ msgid "Map not found"
1805
+ msgstr "Carte introuvable"
1806
+
1807
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/places.php:12
1808
+ msgid "You must activate using of Places Toolbar in map admin area"
1809
+ msgstr ""
1810
+ "Vous devez activer l'utilisation de Places Toolbar dans la zone "
1811
+ "d'administration de la carte"
1812
+
1813
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:26
1814
+ msgid "Type address..."
1815
+ msgstr "Adresse de type..."
1816
+
1817
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:54
1818
+ msgid "More results"
1819
+ msgstr "Charger plus de résultats"
1820
+
1821
+ #: ../google-maps-easy/doc/google-maps-easy-pro/places/views/tpl/placesToolbar.php:65
1822
+ msgid "No Places was found by your request"
1823
+ msgstr "Aucun endroit n'a été trouvé par votre demande"
1824
+
1825
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:42
1826
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:57
1827
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:42
1828
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:57
1829
+ msgid "Figure Not Found"
1830
+ msgstr "Figure non trouvée"
1831
+
1832
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:48
1833
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:63
1834
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:48
1835
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:63
1836
+ msgid "Cannot remove figure"
1837
+ msgstr "Ne peut pas supprimer la figure"
1838
+
1839
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/controller.php:99
1840
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/controller.php:99
1841
+ msgid "Empty or invalid figure ID"
1842
+ msgstr "ID de figure vide ou invalide"
1843
+
1844
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/models/shape.php:43
1845
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/models/shape.php:43
1846
+ msgid "Please enter figure name"
1847
+ msgstr "S'il vous plaît entrer le nom de la figure"
1848
+
1849
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/models/shape.php:104
1850
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/models/shape.php:104
1851
+ #: ../google-maps-easy/modules/marker/models/marker.php:259
1852
+ msgid "Address is empty or not match"
1853
+ msgstr "L'adresse est vide ou ne correspond pas"
1854
+
1855
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/models/shape.php:159
1856
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/models/shape.php:158
1857
+ msgid "Invalid Figure ID"
1858
+ msgstr "ID figure invalide"
1859
+
1860
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
1861
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
1862
+ #: ../google-maps-easy/modules/gmap/mod.php:22
1863
+ #: ../google-maps-easy/modules/marker/views/tpl/markerListOperations.php:1
1864
+ #: ../google-maps-easy/modules/marker_groups/mod.php:14
1865
+ #: ../google-maps-easy/modules/marker_groups/mod.php:17
1866
+ #: ../pricing-table-by-supsystic/modules/tables/mod.php:23
1867
+ #: modules/tables/mod.php:23
1868
+ msgid "Edit"
1869
+ msgstr "Editer"
1870
+
1871
+ #: ../google-maps-easy/doc/google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
1872
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/shape/views/tpl/shapeListOperations.php:1
1873
+ #: ../google-maps-easy/modules/marker/views/tpl/markerListOperations.php:1
1874
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:56
1875
+ #: modules/tables/views/tpl/tablesEditFormControls.php:56
1876
+ msgid "Delete"
1877
+ msgstr "Supprimer"
1878
+
1879
+ #: ../google-maps-easy/doc/google-maps-easy-pro/wpUpdater.php:70
1880
+ msgid ""
1881
+ "An Unexpected HTTP Error occurred during the API request.</p> <p><a href='?' "
1882
+ "onclick='document.location.reload(); return false;'>Try again</a>"
1883
+ msgstr ""
1884
+ "Une erreur HTTP inattendue s'est produite pendant la demande d'API.<p><p><a "
1885
+ "href='?' onclick='document.location.reload(); return false;'>Réessayez</a>"
1886
+
1887
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:111
1888
+ msgid "Please, type a search address."
1889
+ msgstr "S'il vous plaît, tapez une adresse de recherche."
1890
+
1891
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/custom_controls/views/tpl/customMapControls.php:117
1892
+ msgid "Search area have no markers, please try to modify search criterias."
1893
+ msgstr ""
1894
+ "Zone de recherche n'ont pas de marqueurs, s'il vous plaît essayer de "
1895
+ "modifier les critères de recherche."
1896
+
1897
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/directions/views/tpl/directionsBtn.php:35
1898
+ msgid "Get current user position"
1899
+ msgstr "Obtenir la position actuelle de l'utilisateur"
1900
+
1901
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/mod.php:38
1902
+ #, php-format
1903
+ msgid ""
1904
+ "Your license for PRO version of %s plugin - expired. You can <a href=\"%s\" "
1905
+ "target=\"_blank\">click here</a> to extend your license, then - go to <a "
1906
+ "href=\"%s\">License</a> tab anc click on \"Re-activate\" button to re-"
1907
+ "activate your PRO version."
1908
+ msgstr ""
1909
+ "Votre licence pour la version PRO de %s plugin - expiré. Vous pouvez <a href="
1910
+ "\"%s\" target=\"_blank\">cliquer ici</a> pour étendre votre licence, puis - "
1911
+ "allez sur <a href=\"%s\">l'onglet Licence</a> anc cliquez sur \"Réactiver\" "
1912
+ "bouton pour réactiver votre version PRO."
1913
+
1914
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/models/license.php:131
1915
+ msgid ""
1916
+ "There was a problem with sending request to our authentification server. "
1917
+ "Please try later."
1918
+ msgstr ""
1919
+ "Il y avait un problème avec l'envoi de demande à notre serveur "
1920
+ "d'authentification. S'll vous plaît, essayez plus tard."
1921
+
1922
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:23
1923
+ #, php-format
1924
+ msgid ""
1925
+ "Your email address, used on checkout procedure on <a href=\"%s\" target="
1926
+ "\"_blank\">%s</a>"
1927
+ msgstr ""
1928
+ "Votre adresse e-mail, utilisée lors de la procédure de caisse sur <a href="
1929
+ "\"%s\" target=\"_blank\">%s</a>"
1930
+
1931
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/license/views/tpl/licenseAdmin.php:34
1932
+ #, php-format
1933
+ msgid ""
1934
+ "Your License Key from your account on <a href=\"%s\" target=\"_blank\">%s</a>"
1935
+ msgstr ""
1936
+ "Votre clé de licence pour votre compte sur <a href=\"%s\" target=\"_blank\">"
1937
+ "%s</a>"
1938
+
1939
+ #: ../google-maps-easy/doc/promo-google-maps-easy-pro/markers_list/views/tpl/mmlSliderTable.php:15
1940
+ #: ../google-maps-easy/modules/marker_groups/models/marker_groups.php:221
1941
+ msgid "Uncategorized"
1942
+ msgstr "Non classé"
1943
+
1944
+ #: ../google-maps-easy/modules/adminmenu/controller.php:7
1945
+ msgid "Your name field is required."
1946
+ msgstr "Votre champ de nom est requis."
1947
+
1948
+ #: ../google-maps-easy/modules/adminmenu/controller.php:8
1949
+ msgid "Your website field is required."
1950
+ msgstr "Votre site Web est nécessaire."
1951
+
1952
+ #: ../google-maps-easy/modules/adminmenu/controller.php:9
1953
+ msgid "Your e-mail field is required."
1954
+ msgstr "Votre champ e-mail est nécessaire."
1955
+
1956
+ #: ../google-maps-easy/modules/adminmenu/controller.php:10
1957
+ msgid "Subject field is required."
1958
+ msgstr "Le champ de sujet est exigé."
1959
+
1960
+ #: ../google-maps-easy/modules/adminmenu/controller.php:11
1961
+ msgid "You must select a valid category."
1962
+ msgstr "Vous devez sélectionner une catégorie valide."
1963
+
1964
+ #: ../google-maps-easy/modules/adminmenu/controller.php:12
1965
+ msgid "Message field is required."
1966
+ msgstr "Le champ de message est requis."
1967
+
1968
+ #: ../google-maps-easy/modules/adminmenu/mod.php:13
1969
+ #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:13
1970
+ #: modules/adminmenu/mod.php:13
1971
+ #, php-format
1972
+ msgid ""
1973
+ "Cool WordPress plugins from supsystic.com developers. I tried %s - and this "
1974
+ "was what I need! #supsystic.com"
1975
+ msgstr ""
1976
+ "De superbes plugins Wordpress de l'équipe de supsystic.com. J’ai essayé %s - "
1977
+ "et c’est ce dont j’avais besoin ! #supsystic.com"
1978
+
1979
+ #: ../google-maps-easy/modules/adminmenu/mod.php:15
1980
+ #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:15
1981
+ #: modules/adminmenu/mod.php:15
1982
+ msgid "More plugins for your WordPress site here!"
1983
+ msgstr "Plus de plugins pour votre site WordPress ici!"
1984
+
1985
+ #: ../google-maps-easy/modules/adminmenu/mod.php:16
1986
+ #: ../google-maps-easy/modules/adminmenu/mod.php:17
1987
+ #: ../google-maps-easy/modules/adminmenu/mod.php:18
1988
+ #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:16
1989
+ #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:17
1990
+ #: ../pricing-table-by-supsystic/modules/adminmenu/mod.php:18
1991
+ #: modules/adminmenu/mod.php:16 modules/adminmenu/mod.php:17
1992
+ #: modules/adminmenu/mod.php:18
1993
+ msgid "Spread the word!"
1994
+ msgstr "Passez le mot!"
1995
+
1996
+ #: ../google-maps-easy/modules/csv/controller.php:7
1997
+ #, php-format
1998
+ msgid "Maps from %s - %s"
1999
+ msgstr "Cartes de %s - %s"
2000
+
2001
+ #: ../google-maps-easy/modules/csv/controller.php:10
2002
+ msgid "You have no maps for now."
2003
+ msgstr "Vous n'avez pas de cartes pour le moment."
2004
+
2005
+ #: ../google-maps-easy/modules/csv/controller.php:55
2006
+ #, php-format
2007
+ msgid "Markers from %s"
2008
+ msgstr "Marqueurs de %s"
2009
+
2010
+ #: ../google-maps-easy/modules/csv/controller.php:58
2011
+ msgid "You have no markers for now."
2012
+ msgstr "Vous n'avez pas de marqueurs pour le moment."
2013
+
2014
+ #: ../google-maps-easy/modules/csv/controller.php:97
2015
+ #, php-format
2016
+ msgid "Figures from %s"
2017
+ msgstr "Chiffres de %s"
2018
+
2019
+ #: ../google-maps-easy/modules/csv/controller.php:100
2020
+ msgid "You have no figures for now."
2021
+ msgstr "Vous n'avez pas de chiffres pour l'instant."
2022
+
2023
+ #: ../google-maps-easy/modules/csv/controller.php:139
2024
+ #, php-format
2025
+ msgid "Heatmap from %s"
2026
+ msgstr "Carte thermique à partir de %s"
2027
+
2028
+ #: ../google-maps-easy/modules/csv/controller.php:142
2029
+ msgid "You have no heatmap for now."
2030
+ msgstr "Vous n'avez pas de carte thermique pour l'instant."
2031
+
2032
+ #: ../google-maps-easy/modules/csv/controller.php:201
2033
+ msgid "Missing File"
2034
+ msgstr "Fichier manquant"
2035
+
2036
+ #: ../google-maps-easy/modules/csv/controller.php:203
2037
+ #, php-format
2038
+ msgid "File uploaded with error code %s"
2039
+ msgstr "Fichier téléchargé avec code d'erreur %s"
2040
+
2041
+ #: ../google-maps-easy/modules/csv/controller.php:317
2042
+ msgid ""
2043
+ "File should contain more then 1 row, at least 1 row should be for headers"
2044
+ msgstr ""
2045
+ "Le fichier devrait contenir plus d'1 ligne, au moins 1 ligne pour les en-"
2046
+ "têtes"
2047
+
2048
+ #: ../google-maps-easy/modules/csv/controller.php:319
2049
+ msgid "Empty data in file"
2050
+ msgstr "Données vides dans le fichier"
2051
+
2052
+ #: ../google-maps-easy/modules/csv/mod.php:11
2053
+ msgid "Maps Import / Export"
2054
+ msgstr "Cartes Importation / Exportation"
2055
+
2056
+ #: ../google-maps-easy/modules/csv/models/csv.php:133
2057
+ msgid "Can not detect import list type"
2058
+ msgstr "Impossible de détecter le type de liste d'importation"
2059
+
2060
+ #: ../google-maps-easy/modules/csv/models/csv.php:135
2061
+ msgid "Can not find fields names"
2062
+ msgstr "Impossible de trouver des noms de champs"
2063
+
2064
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:8
2065
+ msgid "Maps"
2066
+ msgstr "Cartes"
2067
+
2068
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:13
2069
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:34
2070
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:55
2071
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:76
2072
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:8
2073
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:27
2074
+ #: modules/tables/views/tpl/tablesImportExport.php:8
2075
+ #: modules/tables/views/tpl/tablesImportExport.php:27
2076
+ msgid "Export"
2077
+ msgstr "Exporter"
2078
+
2079
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:18
2080
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:39
2081
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:60
2082
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:81
2083
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:5
2084
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:52
2085
+ #: modules/tables/views/tpl/tablesImportExport.php:5
2086
+ #: modules/tables/views/tpl/tablesImportExport.php:52
2087
+ msgid "Import"
2088
+ msgstr "Importer"
2089
+
2090
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:29
2091
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:275
2092
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:64
2093
+ msgid "Markers"
2094
+ msgstr "Marqueurs"
2095
+
2096
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:50
2097
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:73
2098
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:276
2099
+ msgid "Figures"
2100
+ msgstr "Figures"
2101
+
2102
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:71
2103
+ msgid "HeatMap Layer"
2104
+ msgstr "Carte thermique"
2105
+
2106
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:93
2107
+ msgid "CSV Options"
2108
+ msgstr "Options CSV"
2109
+
2110
+ #: ../google-maps-easy/modules/csv/views/tpl/csvTabContent.php:99
2111
+ msgid "Delimiter"
2112
+ msgstr "Délimiteur"
2113
+
2114
+ #: ../google-maps-easy/modules/gmap/controller.php:23
2115
+ msgid "Map data not found"
2116
+ msgstr "Données cartographiques non trouvées"
2117
+
2118
+ #: ../google-maps-easy/modules/gmap/mod.php:19
2119
+ msgid "Add Map"
2120
+ msgstr "Ajouter une carte"
2121
+
2122
+ #: ../google-maps-easy/modules/gmap/mod.php:25
2123
+ msgid "All Maps"
2124
+ msgstr "Toutes les cartes"
2125
+
2126
+ #: ../google-maps-easy/modules/gmap/mod.php:35
2127
+ msgid "No Map Found"
2128
+ msgstr "Aucune carte trouvée"
2129
+
2130
+ #: ../google-maps-easy/modules/gmap/mod.php:98
2131
+ msgid "Please, check your Map Shortcode."
2132
+ msgstr "S'il vous plaît, consultez votre code court carte."
2133
+
2134
+ #: ../google-maps-easy/modules/gmap/mod.php:118
2135
+ msgid "Top Center"
2136
+ msgstr "En haut au centre"
2137
+
2138
+ #: ../google-maps-easy/modules/gmap/mod.php:119
2139
+ msgid "Top Left"
2140
+ msgstr "En haut à gauche"
2141
+
2142
+ #: ../google-maps-easy/modules/gmap/mod.php:120
2143
+ msgid "Top Right"
2144
+ msgstr "En haut à droite"
2145
+
2146
+ #: ../google-maps-easy/modules/gmap/mod.php:121
2147
+ msgid "Left Top"
2148
+ msgstr "En haut à gauche"
2149
+
2150
+ #: ../google-maps-easy/modules/gmap/mod.php:122
2151
+ msgid "Right Top"
2152
+ msgstr "En haut à droite"
2153
+
2154
+ #: ../google-maps-easy/modules/gmap/mod.php:123
2155
+ msgid "Left Center"
2156
+ msgstr "Centré à gauche"
2157
+
2158
+ #: ../google-maps-easy/modules/gmap/mod.php:124
2159
+ msgid "Right Center"
2160
+ msgstr "Au centre à droite"
2161
+
2162
+ #: ../google-maps-easy/modules/gmap/mod.php:125
2163
+ msgid "Left Bottom"
2164
+ msgstr "En bas à gauche"
2165
+
2166
+ #: ../google-maps-easy/modules/gmap/mod.php:126
2167
+ msgid "Right Bottom"
2168
+ msgstr "En bas à droite"
2169
+
2170
+ #: ../google-maps-easy/modules/gmap/mod.php:127
2171
+ msgid "Bottom Center"
2172
+ msgstr "Bas Centre"
2173
+
2174
+ #: ../google-maps-easy/modules/gmap/mod.php:128
2175
+ msgid "Bottom Left"
2176
+ msgstr "En bas à gauche"
2177
+
2178
+ #: ../google-maps-easy/modules/gmap/mod.php:129
2179
+ msgid "Bottom Right"
2180
+ msgstr "En bas à droite"
2181
+
2182
+ #: ../google-maps-easy/modules/gmap/mod.php:134
2183
+ msgid "meters"
2184
+ msgstr "mètres"
2185
+
2186
+ #: ../google-maps-easy/modules/gmap/mod.php:135
2187
+ msgid "miles"
2188
+ msgstr "miles"
2189
+
2190
+ #: ../google-maps-easy/modules/gmap/mod.php:161
2191
+ msgid "Slider"
2192
+ msgstr "Slider"
2193
+
2194
+ #: ../google-maps-easy/modules/gmap/mod.php:162
2195
+ msgid "Slider - Title and Img"
2196
+ msgstr "Slider - Titre et Img"
2197
+
2198
+ #: ../google-maps-easy/modules/gmap/mod.php:163
2199
+ msgid "Slider Vertical"
2200
+ msgstr "Slider Vertical"
2201
+
2202
+ #: ../google-maps-easy/modules/gmap/mod.php:164
2203
+ #: ../google-maps-easy/modules/gmap/mod.php:166
2204
+ msgid "Slider Vertical - Title and Img"
2205
+ msgstr "Slider Vertical - Titre et Img"
2206
+
2207
+ #: ../google-maps-easy/modules/gmap/mod.php:165
2208
+ msgid "Slider Vertical - Title and Description"
2209
+ msgstr "Slider Vertical - Titre et Description"
2210
+
2211
+ #: ../google-maps-easy/modules/gmap/mod.php:167
2212
+ msgid "Slider Table"
2213
+ msgstr "Slider Tab"
2214
+
2215
+ #: ../google-maps-easy/modules/gmap/mod.php:168
2216
+ msgid "Slider Checkbox Table"
2217
+ msgstr "Table de la case à cocher Slider"
2218
+
2219
+ #: ../google-maps-easy/modules/gmap/mod.php:194
2220
+ msgid "Google Map"
2221
+ msgstr "Google Map"
2222
+
2223
+ #: ../google-maps-easy/modules/gmap/models/gmap.php:94
2224
+ msgid "Please enter Map Name"
2225
+ msgstr "S'il vous plaît entrer nom de la carte"
2226
+
2227
+ #: ../google-maps-easy/modules/gmap/models/gmap.php:123
2228
+ #: ../google-maps-easy/modules/marker_groups/models/marker_groups.php:145
2229
+ msgid "Empty Params"
2230
+ msgstr "Params vides"
2231
+
2232
+ #: ../google-maps-easy/modules/gmap/models/gmap.php:132
2233
+ #: ../google-maps-easy/modules/gmap/models/gmap.php:233
2234
+ msgid "Invalid Map ID"
2235
+ msgstr "ID de carte invalide"
2236
+
2237
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:274
2238
+ msgid "Html options"
2239
+ msgstr "Options Html"
2240
+
2241
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:276
2242
+ msgid "Operations"
2243
+ msgstr "Opérations"
2244
+
2245
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:391
2246
+ msgid "Error inside google maps plugin."
2247
+ msgstr "Erreur à l'intérieur de google maps plugin."
2248
+
2249
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:395
2250
+ #: ../google-maps-easy/modules/gmap/views/gmap.php:400
2251
+ msgid ""
2252
+ "To use this feature, You need to reactivate your Google Maps Easy plugin."
2253
+ msgstr ""
2254
+ "Pour utiliser cette fonctionnalité, vous devez réactiver votre plugin Google "
2255
+ "Maps Easy."
2256
+
2257
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:8
2258
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:11
2259
+ msgid "Clone selected"
2260
+ msgstr "Clone sélectionné"
2261
+
2262
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapAdmin.php:33
2263
+ #, php-format
2264
+ msgid ""
2265
+ "You have no Maps for now. <a href='%s' style='font-style: italic;'>Create</"
2266
+ "a> your first Map!"
2267
+ msgstr ""
2268
+ "Vous n'avez pas de cartes pour l'instant. <a href='%s' style='font-style: "
2269
+ "italic;'>Créez</a> votre première carte !"
2270
+
2271
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapDrawMap.php:25
2272
+ msgid ""
2273
+ "This feature available in PRO version. You can get it <a href=\"\" target="
2274
+ "\"_blank\">here</a>."
2275
+ msgstr ""
2276
+ "Cette fonctionnalité est disponible en version PRO. Vous pouvez l'obtenir <a "
2277
+ "href=\"\" target=\"_blank\">ici</a>."
2278
+
2279
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapDrawMap.php:28
2280
+ msgid "You need to upgrade PRO plugin to latest version to use this feature"
2281
+ msgstr ""
2282
+ "Vous devez mettre à niveau le plugin PRO à la dernière version pour utiliser "
2283
+ "cette fonctionnalité"
2284
+
2285
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:4
2286
+ #, php-format
2287
+ msgid ""
2288
+ "This option is available in <a target='_blank' href='%s'>PRO version</a> "
2289
+ "only, you can get it <a target='_blank' href='%s'>here.</a>"
2290
+ msgstr ""
2291
+ "Cette option est disponible en <a target='_blank' href='%s'>version PRO</a> "
2292
+ "seulement, vous pouvez l'obtenir <a target='_blank' href='%s'>ici.</a>"
2293
+
2294
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:23
2295
+ msgid "Insert to Contact Form"
2296
+ msgstr "Insérer le formulaire de contact"
2297
+
2298
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:29
2299
+ msgid "Integrate with Membership"
2300
+ msgstr "Intégrer avec l'adhésion"
2301
+
2302
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:37
2303
+ msgid "Enable for Membership"
2304
+ msgstr "Activer l'adhésion"
2305
+
2306
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:44
2307
+ msgid "Map shortcode"
2308
+ msgstr "Mapper un shortcode"
2309
+
2310
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:45
2311
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:11
2312
+ #: modules/tables/views/tpl/tablesEditFormControls.php:11
2313
+ msgid "PHP code"
2314
+ msgstr "Code PHP"
2315
+
2316
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:47
2317
+ msgid "Shortcode will appear after you save map."
2318
+ msgstr "Shortcode apparaîtra après avoir sauvegraphié la carte."
2319
+
2320
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:58
2321
+ msgid "Map"
2322
+ msgstr "Carte"
2323
+
2324
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:66
2325
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:75
2326
+ msgid "New"
2327
+ msgstr "Créer"
2328
+
2329
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:82
2330
+ msgid "Heatmap Layer"
2331
+ msgstr "Heatmap Layer"
2332
+
2333
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:94
2334
+ msgid "Map Name"
2335
+ msgstr "Nom de la carte"
2336
+
2337
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:96
2338
+ msgid "Your map name"
2339
+ msgstr "Nom de votre carte"
2340
+
2341
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:108
2342
+ msgid "Map Width"
2343
+ msgstr "Largeur de la carte"
2344
+
2345
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:110
2346
+ msgid "Your map width"
2347
+ msgstr "Largeur de votre carte"
2348
+
2349
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:120
2350
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:153
2351
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1366
2352
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1420
2353
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1442
2354
+ msgid "Pixels"
2355
+ msgstr "Pixels"
2356
+
2357
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:123
2358
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:156
2359
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1332
2360
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1372
2361
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1424
2362
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1446
2363
+ msgid "Px"
2364
+ msgstr "Px"
2365
+
2366
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:127
2367
+ msgid "Percent"
2368
+ msgstr "Pourcent"
2369
+
2370
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:134
2371
+ msgid "Map Height"
2372
+ msgstr "Hauteur de la carte"
2373
+
2374
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:136
2375
+ msgid ""
2376
+ "Your map height.<br /><br />If Adapt map to screen height option is checked "
2377
+ "- map height will be recalculated on frontend and can be equals to:"
2378
+ "<ul><li>1) your device screen height - height from top of page to top of map "
2379
+ "(if screen height > height from top of page to top of map)</li><li>2) your "
2380
+ "device screen height (in other cases)</li></ul>Recalculation will be done "
2381
+ "for maps in page content and widgets except of maps which displaying in "
2382
+ "Google Maps Easy widget popup (Display as image mode)."
2383
+ msgstr ""
2384
+ "La hauteur de votre carte.<br><br>Si l'option Adapt map to screen height est "
2385
+ "vérifiée - la hauteur de la carte sera recalculée sur le frontend et peut "
2386
+ "être égale à :<ul><li>1) la hauteur de l'écran de votre appareil - hauteur "
2387
+ "du haut de la page en haut de la carte (si la hauteur de l'écran - hauteur "
2388
+ "de haut en haut de la carte)</li><li>2) hauteur de l'écran de votre appareil "
2389
+ "(dans d'autres cas)</li></ul>Le recalcul sera effectué pour les cartes dans "
2390
+ "le contenu de la page et les widgets, sauf pour les cartes qui s'affichent "
2391
+ "dans Google Maps Easy widget popup (Afficher en mode image)."
2392
+
2393
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:165
2394
+ msgid "Adapt map to screen height"
2395
+ msgstr "Adapter la carte à la hauteur de l'écran"
2396
+
2397
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:171
2398
+ msgid "Content Before"
2399
+ msgstr "Avant le contenu"
2400
+
2401
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:180
2402
+ msgid "Content After"
2403
+ msgstr "Après le contenu"
2404
+
2405
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:200
2406
+ msgid "Map type control"
2407
+ msgstr "Contrôle du type de carte"
2408
+
2409
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:202
2410
+ msgid ""
2411
+ "Control view for map type - you can see it in left upper corner by default"
2412
+ msgstr ""
2413
+ "Vue de contrôle pour le type de carte - vous pouvez le voir dans le coin "
2414
+ "supérieur gauche par défaut"
2415
+
2416
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:207
2417
+ msgid "Dropdown Menu"
2418
+ msgstr "Menu déroulant"
2419
+
2420
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:207
2421
+ msgid "Horizontal Bar"
2422
+ msgstr "Barre horizontale"
2423
+
2424
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:213
2425
+ msgid "Change type control position on map"
2426
+ msgstr "Changer la position de contrôle de type sur la carte"
2427
+
2428
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:220
2429
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:249
2430
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:282
2431
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:385
2432
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:605
2433
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:696
2434
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:713
2435
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:730
2436
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:754
2437
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:850
2438
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:991
2439
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1008
2440
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1025
2441
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1068
2442
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1108
2443
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1190
2444
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1465
2445
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1516
2446
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1762
2447
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1776
2448
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1798
2449
+ #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:70
2450
+ #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:52
2451
+ #: modules/options/views/tpl/optionsSettingsTabContent.php:52
2452
+ msgid "PRO option"
2453
+ msgstr "Option PRO"
2454
+
2455
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:228
2456
+ msgid "Zoom control"
2457
+ msgstr "Contrôle du zoom"
2458
+
2459
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:230
2460
+ msgid ""
2461
+ "Zoom control type on your map. Note, to view Zoom control on the map the "
2462
+ "Custom Map Controls option must be disabled."
2463
+ msgstr ""
2464
+ "Type de contrôle de zoom sur votre carte. Remarque, pour afficher le "
2465
+ "contrôle Zoom sur la carte, l'option Contrôles de carte personnalisée doit "
2466
+ "être désactivée."
2467
+
2468
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:236
2469
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:591
2470
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1288
2471
+ msgid "Default"
2472
+ msgstr "Par défaut"
2473
+
2474
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:242
2475
+ msgid "Change zoom control position on map"
2476
+ msgstr "Modifier la position de contrôle du zoom sur la carte"
2477
+
2478
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:253
2479
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:585
2480
+ #: modules/tables/views/tpl/tablesEditAdmin.php:585
2481
+ msgid "Notice"
2482
+ msgstr "Notification"
2483
+
2484
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:255
2485
+ msgid ""
2486
+ "Standard Zoom control will not displaying for this map, because the Custom "
2487
+ "Map Controls option enabled now."
2488
+ msgstr ""
2489
+ "Le contrôle de zoom standard ne s'affiche pas pour cette carte, car l'option "
2490
+ "Contrôles de carte personnalisée s'affiche maintenant."
2491
+
2492
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:263
2493
+ msgid "Street view control"
2494
+ msgstr "Street view contrôle"
2495
+
2496
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:265
2497
+ msgid ""
2498
+ "Street view control usually is located on right lower corner of your map"
2499
+ msgstr ""
2500
+ "Le contrôle de vue de rue est habituellement situé au coin inférieur droit "
2501
+ "de votre carte"
2502
+
2503
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:275
2504
+ msgid "Change street view control position on map"
2505
+ msgstr "Changer la position de contrôle de vue de rue sur la carte"
2506
+
2507
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:339
2508
+ msgid "Draggable"
2509
+ msgstr "Déplaçable"
2510
+
2511
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:341
2512
+ msgid "Enable or disable possibility to drag your map using mouse"
2513
+ msgstr ""
2514
+ "Activer ou désactiver la possibilité de faire glisser votre carte à l'aide "
2515
+ "de la souris"
2516
+
2517
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:350
2518
+ msgid "Mouse wheel to zoom"
2519
+ msgstr "Roue de souris pour zoomer"
2520
+
2521
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:352
2522
+ msgid ""
2523
+ "Sometimes you need to disable possibility to zoom your map using mouse "
2524
+ "wheel. This can be required for example - if you need to use your wheel for "
2525
+ "some other action, for example scroll your site even if mouse is over your "
2526
+ "map."
2527
+ msgstr ""
2528
+ "Parfois, vous devez désactiver la possibilité de zoomer votre carte à l'aide "
2529
+ "de la roue de la souris. Cela peut être nécessaire par exemple - si vous "
2530
+ "avez besoin d'utiliser votre roue pour une autre action, par exemple faire "
2531
+ "défiler votre site, même si la souris est sur votre carte."
2532
+
2533
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:363
2534
+ msgid "Double click to zoom"
2535
+ msgstr "Double clic pour zoomer"
2536
+
2537
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:365
2538
+ msgid ""
2539
+ "By default double left click on map will zoom it in. But you can change this "
2540
+ "here."
2541
+ msgstr ""
2542
+ "Par défaut, le double clic gauche sur la carte le zoome. Mais vous pouvez "
2543
+ "changer cela ici."
2544
+
2545
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:374
2546
+ msgid "Set Static"
2547
+ msgstr "Définir statique"
2548
+
2549
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:376
2550
+ msgid ""
2551
+ "Show map as a Static image. This will allow you to make it cheeper according "
2552
+ "to new Google Maps API usage Rates. Be aware - not all options will work in "
2553
+ "this mode!"
2554
+ msgstr ""
2555
+ "Afficher la carte sous forme d'image statique. Cela vous permettra de le "
2556
+ "rendre cheeper selon les nouveaux taux d'utilisation de l'API Google Maps. "
2557
+ "Soyez conscient - pas toutes les options fonctionneront dans ce mode!"
2558
+
2559
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:395
2560
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:44
2561
+ msgid "Map Center"
2562
+ msgstr "Centre de la carte"
2563
+
2564
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:397
2565
+ msgid ""
2566
+ "Sets map center. You can set map center in next ways: type address to use "
2567
+ "its coords, type the coords' values in appropriate fields or just drag the "
2568
+ "map on preview."
2569
+ msgstr ""
2570
+ "Définit le centre de la carte. Vous pouvez définir le centre de carte de la "
2571
+ "prochaine manière : tapez l'adresse pour utiliser ses coords, tapez les "
2572
+ "valeurs des coords dans les champs appropriés ou faites simplement glisser "
2573
+ "la carte sur aperçu."
2574
+
2575
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:411
2576
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1605
2577
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1949
2578
+ msgid "Latitude"
2579
+ msgstr "Latitude"
2580
+
2581
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:419
2582
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1619
2583
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1958
2584
+ msgid "Longitude"
2585
+ msgstr "Longitude"
2586
+
2587
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:430
2588
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:56
2589
+ msgid "Map Zoom"
2590
+ msgstr "Zoom de la carte"
2591
+
2592
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:432
2593
+ msgid ""
2594
+ "Sets map zoom.<br /><br />\n"
2595
+ "\t\t\t\t\t\t\t\t\t\t\t<b>Preset Zoom</b> - sets zoom value for map. You can "
2596
+ "change this value just change zoom on the map preview.<br /><br />\n"
2597
+ "\t\t\t\t\t\t\t\t\t\t\t<b>Fit Bounds</b> - map zoom will be changed on "
2598
+ "frontend in a way that all markers and figures will be visible.<br /><br />\n"
2599
+ "\t\t\t\t\t\t\t\t\t\t\t<b>Min Zoom Level</b> - sets minimum zoom level "
2600
+ "(maximum estrangement), which can be applied for map.<br /><br />\n"
2601
+ "\t\t\t\t\t\t\t\t\t\t\t<b>Max Zoom Level</b> - sets maximum zoom level "
2602
+ "(maximum approximation), which can be applied for map.\n"
2603
+ "\t\t\t\t\t\t\t\t\t\t\t"
2604
+ msgstr ""
2605
+ "Définit le zoom de la carte.<br /><br />br />.\n"
2606
+ "\t\t\t\t\t\t\t\t\t\t\t<b>Preset Zoom</b> - définit la valeur du zoom pour la "
2607
+ "carte. Vous pouvez changer cette valeur en changeant simplement le zoom sur "
2608
+ "l’aperçu de la carte.<br /><br />br />>.\n"
2609
+ "\t\t\t\t\t\t\t\t\t\t\t<b>Fit Bounds</b> - le zoom de la carte sera modifié "
2610
+ "en façade de manière à ce que tous les marqueurs et figures soient visibles. "
2611
+ "<br /><br />br />>.\n"
2612
+ "\t\t\t\t\t\t\t\t\t\t\t<b>Min Zoom Level</b> - définit le niveau de zoom "
2613
+ "minimum (éloignement maximum), qui peut être appliqué pour map.<br /><br /"
2614
+ "><br />.\n"
2615
+ "\t\t\t\t\t\t\t\t\t\t\t<b>Niveau de zoom maximum </b> - définit le niveau de "
2616
+ "zoom maximum (approximation maximum), qui peut être appliqué à la carte.\n"
2617
+ "\t\t\t\t\t\t\t\t\t\t\t"
2618
+
2619
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:446
2620
+ msgid "Preset Zoom"
2621
+ msgstr "Zoom préréglé"
2622
+
2623
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:446
2624
+ msgid "Fit Bounds"
2625
+ msgstr "Ajustement des limites"
2626
+
2627
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:453
2628
+ msgid "Zoom Level"
2629
+ msgstr "Niveau de zoom"
2630
+
2631
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:463
2632
+ msgid "Mobile Zoom Level"
2633
+ msgstr "Niveau Zoom Mobile"
2634
+
2635
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:474
2636
+ msgid "Min Zoom Level"
2637
+ msgstr "Niveau Min Zoom"
2638
+
2639
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:483
2640
+ msgid "Max Zoom Level"
2641
+ msgstr "Niveau du Zoom Max"
2642
+
2643
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:497
2644
+ msgid "Google Map Theme"
2645
+ msgstr "Thème Google Map"
2646
+
2647
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:499
2648
+ msgid ""
2649
+ "You can select your Google Map theme - Road Map, Hybrid, Satellite or "
2650
+ "Terrain - here. By default your map will have Road Map Google maps theme."
2651
+ msgstr ""
2652
+ "Vous pouvez sélectionner votre thème Google Map - Feuille de route, hybride, "
2653
+ "satellite ou terrain - ici. Par défaut, votre carte aura Road Map Google "
2654
+ "Maps thème."
2655
+
2656
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:503
2657
+ msgid "Road Map"
2658
+ msgstr "Carte routière"
2659
+
2660
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:503
2661
+ msgid "Hybrid"
2662
+ msgstr "Hybride"
2663
+
2664
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:503
2665
+ msgid "Satellite"
2666
+ msgstr "Satellite"
2667
+
2668
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:503
2669
+ msgid "Terrain"
2670
+ msgstr "Terrain"
2671
+
2672
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:511
2673
+ msgid "Map Stylization"
2674
+ msgstr "Stylisation des cartes"
2675
+
2676
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:513
2677
+ msgid ""
2678
+ "Make your map unique with our Map Themes, just try to change it here - and "
2679
+ "you will see results on your Map Preview."
2680
+ msgstr ""
2681
+ "Rendez votre carte unique avec nos thèmes de carte, essayez simplement de la "
2682
+ "changer ici - et vous verrez les résultats sur votre aperçu de carte."
2683
+
2684
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:523
2685
+ msgid "Get 300+ Themes with PRO"
2686
+ msgstr "Obtenez plus de 300 thèmes en version PRO"
2687
+
2688
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:531
2689
+ msgid "Markers Clusterization"
2690
+ msgstr "Clusterisation des marqueurs"
2691
+
2692
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:533
2693
+ msgid ""
2694
+ "If you have many markers - you can have a problems with viewing them when "
2695
+ "zoom out for example: they will just cover each-other. Marker clusterization "
2696
+ "can solve this problem by grouping your markers in groups when they are too "
2697
+ "close to each-other."
2698
+ msgstr ""
2699
+ "Si vous avez de nombreux marqueurs - vous pouvez avoir un problème avec leur "
2700
+ "visualisation lors du zoom arrière par exemple: ils vont simplement couvrir "
2701
+ "les uns les autres. La clusterisation des marqueurs peut résoudre ce "
2702
+ "problème en regroupant vos marqueurs en groupes lorsqu'ils sont trop proches "
2703
+ "les uns des autres."
2704
+
2705
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:537
2706
+ msgid "Base Clusterization"
2707
+ msgstr "Clusterisation de base"
2708
+
2709
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:549
2710
+ msgid "/gmap/img/m1.png"
2711
+ msgstr "/gmap/img/m1.png"
2712
+
2713
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:566
2714
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1083
2715
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1581
2716
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:83
2717
+ msgid "Upload Icon"
2718
+ msgstr "Télécharger une icône"
2719
+
2720
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:567
2721
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:84
2722
+ msgid "Default Icon"
2723
+ msgstr "Icône par défaut"
2724
+
2725
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:571
2726
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:58
2727
+ msgid "Cluster Icon"
2728
+ msgstr "Icône de cluster"
2729
+
2730
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:581
2731
+ msgid "Cluster Area Size"
2732
+ msgstr "Taille de la zone de cluster"
2733
+
2734
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:583
2735
+ msgid ""
2736
+ "Sets the grid size of cluster. The higher the size - the more area of "
2737
+ "capture the markers to the cluster."
2738
+ msgstr ""
2739
+ "Définit la taille de la grille de cluster. Plus la taille est élevée - plus "
2740
+ "la zone de capture des marqueurs à l'amas."
2741
+
2742
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:600
2743
+ msgid "Markers List"
2744
+ msgstr "Liste des marqueurs"
2745
+
2746
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:602
2747
+ msgid ""
2748
+ "Display all map markers - as list below Your map. This will help your users "
2749
+ "get more info about your markers and find required marker more faster."
2750
+ msgstr ""
2751
+ "Afficher tous les marqueurs de carte - comme liste ci-dessous Votre carte. "
2752
+ "Cela aidera vos utilisateurs à obtenir plus d'informations sur vos marqueurs "
2753
+ "et à trouver le marqueur requis plus rapidement."
2754
+
2755
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:609
2756
+ msgid "Select Markers List type"
2757
+ msgstr "Sélectionnez le type de liste de marqueurs"
2758
+
2759
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:616
2760
+ msgid "Markers List Color"
2761
+ msgstr "Couleur de liste de marqueurs"
2762
+
2763
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:623
2764
+ msgid "Hide empty blocks"
2765
+ msgstr "Masquer les blocs vides"
2766
+
2767
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:633
2768
+ msgid "Collapse markers list on mobile"
2769
+ msgstr "Liste des marqueurs d’effondrement sur mobile"
2770
+
2771
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:644
2772
+ msgid "Autoplay options"
2773
+ msgstr "Options de lecture automatique"
2774
+
2775
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:645
2776
+ msgid ""
2777
+ "Using for all markers lists types with slides.<br /><br /><b>Steps</b>: "
2778
+ "Steps to go for each auto play request. Possible value can be 1, 2, -1, "
2779
+ "-2 ...<br /><br /><b>Idle</b>: Interval to go for next slide since the "
2780
+ "previous stopped if the slider is auto playing, default value is 3000<br /"
2781
+ "><br /><b>Duration</b>: Specifies default duration (swipe) for slide in "
2782
+ "milliseconds, default value is 160"
2783
+ msgstr ""
2784
+ "L'utilisation de tous les marqueurs répertorie les types de diapositives."
2785
+ "<br><br><b>Étapes</b>: Étapes à suivre pour chaque demande de lecture "
2786
+ "automatique. La valeur possible peut être 1, 2, -1, -2 ...<br><br><b>Idle</"
2787
+ "b>: Intervalle pour aller pour la diapositive suivante depuis l'arrêt "
2788
+ "précédent si le curseur est en lecture automatique, la valeur par défaut est "
2789
+ "de 3000<br><br><b>Durée</b>: Spécifie la durée par défaut (balayage) pour "
2790
+ "glisser en millisecondes, la valeur par défaut est de 160"
2791
+
2792
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:652
2793
+ msgid "Enable Autoplay"
2794
+ msgstr "Activer la lecture auto"
2795
+
2796
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:660
2797
+ msgid "Steps"
2798
+ msgstr "Étapes"
2799
+
2800
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:670
2801
+ msgid "Idle (milliseconds)"
2802
+ msgstr "Idle (millisecondes)"
2803
+
2804
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:678
2805
+ msgid "Duration (milliseconds)"
2806
+ msgstr "Durée (millisecondes)"
2807
+
2808
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:691
2809
+ msgid "Traffic Layer"
2810
+ msgstr "Traffic Layer"
2811
+
2812
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:693
2813
+ msgid "Add real-time traffic information to your map."
2814
+ msgstr "Ajoutez des informations de trafic en temps réel à votre carte."
2815
+
2816
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:708
2817
+ msgid "Transit Layer"
2818
+ msgstr "Transports en commun"
2819
+
2820
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:710
2821
+ msgid ""
2822
+ "Display the public transit network of a city on your map. When the Transit "
2823
+ "Layer is enabled, and the map is centered on a city that supports transit "
2824
+ "information, the map will display major transit lines as thick, colored "
2825
+ "lines."
2826
+ msgstr ""
2827
+ "Affichez le réseau de transport en commun d'une ville sur votre carte. "
2828
+ "Lorsque la couche de transport en commun est activée et que la carte est "
2829
+ "centrée sur une ville qui prend en charge l'information sur le transport en "
2830
+ "commun, la carte affiche les principales lignes de transport en commun sous "
2831
+ "forme de lignes épaisses et colorées."
2832
+
2833
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:725
2834
+ msgid "Bicycling Layer"
2835
+ msgstr "Pistes cyclables"
2836
+
2837
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:727
2838
+ msgid ""
2839
+ "Add a layer of bike paths, suggested bike routes and other overlays specific "
2840
+ "to bicycling usage on top of the given map.Dark green routes indicated "
2841
+ "dedicated bicycle routes. Light green routes indicate streets with dedicated "
2842
+ "bike lanes. Dashed routes indicate streets or paths otherwise recommended "
2843
+ "for bicycle usage."
2844
+ msgstr ""
2845
+ "Ajoutez une couche de pistes cyclables, des pistes cyclables suggérées et "
2846
+ "d'autres superpositions spécifiques à l'utilisation du vélo en plus de la "
2847
+ "carte donnée. Les itinéraires vert foncé indiquaient des pistes cyclables "
2848
+ "réservées. Des routes vert clair indiquent les rues avec des pistes "
2849
+ "cyclables réservées. Les itinéraires en pointillés indiquent les rues ou les "
2850
+ "sentiers autrement recommandés pour l'utilisation du vélo."
2851
+
2852
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:745
2853
+ msgid "Add KML layers"
2854
+ msgstr "Ajouter des Loyers KML"
2855
+
2856
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:747
2857
+ msgid ""
2858
+ "Add KML files to display custom layers on the map. Additional options:<br /"
2859
+ "><br /><b>Enable KML layers filter</b> - add form to map for dynamically "
2860
+ "enable / disable KML layers and sublayers. <br /><br /> <b>Load KML faster</"
2861
+ "b> - Use for large KML files. <b>Warning </b>- filters will stop working!<br"
2862
+ msgstr ""
2863
+ "Ajoutez des fichiers KML pour afficher des couches personnalisées sur la "
2864
+ "carte. Options supplémentaires :<br><br>Activer le filtre des <b>couches "
2865
+ "KML</b> - ajouter de la forme à la carte pour activer / désactiver "
2866
+ "dynamiquement les couches et les sous-couches KML.<br><br> <b>Chargez KML "
2867
+ "plus rapidement</b> - Utilisez pour les fichiers KML volumineux. "
2868
+ "<b>Attention </b>- les filtres cesseront de fonctionner!<br>"
2869
+
2870
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:763
2871
+ msgid "Load kml faster"
2872
+ msgstr "Chargez kml plus rapidement"
2873
+
2874
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:777
2875
+ msgid "Enable KML layers filter"
2876
+ msgstr "Activer le filtre KML"
2877
+
2878
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:783
2879
+ msgid "Enter KML file URL"
2880
+ msgstr "Entrez l'URL du fichier KML"
2881
+
2882
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:786
2883
+ msgid "Hide Sublayers at KML filter"
2884
+ msgstr "Masquer les sous-couches au filtre KML"
2885
+
2886
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:789
2887
+ msgid "Remove KML field"
2888
+ msgstr "Supprimer le champ KML"
2889
+
2890
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:805
2891
+ msgid "or Upload KML file"
2892
+ msgstr "ou Télécharger le fichier KML"
2893
+
2894
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:808
2895
+ msgid "Import markers from layer"
2896
+ msgstr "Marqueurs d'importation du Layer"
2897
+
2898
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:829
2899
+ msgid "Add more files"
2900
+ msgstr "Ajouter plus de fichiers"
2901
+
2902
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:839
2903
+ msgid "Custom Map Controls"
2904
+ msgstr "Contrôles de carte personnalisés"
2905
+
2906
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:844
2907
+ msgid "Add custom map controls to the map."
2908
+ msgstr "Ajouter des contrôles de carte personnalisés."
2909
+
2910
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:860
2911
+ msgid "Controls type"
2912
+ msgstr "Type de contrôle"
2913
+
2914
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:863
2915
+ msgid "Square"
2916
+ msgstr "Carré"
2917
+
2918
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:863
2919
+ msgid "Rounded edges"
2920
+ msgstr "Bords arrondis"
2921
+
2922
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:863
2923
+ msgid "Round"
2924
+ msgstr "Rond"
2925
+
2926
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:869
2927
+ msgid "Background color"
2928
+ msgstr "Couleur d’arrière plan"
2929
+
2930
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:877
2931
+ msgid "Text color"
2932
+ msgstr "Couleur du texte"
2933
+
2934
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:885
2935
+ msgid "Controls unit of measurement"
2936
+ msgstr "Unité de mesure de contrôle"
2937
+
2938
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:895
2939
+ msgid "Controls position"
2940
+ msgstr "Position de contrôle"
2941
+
2942
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:905
2943
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1206
2944
+ msgid "Min Search Radius:"
2945
+ msgstr "Min Search Radius:"
2946
+
2947
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:913
2948
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1214
2949
+ msgid "Max Search Radius:"
2950
+ msgstr "Rayon de recherche maximum:"
2951
+
2952
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:921
2953
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1222
2954
+ msgid "Search Step:"
2955
+ msgstr "Étape de recherche:"
2956
+
2957
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:929
2958
+ msgid "Search Country"
2959
+ msgstr "Rechercher Pays"
2960
+
2961
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:947
2962
+ msgid "Use improved markers search"
2963
+ msgstr "Utiliser la recherche de marqueurs améliorée"
2964
+
2965
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:949
2966
+ msgid ""
2967
+ "This option allows you to search and show multiple markers for selected "
2968
+ "date, categories and keywords. NOTE: it removes separate markers categories "
2969
+ "filter button from custom map controls."
2970
+ msgstr ""
2971
+ "Cette option vous permet de rechercher et d'afficher plusieurs marqueurs "
2972
+ "pour la date sélectionnée, les catégories et les mots clés. REMARQUE : il "
2973
+ "supprime les catégories de marqueurs séparées du bouton de filtre des "
2974
+ "contrôles de carte personnalisés."
2975
+
2976
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:961
2977
+ msgid "Center Search Button"
2978
+ msgstr "Centrer le bouton de recherche"
2979
+
2980
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:963
2981
+ msgid "Check this option if you want to separate and center search button"
2982
+ msgstr ""
2983
+ "Vérifiez cette option si vous souhaitez séparer et centrer le bouton de "
2984
+ "recherche"
2985
+
2986
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:976
2987
+ msgid "Disable filter button"
2988
+ msgstr "Bouton de filtre de désactivé"
2989
+
2990
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:978
2991
+ msgid "Check this option if you want to disable filters button on frontend"
2992
+ msgstr ""
2993
+ "Vérifiez cette option si vous souhaitez désactiver le bouton filtres sur "
2994
+ "frontend"
2995
+
2996
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:986
2997
+ msgid "Full Screen Button"
2998
+ msgstr "Bouton Plein Ecran"
2999
+
3000
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:988
3001
+ msgid "Add a button on map to open it full screen."
3002
+ msgstr "Ajoutez un bouton sur la carte pour l'ouvrir en plein écran."
3003
+
3004
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1003
3005
+ msgid "Hide POI"
3006
+ msgstr "Masquer POI"
3007
+
3008
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1005
3009
+ msgid ""
3010
+ "Hide the Points Of Interest - landmark or other object, the marked points on "
3011
+ "the map, for example: hotels, campsites, fuel stations etc."
3012
+ msgstr ""
3013
+ "Masquer les points d'intérêt - point de repère ou autre objet, les points "
3014
+ "marqués sur la carte, par exemple: hôtels, campings, stations-service, etc."
3015
+
3016
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1020
3017
+ msgid "Hide Countries"
3018
+ msgstr "Cacher Pays"
3019
+
3020
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1022
3021
+ msgid "Hide all administrative data about countries: names, borders etc."
3022
+ msgstr ""
3023
+ "Masquer toutes les données administratives sur les pays : noms, frontières, "
3024
+ "etc."
3025
+
3026
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1037
3027
+ msgid "Hide Tooltips of Markers"
3028
+ msgstr "Masquer les outils des marqueurs"
3029
+
3030
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1039
3031
+ msgid "Hide the tooltips, which displayed by mouse hover on markers' icons."
3032
+ msgstr ""
3033
+ "Masquer les pointes d'outils, qui s'affichent par la souris planer sur les "
3034
+ "icônes des marqueurs."
3035
+
3036
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1050
3037
+ msgid "Center on current opened marker"
3038
+ msgstr "Centre sur le marqueur ouvert courant"
3039
+
3040
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1052
3041
+ msgid ""
3042
+ "On frontend the map will be centered on current marker with opened info "
3043
+ "window."
3044
+ msgstr ""
3045
+ "Sur le frontend la carte sera centrée sur le marqueur actuel avec fenêtre "
3046
+ "d'information ouverte."
3047
+
3048
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1063
3049
+ msgid "Center on current user location"
3050
+ msgstr "Centre sur l'emplacement actuel de l'utilisateur"
3051
+
3052
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1065
3053
+ msgid "On frontend map will be centered on current user location."
3054
+ msgstr ""
3055
+ "Sur la carte frontend sera centrée sur l'emplacement actuel de l'utilisateur."
3056
+
3057
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1094
3058
+ msgid "Add markers on frontend"
3059
+ msgstr "Ajouter des marqueurs sur le frontend"
3060
+
3061
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1096
3062
+ msgid ""
3063
+ "You can add markers at the current map with the frontend using the form, "
3064
+ "which can be displayed using the shortcode (it placed below preview map). "
3065
+ "Additional options that affect the operation of the form:<br /><br /"
3066
+ "><b>Logged In Users Only</b> - form will be displayed only for logged in "
3067
+ "users.<br /><br /><b>Disable WP Editor</b> - disable / enable WP Editor for "
3068
+ "the Marker Description field of the form.<br /><br /><b>Delete markers</b> - "
3069
+ "disable / enable interface for deleting markers on frontend. Each user can "
3070
+ "delete only his own markers.<br /><br /><b>Use markers categories</b> - "
3071
+ "disable / enable interface for choose the marker category on frontend.<br /"
3072
+ "><br /><b>Use limits for marker's adding</b> - allows you to limit the "
3073
+ "number of markers, which user can add from one IP address at the current map "
3074
+ "for a certain amount of time.<br /><br /><b>Max marker's count</b> - the "
3075
+ "maximum number of markers, which can be added over certain amount of time."
3076
+ "<br /><br /><b>For allotted time (minutes)</b> - the number of minutes, "
3077
+ "during which you can add the maximum number of markers.<br /><br />For "
3078
+ "example, during three minutes you can add only two markers at the map. If "
3079
+ "you try to add a third marker - the form will not be saved and you will see "
3080
+ "the notice with amount of time you must wait. After the right amount of time "
3081
+ "will pass - you can add next two markers, etc.<br /><br />You can add "
3082
+ "markers at the current map with the frontend using the form, which can be "
3083
+ "displayed using the shortcode. Please place this shortcode at the same page "
3084
+ "as it's map map. Please note that the page will be overloaded after adding "
3085
+ "marker."
3086
+ msgstr ""
3087
+ "Vous pouvez ajouter des marqueurs à la carte actuelle avec le frontend à "
3088
+ "l'aide du formulaire, qui peut être affiché à l'aide du code court (il a "
3089
+ "placé ci-dessous la carte de prévisualisation). Options supplémentaires qui "
3090
+ "affectent le fonctionnement du formulaire :<br><br><b>Logged In Users Only</"
3091
+ "b> - formulaire ne sera affiché que pour les utilisateurs connectés."
3092
+ "<br><br><b>Désactiver WP Editor</b> - désactiver / activer WP Editor pour le "
3093
+ "champ Descriptif marker du formulaire.<br><br><b>Supprimer les marqueurs</b> "
3094
+ "- désactiver / activer l'interface pour supprimer les marqueurs sur "
3095
+ "frontend. Chaque utilisateur ne peut supprimer que ses propres marqueurs."
3096
+ "<br><br>Utilisez les catégories de <b>marqueurs</b> - désactiver / activer "
3097
+ "l'interface pour choisir la catégorie de marqueurs sur frontend."
3098
+ "<br><br><b>Limites d'utilisation pour l'ajout de marqueur</b> - vous permet "
3099
+ "de limiter le nombre de marqueurs, que l'utilisateur peut ajouter à partir "
3100
+ "d'une adresse IP à la carte actuelle pour un certain laps de temps."
3101
+ "<br><br><b>Nombre de marqueurs maximaux</b> - le nombre maximum de "
3102
+ "marqueurs, qui peut être ajouté sur une certaine quantité de temps."
3103
+ "<br><br>Pour le <b>temps alloué (minutes)</b> - le nombre de minutes, au "
3104
+ "cours de laquelle vous pouvez ajouter le nombre maximum de marqueurs."
3105
+ "<br><br>Par exemple, pendant trois minutes, vous pouvez ajouter seulement "
3106
+ "deux marqueurs à la carte. Si vous essayez d'ajouter un troisième marqueur - "
3107
+ "le formulaire ne sera pas enregistré et vous verrez l'avis avec le temps que "
3108
+ "vous devez attendre. Après la bonne quantité de temps passera - vous pouvez "
3109
+ "ajouter les deux marqueurs suivants, etc.<br><br>Vous pouvez ajouter des "
3110
+ "marqueurs à la carte actuelle avec le frontend à l'aide du formulaire, qui "
3111
+ "peut être affiché à l'aide du code court. S'il vous plaît placer ce code "
3112
+ "court à la même page que sa carte. Veuillez noter que la page sera "
3113
+ "surchargée après l'ajout de marqueur."
3114
+
3115
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1127
3116
+ msgid "Logged In Users Only"
3117
+ msgstr "Utilisateurs connectés seulement"
3118
+
3119
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1134
3120
+ msgid "Disable WP Editor"
3121
+ msgstr "Désactiver l'éditeur WP"
3122
+
3123
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1141
3124
+ msgid "Delete markers"
3125
+ msgstr "Supprimer les lieux"
3126
+
3127
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1148
3128
+ msgid "Use markers categories"
3129
+ msgstr "Utiliser les catégories de marqueurs"
3130
+
3131
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1155
3132
+ msgid "Use limits for marker's adding"
3133
+ msgstr "Utiliser des limites pour l'ajout de marqueurs"
3134
+
3135
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1160
3136
+ msgid "Max marker's count"
3137
+ msgstr "Nombre de marqueurs max"
3138
+
3139
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1168
3140
+ msgid "For allotted time (minutes)"
3141
+ msgstr "Pour le temps imparti (minutes)"
3142
+
3143
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1181
3144
+ msgid "Use Places Toolbar"
3145
+ msgstr "Utilisez Lieux Barre d'outils"
3146
+
3147
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1183
3148
+ msgid ""
3149
+ "Activate the toolbar for search Places (restaurants, schools, museums, etc.) "
3150
+ "on the map. Use the shortcode to display toolbar on wherever you need, but "
3151
+ "toolbar must be placed on the same page as its map."
3152
+ msgstr ""
3153
+ "Activer la barre d'outils pour les lieux de recherche (restaurants, écoles, "
3154
+ "musées, etc.) sur la carte. Utilisez le code court pour afficher la barre "
3155
+ "d'outils là où vous en avez besoin, mais la barre d'outils doit être placée "
3156
+ "sur la même page que sa carte."
3157
+
3158
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1234
3159
+ msgid "Filter background"
3160
+ msgstr "Fond du filtre"
3161
+
3162
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1236
3163
+ msgid "Background color for markers filter. (for 7 markers list type)"
3164
+ msgstr ""
3165
+ "Couleur de fond pour filtre de marqueurs. (pour 7 marqueurs type de liste)"
3166
+
3167
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1247
3168
+ msgid "Filters select all button title"
3169
+ msgstr "Les filtres sélectionnent tous les titres du bouton"
3170
+
3171
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1249
3172
+ msgid "Filters select all button title. (for 7 markers list type)"
3173
+ msgstr ""
3174
+ "Les filtres sélectionnent tous les titres du bouton. (pour 7 marqueurs type "
3175
+ "de liste)"
3176
+
3177
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1260
3178
+ msgid "Show all parent categories in Filter"
3179
+ msgstr "Afficher toutes les catégories de parents dans Filtre"
3180
+
3181
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1262
3182
+ msgid ""
3183
+ "Show parent categories even if they have no markers, but their child "
3184
+ "categories have."
3185
+ msgstr ""
3186
+ "Afficher les catégories de parents, même s'ils n'ont pas de marqueurs, mais "
3187
+ "leurs catégories d'enfants ont."
3188
+
3189
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1273
3190
+ msgid "Info Window"
3191
+ msgstr "Fenêtre d'informations"
3192
+
3193
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1275
3194
+ msgid "Parameters of markers / shapes info-window PopUp"
3195
+ msgstr "Paramètres des marqueurs / formes info-fenêtre PopUp"
3196
+
3197
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1282
3198
+ msgid "Appearance"
3199
+ msgstr "Apparence"
3200
+
3201
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1284
3202
+ msgid "Choose the appearance type of infowindow."
3203
+ msgstr "Choisissez le type d'apparence de l'infowindow."
3204
+
3205
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1288
3206
+ msgid "Rounded Edges"
3207
+ msgstr "Bords arrondis"
3208
+
3209
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1297
3210
+ msgid "Hide Close Button"
3211
+ msgstr "Masquer le bouton Fermer"
3212
+
3213
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1305
3214
+ msgid "Width"
3215
+ msgstr "Largeur"
3216
+
3217
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1307
3218
+ msgid "Width of info window"
3219
+ msgstr "Largeur de fenêtre d'information"
3220
+
3221
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1321
3222
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1361
3223
+ msgid "Auto"
3224
+ msgstr "Automatique"
3225
+
3226
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1326
3227
+ msgid ""
3228
+ "The value defines maximum width of the description. Window will be drawn "
3229
+ "according to content size but not wider than the value."
3230
+ msgstr ""
3231
+ "La valeur définit la largeur maximale de la description. La fenêtre sera "
3232
+ "dessinée en fonction de la taille du contenu, mais pas plus large que la "
3233
+ "valeur."
3234
+
3235
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1345
3236
+ msgid "Height"
3237
+ msgstr "Hauteur"
3238
+
3239
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1347
3240
+ msgid "Height of info window"
3241
+ msgstr "Hauteur de la fenêtre d'information"
3242
+
3243
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1385
3244
+ msgid "Title Color"
3245
+ msgstr "Couleur du titre"
3246
+
3247
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1387
3248
+ msgid "You can set your info window title color here"
3249
+ msgstr "Vous pouvez définir votre couleur de titre de fenêtre d'info ici"
3250
+
3251
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1397
3252
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:47
3253
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:189
3254
+ #: modules/tables/views/tpl/tablesEditAdmin.php:189
3255
+ msgid "Background Color"
3256
+ msgstr "Couleur d’arrière-plan"
3257
+
3258
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1399
3259
+ msgid "You can set your info window background color here"
3260
+ msgstr "Vous pouvez définir votre couleur de fond de fenêtre d'info ici"
3261
+
3262
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1409
3263
+ msgid "Title Font Size"
3264
+ msgstr "Taille de la police du titre"
3265
+
3266
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1411
3267
+ msgid "You can set your info window title font size here"
3268
+ msgstr ""
3269
+ "Vous pouvez définir votre taille de police de titre de fenêtre d'information "
3270
+ "ici"
3271
+
3272
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1431
3273
+ msgid "Description Font Size"
3274
+ msgstr "Taille de la police pour la description"
3275
+
3276
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1433
3277
+ msgid "You can set your info window description font size here"
3278
+ msgstr ""
3279
+ "Vous pouvez définir la taille de la police de description de fenêtre "
3280
+ "d'information ici"
3281
+
3282
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1456
3283
+ msgid "Directions Button"
3284
+ msgstr "Bouton Itinéraire"
3285
+
3286
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1459
3287
+ msgid ""
3288
+ "Add a button at marker info window to get direction from the entered address "
3289
+ "to the marker. If Show route data option is enabled - the total route time "
3290
+ "and distance will be shown by click on the route polyline."
3291
+ msgstr ""
3292
+ "Ajoutez un bouton à la fenêtre d'information de marqueur pour obtenir la "
3293
+ "direction de l'adresse saisie au marqueur. Si l'option de données "
3294
+ "d'itinéraire afficher est activée - le temps et la distance d'itinéraire "
3295
+ "total seront affichés par clic sur la polyligne d'itinéraire."
3296
+
3297
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1478
3298
+ msgid "Show alternate routes"
3299
+ msgstr "Afficher d'autres itinéraires"
3300
+
3301
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1486
3302
+ msgid "Show route data"
3303
+ msgstr "Afficher les données d'itinéraire"
3304
+
3305
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1494
3306
+ msgid "Show route steps"
3307
+ msgstr "Afficher les étapes de l'itinéraire"
3308
+
3309
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1502
3310
+ msgid "Use miles"
3311
+ msgstr "Utiliser des miles"
3312
+
3313
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1511
3314
+ msgid "Print Button"
3315
+ msgstr "Bouton Imprimer"
3316
+
3317
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1513
3318
+ msgid "Add Print button to markers info window"
3319
+ msgstr "Ajouter le bouton d'impression à la fenêtre d'information de marqueurs"
3320
+
3321
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1542
3322
+ msgid "Your marker title"
3323
+ msgstr "Votre titre de marqueur"
3324
+
3325
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1555
3326
+ msgid ""
3327
+ "Write here all text, that you want to appear in marker info-window PopUp"
3328
+ msgstr ""
3329
+ "Écrivez ici tout le texte, que vous voulez apparaître dans le marqueur info-"
3330
+ "fenêtre PopUp"
3331
+
3332
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1571
3333
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:209
3334
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:388
3335
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:601
3336
+ #: modules/tables/views/tpl/tablesEditorFooter.php:209
3337
+ #: modules/tables/views/tpl/tablesEditorFooter.php:388
3338
+ #: modules/tables/views/tpl/tablesEditorFooter.php:601
3339
+ msgid "Icon"
3340
+ msgstr "Icône"
3341
+
3342
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1573
3343
+ msgid "Your marker Icon, that will appear on your map for this marker"
3344
+ msgstr "L'icône de votre marqueur, qui apparaîtra sur votre carte"
3345
+
3346
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1593
3347
+ msgid "Search your location by address, just start typing here"
3348
+ msgstr ""
3349
+ "Recherchez votre emplacement par adresse, il suffit de commencer à taper ici"
3350
+
3351
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1607
3352
+ msgid "Latitude for your marker"
3353
+ msgstr "Latitude pour votre marqueur"
3354
+
3355
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1621
3356
+ msgid "Longitude for your marker"
3357
+ msgstr "Longitude pour votre marqueur"
3358
+
3359
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1635
3360
+ msgid "Choose marker category"
3361
+ msgstr "Choisir la catégorie du marqueur"
3362
+
3363
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1649
3364
+ msgid "Marker Link"
3365
+ msgstr "Lien du marqueur"
3366
+
3367
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1651
3368
+ msgid "Link for opening by click on the marker"
3369
+ msgstr "Lien à ouvrir lors du click sur le marqueur"
3370
+
3371
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1667
3372
+ msgid "Open in new window"
3373
+ msgstr "Ouvrir dans une nouvelle fenêtre"
3374
+
3375
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1675
3376
+ msgid "Show description by default"
3377
+ msgstr "Afficher la description par défaut"
3378
+
3379
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1677
3380
+ msgid "Open marker description when map load"
3381
+ msgstr "Ouvrir la description du marqueur au chargement de la carte"
3382
+
3383
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1687
3384
+ msgid "Show description by mouse hover"
3385
+ msgstr "Montrer la description en survolant à la souris"
3386
+
3387
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1689
3388
+ msgid "Open marker description by mouse hover"
3389
+ msgstr "Ouvrez la description de marqueur par vol stationnaire de souris"
3390
+
3391
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1699
3392
+ msgid "Hide description on mouse leave"
3393
+ msgstr "Masquer la description en survolant à la souris"
3394
+
3395
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1701
3396
+ msgid "Hide description when mouse leaves the marker area"
3397
+ msgstr "Masquer la description lorsque la souris quitte la zone du marqueur"
3398
+
3399
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1711
3400
+ msgid "Marker List Default Image"
3401
+ msgstr "Image par défaut de liste de marqueurs"
3402
+
3403
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1713
3404
+ msgid ""
3405
+ "If there is no image tag in the marker description - this image will be used "
3406
+ "for displaying in the map's markers list"
3407
+ msgstr ""
3408
+ "S'il n'y a pas d'étiquette d'image dans la description du marqueur - cette "
3409
+ "image sera utilisée pour s'afficher dans la liste des marqueurs de la carte"
3410
+
3411
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1744
3412
+ msgid "Exclude from Cluster"
3413
+ msgstr "Exclure du cluster"
3414
+
3415
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1746
3416
+ msgid ""
3417
+ "Exclude marker from cluster if Markers Clusterization option is enabled."
3418
+ msgstr ""
3419
+ "Exclure le marqueur du cluster si l'option de clusterisation des marqueurs "
3420
+ "est activée."
3421
+
3422
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1757
3423
+ msgid "Display period for the markers"
3424
+ msgstr "Période d'affichage pour les marqueurs"
3425
+
3426
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1759
3427
+ msgid ""
3428
+ "Display markers on the map by a selected period. A marker will automatically "
3429
+ "start to appear on the specified date and disappear automatically at the "
3430
+ "appointed time."
3431
+ msgstr ""
3432
+ "Afficher les marqueurs sur la carte par une période sélectionnée. Un "
3433
+ "marqueur commence automatiquement à apparaître à la date spécifiée et "
3434
+ "disparaît automatiquement à l'heure prévue."
3435
+
3436
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1771
3437
+ msgid "Period From"
3438
+ msgstr "Période du"
3439
+
3440
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1793
3441
+ msgid "Period To"
3442
+ msgstr "Période jusqu’à"
3443
+
3444
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1827
3445
+ msgid "Figure Name"
3446
+ msgstr "Nom de la figure"
3447
+
3448
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1829
3449
+ msgid "Your figure title"
3450
+ msgstr "Votre titre de figure"
3451
+
3452
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1840
3453
+ msgid "Figure Type"
3454
+ msgstr "Type de figure"
3455
+
3456
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1842
3457
+ msgid ""
3458
+ "Type of your figure:<br /><br /><b>Polyline</b> - a series of straight "
3459
+ "segments on the map.<br /><br /><b>Polygon</b> - area enclosed by a closed "
3460
+ "path (or loop), which is defined by a series of coordinates.<br /><br /"
3461
+ "><b>Circle</b> - circle shape,defined by center coordinates and radius."
3462
+ msgstr ""
3463
+ "Type de votre figure:<br><br><b>Polyline</b> - une série de segments droits "
3464
+ "sur la carte.<br><br><b>Polygone</b> - zone entourée d'un chemin fermé (ou "
3465
+ "boucle), qui est définie par une série de coordonnées.<br><br><b>Cercle</b> "
3466
+ "- forme de cercle, définie par les coordonnées du centre et le rayon."
3467
+
3468
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1850
3469
+ msgid "Polyline"
3470
+ msgstr "Polyligne"
3471
+
3472
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1851
3473
+ msgid "Polygon"
3474
+ msgstr "Polygone"
3475
+
3476
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1852
3477
+ msgid "Circle"
3478
+ msgstr "Cercle"
3479
+
3480
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1861
3481
+ msgid "Line Color"
3482
+ msgstr "Couleur de ligne"
3483
+
3484
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1868
3485
+ msgid "Line Opacity"
3486
+ msgstr "Opacité de la ligne"
3487
+
3488
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1879
3489
+ msgid "Line Weight"
3490
+ msgstr "Epaisseur de trait"
3491
+
3492
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1887
3493
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:57
3494
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:288
3495
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:323
3496
+ #: modules/tables/views/tpl/tablesEditorFooter.php:57
3497
+ #: modules/tables/views/tpl/tablesEditorFooter.php:288
3498
+ #: modules/tables/views/tpl/tablesEditorFooter.php:323
3499
+ msgid "Fill Color"
3500
+ msgstr "Couleur de remplissage"
3501
+
3502
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1894
3503
+ msgid "Fill Opacity"
3504
+ msgstr "Opacité du remplissage"
3505
+
3506
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1907
3507
+ msgid "Figure Description"
3508
+ msgstr "Description d'une figure"
3509
+
3510
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1909
3511
+ msgid "Write here all text, that you want to appear in shape info-window PopUp"
3512
+ msgstr ""
3513
+ "Écrivez ici tout le texte, que vous voulez apparaître en forme info-fenêtre "
3514
+ "PopUp"
3515
+
3516
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1921
3517
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1999
3518
+ msgid "Points"
3519
+ msgstr "Points"
3520
+
3521
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1923
3522
+ msgid ""
3523
+ "Figure's points list: you can search the point by address (just start typing "
3524
+ "in Address field), type the Latitude and Longitude of point in appropriate "
3525
+ "fields or activate Add by Click button, and then draw figure on the map by "
3526
+ "clicking on it. Important! You must deactivate Add by Click button after "
3527
+ "ending of the draw."
3528
+ msgstr ""
3529
+ "Liste de points de figure : vous pouvez rechercher le point par adresse (il "
3530
+ "suffit de commencer à taper dans le champ Adresse), tapez la Latitude et la "
3531
+ "Longitude de point dans les champs appropriés ou activez le bouton Ajouter "
3532
+ "par clic, puis dessiner la figure sur la carte en cliquant dessus. "
3533
+ "important! Vous devez désactiver le bouton Ajouter par clic après la fin du "
3534
+ "tirage."
3535
+
3536
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1930
3537
+ msgid "Add New Point"
3538
+ msgstr "Ajouter nouveau point"
3539
+
3540
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1967
3541
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2023
3542
+ msgid "Radius"
3543
+ msgstr "Rayon"
3544
+
3545
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:1974
3546
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2009
3547
+ msgid "Remove Point"
3548
+ msgstr "Supprimer un Point"
3549
+
3550
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2001
3551
+ msgid ""
3552
+ "To add Heatmap Layer points you need to activate Add Points button and draw "
3553
+ "each point by click on map. To remove points you need to activate Remove "
3554
+ "Points button and delete necessary point by click on it or just click on "
3555
+ "Delete Heatmap Layer button to remove all Heatmap Layer points. Important! "
3556
+ "You must to deactivate Add by Click and Remove by Click buttons after ending "
3557
+ "of the add / remove points."
3558
+ msgstr ""
3559
+ "Pour ajouter des points Heatmap Layer, vous devez activer le bouton Ajouter "
3560
+ "des points et dessiner chaque point en cliquant sur la carte. Pour supprimer "
3561
+ "les points, vous devez activer supprimer le bouton Points et supprimer le "
3562
+ "point nécessaire en cliquant dessus ou simplement cliquer sur supprimer le "
3563
+ "bouton Heatmap Layer pour supprimer tous les points Heatmap Layer. "
3564
+ "important! Vous devez désactiver Ajouter par clic et supprimer par clic "
3565
+ "boutons après la fin de l'ajouter / supprimer des points."
3566
+
3567
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2006
3568
+ msgid "Add Point"
3569
+ msgstr "Ajouter un Point"
3570
+
3571
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2014
3572
+ msgid "Points Count"
3573
+ msgstr "Nombre de points"
3574
+
3575
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2025
3576
+ msgid "Heatmap Layer points radius in pixels"
3577
+ msgstr "Rayon des points de calque de la carte thermique en pixels"
3578
+
3579
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2036
3580
+ msgid "Opacity"
3581
+ msgstr "Opacité"
3582
+
3583
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2038
3584
+ msgid "Heatmap Layer points opacity"
3585
+ msgstr "Opacité des points de calque de la carte thermique"
3586
+
3587
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2053
3588
+ msgid "Gradient"
3589
+ msgstr "Dégradé"
3590
+
3591
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2055
3592
+ msgid "Heatmap Layer points color gradient."
3593
+ msgstr "Rayon des points de calque de la carte thermique en pixels."
3594
+
3595
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2059
3596
+ msgid "Add Color"
3597
+ msgstr "Ajouter une couleur"
3598
+
3599
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2066
3600
+ msgid "Remove Color"
3601
+ msgstr "Supprimer Couleur"
3602
+
3603
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2099
3604
+ msgid "Save Map"
3605
+ msgstr "Enregistrer la carte"
3606
+
3607
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2105
3608
+ msgid "Delete Map"
3609
+ msgstr "Supprimer la carte"
3610
+
3611
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2129
3612
+ msgid "Save Figure"
3613
+ msgstr "Enregistrer la figure"
3614
+
3615
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2135
3616
+ msgid "Delete Figure"
3617
+ msgstr "Supprimer la figure"
3618
+
3619
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2144
3620
+ msgid "Save Heatmap Layer"
3621
+ msgstr "Enregistrer le calque Heatmap"
3622
+
3623
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2150
3624
+ msgid "Delete Heatmap Layer"
3625
+ msgstr "Supprimer le calque Heatmap"
3626
+
3627
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2156
3628
+ msgid "Search by name"
3629
+ msgstr "Chercher par nom"
3630
+
3631
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2214
3632
+ msgid "Show markers list with your map on frontend"
3633
+ msgstr "Afficher la liste des lieux avec votre carte sur le frontend"
3634
+
3635
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2221
3636
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2222
3637
+ msgid "Apply"
3638
+ msgstr "Appliquer"
3639
+
3640
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2221
3641
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:40
3642
+ #: modules/tables/views/tpl/tablesAddNewAdmin.php:40
3643
+ msgid "Selected"
3644
+ msgstr "Sélectionné"
3645
+
3646
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2222
3647
+ msgid "Available in PRO"
3648
+ msgstr "Disponible en version PRO"
3649
+
3650
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2230
3651
+ msgid "Select Contact Form"
3652
+ msgstr "Sélectionnez le formulaire de contact"
3653
+
3654
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2253
3655
+ msgid "Oops! Something went wrong..."
3656
+ msgstr "Oups! Quelque chose s'est mal passé..."
3657
+
3658
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapEditMap.php:2256
3659
+ #, php-format
3660
+ msgid ""
3661
+ "Map can not be loaded completely. Probably, you are using our base Google "
3662
+ "Map API key.<br /><br />\n"
3663
+ "This key is used by default for all our users in accordance with <a target="
3664
+ "\"_blank\" href=\"%s\">Google Maps APIs Standard Plan</a>.\n"
3665
+ "But each API key has fixed limits on count of maps loads per day.<br /><br /"
3666
+ ">\n"
3667
+ "You can create <a target=\"_blank\" href=\"%s\">your own Google Maps API "
3668
+ "key</a> and type it on <a target=\"_blank\" href=\"%s\">Settings tab</a>.\n"
3669
+ "It's free, takes 10-20 minutes of your time and lets to apply your own API "
3670
+ "key only for your sites.\n"
3671
+ "If you already use own Google Maps API key - you should open <a target="
3672
+ "\"_blank\" href=\"%s\">Google Developer console</a> and check:\n"
3673
+ "<ul style=\"padding-left: 20px; list-style: decimal;\">\n"
3674
+ "<li>Have you set correct settings to use your Google Map API key?</li>\n"
3675
+ "<li>Have you paste correct Google Map API key on the <a target=\"_blank\" "
3676
+ "href=\"%s\">Settings tab</a>?</li>\n"
3677
+ "<li>Open <a target=\"_blank\" href=\"%s\">browser console</a>, find Google "
3678
+ "Map API error and read its description in <a target=\"_blank\" href=\"%s"
3679
+ "\">Map API Errors table</a>.</li>\n"
3680
+ "</ul>"
3681
+ msgstr ""
3682
+ "Carte ne peut pas être chargé complètement. Probablement, vous utilisez "
3683
+ "notre base Google Map API key.<br><br>Cette clé est utilisée par défaut pour "
3684
+ "tous nos utilisateurs conformément au <a target=\"_blank\" href=\"%s\">plan "
3685
+ "standard Google Maps API</a>.\n"
3686
+ "Mais chaque clé API a des limites fixes sur le nombre de charges de cartes "
3687
+ "par jour.<br><br>Vous pouvez créer <a target=\"_blank\" href=\"%s\">votre "
3688
+ "propre touche API Google Maps</a> et la taper sur <a target=\"_blank\" href="
3689
+ "\"%s\">l'onglet Paramètres</a>.\n"
3690
+ "Il est gratuit, prend 10-20 minutes de votre temps et permet d'appliquer "
3691
+ "votre propre clé API uniquement pour vos sites.\n"
3692
+ "Si vous utilisez déjà votre propre clé API Google Maps , vous devez ouvrir "
3693
+ "la <a target=\"_blank\" href=\"%s\">console Google Developer</a> et "
3694
+ "vérifier :<ul style=\"padding-left: 20px; list-style: decimal;\">\n"
3695
+ "<li>Avez-vous réglé les paramètres corrects pour utiliser votre clé API "
3696
+ "Google Map ?</li>\n"
3697
+ "<li>Avez-vous coller la touche API Google Map correcte sur <a target=\"_blank"
3698
+ "\" href=\"%s\">l'onglet Paramètres</a>?</li>\n"
3699
+ "<li>Ouvrez <a target=\"_blank\" href=\"%s\">la console de navigateur</a>, "
3700
+ "trouver google Map API erreur et lire sa description dans Map <a target="
3701
+ "\"_blank\" href=\"%s\">API Errors table</a>.</li>\n"
3702
+ "</ul>"
3703
+
3704
+ #: ../google-maps-easy/modules/gmap/views/tpl/gmapListMarkers.php:22
3705
+ #, php-format
3706
+ msgid "and %s more"
3707
+ msgstr "et %s plus"
3708
+
3709
+ #: ../google-maps-easy/modules/gmap_widget/mod.php:18
3710
+ msgid "Displays Most Viewed Products"
3711
+ msgstr "Affiche les produits les plus consultés"
3712
+
3713
+ #: ../google-maps-easy/modules/gmap_widget/views/gmap_widget.php:30
3714
+ msgid "You have no maps"
3715
+ msgstr "Vous n'avez pas de cartes"
3716
+
3717
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:8
3718
+ msgid "Select map"
3719
+ msgstr "Sélectionnez une carte"
3720
+
3721
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:20
3722
+ msgid "Widget Map width"
3723
+ msgstr "Largeur de carte Widget"
3724
+
3725
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:27
3726
+ #, php-format
3727
+ msgid "in % or px, for example, 100% or 200px"
3728
+ msgstr "en % ou px, par exemple, 100% ou 200px"
3729
+
3730
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:32
3731
+ msgid "Widget Map height"
3732
+ msgstr "Hauteur de carte de Widget"
3733
+
3734
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:39
3735
+ msgid "in px, for example, 200 or 400"
3736
+ msgstr "en px, par exemple, 200 ou 400"
3737
+
3738
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:51
3739
+ msgid "Set coords, separated by semicolons or marker id"
3740
+ msgstr ""
3741
+ "Définir les coords, séparés par des points-virgules ou des marqueurs id"
3742
+
3743
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:63
3744
+ msgid "Set zoom level from 1 to 21"
3745
+ msgstr "Définir le niveau de zoom de 1 à 21"
3746
+
3747
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:68
3748
+ msgid "Display as image"
3749
+ msgstr "Afficher sous forme d'image"
3750
+
3751
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:76
3752
+ msgid ""
3753
+ "Map will be displayed as image at sidebar, on click - will be opened in popup"
3754
+ msgstr ""
3755
+ "La carte s'affichera sous forme d'image à la barre latérale, en clic - sera "
3756
+ "ouverte en popup"
3757
+
3758
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:79
3759
+ msgid "Image width (in px)"
3760
+ msgstr "Largeur de l'image (en px)"
3761
+
3762
+ #: ../google-maps-easy/modules/gmap_widget/views/tpl/form.php:86
3763
+ msgid "Image height (in px)"
3764
+ msgstr "Hauteur d'image (en px)"
3765
+
3766
+ #: ../google-maps-easy/modules/icons/controller.php:20
3767
+ msgid "Empty url"
3768
+ msgstr "Url vide"
3769
+
3770
+ #: ../google-maps-easy/modules/icons/models/icons.php:43
3771
+ msgid "Icon no found"
3772
+ msgstr "Icône introuvable"
3773
+
3774
+ #: ../google-maps-easy/modules/icons/models/icons.php:95
3775
+ msgid "File not found"
3776
+ msgstr "Fichier non trouvé"
3777
+
3778
+ #: ../google-maps-easy/modules/icons/models/icons.php:100
3779
+ msgid "Cannot get image"
3780
+ msgstr "Impossible d’obtenir l'image"
3781
+
3782
+ #: ../google-maps-easy/modules/icons/models/icons.php:111
3783
+ msgid "cannot insert to table"
3784
+ msgstr "ne peut pas insérer à la table"
3785
+
3786
+ #: ../google-maps-easy/modules/mail/mod.php:33
3787
+ #: ../pricing-table-by-supsystic/modules/mail/mod.php:37
3788
+ #: modules/mail/mod.php:37
3789
+ msgid "Can not send email - problem with send server"
3790
+ msgstr ""
3791
+ "Impossible de ne pas envoyer d'e-mail - problème avec envoyer le serveur"
3792
+
3793
+ #: ../google-maps-easy/modules/marker/controller.php:42
3794
+ #: ../google-maps-easy/modules/marker/controller.php:57
3795
+ msgid "Marker Not Found"
3796
+ msgstr "Marqueur non trouvé"
3797
+
3798
+ #: ../google-maps-easy/modules/marker/controller.php:48
3799
+ msgid "Cannot remove marker"
3800
+ msgstr "Ne peut pas enlever le marqueur"
3801
+
3802
+ #: ../google-maps-easy/modules/marker/controller.php:63
3803
+ msgid "Cannot remove markers"
3804
+ msgstr "Ne peut pas enlever les marqueurs"
3805
+
3806
+ #: ../google-maps-easy/modules/marker/controller.php:144
3807
+ msgid "Empty or invalid marker ID"
3808
+ msgstr "ID de marqueur vide ou invalide"
3809
+
3810
+ #: ../google-maps-easy/modules/marker/mod.php:21
3811
+ msgid "Drop"
3812
+ msgstr "Déposer"
3813
+
3814
+ #: ../google-maps-easy/modules/marker/mod.php:22
3815
+ msgid "Bounce"
3816
+ msgstr "Effet rebond"
3817
+
3818
+ #: ../google-maps-easy/modules/marker/models/marker.php:82
3819
+ msgid "Please enter marker name"
3820
+ msgstr "S'il vous plaît entrer le nom du marqueur"
3821
+
3822
+ #: ../google-maps-easy/modules/marker/models/marker.php:316
3823
+ msgid "Invalid Marker ID"
3824
+ msgstr "ID marqueur invalide"
3825
+
3826
+ #: ../google-maps-easy/modules/marker_groups/controller.php:53
3827
+ msgid "Marker Category data not found"
3828
+ msgstr "Données de catégories du marqueur introuvables"
3829
+
3830
+ #: ../google-maps-easy/modules/marker_groups/controller.php:99
3831
+ msgid "Marker Category Options data not found"
3832
+ msgstr "Données sur les options de catégorie de marqueurs non trouvées"
3833
+
3834
+ #: ../google-maps-easy/modules/marker_groups/mod.php:8
3835
+ msgid "Marker Categories"
3836
+ msgstr "Catégories de marqueur"
3837
+
3838
+ #: ../google-maps-easy/modules/marker_groups/mod.php:27
3839
+ msgid "No Marker Category Found"
3840
+ msgstr "Pas de catégories de marqueur trouvés"
3841
+
3842
+ #: ../google-maps-easy/modules/marker_groups/models/marker_groups.php:106
3843
+ msgid "Please enter Marker Category"
3844
+ msgstr "Merci d'entrer une catégorie de marqueur"
3845
+
3846
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:5
3847
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:7
3848
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:6
3849
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:6
3850
+ msgid "Add Category"
3851
+ msgstr "Ajouter une catégorie"
3852
+
3853
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:10
3854
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:12
3855
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:9
3856
+ msgid "Options"
3857
+ msgstr "Options"
3858
+
3859
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:17
3860
+ msgid "Delete Selected"
3861
+ msgstr "Supprimer la sélection"
3862
+
3863
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrAdmin.php:35
3864
+ #, php-format
3865
+ msgid ""
3866
+ "You have no Marker Categories for now. <a href='%s' style='font-style: "
3867
+ "italic;'>Create</a> your first Marker Category!"
3868
+ msgstr ""
3869
+ "Vous n'avez pas de marqueur de catégorie pour l'instant. <a href='%s' "
3870
+ "style='font-style: italic;'>Créez</a> votre première catégorie de marqueur !"
3871
+
3872
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:20
3873
+ msgid "Category Title"
3874
+ msgstr "Titre de la catégorie"
3875
+
3876
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:33
3877
+ msgid "Parent Category"
3878
+ msgstr "Catégorie parente"
3879
+
3880
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrEditMarkerGroup.php:68
3881
+ msgid "gmap/img/m1.png"
3882
+ msgstr "gmap/img/m1.png"
3883
+
3884
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:17
3885
+ msgid "Categories Levels"
3886
+ msgstr "Niveaux Catégories"
3887
+
3888
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:24
3889
+ msgid "Font Size"
3890
+ msgstr "Taille de police"
3891
+
3892
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:25
3893
+ msgid ""
3894
+ "Set font size in pixels for every level of Categories Tree starting from "
3895
+ "first level."
3896
+ msgstr ""
3897
+ "Définir la taille de la police en pixels pour chaque niveau de catégories "
3898
+ "D'arbre à partir du premier niveau."
3899
+
3900
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:30
3901
+ msgid "Add Level"
3902
+ msgstr "Ajouter Niveau"
3903
+
3904
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:39
3905
+ #: ../google-maps-easy/modules/marker_groups/views/tpl/mgrMarkerGroupsOptions.php:50
3906
+ msgid "Remove"
3907
+ msgstr "Supprimer"
3908
+
3909
+ #: ../google-maps-easy/modules/options/mod.php:108
3910
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:113
3911
+ #: modules/options/mod.php:113
3912
+ msgid "General"
3913
+ msgstr "Général"
3914
+
3915
+ #: ../google-maps-easy/modules/options/mod.php:110
3916
+ msgid "API Domain"
3917
+ msgstr "Domaine API"
3918
+
3919
+ #: ../google-maps-easy/modules/options/mod.php:110
3920
+ msgid "Sets domain for google API scripts"
3921
+ msgstr "Définit le domaine pour les scripts Google API"
3922
+
3923
+ #: ../google-maps-easy/modules/options/mod.php:111
3924
+ msgid "User API key"
3925
+ msgstr "Clé API utilisateur"
3926
+
3927
+ #: ../google-maps-easy/modules/options/mod.php:111
3928
+ msgid ""
3929
+ "You can use your own Google API key, check the <a href='//supsystic.com/"
3930
+ "google-maps-api-key/' target='_blank'>instruction</a> how to create it. To "
3931
+ "use plugin's default API key leave this field blank."
3932
+ msgstr ""
3933
+ "Vous pouvez utiliser votre propre clé <a href='//supsystic.com/google-maps-"
3934
+ "api-key/' target='_blank'></a> API Google, vérifier l'instruction comment la "
3935
+ "créer. Pour utiliser la clé API par défaut de plugin, laissez ce champ vide."
3936
+
3937
+ #: ../google-maps-easy/modules/options/mod.php:112
3938
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:115
3939
+ #: modules/options/mod.php:115
3940
+ msgid "Send usage statistics"
3941
+ msgstr "Envoyer les statistiques d'utilisation"
3942
+
3943
+ #: ../google-maps-easy/modules/options/mod.php:112
3944
+ msgid ""
3945
+ "Send information about what plugin options you prefer to use, this will help "
3946
+ "us make our solution better for You."
3947
+ msgstr ""
3948
+ "Envoyer-nous des informations sur les options de ce plugin que vous préférez "
3949
+ "utiliser, cela nous aidera à l'améliorer."
3950
+
3951
+ #: ../google-maps-easy/modules/options/mod.php:113
3952
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:116
3953
+ #: modules/options/mod.php:116
3954
+ msgid "Enable promo link"
3955
+ msgstr "Activer le lien promo"
3956
+
3957
+ #: ../google-maps-easy/modules/options/mod.php:113
3958
+ msgid ""
3959
+ "We are trying to make our plugin better for you, and you can help us with "
3960
+ "this. Just check this option - and small promotion link will be added in the "
3961
+ "bottom of your Google Maps. This is easy for you - but very helpful for us!"
3962
+ msgstr ""
3963
+ "Nous essayons de rendre notre plugin mieux pour vous, et vous pouvez nous "
3964
+ "aider avec cela. Il suffit de vérifier cette option - et petit lien de "
3965
+ "promotion sera ajouté dans le bas de votre Google Maps. C'est facile pour "
3966
+ "vous - mais très utile pour nous!"
3967
+
3968
+ #: ../google-maps-easy/modules/options/mod.php:114
3969
+ msgid "User role can use plugin"
3970
+ msgstr "Rôle de l’utilisateur pour utiliser le plugin"
3971
+
3972
+ #: ../google-maps-easy/modules/options/mod.php:114
3973
+ msgid "User with next roles will have access to whole plugin from admin area."
3974
+ msgstr ""
3975
+ "Les utilisateurs avec les rôles suivants auront accès à l'ensemble du plugin "
3976
+ "dans la zone d’administration."
3977
+
3978
+ #: ../google-maps-easy/modules/options/models/modules.php:35
3979
+ #: ../pricing-table-by-supsystic/modules/options/models/modules.php:32
3980
+ #: modules/options/models/modules.php:32
3981
+ msgid "Module Updated"
3982
+ msgstr "Mise à jour des modules"
3983
+
3984
+ #: ../google-maps-easy/modules/options/models/modules.php:50
3985
+ #: ../pricing-table-by-supsystic/modules/options/models/modules.php:47
3986
+ #: modules/options/models/modules.php:47
3987
+ msgid "Module Update Failed"
3988
+ msgstr "Échec de mise à jour du module"
3989
+
3990
+ #: ../google-maps-easy/modules/options/models/modules.php:53
3991
+ #: ../pricing-table-by-supsystic/modules/options/models/modules.php:50
3992
+ #: modules/options/models/modules.php:50
3993
+ msgid "Error module ID"
3994
+ msgstr "Erreur ID module"
3995
+
3996
+ #: ../google-maps-easy/modules/options/models/options.php:64
3997
+ #: ../pricing-table-by-supsystic/modules/options/models/options.php:63
3998
+ #: modules/options/models/options.php:63
3999
+ msgid "Empty data to save option"
4000
+ msgstr "Données vide pour l'option de sauvegarde"
4001
+
4002
+ #: ../google-maps-easy/modules/options/views/tpl/optionsAdminMain.php:18
4003
+ #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsAdminMain.php:18
4004
+ #: modules/options/views/tpl/optionsAdminMain.php:18
4005
+ msgid "Main page Go here!!!!"
4006
+ msgstr "Page d’accueil Allez-y !!!"
4007
+
4008
+ #: ../google-maps-easy/modules/options/views/tpl/optionsAdminPage.php:32
4009
+ #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsAdminPage.php:36
4010
+ #: modules/options/views/tpl/optionsAdminPage.php:36
4011
+ msgid "Improve Free version"
4012
+ msgstr "Améliorer la version gratuite"
4013
+
4014
+ #: ../google-maps-easy/modules/options/views/tpl/optionsAdminPage.php:34
4015
+ #, php-format
4016
+ msgid ""
4017
+ "Please be advised that this option is available only in <a target='_blank' "
4018
+ "href='%s'>PRO version</a>. You can <a target='_blank' href='%s' "
4019
+ "class='button'>Get PRO</a> today and get this and other PRO option for your "
4020
+ "Maps!"
4021
+ msgstr ""
4022
+ "Veuillez noter que cette option n'est disponible que dans la <a "
4023
+ "target='_blank' href='%s'>version PRO</a>. Vous pouvez <a target='_blank' "
4024
+ "href='%s' class='button'>obtenir PRO</a> dès aujourd'hui et obtenir cette "
4025
+ "option ET d'autres PRO pour vos cartes!"
4026
+
4027
+ #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:3
4028
+ #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:3
4029
+ #: modules/options/views/tpl/optionsSettingsTabContent.php:3
4030
+ msgid "Save all options"
4031
+ msgstr "Enregistrer toutes les options"
4032
+
4033
+ #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:62
4034
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:47
4035
+ #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:44
4036
+ #: modules/mail/views/tpl/mailAdmin.php:47
4037
+ #: modules/options/views/tpl/optionsSettingsTabContent.php:44
4038
+ #, php-format
4039
+ msgid "Turned On %s"
4040
+ msgstr "Activée sur %s"
4041
+
4042
+ #: ../google-maps-easy/modules/options/views/tpl/optionsSettingsTabContent.php:63
4043
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:48
4044
+ #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsSettingsTabContent.php:45
4045
+ #: modules/mail/views/tpl/mailAdmin.php:48
4046
+ #: modules/options/views/tpl/optionsSettingsTabContent.php:45
4047
+ #, php-format
4048
+ msgid "Turned Off %s"
4049
+ msgstr "Désactivée sur %s"
4050
+
4051
+ #: ../google-maps-easy/modules/supsystic_promo/controller.php:7
4052
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:7
4053
+ #: modules/supsystic_promo/controller.php:7
4054
+ msgid "Information was saved. Thank you!"
4055
+ msgstr "Les informations ont été sauvegardées. Merci !"
4056
+
4057
+ #: ../google-maps-easy/modules/supsystic_promo/controller.php:23
4058
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:23
4059
+ #: modules/supsystic_promo/controller.php:23
4060
+ msgid ""
4061
+ "Please don't send contact requests so often - wait for response for your "
4062
+ "previous requests."
4063
+ msgstr ""
4064
+ "Merci de ne pas envoyer des demandes trop souvent - Veuillez attendre la "
4065
+ "réponse à vos demandes précédentes."
4066
+
4067
+ #: ../google-maps-easy/modules/supsystic_promo/controller.php:45
4068
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/controller.php:45
4069
+ #: modules/supsystic_promo/controller.php:45
4070
+ msgid "Please enter valid email address"
4071
+ msgstr "Veuillez entrer un Email valide"
4072
+
4073
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:34
4074
+ #, php-format
4075
+ msgid ""
4076
+ "Please, set your own Google API key in Google Maps Easy plugin <a "
4077
+ "href='%s'>Settings</a>! More info about Maps and API keys you can find <a "
4078
+ "href='%s' target='_blank'>here</a>."
4079
+ msgstr ""
4080
+ "S'il vous plaît, définir votre propre clé Google API dans Google Maps <a "
4081
+ "href='%s'>Paramètres</a>plugin facile! Plus d'infos sur les cartes et les "
4082
+ "clés API que vous pouvez trouver <a href='%s' target='_blank'>ici</a>."
4083
+
4084
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:58
4085
+ #, php-format
4086
+ msgid ""
4087
+ "<h3>Hey, I noticed you just use %s over a week - that's awesome!</"
4088
+ "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
4089
+ "WordPress? Just to help us spread the word and boost our motivation.</p>"
4090
+ msgstr ""
4091
+ "<h3>Hey, j'ai remarqué que vous venez d'utiliser %s plus d'une semaine - "
4092
+ "c'est génial!</h3><p>Pourriez-vous s'il vous plaît me faire une grande "
4093
+ "faveur et lui donner une note de 5 étoiles sur WordPress? Juste pour nous "
4094
+ "aider à passer le mot et stimuler notre motivation.</p>"
4095
+
4096
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:59
4097
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:65
4098
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:37
4099
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:43
4100
+ #: modules/supsystic_promo/mod.php:37 modules/supsystic_promo/mod.php:43
4101
+ msgid "Ok, you deserve it"
4102
+ msgstr "D'accord, vous le méritez"
4103
+
4104
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:60
4105
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:66
4106
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:38
4107
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:44
4108
+ #: modules/supsystic_promo/mod.php:38 modules/supsystic_promo/mod.php:44
4109
+ msgid "Nope, maybe later"
4110
+ msgstr "Non, peut-être plus tard"
4111
+
4112
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:61
4113
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:39
4114
+ #: modules/supsystic_promo/mod.php:39
4115
+ msgid "I already did"
4116
+ msgstr "Je l’ai déjà fait"
4117
+
4118
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:62
4119
+ #, php-format
4120
+ msgid "<h3>More than eleven days with our %s plugin - Congratulations!</h3>"
4121
+ msgstr "<h3>Plus de onze jours avec notre plugin %s - Félicitations!</h3>"
4122
+
4123
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:63
4124
+ msgid ""
4125
+ "<p>On behalf of the entire <a href='https://supsystic.com/' "
4126
+ "target='_blank'>supsystic.com</a> company I would like to thank you for been "
4127
+ "with us, and I really hope that our software helped you.</p>"
4128
+ msgstr ""
4129
+ "<p>Au nom de <a href='https://supsystic.com/' target='_blank'>toute</a> la "
4130
+ "supsystic.com société, je tiens à vous remercier d'avoir été avec nous, et "
4131
+ "j'espère vraiment que notre logiciel vous a aidé.</p>"
4132
+
4133
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:64
4134
+ msgid ""
4135
+ "<p>And today, if you want, - you can help us. This is really simple - you "
4136
+ "can just add small promo link to our site under your maps. This is small "
4137
+ "step for you, but a big help for us! Sure, if you don't want - just skip "
4138
+ "this and continue enjoy our software!</p>"
4139
+ msgstr ""
4140
+ "<p>Et aujourd'hui, si vous voulez, vous pouvez nous aider. C'est vraiment "
4141
+ "simple - vous pouvez simplement ajouter un petit lien promo à notre site "
4142
+ "sous vos cartes. C'est un petit pas pour vous, mais une grande aide pour "
4143
+ "nous! Bien sûr, si vous ne voulez pas - il suffit de sauter cela et "
4144
+ "continuer à profiter de notre logiciel!</p>"
4145
+
4146
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:67
4147
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:45
4148
+ #: modules/supsystic_promo/mod.php:45
4149
+ msgid "Skip"
4150
+ msgstr "Ignorer"
4151
+
4152
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:69
4153
+ #, php-format
4154
+ msgid ""
4155
+ "Check out <a href='%s' target='_blank' class='button button-primary' data-"
4156
+ "statistic-code='hide'>our other Plugins</a>! Years of experience in "
4157
+ "WordPress plugins developers made that list unbreakable!"
4158
+ msgstr ""
4159
+ "Découvrez <a href='%s' target='_blank' class='button button-primary' data-"
4160
+ "statistic-code='hide'>nos autres Plugins</a>! Des années d'expérience dans "
4161
+ "les développeurs de plugins WordPress ont rendu cette liste incassable !"
4162
+
4163
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:80
4164
+ #, php-format
4165
+ msgid ""
4166
+ "Tired from Google Maps and it's pricings? We developed <b>Free Maps "
4167
+ "alternative for You</b> - <a href='%s' target='_blank'>Ultimate Maps by "
4168
+ "Supsystic</a>! Just try it in <a href='%s' target='_blank'>few clicks</a>!"
4169
+ msgstr ""
4170
+ "Fatigué de Google Maps et c'est les prix? Nous avons développé <b>free Maps "
4171
+ "alternative for You</b> - Ultimate Maps de <a href='%s' "
4172
+ "target='_blank'>Supsystic</a>! Il suffit de l'essayer en <a href='%s' "
4173
+ "target='_blank'>quelques clics</a>!"
4174
+
4175
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:129
4176
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:99
4177
+ #: modules/supsystic_promo/mod.php:99
4178
+ msgid "Featured Plugins"
4179
+ msgstr "Plugins intégrés"
4180
+
4181
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:155
4182
+ msgid "Welcome to Supsystic Secure"
4183
+ msgstr "Bienvenue à Supsystic Secure"
4184
+
4185
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:224
4186
+ msgid "Name"
4187
+ msgstr "Nom"
4188
+
4189
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:226
4190
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:197
4191
+ #: modules/supsystic_promo/mod.php:197
4192
+ msgid "Website"
4193
+ msgstr "Site web"
4194
+
4195
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:227
4196
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:198
4197
+ #: modules/supsystic_promo/mod.php:198
4198
+ msgid "Subject"
4199
+ msgstr "Sujet"
4200
+
4201
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:228
4202
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:199
4203
+ #: modules/supsystic_promo/mod.php:199
4204
+ msgid "Topic"
4205
+ msgstr "Sujet"
4206
+
4207
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:229
4208
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:200
4209
+ #: modules/supsystic_promo/mod.php:200
4210
+ msgid "Plugin options"
4211
+ msgstr "Options de l'extension"
4212
+
4213
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:230
4214
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:201
4215
+ #: modules/supsystic_promo/mod.php:201
4216
+ msgid "Report a bug"
4217
+ msgstr "Signaler un bug"
4218
+
4219
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:231
4220
+ msgid "Require a new functionality"
4221
+ msgstr "Demander une nouvelle fonctionnalité"
4222
+
4223
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:232
4224
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:203
4225
+ #: modules/supsystic_promo/mod.php:203
4226
+ msgid "Other"
4227
+ msgstr "Autre"
4228
+
4229
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:234
4230
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:205
4231
+ #: modules/supsystic_promo/mod.php:205
4232
+ msgid "Message"
4233
+ msgstr "Message"
4234
+
4235
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:234
4236
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:205
4237
+ #: modules/supsystic_promo/mod.php:205
4238
+ msgid "Hello Supsystic Team!"
4239
+ msgstr "Bonjour l’équipe Supsystic !"
4240
+
4241
+ #: ../google-maps-easy/modules/supsystic_promo/mod.php:281
4242
+ msgid "Heatmap"
4243
+ msgstr "Carte thermique"
4244
+
4245
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:32
4246
+ msgid "How to create Google Maps API Key?"
4247
+ msgstr "Comment créer Google Maps API Key ?"
4248
+
4249
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:33
4250
+ msgid ""
4251
+ "Your map suddenly stopped working and you get the following error?"
4252
+ "<blockquote style='color: gray; font-style: italic;'>Oops! Something went "
4253
+ "wrong.This page didn't load Google Maps correctly. See the JavaScript "
4254
+ "console for technical details.</blockquote>Please check you browser console, "
4255
+ "if you'll see such error <blockquote style='color: gray; font-style: "
4256
+ "italic;'>This site has exceeded its daily quota for maps.</blockquote> - "
4257
+ "this <a href='//supsystic.com/google-maps-api-key/' target='_blank'>article</"
4258
+ "a> is written for you and required for reading."
4259
+ msgstr ""
4260
+ "Votre carte a soudainement cessé de fonctionner et vous obtenez l'erreur "
4261
+ "suivante? <blockquote style='color: gray; font-style: italic;'>Oups! Quelque "
4262
+ "chose s'est mal passé. Cette page n'a pas chargé Google Maps correctement. "
4263
+ "Voir la console JavaScript pour plus</blockquote> de détails techniques. "
4264
+ "S'il vous plaît vérifier votre console de navigateur, si vous verrez une "
4265
+ "telle erreur Ce site a dépassé son quota quotidien pour les <blockquote "
4266
+ "style='color: gray; font-style: italic;'>cartes.</blockquote> - cet <a "
4267
+ "href='//supsystic.com/google-maps-api-key/' target='_blank'>article</a> est "
4268
+ "écrit pour vous et nécessaire pour la lecture."
4269
+
4270
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:37
4271
+ msgid "How to use Google Maps Easy Widget?"
4272
+ msgstr "Comment utiliser le Widget Google Maps Easy ?"
4273
+
4274
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:38
4275
+ msgid ""
4276
+ "1. Go to Appearance -> Widgets in the WordPress navigation menu.<br />2. "
4277
+ "Find the Google Maps Easy in the list of available widgets.<br />3. Drag the "
4278
+ "Google Maps Easy widget to widget area, which you need.<br />4. Choose the "
4279
+ "map for widget and configure the settings - Widget Map width and height.<br /"
4280
+ ">5. Click 'Save'."
4281
+ msgstr ""
4282
+ "1. Allez dans Apparence -> Widgets dans le menu de navigation Wordpress<br /"
4283
+ ">2. Trouvez \"Google Maps Easy\" dans la liste des widgets disponibles.<br /"
4284
+ ">3. Déposer le widget Google Maps Easy dans la zone des widgets dont vous "
4285
+ "avez besoin.<br />4. Choisissez la carte pour le widget et configurez les "
4286
+ "paramètres largeur et hauteur de la carte<br />5. Cliquer sur \"Sauvegarder"
4287
+ "\"."
4288
+
4289
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:39
4290
+ msgid "How to add map into the site content?"
4291
+ msgstr "Comment ajouter une carte dans le contenu du site ?"
4292
+
4293
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:40
4294
+ msgid ""
4295
+ "You can add a map in the site content via shortcode or php code. Learn more "
4296
+ "about how to do this <a href='http://supsystic.com/add-map-into-site-"
4297
+ "content/'>here</a>."
4298
+ msgstr ""
4299
+ "Vous pouvez ajouter une carte dans le contenu du site par un shortcode ou du "
4300
+ "code php. Apprenez en plus sur la manière de le faire <a href='http://"
4301
+ "supsystic.com/add-map-into-site-content/'>au bout de ce lien</a>."
4302
+
4303
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:41
4304
+ msgid "How to add map in popup window?"
4305
+ msgstr "Comment ajouter une carte dans une fenêtre popup?"
4306
+
4307
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:42
4308
+ msgid ""
4309
+ "You can add a map in popup window by inserting map shortcode in any popup "
4310
+ "text field. Learn more about how to do this <a href='http://supsystic.com/"
4311
+ "add-map-in-popup-window/'>here</a>."
4312
+ msgstr ""
4313
+ "Vous pouvez ajouter une carte dans une fenètre popup en ajoutant un "
4314
+ "shortcode de carte dans n'importe quel champ texte de popup. Apprenez en "
4315
+ "plus sur la manière de le faire <a href='http://supsystic.com/add-map-in-"
4316
+ "popup-window/''>au bout de ce lien</a>."
4317
+
4318
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:43
4319
+ msgid "How to zoom and center the initial map on markers?"
4320
+ msgstr "Comment zoomer et centrer la carte initiale sur les marqueurs ?"
4321
+
4322
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:44
4323
+ msgid ""
4324
+ "There is a few different ways to zoom and centralize map. The easiest one is "
4325
+ "to drag your map using mouse - 'Draggable' option must be enabled, or with "
4326
+ "pan controller help in live preview. <a href='http://supsystic.com/how-to-"
4327
+ "zoom-and-center-the-initial-map-on-markers/'>Read more...</a>"
4328
+ msgstr ""
4329
+ "Il existe différentes façons de zoomer et de centraliser la carte. Le plus "
4330
+ "simple est de faire glisser votre carte à l'aide de la souris - l'option "
4331
+ "'Draggable' doit être activée, ou avec l'aide du contrôleur de panoramique "
4332
+ "en aperçu en direct. <a href='http://supsystic.com/how-to-zoom-and-center-"
4333
+ "the-initial-map-on-markers/'>Lire la suite...</a>"
4334
+
4335
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:45
4336
+ msgid "How to get PRO version of plugin for FREE?"
4337
+ msgstr "Comment obtenir la version PRO de plugin GRATUIT?"
4338
+
4339
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:45
4340
+ #, php-format
4341
+ msgid ""
4342
+ "You have an incredible opportunity to get PRO version for free. Make "
4343
+ "Translation of plugin! It will be amazing if you take advantage of this "
4344
+ "offer! More info you can find here <a target='_blank' href='%s'>Get PRO "
4345
+ "version of any plugin for FREE'</a>"
4346
+ msgstr ""
4347
+ "Vous avez une occasion incroyable d'obtenir la version PRO gratuitement. "
4348
+ "Faire la traduction de plugin! Ce sera incroyable si vous profitez de cette "
4349
+ "offre! Plus d'infos que vous pouvez trouver ici <a target='_blank' "
4350
+ "href='%s'>Get PRO version de n'importe quel plugin GRATUIT'</a>"
4351
+
4352
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:46
4353
+ msgid "Translation"
4354
+ msgstr "Traduction"
4355
+
4356
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:46
4357
+ #, php-format
4358
+ msgid ""
4359
+ "All available languages are provided with the Supsystic Google Maps plugin. "
4360
+ "If your language isn't available, your plugin will be in English by default."
4361
+ "<br /><b>Available Translations: English, Polish, German, Spanish, Russian</"
4362
+ "b><br />Translate or update a translation Google Maps WordPress plugin in "
4363
+ "your language and get a Premium license for FREE. <a target='_blank' "
4364
+ "href='%s'>Contact us</a>."
4365
+ msgstr ""
4366
+ "Toutes les langues disponibles sont fournies avec le plugin Supsystic Google "
4367
+ "Maps. Si votre langue n'est pas disponible, votre plugin sera en anglais par "
4368
+ "défaut.<br><b>Traductions disponibles: anglais, polonais, allemand, "
4369
+ "espagnol, russe</b><br>Traduisez ou mettez à jour une traduction Google Maps "
4370
+ "WordPress plugin dans votre langue et obtenir une licence Premium "
4371
+ "GRATUITEMENT. <a target='_blank' href='%s'>Contactez-nous</a>."
4372
+
4373
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:62
4374
+ #, php-format
4375
+ msgid ""
4376
+ "There was some problem while trying to retrieve our news, but you can always "
4377
+ "check all list <a target='_blank' href='%s'>here</a>."
4378
+ msgstr ""
4379
+ "Il y avait un problème tout en essayant de récupérer nos nouvelles, mais "
4380
+ "vous pouvez toujours vérifier toute la liste <a target='_blank' "
4381
+ "href='%s'>ici</a>."
4382
+
4383
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:73
4384
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:78
4385
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:80
4386
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:81
4387
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:46
4388
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:51
4389
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:53
4390
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:54
4391
+ #: modules/supsystic_promo/views/supsystic_promo.php:46
4392
+ #: modules/supsystic_promo/views/supsystic_promo.php:51
4393
+ #: modules/supsystic_promo/views/supsystic_promo.php:53
4394
+ #: modules/supsystic_promo/views/supsystic_promo.php:54
4395
+ msgid "Yes"
4396
+ msgstr "Oui"
4397
+
4398
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:73
4399
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:78
4400
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:80
4401
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:81
4402
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:46
4403
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:51
4404
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:53
4405
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:54
4406
+ #: modules/supsystic_promo/views/supsystic_promo.php:46
4407
+ #: modules/supsystic_promo/views/supsystic_promo.php:51
4408
+ #: modules/supsystic_promo/views/supsystic_promo.php:53
4409
+ #: modules/supsystic_promo/views/supsystic_promo.php:54
4410
+ msgid "No"
4411
+ msgstr "Non"
4412
+
4413
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:104
4414
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:68
4415
+ #: modules/supsystic_promo/views/supsystic_promo.php:68
4416
+ msgid "Popup Plugin"
4417
+ msgstr "Popup Plugin"
4418
+
4419
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:104
4420
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:68
4421
+ #: modules/supsystic_promo/views/supsystic_promo.php:68
4422
+ msgid ""
4423
+ "The Best WordPress PopUp option plugin to help you gain more subscribers, "
4424
+ "social followers or advertisement. Responsive pop-ups with friendly options."
4425
+ msgstr ""
4426
+ "Le meilleur plugin de PopUp de WordPress pour vous aider à gagner plus "
4427
+ "d'abonnés, de followers sociaux ou de publicité. Popups responsive avec "
4428
+ "options conviviales."
4429
+
4430
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:105
4431
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:69
4432
+ #: modules/supsystic_promo/views/supsystic_promo.php:69
4433
+ msgid "Photo Gallery Plugin"
4434
+ msgstr "Photo Gallery Plugin"
4435
+
4436
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:105
4437
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:69
4438
+ #: modules/supsystic_promo/views/supsystic_promo.php:69
4439
+ msgid ""
4440
+ "Photo Gallery Plugin with a great number of layouts will help you to create "
4441
+ "quality respectable portfolios and image galleries."
4442
+ msgstr ""
4443
+ "Plugin de galerie de photos avec un grand nombre de mises en page pour vous "
4444
+ "aider à créer des portfolio de bonne qualité et des galeries d'images."
4445
+
4446
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:106
4447
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:70
4448
+ #: modules/supsystic_promo/views/supsystic_promo.php:70
4449
+ msgid "Contact Form Plugin"
4450
+ msgstr "Formulaire de contact Plugin"
4451
+
4452
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:106
4453
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:70
4454
+ #: modules/supsystic_promo/views/supsystic_promo.php:70
4455
+ msgid ""
4456
+ "One of the best plugin for creating Contact Forms on your WordPress site. "
4457
+ "Changeable fonts, backgrounds, an option for adding fields etc."
4458
+ msgstr ""
4459
+ "L'un des meilleurs plugins pour créer des formulaires de contact sur votre "
4460
+ "site WordPress. Polices modifiables, arrière-plans, option pour ajouter des "
4461
+ "champs, etc."
4462
+
4463
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:107
4464
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:71
4465
+ #: modules/supsystic_promo/views/supsystic_promo.php:71
4466
+ msgid "Newsletter Plugin"
4467
+ msgstr "Newsletter Plugin"
4468
+
4469
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:107
4470
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:71
4471
+ #: modules/supsystic_promo/views/supsystic_promo.php:71
4472
+ msgid ""
4473
+ "Supsystic Newsletter plugin for automatic mailing of your letters. You will "
4474
+ "have no need to control it or send them manually. No coding, hard skills or "
4475
+ "long hours of customizing are required."
4476
+ msgstr ""
4477
+ "Plugin de Newsletter par Supsystic pour l'envoi automatique de vos lettres. "
4478
+ "Aucun codage, compétences techniques ou de longues heures de "
4479
+ "personnalisation ne sont nécessaires."
4480
+
4481
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:108
4482
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:72
4483
+ #: modules/supsystic_promo/views/supsystic_promo.php:72
4484
+ msgid "Membership by Supsystic"
4485
+ msgstr "Adhésion par Supsystic"
4486
+
4487
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:108
4488
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:72
4489
+ #: modules/supsystic_promo/views/supsystic_promo.php:72
4490
+ msgid ""
4491
+ "Create online membership community with custom user profiles, roles, "
4492
+ "FrontEnd registration and login. Members Directory, activity, groups, "
4493
+ "messages."
4494
+ msgstr ""
4495
+ "Créez une communauté d'adhésion en ligne avec des profils d'utilisateurs "
4496
+ "personnalisés, des rôles, l'enregistrement FrontEnd et la connexion. "
4497
+ "Répertoire des membres, activité, groupes, messages."
4498
+
4499
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:109
4500
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:73
4501
+ #: modules/supsystic_promo/views/supsystic_promo.php:73
4502
+ msgid "Data Tables Generator"
4503
+ msgstr "Data Tables Generator"
4504
+
4505
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:109
4506
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:73
4507
+ #: modules/supsystic_promo/views/supsystic_promo.php:73
4508
+ msgid ""
4509
+ "Create and manage beautiful data tables with custom design. No HTML "
4510
+ "knowledge is required."
4511
+ msgstr ""
4512
+ "Créez et gérez de beaux tableaux de données avec un design personnalisé. "
4513
+ "Aucune connaissance HTML n'est requise."
4514
+
4515
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:110
4516
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:74
4517
+ #: modules/supsystic_promo/views/supsystic_promo.php:74
4518
+ msgid "Slider Plugin"
4519
+ msgstr "Extension slider"
4520
+
4521
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:110
4522
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:74
4523
+ #: modules/supsystic_promo/views/supsystic_promo.php:74
4524
+ msgid ""
4525
+ "Creating slideshows with Slider plugin is fast and easy. Simply select "
4526
+ "images from your WordPress Media Library, Flickr, Instagram or Facebook, set "
4527
+ "slide captions, links and SEO fields all from one page."
4528
+ msgstr ""
4529
+ "Créer des diaporamas avec le plugin Slider est rapide et facile. Il suffit "
4530
+ "de sélectionner des images de votre bibliothèque WordPress, Flickr, "
4531
+ "Instagram ou Facebook, définissez des légendes de diapositives, des liens et "
4532
+ "des champs SEO à partir d'une seule page."
4533
+
4534
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:111
4535
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:75
4536
+ #: modules/supsystic_promo/views/supsystic_promo.php:75
4537
+ msgid "Social Share Buttons"
4538
+ msgstr "Social Share Buttons"
4539
+
4540
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:111
4541
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:75
4542
+ #: modules/supsystic_promo/views/supsystic_promo.php:75
4543
+ msgid ""
4544
+ "Social share buttons to increase social traffic and popularity. Social "
4545
+ "sharing to Facebook, Twitter and other social networks."
4546
+ msgstr ""
4547
+ "Boutons de partage des réseaux sociaux pour augmenter le trafic social et la "
4548
+ "popularité. Partage social sur Facebook, Twitter et autres réseaux sociaux."
4549
+
4550
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:112
4551
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:76
4552
+ #: modules/supsystic_promo/views/supsystic_promo.php:76
4553
+ msgid "Live Chat Plugin"
4554
+ msgstr "Live Chat Plugin"
4555
+
4556
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:112
4557
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:76
4558
+ #: modules/supsystic_promo/views/supsystic_promo.php:76
4559
+ msgid ""
4560
+ "Be closer to your visitors and customers with Live Chat Support by "
4561
+ "Supsystic. Help you visitors, support them in real-time with exceptional "
4562
+ "Live Chat WordPress plugin by Supsystic."
4563
+ msgstr ""
4564
+ "Soyez plus proche de vos visiteurs et clients avec Live Chat Support par "
4565
+ "Supsystic. Aidez vos visiteurs, soutenez-les en temps réel avec le plugin "
4566
+ "WordPress exceptionnel Live Chat de Supsystic."
4567
+
4568
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:113
4569
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:77
4570
+ #: ../pricing-table-by-supsystic/modules/tables/mod.php:77
4571
+ #: modules/supsystic_promo/views/supsystic_promo.php:77
4572
+ #: modules/tables/mod.php:77
4573
+ msgid "Pricing Table"
4574
+ msgstr "Tableau de prix"
4575
+
4576
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:113
4577
+ msgid ""
4578
+ "It's never been so easy to create and manage pricing and comparison tables "
4579
+ "with table builder. Any element of the table can be customise with mouse "
4580
+ "click."
4581
+ msgstr ""
4582
+ "Il n'a jamais été aussi facile de créer et de gérer des tableaux de prix et "
4583
+ "de comparaison avec un constructeur de table. Tout élément de la table peut "
4584
+ "être personnalisé en un clic de souris."
4585
+
4586
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:114
4587
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:78
4588
+ #: modules/supsystic_promo/views/supsystic_promo.php:78
4589
+ msgid "Coming Soon Plugin"
4590
+ msgstr "Coming Soon Plugin"
4591
+
4592
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:114
4593
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:78
4594
+ #: modules/supsystic_promo/views/supsystic_promo.php:78
4595
+ msgid ""
4596
+ "Coming soon page with drag-and-drop builder or under construction | "
4597
+ "maintenance mode to notify visitors and collects emails."
4598
+ msgstr ""
4599
+ "Page \"Bientôt Disponible\" ou \"en Construction\" / Mode maintenance pour "
4600
+ "informer les visiteurs et récupérer les adresses mail. Fourni avec un "
4601
+ "éditeur Glisser / déposer facile."
4602
+
4603
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:115
4604
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:79
4605
+ #: modules/supsystic_promo/views/supsystic_promo.php:79
4606
+ msgid "Backup Plugin"
4607
+ msgstr "Backup Plugin"
4608
+
4609
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:115
4610
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:79
4611
+ #: modules/supsystic_promo/views/supsystic_promo.php:79
4612
+ msgid ""
4613
+ "Backup and Restore WordPress Plugin by Supsystic provides quick and "
4614
+ "unhitched DropBox, FTP, Amazon S3, Google Drive backup for your WordPress "
4615
+ "website."
4616
+ msgstr ""
4617
+ "Plugin de Sauvegarde et restauration WordPress par Supsystic fournissant une "
4618
+ "sauvegarde rapide et détachable sur DropBox, FTP, Amazon S3, Google Drive "
4619
+ "pour votre site Wordpress."
4620
+
4621
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:116
4622
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:80
4623
+ #: modules/supsystic_promo/views/supsystic_promo.php:80
4624
+ msgid "Google Maps Easy"
4625
+ msgstr "Google Maps Easy"
4626
+
4627
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:116
4628
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:80
4629
+ #: modules/supsystic_promo/views/supsystic_promo.php:80
4630
+ msgid ""
4631
+ "Display custom Google Maps. Set markers and locations with text, images, "
4632
+ "categories and links. Customize google map in a simple and intuitive way."
4633
+ msgstr ""
4634
+ "Afficher des cartes Google personnalisées. Définissez des marqueurs et des "
4635
+ "emplacements avec du texte, des images, des catégories et des liens. "
4636
+ "Personnalisez Google map de manière simple et intuitive."
4637
+
4638
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:117
4639
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:81
4640
+ #: modules/supsystic_promo/views/supsystic_promo.php:81
4641
+ msgid "Digital Publication Plugin"
4642
+ msgstr "Digital Publication Plugin"
4643
+
4644
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:117
4645
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:81
4646
+ #: modules/supsystic_promo/views/supsystic_promo.php:81
4647
+ msgid ""
4648
+ "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, "
4649
+ "Portfolios. Convert images, posts, PDF to the page flip book."
4650
+ msgstr ""
4651
+ "Plugin de Publication numérique par Supsystic pour les magazines, "
4652
+ "catalogues, portfolios. Convertir des images, des messages, PDF vers une "
4653
+ "page flip book."
4654
+
4655
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:118
4656
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:82
4657
+ #: modules/supsystic_promo/views/supsystic_promo.php:82
4658
+ msgid "Kinsta Hosting"
4659
+ msgstr "Hébergement Kinsta"
4660
+
4661
+ #: ../google-maps-easy/modules/supsystic_promo/views/supsystic_promo.php:118
4662
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:109
4663
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:82
4664
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:6
4665
+ #: modules/supsystic_promo/views/supsystic_promo.php:82
4666
+ #: modules/supsystic_promo/views/tpl/overviewTabContent.php:6
4667
+ msgid ""
4668
+ "If you want to host a business site or a blog, Kinsta managed WordPress "
4669
+ "hosting is the best place to stop on. Without any hesitation, we can say "
4670
+ "Kinsta is incredible when it comes to uptime and speed."
4671
+ msgstr ""
4672
+ "Si vous voulez héberger un site d'affaires ou un blog, Kinsta géré WordPress "
4673
+ "hébergement est le meilleur endroit. Sans aucune hésitation, nous pouvons "
4674
+ "dire Kinsta est incroyable quand il s'agit de temps de disponibilité et de "
4675
+ "vitesse."
4676
+
4677
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:4
4678
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:78
4679
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/adminFooter.php:4
4680
+ #: modules/supsystic_promo/views/tpl/adminFooter.php:4
4681
+ msgid "Version"
4682
+ msgstr "Version"
4683
+
4684
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:15
4685
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/adminFooter.php:9
4686
+ #: modules/supsystic_promo/views/tpl/adminFooter.php:9
4687
+ msgid "Support"
4688
+ msgstr "Support"
4689
+
4690
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminFooter.php:19
4691
+ msgid "Add your"
4692
+ msgstr "Ajoutez votre"
4693
+
4694
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/adminPromoTabContent.php:7
4695
+ msgid "Get it now!"
4696
+ msgstr "Obtenez-le maintenant !"
4697
+
4698
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/discountMsg.php:37
4699
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/discountMsg.php:37
4700
+ #: modules/supsystic_promo/views/tpl/discountMsg.php:37
4701
+ #, php-format
4702
+ msgid ""
4703
+ "Upgrade to bundle and get an access to <a href=\"%s\" target=\"_blank\">all "
4704
+ "14 plugins</a> more than 80%% off!"
4705
+ msgstr ""
4706
+ "Mise à niveau pour emballer et obtenir un accès à <a href=\"%s\" target="
4707
+ "\"_blank\">tous les 14 plugins</a> de plus de 80%% de remise!"
4708
+
4709
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/discountMsg.php:38
4710
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/discountMsg.php:38
4711
+ #: modules/supsystic_promo/views/tpl/discountMsg.php:38
4712
+ msgid "Buy Now"
4713
+ msgstr "Acheter maintenant"
4714
+
4715
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/featuredPlugins.php:3
4716
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/featuredPlugins.php:3
4717
+ #: modules/supsystic_promo/views/tpl/featuredPlugins.php:3
4718
+ msgid "Get plugins bundle today and save over 80%"
4719
+ msgstr "Obtenez le pack de plugins dès aujourd'hui et économisez plus de 80%"
4720
+
4721
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/featuredPlugins.php:6
4722
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/featuredPlugins.php:6
4723
+ #: modules/supsystic_promo/views/tpl/featuredPlugins.php:6
4724
+ msgid "Check It out"
4725
+ msgstr "A considérer"
4726
+
4727
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/featuredPlugins.php:31
4728
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/featuredPlugins.php:31
4729
+ #: modules/supsystic_promo/views/tpl/featuredPlugins.php:31
4730
+ msgid "More info"
4731
+ msgstr "En savoir plus"
4732
+
4733
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/featuredPlugins.php:35
4734
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/featuredPlugins.php:35
4735
+ #: modules/supsystic_promo/views/tpl/featuredPlugins.php:35
4736
+ msgid "Download"
4737
+ msgstr "Télécharger"
4738
+
4739
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:5
4740
+ msgid "FAQ and Documentation"
4741
+ msgstr "FAQ et documentation"
4742
+
4743
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:17
4744
+ msgid "Check all FAQs"
4745
+ msgstr "Consultez les FAQ"
4746
+
4747
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:22
4748
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:102
4749
+ msgid "Video tutorial"
4750
+ msgstr "Tutoriel vidéo"
4751
+
4752
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:31
4753
+ msgid "PRO Features"
4754
+ msgstr "Fonctionnalités PRO"
4755
+
4756
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:40
4757
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:12
4758
+ #: modules/supsystic_promo/views/tpl/overviewTabContent.php:12
4759
+ msgid "Server Settings"
4760
+ msgstr "Paramètres serveur"
4761
+
4762
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:53
4763
+ msgid "News"
4764
+ msgstr "Actualités"
4765
+
4766
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:59
4767
+ msgid "All news and info"
4768
+ msgstr "Toutes les actualités et infos"
4769
+
4770
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:64
4771
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:25
4772
+ #: modules/supsystic_promo/views/tpl/overviewTabContent.php:25
4773
+ msgid "Contact form"
4774
+ msgstr "Formulaire de contact"
4775
+
4776
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:96
4777
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:57
4778
+ #: modules/supsystic_promo/views/tpl/overviewTabContent.php:57
4779
+ msgid "Send email"
4780
+ msgstr "Envoyer l'email"
4781
+
4782
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/overviewTabContent.php:105
4783
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/tpl/overviewTabContent.php:66
4784
+ #: modules/supsystic_promo/views/tpl/overviewTabContent.php:66
4785
+ msgid ""
4786
+ "Your email was send, we will try to respond to you as soon as possible. "
4787
+ "Thank you for support!"
4788
+ msgstr ""
4789
+ "Votre e-mail a été envoyé, nous allons essayer de vous répondre dès que "
4790
+ "possible. Merci pour votre soutien!"
4791
+
4792
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:76
4793
+ msgid "Welcome to"
4794
+ msgstr "Bienvenue sur"
4795
+
4796
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:84
4797
+ #, php-format
4798
+ msgid "This is first start up of the %s plugin."
4799
+ msgstr "Il s'agit du premier démarrage du plugin %s."
4800
+
4801
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:85
4802
+ msgid ""
4803
+ "If you are newbie - check all features on that page, if you are guru - "
4804
+ "please correct us."
4805
+ msgstr ""
4806
+ "Si vous êtes débutant - vérifiez toutes les fonctionnalités sur cette page, "
4807
+ "si vous êtes gourou - s'il vous plaît nous corriger."
4808
+
4809
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:94
4810
+ msgid "Please, post url"
4811
+ msgstr "S'il vous plaît, poster URL"
4812
+
4813
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:108
4814
+ msgid "What to do next? Check below section"
4815
+ msgstr "Que faire ensuite? Vérifier la section ci-dessous"
4816
+
4817
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:112
4818
+ msgid "Boost us"
4819
+ msgstr "Boostez-nous"
4820
+
4821
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:113
4822
+ #, php-format
4823
+ msgid ""
4824
+ "It's amazing when you boost development with your feedback and ratings. So "
4825
+ "we create special <a target='_blank' href='%s'>boost page</a> to help you to "
4826
+ "help us."
4827
+ msgstr ""
4828
+ "C'est incroyable quand vous stimulez le développement avec vos commentaires "
4829
+ "et vos évaluations. Nous créons donc une <a target='_blank' href='%s'>page "
4830
+ "de boost</a> spéciale pour vous aider à nous aider."
4831
+
4832
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:117
4833
+ msgid "Documentation"
4834
+ msgstr "Documentation"
4835
+
4836
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:118
4837
+ #, php-format
4838
+ msgid ""
4839
+ "Check <a target='_blank' href='%s'>documentation</a> and FAQ section. If you "
4840
+ "can't solve your problems - <a target='_blank' href='%s'>contact us</a>."
4841
+ msgstr ""
4842
+ "Consultez la <a target='_blank' href='%s'>documentation</a> et la section "
4843
+ "FAQ. Si vous ne pouvez pas résoudre vos problèmes - <a target='_blank' "
4844
+ "href='%s'>contactez-nous</a>."
4845
+
4846
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:122
4847
+ msgid "Full Features List"
4848
+ msgstr "Liste complète des fonctionnalités"
4849
+
4850
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:123
4851
+ msgid "There are so many features, so we can't post it here. Like"
4852
+ msgstr ""
4853
+ "Il ya tellement de fonctionnalités, donc nous ne pouvons pas le poster ici. "
4854
+ "comme"
4855
+
4856
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:125
4857
+ msgid "Captcha for admin login"
4858
+ msgstr "Captcha pour la connexion admin"
4859
+
4860
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:126
4861
+ msgid "htaccess admin protect"
4862
+ msgstr "htaccess admin protégé"
4863
+
4864
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:127
4865
+ msgid "Hide directory files listing"
4866
+ msgstr "Masquer la liste des fichiers d'annuaire"
4867
+
4868
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:128
4869
+ msgid "Check files and directories write permissions"
4870
+ msgstr "Vérifier les fichiers et les répertoires écrivent des autorisations"
4871
+
4872
+ #: ../google-maps-easy/modules/supsystic_promo/views/tpl/welcomePage.php:130
4873
+ #, php-format
4874
+ msgid "So check full features list <a target='_blank' href='%s'>here</a>."
4875
+ msgstr ""
4876
+ "Donc, vérifiez la liste complète des fonctionnalités <a target='_blank' "
4877
+ "href='%s'>ici</a>."
4878
+
4879
+ #: ../hello.php:62
4880
+ msgid "Quote from Hello Dolly song, by Jerry Herman:"
4881
+ msgstr "Citation de Hello Dolly song, par Jerry Herman:"
4882
+
4883
+ #: ../pricing-table-by-supsystic/classes/field.php:323 classes/field.php:323
4884
+ msgid "Click to set field \"id\" and \"class\""
4885
+ msgstr "Cliquez pour définir champ \"id\" et \"class\""
4886
+
4887
+ #: ../pricing-table-by-supsystic/classes/table.php:278 classes/table.php:278
4888
+ msgid "Nothig to update"
4889
+ msgstr "Rien à mettre à jour"
4890
+
4891
+ #: ../pricing-table-by-supsystic/modules/mail/controller.php:7
4892
+ #: modules/mail/controller.php:7
4893
+ msgid "Now check your email inbox / spam folders for test mail."
4894
+ msgstr ""
4895
+ "Veuillez vérifiez votre boîte de réception / dossier anti-spam pour le mail "
4896
+ "test."
4897
+
4898
+ #: ../pricing-table-by-supsystic/modules/mail/mod.php:50
4899
+ #: modules/mail/mod.php:50
4900
+ msgid "Mail"
4901
+ msgstr "Email"
4902
+
4903
+ #: ../pricing-table-by-supsystic/modules/mail/mod.php:52
4904
+ #: modules/mail/mod.php:52
4905
+ msgid "Mail function tested and work"
4906
+ msgstr "Fonction email testée et fonctionnelle"
4907
+
4908
+ #: ../pricing-table-by-supsystic/modules/mail/mod.php:53
4909
+ #: modules/mail/mod.php:53
4910
+ msgid "Notify Email"
4911
+ msgstr "Notifier l'e-mail"
4912
+
4913
+ #: ../pricing-table-by-supsystic/modules/mail/mod.php:53
4914
+ #: modules/mail/mod.php:53
4915
+ msgid "Email address used for all email notifications from plugin"
4916
+ msgstr "Adresse email utilisée pour toutes les notifications email du plugin"
4917
+
4918
+ #: ../pricing-table-by-supsystic/modules/mail/models/mail.php:7
4919
+ #: modules/mail/models/mail.php:7
4920
+ msgid "Test email functionslity"
4921
+ msgstr "Fonctionnalité de l'email de test"
4922
+
4923
+ #: ../pricing-table-by-supsystic/modules/mail/models/mail.php:8
4924
+ #: modules/mail/models/mail.php:8
4925
+ #, php-format
4926
+ msgid "This is test email for testing email functionality on your site, %s."
4927
+ msgstr ""
4928
+ "Il s'agit de test e-mail pour tester la fonctionnalité de messagerie sur "
4929
+ "votre site, %s."
4930
+
4931
+ #: ../pricing-table-by-supsystic/modules/mail/models/mail.php:15
4932
+ #: modules/mail/models/mail.php:15
4933
+ msgid "Empty email address"
4934
+ msgstr "Adresse email vide"
4935
+
4936
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:3
4937
+ #: modules/mail/views/tpl/mailAdmin.php:3
4938
+ msgid "Send test email to"
4939
+ msgstr "Envoyer un courriel test"
4940
+
4941
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:10
4942
+ #: modules/mail/views/tpl/mailAdmin.php:10
4943
+ msgid "Send test"
4944
+ msgstr "Envoyer le test"
4945
+
4946
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:12
4947
+ #: modules/mail/views/tpl/mailAdmin.php:12
4948
+ msgid "This option allow you to check your server mail functionality"
4949
+ msgstr ""
4950
+ "Cette option vous permet de vérifier la fonctionnalité de votre messagerie "
4951
+ "serveur"
4952
+
4953
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:15
4954
+ #: modules/mail/views/tpl/mailAdmin.php:15
4955
+ msgid "Did you received test email?"
4956
+ msgstr "Avez-vous reçu un courriel de test?"
4957
+
4958
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:18
4959
+ #: modules/mail/views/tpl/mailAdmin.php:18
4960
+ msgid "Yes! It work!"
4961
+ msgstr "Oui! Ça marche !"
4962
+
4963
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:22
4964
+ #: modules/mail/views/tpl/mailAdmin.php:22
4965
+ msgid "No, I need to contact my hosting provider with mail function issue."
4966
+ msgstr ""
4967
+ "Non, je dois contacter mon hébergeur pour le problème de fonctionnement de "
4968
+ "la messagerie."
4969
+
4970
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:26
4971
+ #: modules/mail/views/tpl/mailAdmin.php:26
4972
+ msgid "Great! Mail function was tested and working fine."
4973
+ msgstr "Génial! La fonction de courrier a été testée et fonctionne très bien."
4974
+
4975
+ #: ../pricing-table-by-supsystic/modules/mail/views/tpl/mailAdmin.php:29
4976
+ #: modules/mail/views/tpl/mailAdmin.php:29
4977
+ msgid ""
4978
+ "Bad, please contact your hosting provider and ask them to setup mail "
4979
+ "functionality on your server."
4980
+ msgstr ""
4981
+ "Désolé, SVP contactez votre hébergeur et demandez-lui de vérifier la "
4982
+ "fonctionnalité de messagerie sur votre serveur."
4983
+
4984
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:115
4985
+ #: modules/options/mod.php:115
4986
+ msgid ""
4987
+ "Send information about what plugin options you prefer to use, this will help "
4988
+ "us to make our solution better for You."
4989
+ msgstr ""
4990
+ "Envoyer des informations sur les options de plugin que vous préférez "
4991
+ "utiliser, cela nous aidera à rendre notre solution meilleure pour vous."
4992
+
4993
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:116
4994
+ #: modules/options/mod.php:116
4995
+ msgid ""
4996
+ "We are trying to make our plugin better for you, and you can help us with "
4997
+ "this. Just check this option - and small promotion link will be added in the "
4998
+ "bottom of your Pricing Table. This is easy for you - but very helpful for us!"
4999
+ msgstr ""
5000
+ "Nous essayons de rendre notre plugin mieux pour vous, et vous pouvez nous "
5001
+ "aider avec cela. Il suffit de vérifier cette option - et petit lien de "
5002
+ "promotion sera ajouté dans le bas de votre tableau de tarification. C'est "
5003
+ "facile pour vous - mais très utile pour nous!"
5004
+
5005
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:117
5006
+ #: modules/options/mod.php:117
5007
+ msgid "User with such role can use plugin"
5008
+ msgstr "L'utilisateur avec un tel rôle peut utiliser le plugin"
5009
+
5010
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:117
5011
+ #: modules/options/mod.php:117
5012
+ msgid ""
5013
+ "User with the next roles will have access to the whole plugin from admin "
5014
+ "area."
5015
+ msgstr ""
5016
+ "L'utilisateur avec les rôles suivants aura accès à l'ensemble du plugin de "
5017
+ "la zone d'administration."
5018
+
5019
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:118
5020
+ #: modules/options/mod.php:118
5021
+ msgid "Disable autosave in Pricing Table"
5022
+ msgstr "Désactiver l'enregistrement automatique dans le tableau des prix"
5023
+
5024
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:118
5025
+ #: modules/options/mod.php:118
5026
+ msgid ""
5027
+ "By default our plugin will make autosave of all your changes that you do in "
5028
+ "Pricing Table edit screen, but you can disable this feature here. Just don't "
5029
+ "forget to save your Pricing Table each time you make any changes in it."
5030
+ msgstr ""
5031
+ "Par défaut, notre plugin fera autosave de toutes vos modifications que vous "
5032
+ "faites dans l'écran de modification de la table de tarification, mais vous "
5033
+ "pouvez désactiver cette fonctionnalité ici. N'oubliez pas d'enregistrer "
5034
+ "votre tableau de tarification chaque fois que vous y apporterez des "
5035
+ "modifications."
5036
+
5037
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:119
5038
+ #: modules/options/mod.php:119
5039
+ msgid "Disable CDN usage"
5040
+ msgstr "Désactiver l'utilisation du CDN"
5041
+
5042
+ #: ../pricing-table-by-supsystic/modules/options/mod.php:119
5043
+ #: modules/options/mod.php:119
5044
+ #, php-format
5045
+ msgid ""
5046
+ "By default our plugin is using CDN server to store there part of it's files "
5047
+ "- images, javascript and CSS libraries. This was designed in that way to "
5048
+ "reduce plugin size, make it lighter and easier for usage. But if you need to "
5049
+ "store all files - on your server - you can disable this option here, then "
5050
+ "upload plugin CDN files from <a href=\"%s\" target=\"_blank\">here</a> to "
5051
+ "your own site to %s folder."
5052
+ msgstr ""
5053
+ "Par défaut, notre plugin utilise le serveur CDN pour stocker une partie de "
5054
+ "ses fichiers - images, javascript et bibliothèques CSS. Ceci a été conçu de "
5055
+ "cette façon pour réduire la taille du plugin, le rendre plus léger et plus "
5056
+ "facile à utiliser. Mais si vous avez besoin de stocker tous les fichiers - "
5057
+ "sur votre serveur - vous pouvez désactiver cette option ici, puis "
5058
+ "télécharger des fichiers CDN plugin à partir <a href=\"%s\" target=\"_blank"
5059
+ "\">d'ici</a> à votre propre site à %s dossier."
5060
+
5061
+ #: ../pricing-table-by-supsystic/modules/options/views/tpl/optionsAdminPage.php:38
5062
+ #: modules/options/views/tpl/optionsAdminPage.php:38
5063
+ #, php-format
5064
+ msgid ""
5065
+ "Please be advised that this option is available only in <a target=\"_blank\" "
5066
+ "href=\"%s\">PRO version</a>. You can <a target=\"_blank\" href=\"%s\" class="
5067
+ "\"button\">Get PRO</a> today and get this and other PRO option for your "
5068
+ "Pricing Tables!"
5069
+ msgstr ""
5070
+ "Veuillez noter que cette option n'est disponible que dans la <a target="
5071
+ "\"_blank\" href=\"%s\">version PRO</a>. Vous pouvez <a target=\"_blank\" "
5072
+ "href=\"%s\" class=\"button\">obtenir PRO</a> aujourd'hui et obtenir cette "
5073
+ "option ET d'autres PRO pour vos tables de tarification!"
5074
+
5075
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:36
5076
+ #: modules/supsystic_promo/mod.php:36
5077
+ #, php-format
5078
+ msgid ""
5079
+ "<h3>Hey, I noticed you just use %s over a week – that’s awesome!</"
5080
+ "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
5081
+ "WordPress? Just to help us spread the word and boost our motivation.</p>"
5082
+ msgstr ""
5083
+ "<h3>Hey, j’ai remarqué que vous utilisiez %s depuis plus d’une semaine – "
5084
+ "c’est génial !</h3><p>Pourriez-vous, s’il vous plaît, me faire une grande "
5085
+ "faveur et lui donner une note de 5 étoiles sur WordPress ? Juste pour nous "
5086
+ "aider en nous motivant !!.</p>"
5087
+
5088
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:40
5089
+ #: modules/supsystic_promo/mod.php:40
5090
+ #, php-format
5091
+ msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
5092
+ msgstr "<h3>Plus de onze jours avec notre plugin %s - félicitations !</h3>"
5093
+
5094
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:41
5095
+ #: modules/supsystic_promo/mod.php:41
5096
+ msgid ""
5097
+ "<p>On behalf of the entire <a href=\"https://supsystic.com/\" target=\"_blank"
5098
+ "\">supsystic.com</a> company I would like to thank you for been with us, and "
5099
+ "I really hope that our software helped you.</p>"
5100
+ msgstr ""
5101
+ "<p>Au nom de l'équipe de <a href=\"https://supsystic.com/\" target=\"_blank"
5102
+ "\">supsystic.com</a> , je tiens à vous remercier pour avoir été avec nous, "
5103
+ "et j’espère vraiment que notre logiciel vous a aidé.</p>"
5104
+
5105
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:42
5106
+ #: modules/supsystic_promo/mod.php:42
5107
+ msgid ""
5108
+ "<p>And today, if you want, - you can help us. This is really simple - you "
5109
+ "can just add small promo link to our site under your tables. This is small "
5110
+ "step for you, but a big help for us! Sure, if you don't want - just skip "
5111
+ "this and continue enjoy our software!</p>"
5112
+ msgstr ""
5113
+ "<p>Et aujourd'hui, si vous voulez, vous pouvez nous aider. C'est vraiment "
5114
+ "simple - vous pouvez simplement ajouter un petit lien promo à notre site "
5115
+ "sous vos tables. C'est un petit pas pour vous, mais une grande aide pour "
5116
+ "nous! Bien sûr, si vous ne voulez pas - il suffit de sauter cela et "
5117
+ "continuer à profiter de notre logiciel!</p>"
5118
+
5119
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:47
5120
+ #: modules/supsystic_promo/mod.php:47
5121
+ #, php-format
5122
+ msgid ""
5123
+ "Check out <a href=\"%s\" target=\"_blank\" class=\"button button-primary\" "
5124
+ "data-statistic-code=\"hide\">our other Plugins</a>! Years of experience in "
5125
+ "WordPress plugins developers made those list unbreakable!"
5126
+ msgstr ""
5127
+ "Découvrez <a href=\"%s\" target=\"_blank\" class=\"button button-primary\" "
5128
+ "data-statistic-code=\"hide\">nos autres Plugins</a>! Des années d'expérience "
5129
+ "dans les développeurs de plugins WordPress ont rendu cette liste incassable!"
5130
+
5131
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:125
5132
+ #: modules/supsystic_promo/mod.php:125
5133
+ msgid "Welcome to Supsystic"
5134
+ msgstr "Bienvenue à Supsystic"
5135
+
5136
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:195
5137
+ #: modules/supsystic_promo/mod.php:195
5138
+ msgid "Your name"
5139
+ msgstr "Votre nom"
5140
+
5141
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:196
5142
+ #: modules/supsystic_promo/mod.php:196
5143
+ msgid "Your email"
5144
+ msgstr "Votre email"
5145
+
5146
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/mod.php:202
5147
+ #: modules/supsystic_promo/mod.php:202
5148
+ msgid "Require a new functionallity"
5149
+ msgstr "Besoin d'une nouvelle fonctionnalité"
5150
+
5151
+ #: ../pricing-table-by-supsystic/modules/supsystic_promo/views/supsystic_promo.php:77
5152
+ #: modules/supsystic_promo/views/supsystic_promo.php:77
5153
+ msgid ""
5154
+ "It’s never been so easy to create and manage pricing and comparison tables "
5155
+ "with table builder. Any element of the table can be customise with mouse "
5156
+ "click."
5157
+ msgstr ""
5158
+ "Il n'a jamais été aussi facile de créer et de gérer des tableaux de prix et "
5159
+ "de comparaison avec un constructeur de table. Tout élément de la table peut "
5160
+ "être personnalisé en un clic de souris."
5161
+
5162
+ #: ../pricing-table-by-supsystic/modules/tables/controller.php:243
5163
+ #: modules/tables/controller.php:243
5164
+ msgid "Done, redirecting to new Table..."
5165
+ msgstr "Fait, redirection vers la nouvelle table..."
5166
+
5167
+ #: ../pricing-table-by-supsystic/modules/tables/mod.php:20
5168
+ #: modules/tables/mod.php:20
5169
+ msgid "Add New Table"
5170
+ msgstr "Ajoutez un nouveau tableau"
5171
+
5172
+ #: ../pricing-table-by-supsystic/modules/tables/mod.php:26
5173
+ #: modules/tables/mod.php:26
5174
+ msgid "Show All Tables"
5175
+ msgstr "Tout afficher"
5176
+
5177
+ #: ../pricing-table-by-supsystic/modules/tables/mod.php:29
5178
+ #: modules/tables/mod.php:29
5179
+ msgid "Tables Import / Export"
5180
+ msgstr "Tables Importation / Exportation"
5181
+
5182
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:30
5183
+ #: modules/tables/models/tables.php:30
5184
+ msgid "Please select Table template from list below"
5185
+ msgstr "S'il vous plaît sélectionnez le modèle de table de la liste ci-dessous"
5186
+
5187
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:32
5188
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:323
5189
+ #: modules/tables/models/tables.php:32 modules/tables/models/tables.php:323
5190
+ msgid "Please enter Name"
5191
+ msgstr "Veuillez saisir le nom"
5192
+
5193
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:196
5194
+ #: modules/tables/models/tables.php:196
5195
+ msgid "Name can not be empty"
5196
+ msgstr "Le nom ne peut pas être vide"
5197
+
5198
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:304
5199
+ #: modules/tables/models/tables.php:304
5200
+ msgid "Provided data was corrupted"
5201
+ msgstr "Les données fournies sont corrompues"
5202
+
5203
+ #: ../pricing-table-by-supsystic/modules/tables/models/tables.php:321
5204
+ #: modules/tables/models/tables.php:321
5205
+ msgid "Where is ID?"
5206
+ msgstr "Où est ID ?"
5207
+
5208
+ #: ../pricing-table-by-supsystic/modules/tables/views/tables.php:48
5209
+ #: modules/tables/views/tables.php:48
5210
+ msgid "Modify Table Template"
5211
+ msgstr "Modifier le modèle de table"
5212
+
5213
+ #: ../pricing-table-by-supsystic/modules/tables/views/tables.php:57
5214
+ #: ../pricing-table-by-supsystic/modules/tables/views/tables.php:89
5215
+ #: modules/tables/views/tables.php:57 modules/tables/views/tables.php:89
5216
+ msgid "Cannot find required Table"
5217
+ msgstr "Ne pas trouver la table requise"
5218
+
5219
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:5
5220
+ #: modules/tables/views/tpl/tablesAddNewAdmin.php:5
5221
+ #, php-format
5222
+ msgid ""
5223
+ "Change Template to any other from list below or <a class=\"button\" href=\"%s"
5224
+ "\">return to Table edit</a>"
5225
+ msgstr ""
5226
+ "Modifier le modèle à n'importe quel autre de la liste ci-dessous ou <a class="
5227
+ "\"button\" href=\"%s\">revenir à la modification</a> de tableau"
5228
+
5229
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:7
5230
+ #: modules/tables/views/tpl/tablesAddNewAdmin.php:7
5231
+ msgid "Choose Table Template. You can change it later."
5232
+ msgstr "Choisissez Le modèle de table. Vous pouvez le changer plus tard."
5233
+
5234
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:16
5235
+ #: modules/tables/views/tpl/tablesAddNewAdmin.php:16
5236
+ msgid "Table Name"
5237
+ msgstr "Nom de la table"
5238
+
5239
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:38
5240
+ #: modules/tables/views/tpl/tablesAddNewAdmin.php:38
5241
+ msgid "Get in PRO"
5242
+ msgstr "Entrez dans PRO"
5243
+
5244
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:55
5245
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:36
5246
+ #: modules/tables/views/tpl/tablesAddNewAdmin.php:55
5247
+ #: modules/tables/views/tpl/tablesEditFormControls.php:36
5248
+ msgid "Change Template"
5249
+ msgstr "Changer de modèle"
5250
+
5251
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAddNewAdmin.php:57
5252
+ #: modules/tables/views/tpl/tablesAddNewAdmin.php:57
5253
+ msgid "Are you sure want to change your current template - to "
5254
+ msgstr "Voulez-vous changer votre modèle actuel - à "
5255
+
5256
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesAdmin.php:21
5257
+ #: modules/tables/views/tpl/tablesAdmin.php:21
5258
+ #, php-format
5259
+ msgid ""
5260
+ "You have no Tables for now. <a href=\"%s\" style=\"font-style: italic;"
5261
+ "\">Create</a> your First Table!"
5262
+ msgstr ""
5263
+ "Vous n'avez pas de tables pour l'instant. <a href=\"%s\" style=\"font-style: "
5264
+ "italic;\">Créez</a> votre première table!"
5265
+
5266
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:25
5267
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:26
5268
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:54
5269
+ #: modules/tables/views/tpl/tablesEditAdmin.php:25
5270
+ #: modules/tables/views/tpl/tablesEditAdmin.php:26
5271
+ #: modules/tables/views/tpl/tablesEditAdmin.php:54
5272
+ msgid "Rows"
5273
+ msgstr "Lignes"
5274
+
5275
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:28
5276
+ #: modules/tables/views/tpl/tablesEditAdmin.php:28
5277
+ msgid "Columns"
5278
+ msgstr "Colonnes"
5279
+
5280
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:29
5281
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:54
5282
+ #: modules/tables/views/tpl/tablesEditAdmin.php:29
5283
+ #: modules/tables/views/tpl/tablesEditAdmin.php:54
5284
+ msgid "Cols"
5285
+ msgstr "Colonnes"
5286
+
5287
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:36
5288
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:37
5289
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:61
5290
+ #: modules/tables/views/tpl/tablesEditAdmin.php:36
5291
+ #: modules/tables/views/tpl/tablesEditAdmin.php:37
5292
+ #: modules/tables/views/tpl/tablesEditAdmin.php:61
5293
+ msgid "Add Row"
5294
+ msgstr "Ajouter une rangée"
5295
+
5296
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:39
5297
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:98
5298
+ #: modules/tables/views/tpl/tablesEditAdmin.php:39
5299
+ #: modules/tables/views/tpl/tablesEditorFooter.php:98
5300
+ msgid "Add Column"
5301
+ msgstr "Ajouter une colonne"
5302
+
5303
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:40
5304
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:61
5305
+ #: modules/tables/views/tpl/tablesEditAdmin.php:40
5306
+ #: modules/tables/views/tpl/tablesEditAdmin.php:61
5307
+ msgid "Add Col"
5308
+ msgstr "Ajouter Colonne"
5309
+
5310
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:44
5311
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:66
5312
+ #: modules/tables/views/tpl/tablesEditAdmin.php:44
5313
+ #: modules/tables/views/tpl/tablesEditAdmin.php:66
5314
+ msgid "New row will be added in the end of your table rows area."
5315
+ msgstr ""
5316
+ "Une nouvelle ligne sera ajoutée à l'extrémité de votre zone de rangées de "
5317
+ "table."
5318
+
5319
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:46
5320
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:64
5321
+ #: modules/tables/views/tpl/tablesEditAdmin.php:46
5322
+ #: modules/tables/views/tpl/tablesEditAdmin.php:64
5323
+ msgid "New column will be added in the end of your table."
5324
+ msgstr "Une nouvelle colonne sera ajoutée à la fin de votre table."
5325
+
5326
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:76
5327
+ #: modules/tables/views/tpl/tablesEditAdmin.php:76
5328
+ msgid "Table Width"
5329
+ msgstr "Largeur de la table"
5330
+
5331
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:77
5332
+ #: modules/tables/views/tpl/tablesEditAdmin.php:77
5333
+ msgid "Tbl. Width"
5334
+ msgstr "Tbl. Largeur"
5335
+
5336
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:97
5337
+ #: modules/tables/views/tpl/tablesEditAdmin.php:97
5338
+ msgid ""
5339
+ "Set width for table. Width for each column in this case will be calculated "
5340
+ "as width of whole table divided for total columns number."
5341
+ msgstr ""
5342
+ "Définir la largeur pour la table. La largeur de chaque colonne dans ce cas "
5343
+ "sera calculée comme largeur de la table entière divisée pour le nombre total "
5344
+ "de colonnes."
5345
+
5346
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:107
5347
+ #: modules/tables/views/tpl/tablesEditAdmin.php:107
5348
+ msgid "Column Width"
5349
+ msgstr "Largeur colonne"
5350
+
5351
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:113
5352
+ #: modules/tables/views/tpl/tablesEditAdmin.php:113
5353
+ msgid ""
5354
+ "Set width for each column. Total table width in this case will be calculated "
5355
+ "as sum of all your columns width."
5356
+ msgstr ""
5357
+ "Définir la largeur pour chaque colonne. La largeur totale de la table dans "
5358
+ "ce cas sera calculée comme une somme de toute la largeur de vos colonnes."
5359
+
5360
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:119
5361
+ #: modules/tables/views/tpl/tablesEditAdmin.php:119
5362
+ msgid "Text Align"
5363
+ msgstr "Alignement du texte"
5364
+
5365
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:125
5366
+ #: modules/tables/views/tpl/tablesEditAdmin.php:125
5367
+ msgid "Text align in table: left, center, right"
5368
+ msgstr "Texte aligné dans la table : gauche, centre, droite"
5369
+
5370
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:134
5371
+ #: modules/tables/views/tpl/tablesEditAdmin.php:134
5372
+ msgid "Enable Responsivity"
5373
+ msgstr "Activer la réceptivité"
5374
+
5375
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:135
5376
+ #: modules/tables/views/tpl/tablesEditAdmin.php:135
5377
+ msgid "Enb. Responsivity"
5378
+ msgstr "Enb. Sensibilité"
5379
+
5380
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:136
5381
+ #: modules/tables/views/tpl/tablesEditAdmin.php:136
5382
+ msgid ""
5383
+ "When device screen is small (mobile device or some tablets) usually table "
5384
+ "will go into responsive mode: all columns will be shown one-by-one below "
5385
+ "each other. But if you need to disable this feature - you can do this with "
5386
+ "this option. This feature influences only on frontend table view."
5387
+ msgstr ""
5388
+ "Lorsque l'écran de l'appareil est petit (appareil mobile ou certaines "
5389
+ "tablettes) table généralement passer en mode réactif: toutes les colonnes "
5390
+ "seront affichées un par un en dessous de l'autre. Mais si vous avez besoin "
5391
+ "de désactiver cette fonctionnalité - vous pouvez le faire avec cette option. "
5392
+ "Cette fonctionnalité n'influence que sur la vue de table frontend."
5393
+
5394
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:142
5395
+ #: modules/tables/views/tpl/tablesEditAdmin.php:142
5396
+ msgid "Min Column Width"
5397
+ msgstr "Largeur de colonne min"
5398
+
5399
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:147
5400
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:217
5401
+ #: modules/tables/views/tpl/tablesEditAdmin.php:147
5402
+ #: modules/tables/views/tpl/tablesEditAdmin.php:217
5403
+ msgid "px"
5404
+ msgstr "px"
5405
+
5406
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:148
5407
+ #: modules/tables/views/tpl/tablesEditAdmin.php:148
5408
+ msgid ""
5409
+ "Column width (is indicated in pixels by default) at which table will go to "
5410
+ "responsive mode"
5411
+ msgstr ""
5412
+ "Largeur de colonne (indiquée en pixels par défaut) à laquelle la table "
5413
+ "passera en mode réactif"
5414
+
5415
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:156
5416
+ #: modules/tables/views/tpl/tablesEditAdmin.php:156
5417
+ msgid "Font"
5418
+ msgstr "Police"
5419
+
5420
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:161
5421
+ #: modules/tables/views/tpl/tablesEditAdmin.php:161
5422
+ msgid ""
5423
+ "Font for table. You can always set other font for any text element using "
5424
+ "text editor tool. Just click on text - and start edit it!"
5425
+ msgstr ""
5426
+ "Font pour table. Vous pouvez toujours définir d'autres polices pour "
5427
+ "n'importe quel élément texte à l'aide de l'outil d'éditeur de texte. Il "
5428
+ "suffit de cliquer sur le texte - et commencer à l'éditer!"
5429
+
5430
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:166
5431
+ #: modules/tables/views/tpl/tablesEditAdmin.php:166
5432
+ msgid "Table Align"
5433
+ msgstr "Tableau Align"
5434
+
5435
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:172
5436
+ #: modules/tables/views/tpl/tablesEditAdmin.php:172
5437
+ msgid "Table align in page: left, center, right, none"
5438
+ msgstr "Tableau aligner dans la page: gauche, centre, droite, aucun"
5439
+
5440
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:177
5441
+ #: modules/tables/views/tpl/tablesEditAdmin.php:177
5442
+ msgid "Description Text Color"
5443
+ msgstr "Couleur du texte de description"
5444
+
5445
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:178
5446
+ #: modules/tables/views/tpl/tablesEditAdmin.php:178
5447
+ msgid "Desc. Text Color"
5448
+ msgstr "Desc. Couleur de texte"
5449
+
5450
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:184
5451
+ #: modules/tables/views/tpl/tablesEditAdmin.php:184
5452
+ msgid ""
5453
+ "Text color for table columns description element. You can always specify "
5454
+ "text color for any text element inside table using text editor."
5455
+ msgstr ""
5456
+ "Couleur de texte pour élément de description de colonnes de table. Vous "
5457
+ "pouvez toujours spécifier la couleur du texte pour n'importe quel élément de "
5458
+ "texte à l'intérieur de la table à l'aide de l'éditeur de texte."
5459
+
5460
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:195
5461
+ #: modules/tables/views/tpl/tablesEditAdmin.php:195
5462
+ msgid "Common background color for table."
5463
+ msgstr "Couleur commune de fond pour la table."
5464
+
5465
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:200
5466
+ #: modules/tables/views/tpl/tablesEditAdmin.php:200
5467
+ msgid "Header Text Color"
5468
+ msgstr "Couleur du texte d’en-tête"
5469
+
5470
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:206
5471
+ #: modules/tables/views/tpl/tablesEditAdmin.php:206
5472
+ msgid ""
5473
+ "Text color for table columns header element. You can always specify text "
5474
+ "color for any text element inside table using text editor."
5475
+ msgstr ""
5476
+ "Couleur de texte pour l'élément d'en-tête de colonnes de table. Vous pouvez "
5477
+ "toujours spécifier la couleur du texte pour n'importe quel élément de texte "
5478
+ "à l'intérieur de la table à l'aide de l'éditeur de texte."
5479
+
5480
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:211
5481
+ #: modules/tables/views/tpl/tablesEditAdmin.php:211
5482
+ msgid "Vertical Padding"
5483
+ msgstr "Marge interne verticale"
5484
+
5485
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:212
5486
+ #: modules/tables/views/tpl/tablesEditAdmin.php:212
5487
+ msgid "Vert. Padding"
5488
+ msgstr "Vert. Padding"
5489
+
5490
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:218
5491
+ #: modules/tables/views/tpl/tablesEditAdmin.php:218
5492
+ msgid "Vertical padding for column."
5493
+ msgstr "Padding vertical pour colonne."
5494
+
5495
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:223
5496
+ #: modules/tables/views/tpl/tablesEditAdmin.php:223
5497
+ msgid "Rows Text Color"
5498
+ msgstr "Couleur de texte de lignes"
5499
+
5500
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:229
5501
+ #: modules/tables/views/tpl/tablesEditAdmin.php:229
5502
+ msgid ""
5503
+ "Common text color for table. You can always specify text color for any text "
5504
+ "element inside table using text editor."
5505
+ msgstr ""
5506
+ "Couleur de texte commune pour la table. Vous pouvez toujours spécifier la "
5507
+ "couleur du texte pour n'importe quel élément de texte à l'intérieur de la "
5508
+ "table à l'aide de l'éditeur de texte."
5509
+
5510
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:239
5511
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:289
5512
+ #: modules/tables/views/tpl/tablesEditAdmin.php:239
5513
+ #: modules/tables/views/tpl/tablesEditAdmin.php:289
5514
+ msgid "Enable Description Row"
5515
+ msgstr "Activer la ligne de description"
5516
+
5517
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:239
5518
+ #: modules/tables/views/tpl/tablesEditAdmin.php:239
5519
+ msgid "Enable Description Column"
5520
+ msgstr "Activer la colonne de description"
5521
+
5522
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:242
5523
+ #: modules/tables/views/tpl/tablesEditAdmin.php:242
5524
+ msgid "Enb. Desc. Row"
5525
+ msgstr "Enb. Desc. Ligne"
5526
+
5527
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:242
5528
+ #: modules/tables/views/tpl/tablesEditAdmin.php:242
5529
+ msgid "Enb. Desc. Col"
5530
+ msgstr "Enb. Desc. Col"
5531
+
5532
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:244
5533
+ #: modules/tables/views/tpl/tablesEditAdmin.php:244
5534
+ msgid ""
5535
+ "Add additional description column into table. You can add there descriptions "
5536
+ "for your rows."
5537
+ msgstr ""
5538
+ "Ajoutez une colonne de description supplémentaire dans le tableau. Vous "
5539
+ "pouvez y ajouter des descriptions pour vos lignes."
5540
+
5541
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:255
5542
+ #: modules/tables/views/tpl/tablesEditAdmin.php:255
5543
+ msgid "Enable Head Column"
5544
+ msgstr "Activer la colonne de tête"
5545
+
5546
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:255
5547
+ #: modules/tables/views/tpl/tablesEditAdmin.php:255
5548
+ msgid "Enable Head Row"
5549
+ msgstr "Activer la ligne de tête"
5550
+
5551
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:259
5552
+ #: modules/tables/views/tpl/tablesEditAdmin.php:259
5553
+ msgid "Enb. Head Column"
5554
+ msgstr "Enb. Colonne de tête"
5555
+
5556
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:259
5557
+ #: modules/tables/views/tpl/tablesEditAdmin.php:259
5558
+ msgid "Enb. Head Row"
5559
+ msgstr "Enb. Ligne de tête"
5560
+
5561
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:261
5562
+ #: modules/tables/views/tpl/tablesEditAdmin.php:261
5563
+ msgid ""
5564
+ "By unchecking the box you hide head row in all columns. Usually it is the "
5565
+ "first row in table."
5566
+ msgstr ""
5567
+ "En décochant la case, vous cachez la ligne de tête dans toutes les colonnes. "
5568
+ "Habituellement, c'est la première rangée dans la table."
5569
+
5570
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:272
5571
+ #: modules/tables/views/tpl/tablesEditAdmin.php:272
5572
+ msgid "Enable Footer Column"
5573
+ msgstr "Activer la colonne Footer"
5574
+
5575
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:272
5576
+ #: modules/tables/views/tpl/tablesEditAdmin.php:272
5577
+ msgid "Enable Footer Row"
5578
+ msgstr "Activer Footer Row"
5579
+
5580
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:277
5581
+ #: modules/tables/views/tpl/tablesEditAdmin.php:277
5582
+ msgid "Enb. Footer Column"
5583
+ msgstr "Enb. Colonne Footer"
5584
+
5585
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:277
5586
+ #: modules/tables/views/tpl/tablesEditAdmin.php:277
5587
+ msgid "Enb. Footer Row"
5588
+ msgstr "Enb. Ligne De Footer"
5589
+
5590
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:279
5591
+ #: modules/tables/views/tpl/tablesEditAdmin.php:279
5592
+ msgid ""
5593
+ "By ubchecking the box you hide footer row in all columns. Usually it is last "
5594
+ "row in table."
5595
+ msgstr ""
5596
+ "En vérifiant la boîte, vous cachez la ligne pied dans toutes les colonnes. "
5597
+ "Habituellement, il est dernière rangée dans la table."
5598
+
5599
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:290
5600
+ #: modules/tables/views/tpl/tablesEditAdmin.php:290
5601
+ msgid "Enb. Description Row"
5602
+ msgstr "Enb. Ligne de description"
5603
+
5604
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:291
5605
+ #: modules/tables/views/tpl/tablesEditAdmin.php:291
5606
+ msgid "By ubchecking the box you hide description row in all columns."
5607
+ msgstr ""
5608
+ "En vérifiant la case, vous cachez la ligne de description dans toutes les "
5609
+ "colonnes."
5610
+
5611
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:300
5612
+ #: modules/tables/views/tpl/tablesEditAdmin.php:300
5613
+ msgid "Enable Hover Animation"
5614
+ msgstr "Activer l'animation Hover"
5615
+
5616
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:301
5617
+ #: modules/tables/views/tpl/tablesEditAdmin.php:301
5618
+ msgid ""
5619
+ "Animate column when mouse is hovering on it. Will work ONLY on frontend, "
5620
+ "disabled in admin area WySiWyg editor as it can break it in edit mode."
5621
+ msgstr ""
5622
+ "Animer la colonne lorsque la souris est planant sur elle. Fonctionnera "
5623
+ "uniquement sur frontend, désactivé dans la zone d'administration WySiWyg "
5624
+ "éditeur car il peut le briser en mode de modification."
5625
+
5626
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:310
5627
+ #: modules/tables/views/tpl/tablesEditAdmin.php:310
5628
+ msgid "Enable Responsive Text"
5629
+ msgstr "Activer le texte responsive"
5630
+
5631
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:311
5632
+ #: modules/tables/views/tpl/tablesEditAdmin.php:311
5633
+ msgid "Enb. Responsive Text"
5634
+ msgstr "Enb. Texte responsive"
5635
+
5636
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:320
5637
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:321
5638
+ #: modules/tables/views/tpl/tablesEditAdmin.php:320
5639
+ #: modules/tables/views/tpl/tablesEditAdmin.php:321
5640
+ msgid "Disable Custom Tooltip Styles"
5641
+ msgstr "Désactiver les styles de conseils d'outils personnalisés"
5642
+
5643
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:323
5644
+ #: modules/tables/views/tpl/tablesEditAdmin.php:323
5645
+ msgid "Disable supsystic styles for tooltips in your pricing table"
5646
+ msgstr ""
5647
+ "Disable styles supsystic pour les conseils d'outils dans votre tableau de "
5648
+ "tarification"
5649
+
5650
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:329
5651
+ #: modules/tables/views/tpl/tablesEditAdmin.php:329
5652
+ msgid "To enable Toggle option order PRO version. As low as $29"
5653
+ msgstr "Activer la bascule pour le prix avec la version PRO. Seulement à $29"
5654
+
5655
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:344
5656
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:345
5657
+ #: modules/tables/views/tpl/tablesEditAdmin.php:344
5658
+ #: modules/tables/views/tpl/tablesEditAdmin.php:345
5659
+ msgid "Enable Switch Toggle"
5660
+ msgstr "Activer switch Toggle"
5661
+
5662
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:350
5663
+ #: modules/tables/views/tpl/tablesEditAdmin.php:350
5664
+ msgid ""
5665
+ "Enable Switch Toggle. You need add at list two options to use switch toggle "
5666
+ "button functionality!"
5667
+ msgstr ""
5668
+ "Activer Switch Toggle. Vous devez ajouter à la liste deux options pour "
5669
+ "utiliser la fonctionnalité de bouton de bascule de commutateur !"
5670
+
5671
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:354
5672
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:355
5673
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:197
5674
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:376
5675
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:500
5676
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:595
5677
+ #: modules/tables/views/tpl/tablesEditAdmin.php:354
5678
+ #: modules/tables/views/tpl/tablesEditAdmin.php:355
5679
+ #: modules/tables/views/tpl/tablesEditorFooter.php:197
5680
+ #: modules/tables/views/tpl/tablesEditorFooter.php:376
5681
+ #: modules/tables/views/tpl/tablesEditorFooter.php:500
5682
+ #: modules/tables/views/tpl/tablesEditorFooter.php:595
5683
+ msgid "Text"
5684
+ msgstr "Texte"
5685
+
5686
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:360
5687
+ #: modules/tables/views/tpl/tablesEditAdmin.php:360
5688
+ msgid "Text placed above the switch"
5689
+ msgstr "Texte placé au-dessus de l'interrupteur"
5690
+
5691
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:365
5692
+ #: modules/tables/views/tpl/tablesEditAdmin.php:365
5693
+ msgid "Select type"
5694
+ msgstr "Sélectionnez le type"
5695
+
5696
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:371
5697
+ #: modules/tables/views/tpl/tablesEditAdmin.php:371
5698
+ msgid "Select switch type. Toggle button allows to show only first two options"
5699
+ msgstr ""
5700
+ "Sélectionnez le type de commutateur. Le bouton Toggle permet d'afficher "
5701
+ "uniquement les deux premières options"
5702
+
5703
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:376
5704
+ #: modules/tables/views/tpl/tablesEditAdmin.php:376
5705
+ msgid "Select position"
5706
+ msgstr "Sélectionnez la position"
5707
+
5708
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:382
5709
+ #: modules/tables/views/tpl/tablesEditAdmin.php:382
5710
+ msgid "Choose vertical position for switch"
5711
+ msgstr "Choisissez la position verticale pour le commutateur"
5712
+
5713
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:387
5714
+ #: modules/tables/views/tpl/tablesEditAdmin.php:387
5715
+ msgid "Align"
5716
+ msgstr "Alignement"
5717
+
5718
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:393
5719
+ #: modules/tables/views/tpl/tablesEditAdmin.php:393
5720
+ msgid "Select switch horizontal position"
5721
+ msgstr "Sélectionnez la position horizontale de commutateur"
5722
+
5723
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:399
5724
+ #: modules/tables/views/tpl/tablesEditAdmin.php:399
5725
+ msgid "Button border color"
5726
+ msgstr "Couleur de bordure du bouton"
5727
+
5728
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:400
5729
+ #: modules/tables/views/tpl/tablesEditAdmin.php:400
5730
+ msgid "Switch but. border color"
5731
+ msgstr "Commutateur, bouton couleur de bordure"
5732
+
5733
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:406
5734
+ #: modules/tables/views/tpl/tablesEditAdmin.php:406
5735
+ msgid "Choose switch button border color"
5736
+ msgstr "Choisissez la couleur de bordure de bouton d'interrupteur"
5737
+
5738
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:410
5739
+ #: modules/tables/views/tpl/tablesEditAdmin.php:410
5740
+ msgid "Button color"
5741
+ msgstr "Couleur du bouton"
5742
+
5743
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:411
5744
+ #: modules/tables/views/tpl/tablesEditAdmin.php:411
5745
+ msgid "Switch but. color"
5746
+ msgstr "Commutateur, Bouton Couleur"
5747
+
5748
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:417
5749
+ #: modules/tables/views/tpl/tablesEditAdmin.php:417
5750
+ msgid "Choose switch button background color"
5751
+ msgstr "Choisissez la couleur d'arrière-plan de bouton de commutateur"
5752
+
5753
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:420
5754
+ #: modules/tables/views/tpl/tablesEditAdmin.php:420
5755
+ msgid "Button text color"
5756
+ msgstr "Couleur texte bouton"
5757
+
5758
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:421
5759
+ #: modules/tables/views/tpl/tablesEditAdmin.php:421
5760
+ msgid "Switch but. text color"
5761
+ msgstr "Commutateur, couleur de texte"
5762
+
5763
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:427
5764
+ #: modules/tables/views/tpl/tablesEditAdmin.php:427
5765
+ msgid "Choose switch button text color"
5766
+ msgstr "Choisissez la couleur de texte de bouton de commutateur"
5767
+
5768
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:430
5769
+ #: modules/tables/views/tpl/tablesEditAdmin.php:430
5770
+ msgid "Button text color (not active)"
5771
+ msgstr "Couleur de texte de bouton (non actif)"
5772
+
5773
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:431
5774
+ #: modules/tables/views/tpl/tablesEditAdmin.php:431
5775
+ msgid "But. text color (not active)"
5776
+ msgstr "Couleur de texte de bouton (non actif)"
5777
+
5778
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:437
5779
+ #: modules/tables/views/tpl/tablesEditAdmin.php:437
5780
+ msgid "Choose switch button text color (not active position)"
5781
+ msgstr ""
5782
+ "Choisissez la couleur de texte de bouton de commutateur (pas la position "
5783
+ "active)"
5784
+
5785
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:447
5786
+ #: modules/tables/views/tpl/tablesEditAdmin.php:447
5787
+ msgid "Switch name"
5788
+ msgstr "Commutateur"
5789
+
5790
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:508
5791
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:532
5792
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:557
5793
+ #: modules/tables/views/tpl/tablesEditAdmin.php:508
5794
+ #: modules/tables/views/tpl/tablesEditAdmin.php:532
5795
+ #: modules/tables/views/tpl/tablesEditAdmin.php:557
5796
+ msgid "Default selected"
5797
+ msgstr "Sélectionné par défaut"
5798
+
5799
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditAdmin.php:586
5800
+ #: modules/tables/views/tpl/tablesEditAdmin.php:586
5801
+ msgid ""
5802
+ "Please be adviced that all columns in your table have enabled Fill color "
5803
+ "feature - so changing background color for table may not influence to all "
5804
+ "table view, or maybe will not influence to table view at all (depending of "
5805
+ "template that you selected for your table)."
5806
+ msgstr ""
5807
+ "S'il vous plaît être conseillé que toutes les colonnes de votre table ont "
5808
+ "activé remplir la fonction couleur - de sorte que la couleur de fond "
5809
+ "changeante pour la table peut ne pas influencer à toute la vue de table, ou "
5810
+ "peut-être ne sera pas influencer à la vue de table à tous (selon le modèle "
5811
+ "que vous avez sélectionné pour votre table)."
5812
+
5813
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:1
5814
+ #: modules/tables/views/tpl/tablesEditFormControls.php:1
5815
+ msgid "Click to Edit"
5816
+ msgstr "Cliquez pour Éditer"
5817
+
5818
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:10
5819
+ #: modules/tables/views/tpl/tablesEditFormControls.php:10
5820
+ msgid "Shortcode"
5821
+ msgstr "Code court"
5822
+
5823
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:26
5824
+ #: modules/tables/views/tpl/tablesEditFormControls.php:26
5825
+ msgid "Save all changes"
5826
+ msgstr "Sauvegarder toutes les modifications"
5827
+
5828
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:32
5829
+ #: modules/tables/views/tpl/tablesEditFormControls.php:32
5830
+ msgid "Preview"
5831
+ msgstr "Aperçu"
5832
+
5833
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:38
5834
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:40
5835
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:72
5836
+ #: modules/tables/views/tpl/tablesEditFormControls.php:38
5837
+ #: modules/tables/views/tpl/tablesEditFormControls.php:40
5838
+ #: modules/tables/views/tpl/tablesEditFormControls.php:72
5839
+ msgid "Edit Css"
5840
+ msgstr "Modifier Css"
5841
+
5842
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:42
5843
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:44
5844
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:78
5845
+ #: modules/tables/views/tpl/tablesEditFormControls.php:42
5846
+ #: modules/tables/views/tpl/tablesEditFormControls.php:44
5847
+ #: modules/tables/views/tpl/tablesEditFormControls.php:78
5848
+ msgid "Edit HTML"
5849
+ msgstr "Éditer le HTML"
5850
+
5851
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:46
5852
+ #: modules/tables/views/tpl/tablesEditFormControls.php:46
5853
+ msgid "Clone to New Table"
5854
+ msgstr "Clone à nouvelle table"
5855
+
5856
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:48
5857
+ #: modules/tables/views/tpl/tablesEditFormControls.php:48
5858
+ msgid "Clone"
5859
+ msgstr "Dupliquer"
5860
+
5861
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:60
5862
+ #: modules/tables/views/tpl/tablesEditFormControls.php:60
5863
+ msgid "Clone Table"
5864
+ msgstr "Table clone"
5865
+
5866
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:63
5867
+ #: modules/tables/views/tpl/tablesEditFormControls.php:63
5868
+ msgid "New Name"
5869
+ msgstr "Nouveau nom"
5870
+
5871
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditFormControls.php:64
5872
+ #: modules/tables/views/tpl/tablesEditFormControls.php:64
5873
+ msgid "Copy"
5874
+ msgstr "Copier"
5875
+
5876
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:5
5877
+ #: modules/tables/views/tpl/tablesEditorFooter.php:5
5878
+ msgid "Content align"
5879
+ msgstr "Contenu aligné"
5880
+
5881
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:25
5882
+ #: modules/tables/views/tpl/tablesEditorFooter.php:25
5883
+ msgid "Add Slide"
5884
+ msgstr "Ajouter une diapo"
5885
+
5886
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:33
5887
+ #: modules/tables/views/tpl/tablesEditorFooter.php:33
5888
+ msgid "Add Image"
5889
+ msgstr "Ajouter une image"
5890
+
5891
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:41
5892
+ #: modules/tables/views/tpl/tablesEditorFooter.php:41
5893
+ msgid "Add Menu Item"
5894
+ msgstr "Ajouter un élément de menu"
5895
+
5896
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:49
5897
+ #: modules/tables/views/tpl/tablesEditorFooter.php:49
5898
+ msgid "Manage Slides"
5899
+ msgstr "Gérer les diapositives (Slides)"
5900
+
5901
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:71
5902
+ #: modules/tables/views/tpl/tablesEditorFooter.php:71
5903
+ msgid "Background Image..."
5904
+ msgstr "Image de fond..."
5905
+
5906
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:82
5907
+ #: modules/tables/views/tpl/tablesEditorFooter.php:82
5908
+ msgid "Add Field"
5909
+ msgstr "Ajouter un champ"
5910
+
5911
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:90
5912
+ #: modules/tables/views/tpl/tablesEditorFooter.php:90
5913
+ msgid "Subscribe Settings"
5914
+ msgstr "Paramètres d’abonnement"
5915
+
5916
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:109
5917
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:254
5918
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:565
5919
+ #: modules/tables/views/tpl/tablesEditorFooter.php:109
5920
+ #: modules/tables/views/tpl/tablesEditorFooter.php:254
5921
+ #: modules/tables/views/tpl/tablesEditorFooter.php:565
5922
+ msgid "Select image"
5923
+ msgstr "Sélectionner une image"
5924
+
5925
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:117
5926
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:262
5927
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:587
5928
+ #: modules/tables/views/tpl/tablesEditorFooter.php:117
5929
+ #: modules/tables/views/tpl/tablesEditorFooter.php:262
5930
+ #: modules/tables/views/tpl/tablesEditorFooter.php:587
5931
+ msgid "Video"
5932
+ msgstr "Vidéo"
5933
+
5934
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:125
5935
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:175
5936
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:420
5937
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:486
5938
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:573
5939
+ #: modules/tables/views/tpl/tablesEditorFooter.php:125
5940
+ #: modules/tables/views/tpl/tablesEditorFooter.php:175
5941
+ #: modules/tables/views/tpl/tablesEditorFooter.php:420
5942
+ #: modules/tables/views/tpl/tablesEditorFooter.php:486
5943
+ #: modules/tables/views/tpl/tablesEditorFooter.php:573
5944
+ msgid "Link"
5945
+ msgstr "Lien"
5946
+
5947
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:131
5948
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:162
5949
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:182
5950
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:238
5951
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:426
5952
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:455
5953
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:493
5954
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:548
5955
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:580
5956
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:642
5957
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:857
5958
+ #: modules/tables/views/tpl/tablesEditorFooter.php:131
5959
+ #: modules/tables/views/tpl/tablesEditorFooter.php:162
5960
+ #: modules/tables/views/tpl/tablesEditorFooter.php:182
5961
+ #: modules/tables/views/tpl/tablesEditorFooter.php:238
5962
+ #: modules/tables/views/tpl/tablesEditorFooter.php:426
5963
+ #: modules/tables/views/tpl/tablesEditorFooter.php:455
5964
+ #: modules/tables/views/tpl/tablesEditorFooter.php:493
5965
+ #: modules/tables/views/tpl/tablesEditorFooter.php:548
5966
+ #: modules/tables/views/tpl/tablesEditorFooter.php:580
5967
+ #: modules/tables/views/tpl/tablesEditorFooter.php:642
5968
+ #: modules/tables/views/tpl/tablesEditorFooter.php:857
5969
+ msgid "Tooltip"
5970
+ msgstr "Info-bulle"
5971
+
5972
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:137
5973
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:143
5974
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:219
5975
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:273
5976
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:436
5977
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:529
5978
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:617
5979
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:623
5980
+ #: modules/tables/views/tpl/tablesEditorFooter.php:137
5981
+ #: modules/tables/views/tpl/tablesEditorFooter.php:143
5982
+ #: modules/tables/views/tpl/tablesEditorFooter.php:219
5983
+ #: modules/tables/views/tpl/tablesEditorFooter.php:273
5984
+ #: modules/tables/views/tpl/tablesEditorFooter.php:436
5985
+ #: modules/tables/views/tpl/tablesEditorFooter.php:529
5986
+ #: modules/tables/views/tpl/tablesEditorFooter.php:617
5987
+ #: modules/tables/views/tpl/tablesEditorFooter.php:623
5988
+ msgid "link"
5989
+ msgstr "lien"
5990
+
5991
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:148
5992
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:224
5993
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:441
5994
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:534
5995
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:628
5996
+ #: modules/tables/views/tpl/tablesEditorFooter.php:148
5997
+ #: modules/tables/views/tpl/tablesEditorFooter.php:224
5998
+ #: modules/tables/views/tpl/tablesEditorFooter.php:441
5999
+ #: modules/tables/views/tpl/tablesEditorFooter.php:534
6000
+ #: modules/tables/views/tpl/tablesEditorFooter.php:628
6001
+ msgid "title"
6002
+ msgstr "titre"
6003
+
6004
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:153
6005
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:229
6006
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:446
6007
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:539
6008
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:633
6009
+ #: modules/tables/views/tpl/tablesEditorFooter.php:153
6010
+ #: modules/tables/views/tpl/tablesEditorFooter.php:229
6011
+ #: modules/tables/views/tpl/tablesEditorFooter.php:446
6012
+ #: modules/tables/views/tpl/tablesEditorFooter.php:539
6013
+ #: modules/tables/views/tpl/tablesEditorFooter.php:633
6014
+ msgid "open link in a new window"
6015
+ msgstr "lien ouvert dans une nouvelle fenêtre"
6016
+
6017
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:157
6018
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:233
6019
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:450
6020
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:543
6021
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:637
6022
+ #: modules/tables/views/tpl/tablesEditorFooter.php:157
6023
+ #: modules/tables/views/tpl/tablesEditorFooter.php:233
6024
+ #: modules/tables/views/tpl/tablesEditorFooter.php:450
6025
+ #: modules/tables/views/tpl/tablesEditorFooter.php:543
6026
+ #: modules/tables/views/tpl/tablesEditorFooter.php:637
6027
+ msgid "add nofollow attribute"
6028
+ msgstr "ajouter l'attribut nofollow"
6029
+
6030
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:188
6031
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:414
6032
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:479
6033
+ #: modules/tables/views/tpl/tablesEditorFooter.php:188
6034
+ #: modules/tables/views/tpl/tablesEditorFooter.php:414
6035
+ #: modules/tables/views/tpl/tablesEditorFooter.php:479
6036
+ msgid "Color"
6037
+ msgstr "Couleur"
6038
+
6039
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:203
6040
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:382
6041
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:506
6042
+ #: modules/tables/views/tpl/tablesEditorFooter.php:203
6043
+ #: modules/tables/views/tpl/tablesEditorFooter.php:382
6044
+ #: modules/tables/views/tpl/tablesEditorFooter.php:506
6045
+ msgid "Image / Video"
6046
+ msgstr "Image / Vidéo"
6047
+
6048
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:298
6049
+ #: modules/tables/views/tpl/tablesEditorFooter.php:298
6050
+ msgid "Background Image"
6051
+ msgstr "Image d’arrière-plan"
6052
+
6053
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:335
6054
+ #: modules/tables/views/tpl/tablesEditorFooter.php:335
6055
+ msgid "Badge for Column"
6056
+ msgstr "Insigne pour colonne"
6057
+
6058
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:338
6059
+ #: modules/tables/views/tpl/tablesEditorFooter.php:338
6060
+ msgid "Schedule column"
6061
+ msgstr "Colonne de l'annexe"
6062
+
6063
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:353
6064
+ #: modules/tables/views/tpl/tablesEditorFooter.php:353
6065
+ msgid "Schedule"
6066
+ msgstr "Planifier"
6067
+
6068
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:356
6069
+ #: modules/tables/views/tpl/tablesEditorFooter.php:356
6070
+ msgid "From"
6071
+ msgstr "De"
6072
+
6073
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:361
6074
+ #: modules/tables/views/tpl/tablesEditorFooter.php:361
6075
+ msgid "To"
6076
+ msgstr "À"
6077
+
6078
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:394
6079
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:512
6080
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:607
6081
+ #: modules/tables/views/tpl/tablesEditorFooter.php:394
6082
+ #: modules/tables/views/tpl/tablesEditorFooter.php:512
6083
+ #: modules/tables/views/tpl/tablesEditorFooter.php:607
6084
+ msgid "Button"
6085
+ msgstr "Bouton"
6086
+
6087
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:410
6088
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:470
6089
+ #: modules/tables/views/tpl/tablesEditorFooter.php:410
6090
+ #: modules/tables/views/tpl/tablesEditorFooter.php:470
6091
+ msgid "Change Icon"
6092
+ msgstr "Changer d'icône"
6093
+
6094
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:475
6095
+ #: modules/tables/views/tpl/tablesEditorFooter.php:475
6096
+ msgid "Icon Size"
6097
+ msgstr "Taille de l’icône"
6098
+
6099
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:656
6100
+ #: modules/tables/views/tpl/tablesEditorFooter.php:656
6101
+ msgid "Icons Library"
6102
+ msgstr "Bibliothèque d'icônes"
6103
+
6104
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:661
6105
+ #: modules/tables/views/tpl/tablesEditorFooter.php:661
6106
+ msgid "Search, for example - pencil, music, ..."
6107
+ msgstr "Recherche, par exemple - crayon, musique, ..."
6108
+
6109
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:664
6110
+ #: modules/tables/views/tpl/tablesEditorFooter.php:664
6111
+ msgid ""
6112
+ "Nothing found for <span class=\"ptsNothingFoundKeys\"></span>, maybe try to "
6113
+ "search something else?"
6114
+ msgstr ""
6115
+ "Rien trouvé <span class=\"ptsNothingFoundKeys\"> </span>pour , peut-être "
6116
+ "essayer de chercher autre chose?"
6117
+
6118
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:668
6119
+ #: modules/tables/views/tpl/tablesEditorFooter.php:668
6120
+ msgid "Close"
6121
+ msgstr "Fermer"
6122
+
6123
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:681
6124
+ #: modules/tables/views/tpl/tablesEditorFooter.php:681
6125
+ msgid "Badges Library"
6126
+ msgstr "Bibliothèque d'insignes"
6127
+
6128
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:689
6129
+ #: modules/tables/views/tpl/tablesEditorFooter.php:689
6130
+ msgid "Badge Label"
6131
+ msgstr "Label du badge"
6132
+
6133
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:690
6134
+ #: modules/tables/views/tpl/tablesEditorFooter.php:690
6135
+ msgid "Sale!"
6136
+ msgstr "Promo!"
6137
+
6138
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:715
6139
+ #: modules/tables/views/tpl/tablesEditorFooter.php:715
6140
+ msgid "Badge Background Color"
6141
+ msgstr "Couleur d’arrière plan du badge"
6142
+
6143
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:722
6144
+ #: modules/tables/views/tpl/tablesEditorFooter.php:722
6145
+ msgid "Badge Text Color"
6146
+ msgstr "Couleur du texte du badge"
6147
+
6148
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:729
6149
+ #: modules/tables/views/tpl/tablesEditorFooter.php:729
6150
+ msgid "Select position for Badge"
6151
+ msgstr "Sélectionnez la position pour badge"
6152
+
6153
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:761
6154
+ #: modules/tables/views/tpl/tablesEditorFooter.php:761
6155
+ msgid "Move cell"
6156
+ msgstr "Déplacer la cellule"
6157
+
6158
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:765
6159
+ #: modules/tables/views/tpl/tablesEditorFooter.php:765
6160
+ msgid "Add row after"
6161
+ msgstr "Ajouter une ligne après"
6162
+
6163
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:770
6164
+ #: modules/tables/views/tpl/tablesEditorFooter.php:770
6165
+ msgid "Add row before"
6166
+ msgstr "Ajouter une ligne avant"
6167
+
6168
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:776
6169
+ #: modules/tables/views/tpl/tablesEditorFooter.php:776
6170
+ msgid "Combining with the previous row"
6171
+ msgstr "Combinaison avec la rangée précédente"
6172
+
6173
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:780
6174
+ #: modules/tables/views/tpl/tablesEditorFooter.php:780
6175
+ msgid "Combining with the next row"
6176
+ msgstr "Combinaison avec la rangée suivante"
6177
+
6178
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:785
6179
+ #: modules/tables/views/tpl/tablesEditorFooter.php:785
6180
+ msgid "Add One Cell"
6181
+ msgstr "Ajouter une cellule"
6182
+
6183
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:804
6184
+ #: modules/tables/views/tpl/tablesEditorFooter.php:804
6185
+ msgid "Edit Tooltip for Cell"
6186
+ msgstr "Modifier Tooltip pour Cell"
6187
+
6188
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesEditorFooter.php:812
6189
+ #: modules/tables/views/tpl/tablesEditorFooter.php:812
6190
+ msgid "Remove Row"
6191
+ msgstr "Supprimer la rangée"
6192
+
6193
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:47
6194
+ #: modules/tables/views/tpl/tablesImportExport.php:47
6195
+ msgid "Incorrect data!"
6196
+ msgstr "Données incorrectes !"
6197
+
6198
+ #: ../pricing-table-by-supsystic/modules/tables/views/tpl/tablesImportExport.php:48
6199
+ #: modules/tables/views/tpl/tablesImportExport.php:48
6200
+ msgid "Success"
6201
+ msgstr "Succès"
modules/mail/mod.php CHANGED
@@ -24,15 +24,13 @@ class mailPts extends modulePts {
24
  }
25
  public function getMailErrors() {
26
  global $ts_mail_errors;
27
- global $phpmailer;
28
  // Clear prev. send errors at first
29
  $ts_mail_errors = array();
30
 
31
  // Let's try to get errors about mail sending from WP
32
  if (!isset($ts_mail_errors)) $ts_mail_errors = array();
33
- if (isset($phpmailer)) {
34
- $ts_mail_errors[] = $phpmailer->ErrorInfo;
35
- }
36
  if(empty($ts_mail_errors)) {
37
  $ts_mail_errors[] = __('Can not send email - problem with send server');
38
  }
@@ -55,4 +53,4 @@ class mailPts extends modulePts {
55
  );
56
  return $opts;
57
  }
58
- }
24
  }
25
  public function getMailErrors() {
26
  global $ts_mail_errors;
27
+
28
  // Clear prev. send errors at first
29
  $ts_mail_errors = array();
30
 
31
  // Let's try to get errors about mail sending from WP
32
  if (!isset($ts_mail_errors)) $ts_mail_errors = array();
33
+
 
 
34
  if(empty($ts_mail_errors)) {
35
  $ts_mail_errors[] = __('Can not send email - problem with send server');
36
  }
53
  );
54
  return $opts;
55
  }
56
+ }
modules/options/views/tpl/optionsSettingsTabContent.php CHANGED
@@ -39,8 +39,8 @@
39
  <?php if(!empty($opt['changed_on'])) {?>
40
  <br />
41
  <span class="description">
42
- <?php
43
- $opt['value']
44
  ? printf(__('Turned On %s', PTS_LANG_CODE), datePts::_($opt['changed_on']))
45
  : printf(__('Turned Off %s', PTS_LANG_CODE), datePts::_($opt['changed_on']))
46
  ?>
@@ -86,5 +86,6 @@
86
  </div>
87
  <?php echo htmlPts::hidden('mod', array('value' => 'options'))?>
88
  <?php echo htmlPts::hidden('action', array('value' => 'saveGroup'))?>
 
89
  </form>
90
- </section>
39
  <?php if(!empty($opt['changed_on'])) {?>
40
  <br />
41
  <span class="description">
42
+ <?php
43
+ $opt['value']
44
  ? printf(__('Turned On %s', PTS_LANG_CODE), datePts::_($opt['changed_on']))
45
  : printf(__('Turned Off %s', PTS_LANG_CODE), datePts::_($opt['changed_on']))
46
  ?>
86
  </div>
87
  <?php echo htmlPts::hidden('mod', array('value' => 'options'))?>
88
  <?php echo htmlPts::hidden('action', array('value' => 'saveGroup'))?>
89
+ <?php wp_nonce_field('pts_nonce', 'pts_nonce'); ?>
90
  </form>
91
+ </section>
modules/tables/controller.php CHANGED
@@ -120,13 +120,13 @@ class tablesControllerPts extends controllerPts {
120
  $res->ajaxExec();
121
  }
122
  public function save() {
123
- $res = new responsePts();
124
- $data = reqPts::getVar('data', 'post');
125
- if($this->getModel()->save( $data )) {
126
- $res->addMessage(__('Done', PTS_LANG_CODE));
127
- } else
128
- $res->pushError($this->getModel()->getErrors());
129
- $res->ajaxExec();
130
  }
131
  public function changeTpl() {
132
  $res = new responsePts();
@@ -257,10 +257,9 @@ class tablesControllerPts extends controllerPts {
257
  public function getPermissions() {
258
  return array(
259
  PTS_USERLEVELS => array(
260
- PTS_ADMIN => array('getListForTbl', 'remove', 'removeGroup', 'clear',
261
- 'save', 'exportForDb', 'updateLabel', 'changeTpl', 'saveAsCopy')
262
  ),
263
  );
264
  }
265
  }
266
-
120
  $res->ajaxExec();
121
  }
122
  public function save() {
123
+ $res = new responsePts();
124
+ $data = reqPts::getVar('data', 'post');
125
+ if($this->getModel()->save( $data )) {
126
+ $res->addMessage(__('Done', PTS_LANG_CODE));
127
+ } else
128
+ $res->pushError($this->getModel()->getErrors());
129
+ $res->ajaxExec();
130
  }
131
  public function changeTpl() {
132
  $res = new responsePts();
257
  public function getPermissions() {
258
  return array(
259
  PTS_USERLEVELS => array(
260
+ PTS_ADMIN => array('getListForTbl', 'remove', 'removeGroup', 'clear',
261
+ 'save', 'exportForDb', 'updateLabel', 'changeTpl', 'saveAsCopy', 'getJSONExportTable', 'importJSONTable', 'createFromTpl')
262
  ),
263
  );
264
  }
265
  }
 
modules/tables/js/admin.imex.js CHANGED
@@ -35,6 +35,7 @@
35
  data: {
36
  mod: 'tables'
37
  , action: 'getJSONExportTable'
 
38
  , tables: selectedExportTable
39
  }
40
  , onSuccess: function(res) {
@@ -98,6 +99,7 @@
98
  data: {
99
  mod: 'tables'
100
  , action: 'importJSONTable'
 
101
  , data: importDATA
102
  , update_with_same_id: cbParentUpdateWithSameId.hasClass("checked") ? 1 : 0
103
  }
@@ -130,4 +132,4 @@
130
 
131
  $openPage.show();
132
  }
133
- });})(jQuery);
35
  data: {
36
  mod: 'tables'
37
  , action: 'getJSONExportTable'
38
+ , pts_nonce: PTS_NONCE['pts_nonce']
39
  , tables: selectedExportTable
40
  }
41
  , onSuccess: function(res) {
99
  data: {
100
  mod: 'tables'
101
  , action: 'importJSONTable'
102
+ , pts_nonce: PTS_NONCE['pts_nonce']
103
  , data: importDATA
104
  , update_with_same_id: cbParentUpdateWithSameId.hasClass("checked") ? 1 : 0
105
  }
132
 
133
  $openPage.show();
134
  }
135
+ });})(jQuery);
modules/tables/js/admin.tables.edit.js CHANGED
@@ -193,7 +193,7 @@ jQuery(document).ready(function(){
193
  if(confirm(toeLangPts('Are you sure want to remove this Table?'))) {
194
  jQuery.sendFormPts({
195
  btn: this
196
- , data: {mod: 'tables', action: 'remove', id: ptsGetFabric().getBlocks()[0].get('id')} //[0] - we have only one block in this plugin - table block
197
  , onSuccess: function(res) {
198
  if(!res.error) {
199
  toeRedirect( ptsAddNewUrl );
@@ -616,7 +616,7 @@ function ptsFinishEditTableLabel(label) {
616
  jQuery('#ptsTableEditableLabelShell').data('sending', 1);
617
  jQuery.sendFormPts({
618
  btn: jQuery('#ptsTableEditableLabelShell')
619
- , data: {mod: 'tables', action: 'updateLabel', label: label, id: _ptsGetTableBlock().get('id')}
620
  , onSuccess: function(res) {
621
  if(!res.error) {
622
  var $labelHtml = jQuery('#ptsTableEditableLabel')
193
  if(confirm(toeLangPts('Are you sure want to remove this Table?'))) {
194
  jQuery.sendFormPts({
195
  btn: this
196
+ , data: {mod: 'tables', action: 'remove', pts_nonce: PTS_NONCE['pts_nonce'], id: ptsGetFabric().getBlocks()[0].get('id')} //[0] - we have only one block in this plugin - table block
197
  , onSuccess: function(res) {
198
  if(!res.error) {
199
  toeRedirect( ptsAddNewUrl );
616
  jQuery('#ptsTableEditableLabelShell').data('sending', 1);
617
  jQuery.sendFormPts({
618
  btn: jQuery('#ptsTableEditableLabelShell')
619
+ , data: {mod: 'tables', action: 'updateLabel',pts_nonce: PTS_NONCE['pts_nonce'], label: label, id: _ptsGetTableBlock().get('id')}
620
  , onSuccess: function(res) {
621
  if(!res.error) {
622
  var $labelHtml = jQuery('#ptsTableEditableLabel')
modules/tables/js/admin.tables.js CHANGED
@@ -88,7 +88,7 @@ function ptsInitChangeTableDialog() {
88
  if(!res.error && res.data.edit_link) {
89
  toeRedirect( res.data.edit_link );
90
  }
91
- }
92
  });
93
  return false;
94
  });
@@ -114,7 +114,7 @@ function ptsInitCreateTableDialog() {
114
  if(!res.error && res.data.edit_link) {
115
  toeRedirect( res.data.edit_link );
116
  }
117
- }
118
  });
119
  return false;
120
  });
@@ -124,7 +124,7 @@ function ptsTableRemoveRow(id, link) {
124
  if(confirm(toeLangPts('Are you sure want to remove "'+ ptsGetGridColDataById(id, 'label', tblId)+ '" Table?'))) {
125
  jQuery.sendFormPts({
126
  btn: link
127
- , data: {mod: 'tables', action: 'remove', id: id}
128
  , onSuccess: function(res) {
129
  if(!res.error) {
130
  jQuery('#'+ tblId).trigger( 'reloadGrid' );
@@ -132,4 +132,4 @@ function ptsTableRemoveRow(id, link) {
132
  }
133
  });
134
  }
135
- }
88
  if(!res.error && res.data.edit_link) {
89
  toeRedirect( res.data.edit_link );
90
  }
91
+ }
92
  });
93
  return false;
94
  });
114
  if(!res.error && res.data.edit_link) {
115
  toeRedirect( res.data.edit_link );
116
  }
117
+ }
118
  });
119
  return false;
120
  });
124
  if(confirm(toeLangPts('Are you sure want to remove "'+ ptsGetGridColDataById(id, 'label', tblId)+ '" Table?'))) {
125
  jQuery.sendFormPts({
126
  btn: link
127
+ , data: {mod: 'tables', action: 'remove', pts_nonce: PTS_NONCE['pts_nonce'], id: id}
128
  , onSuccess: function(res) {
129
  if(!res.error) {
130
  jQuery('#'+ tblId).trigger( 'reloadGrid' );
132
  }
133
  });
134
  }
135
+ }
modules/tables/js/admin.tables.list.js CHANGED
@@ -1,6 +1,6 @@
1
  jQuery(document).ready(function(){
2
  var tblId = 'ptsPagesTbl';
3
- jQuery('#'+ tblId).jqGrid({
4
  url: ptsTblDataUrl
5
  , datatype: 'json'
6
  , autowidth: true
@@ -25,7 +25,7 @@ jQuery(document).ready(function(){
25
  , sortorder: 'desc'
26
  , jsonReader: { repeatitems : false, id: '0' }
27
  , caption: toeLangPts('Current Table')
28
- , height: '100%'
29
  , emptyrecords: ''//toeLangPts('You have no Tables for now.')
30
  , multiselect: true
31
  , onSelectRow: function(rowid, e) {
@@ -87,11 +87,11 @@ jQuery(document).ready(function(){
87
  }, tblId);
88
  }
89
  });
90
-
91
  jQuery('#'+ tblId+ 'EmptyMsg').insertAfter(jQuery('#'+ tblId+ '').parent());
92
  jQuery('#'+ tblId+ '').jqGrid('navGrid', '#'+ tblId+ 'Nav', {edit: false, add: false, del: false});
93
  jQuery('#cb_'+ tblId+ '').change(function(){
94
- jQuery(this).attr('checked')
95
  ? jQuery('#ptsPagesRemoveGroupBtn').removeAttr('disabled')
96
  : jQuery('#ptsPagesRemoveGroupBtn').attr('disabled', 'disabled');
97
  });
@@ -113,7 +113,7 @@ jQuery(document).ready(function(){
113
  if(confirm(confirmMsg)) {
114
  jQuery.sendFormPts({
115
  btn: this
116
- , data: {mod: 'tables', action: 'removeGroup', listIds: listIds}
117
  , onSuccess: function(res) {
118
  if(!res.error) {
119
  jQuery('#ptsPagesTbl').trigger( 'reloadGrid' );
1
  jQuery(document).ready(function(){
2
  var tblId = 'ptsPagesTbl';
3
+ jQuery('#'+ tblId).jqGrid({
4
  url: ptsTblDataUrl
5
  , datatype: 'json'
6
  , autowidth: true
25
  , sortorder: 'desc'
26
  , jsonReader: { repeatitems : false, id: '0' }
27
  , caption: toeLangPts('Current Table')
28
+ , height: '100%'
29
  , emptyrecords: ''//toeLangPts('You have no Tables for now.')
30
  , multiselect: true
31
  , onSelectRow: function(rowid, e) {
87
  }, tblId);
88
  }
89
  });
90
+
91
  jQuery('#'+ tblId+ 'EmptyMsg').insertAfter(jQuery('#'+ tblId+ '').parent());
92
  jQuery('#'+ tblId+ '').jqGrid('navGrid', '#'+ tblId+ 'Nav', {edit: false, add: false, del: false});
93
  jQuery('#cb_'+ tblId+ '').change(function(){
94
+ jQuery(this).attr('checked')
95
  ? jQuery('#ptsPagesRemoveGroupBtn').removeAttr('disabled')
96
  : jQuery('#ptsPagesRemoveGroupBtn').attr('disabled', 'disabled');
97
  });
113
  if(confirm(confirmMsg)) {
114
  jQuery.sendFormPts({
115
  btn: this
116
+ , data: {mod: 'tables', action: 'removeGroup', pts_nonce: PTS_NONCE['pts_nonce'], listIds: listIds}
117
  , onSuccess: function(res) {
118
  if(!res.error) {
119
  jQuery('#ptsPagesTbl').trigger( 'reloadGrid' );
modules/tables/js/frontend.tables.editor.blocks_fabric.js CHANGED
@@ -35,7 +35,7 @@ ptsBlockFabric.prototype._sortStart = function( ui ) {
35
  console.timeEnd('sortable - refreshPositions');*/
36
  })
37
  .find('.ptsBlockContent').zoom( 0.5, 'center top' );
38
-
39
  if(rawJq.attr('id') == draggedId) {
40
  elementFound = true;
41
  }
@@ -92,14 +92,14 @@ ptsBlockFabric.prototype._sortStop = function( ui ) {
92
  , 'margin-top': '0'
93
  }, this._animationSpeed)
94
  .find('.ptsBlockContent').zoom( 1 );
95
-
96
  if(draggedId && !scrolledBlockPass) {
97
  newDocScroll += originalHeight;
98
  }
99
  if(draggedId && rawJq.attr('id') == draggedId) {
100
  scrolledBlockPass = true;
101
  }
102
-
103
  if(!draggedId && totalHeight <= offsetTop) {
104
  newDocScroll += originalHeight;
105
  }
@@ -167,4 +167,4 @@ ptsBlockFabric.prototype.afterSave = function() {
167
  this._blocks[ i ].afterSave();
168
  }
169
  }
170
- };
35
  console.timeEnd('sortable - refreshPositions');*/
36
  })
37
  .find('.ptsBlockContent').zoom( 0.5, 'center top' );
38
+
39
  if(rawJq.attr('id') == draggedId) {
40
  elementFound = true;
41
  }
92
  , 'margin-top': '0'
93
  }, this._animationSpeed)
94
  .find('.ptsBlockContent').zoom( 1 );
95
+
96
  if(draggedId && !scrolledBlockPass) {
97
  newDocScroll += originalHeight;
98
  }
99
  if(draggedId && rawJq.attr('id') == draggedId) {
100
  scrolledBlockPass = true;
101
  }
102
+
103
  if(!draggedId && totalHeight <= offsetTop) {
104
  newDocScroll += originalHeight;
105
  }
167
  this._blocks[ i ].afterSave();
168
  }
169
  }
170
+ };
modules/tables/js/frontend.tables.editor.js CHANGED
@@ -78,7 +78,7 @@ function _ptsAddUndoBuffer(isChange, refresh, force) {
78
 
79
  if(curLength > 0) {
80
  var last = g_ptsUndoBuffer[(g_ptsUndoCurElement < 0 ? curLength - 1 : g_ptsUndoCurElement)];
81
- if(!force && last['html'] == canvasHtml && last['css'] == canvasCss) return;
82
  }
83
 
84
  jQuery('.ptsSettingsContent .icheckbox_minimal').each(function(){
@@ -109,7 +109,7 @@ function _ptsAddUndoBuffer(isChange, refresh, force) {
109
  if(refresh) {
110
  if(g_ptsUndoCurElement >= 0) {
111
  g_ptsUndoBuffer[g_ptsUndoCurElement] = {html: canvasHtml, css: canvasCss, settings: settings, attrClass: attrClass, attrStyle: attrStyle, params: paramsArr};
112
- }
113
  } else {
114
  if(g_ptsUndoCurElement >= 0) {
115
  var delta = curLength - g_ptsUndoCurElement - 1;
@@ -212,12 +212,14 @@ function _ptsSaveCanvas(params, byHands) {
212
  //toggle enabled
213
  jQuery(document.body).trigger('updateToggleHtml');
214
  }
215
-
216
  params = params || {};
 
217
  var dataForSave = {
218
  mod: 'tables'
219
  , action: 'save'
220
- , data: ptsGetFabric().getDataForSave()[0] //[0] - is because only one block (table) is in this plugin saved
 
221
  };
222
  if(params.sendData) {
223
  for(var key in params.sendData) {
@@ -229,7 +231,7 @@ function _ptsSaveCanvas(params, byHands) {
229
  , data: dataForSave
230
  , onSuccess: function(res){
231
  if(!res.error) {
232
-
233
  }
234
  }
235
  });
@@ -270,4 +272,4 @@ function _ptsInitTwig() {
270
  }
271
  return res;
272
  });
273
- }
78
 
79
  if(curLength > 0) {
80
  var last = g_ptsUndoBuffer[(g_ptsUndoCurElement < 0 ? curLength - 1 : g_ptsUndoCurElement)];
81
+ if(!force && last['html'] == canvasHtml && last['css'] == canvasCss) return;
82
  }
83
 
84
  jQuery('.ptsSettingsContent .icheckbox_minimal').each(function(){
109
  if(refresh) {
110
  if(g_ptsUndoCurElement >= 0) {
111
  g_ptsUndoBuffer[g_ptsUndoCurElement] = {html: canvasHtml, css: canvasCss, settings: settings, attrClass: attrClass, attrStyle: attrStyle, params: paramsArr};
112
+ }
113
  } else {
114
  if(g_ptsUndoCurElement >= 0) {
115
  var delta = curLength - g_ptsUndoCurElement - 1;
212
  //toggle enabled
213
  jQuery(document.body).trigger('updateToggleHtml');
214
  }
215
+
216
  params = params || {};
217
+ savedData = ptsGetFabric().getDataForSave()[0]; //[0] - is because only one block (table) is in this plugin saved
218
  var dataForSave = {
219
  mod: 'tables'
220
  , action: 'save'
221
+ , pts_nonce: PTS_NONCE['pts_nonce']
222
+ , data: savedData
223
  };
224
  if(params.sendData) {
225
  for(var key in params.sendData) {
231
  , data: dataForSave
232
  , onSuccess: function(res){
233
  if(!res.error) {
234
+
235
  }
236
  }
237
  });
272
  }
273
  return res;
274
  });
275
+ }
modules/tables/mod.php CHANGED
@@ -2,7 +2,7 @@
2
  class tablesPts extends modulePts {
3
  private $_assetsUrl = '';
4
  private $_oldAssetsUrl = 'https://supsystic.com/_assets/tables/';
5
-
6
  public function init() {
7
  dispatcherPts::addFilter('mainAdminTabs', array($this, 'addAdminTab'));
8
  add_filter('wp_footer', array($this, 'assignRenderedTables'));
@@ -58,7 +58,7 @@ class tablesPts extends modulePts {
58
  return $this->_oldAssetsUrl;
59
  }
60
  public function assignRenderedTables() {
61
- $tables = $this->getView()->getRenderedTables();
62
  if(!empty($tables)) {
63
  framePts::_()->addJSVar('frontend.tables', 'ptsTables', $tables);
64
  }
@@ -98,4 +98,3 @@ class tablesPts extends modulePts {
98
  wp_die( wp_json_encode( $parsed_shortcodes ) );
99
  }
100
  }
101
-
2
  class tablesPts extends modulePts {
3
  private $_assetsUrl = '';
4
  private $_oldAssetsUrl = 'https://supsystic.com/_assets/tables/';
5
+
6
  public function init() {
7
  dispatcherPts::addFilter('mainAdminTabs', array($this, 'addAdminTab'));
8
  add_filter('wp_footer', array($this, 'assignRenderedTables'));
58
  return $this->_oldAssetsUrl;
59
  }
60
  public function assignRenderedTables() {
61
+ $tables = $this->getView()->getRenderedTables();
62
  if(!empty($tables)) {
63
  framePts::_()->addJSVar('frontend.tables', 'ptsTables', $tables);
64
  }
98
  wp_die( wp_json_encode( $parsed_shortcodes ) );
99
  }
100
  }
 
modules/tables/views/tables.php CHANGED
@@ -2,34 +2,45 @@
2
  class tablesViewPts extends viewPts {
3
  protected $_twig;
4
  private $_renderedTables = array();
5
-
 
 
 
 
 
 
 
 
6
  public function getImportExportTab() {
 
7
  framePts::_()->getModule('templates')->loadJqGrid();
8
  framePts::_()->addStyle('admin.imex', $this->getModule()->getModPath(). 'css/admin.imex.css');
9
  framePts::_()->addScript('admin.imex', $this->getModule()->getModPath(). 'js/admin.imex.js');
10
  framePts::_()->addScript('admin.tables.list', $this->getModule()->getModPath(). 'js/admin.tables.list.js');
11
- framePts::_()->addJSVar('admin.tables.list', 'ptsTblDataUrl', uriPts::mod('tables', 'getListForTbl', array('reqType' => 'ajax')));
12
 
13
  return parent::getContent('tablesImportExport');
14
  }
15
  public function getTabContent() {
 
16
  framePts::_()->getModule('templates')->loadJqGrid();
17
 
18
  framePts::_()->addStyle('admin.tables', $this->getModule()->getModPath(). 'css/admin.tables.css');
19
  framePts::_()->addScript('admin.tables', $this->getModule()->getModPath(). 'js/admin.tables.js');
20
  framePts::_()->addScript('admin.tables.list', $this->getModule()->getModPath(). 'js/admin.tables.list.js');
21
- framePts::_()->addJSVar('admin.tables.list', 'ptsTblDataUrl', uriPts::mod('tables', 'getListForTbl', array('reqType' => 'ajax')));
22
-
23
  $this->assign('addNewLink', framePts::_()->getModule('options')->getTabUrl('tables_add_new'));
24
  return parent::getContent('tablesAdmin');
25
  }
26
  public function getAddNewTabContent() {
 
27
  framePts::_()->getModule('templates')->loadJqueryUi();
28
  framePts::_()->addStyle('admin.tables', $this->getModule()->getModPath(). 'css/admin.tables.css');
29
  framePts::_()->addScript('admin.tables', $this->getModule()->getModPath(). 'js/admin.tables.js');
30
  framePts::_()->getModule('templates')->loadMagicAnims();
31
  framePts::_()->getModule('templates')->loadBootstrapPartialOnlyCss();
32
-
33
  $changeFor = (int) reqPts::getVar('change_for', 'get');
34
  if($changeFor) {
35
  $originalTable = $this->getModel()->getById( $changeFor );
@@ -41,7 +52,7 @@ class tablesViewPts extends viewPts {
41
  }
42
  $this->assign('list', dispatcherPts::applyFilters('showTplsList', $this->getModel()->getSimpleList(array('original_id' => 0))));
43
  $this->assign('changeFor', $changeFor);
44
-
45
  return parent::getContent('tablesAddNewAdmin');
46
  }
47
  public function modifyBreadcrumbsForChangeTpl($crumbs) {
@@ -52,26 +63,26 @@ class tablesViewPts extends viewPts {
52
  return array( $crumbs[ count($crumbs) - 1 ] ); // Get rid of all other breadcrumbs - leave space on this page for other important things (buttons, etc.)
53
  }
54
  public function getEditTabContent($id) {
 
55
  $table = $this->getModel()->getById($id);
56
  if(empty($table)) {
57
  return __('Cannot find required Table', PTS_LANG_CODE);
58
  }
59
-
60
  $this->assign('table', $table);
61
  $this->assign('renderedTable', $this->renderTable($table, true));
62
  $this->assign('editorFooter', $this->getEditorFooter());
63
-
64
  dispatcherPts::addAction('afterAdminBreadcrumbs', array($this, 'showEditTableFormControls'));
65
  dispatcherPts::addFilter('mainBreadcrumbs', array($this, 'changeMainBreadCrumbsClb'));
66
 
67
  $this->connectFrontendAssets( $table );
68
  $this->connectEditorAssets( $table );
69
-
70
  framePts::_()->getModule('templates')->loadJqueryUi();
71
-
72
  $ptsAddNewUrl = framePts::_()->getModule('options')->getTabUrl('tables_add_new');
73
  $this->assign('ptsAddNewUrl', $ptsAddNewUrl);
74
-
75
  framePts::_()->getModule('templates')->loadCodemirror();
76
 
77
  framePts::_()->addStyle('codemirror-style', $this->getModule()->getModPath(). 'css/codemirror.css');
@@ -79,7 +90,7 @@ class tablesViewPts extends viewPts {
79
  framePts::_()->addScript('admin.tables.edit', $this->getModule()->getModPath(). 'js/admin.tables.edit.js');
80
  framePts::_()->addJSVar('admin.tables.edit', 'ptsAddNewUrl', $ptsAddNewUrl);
81
  framePts::_()->addJSVar('admin.tables.edit', 'ptsMCEUrl', PTS_JS_PATH.'tinymce');
82
-
83
  return parent::getContent('tablesEditAdmin');
84
  }
85
  public function showTable($params) {
@@ -88,7 +99,7 @@ class tablesViewPts extends viewPts {
88
  if(empty($table)) {
89
  return __('Cannot find required Table', PTS_LANG_CODE);
90
  }
91
-
92
  framePts::_()->getModule('templates')->loadCoreJs();
93
  $this->connectFrontendAssets( $table );
94
  $this->assign('renderedTable', $this->renderTable($table, false));
@@ -101,6 +112,26 @@ class tablesViewPts extends viewPts {
101
  if(is_numeric($table)) {
102
  $table = $this->getModel()->getById($table);
103
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  if(!isset($this->table) || $this->table != $table) {
105
  // if params enb_desc_col disabled - cut description column
106
  if($isEditMode === false) {
@@ -122,7 +153,7 @@ class tablesViewPts extends viewPts {
122
  $content = parent::getContent('tablesRender');
123
  $this->_initTwig();
124
  return $this->_twig->render($content, array(
125
- 'table' => $table,
126
  'isEditMode' => $isEditMode,
127
  ));
128
  }
@@ -144,16 +175,16 @@ class tablesViewPts extends viewPts {
144
  framePts::_()->getModule('templates')->loadCoreJs();
145
  framePts::_()->getModule('templates')->loadBootstrap();
146
  framePts::_()->getModule('templates')->loadCustomBootstrapColorpicker();
147
-
148
  if($isEditMode) {
149
  $originalBlocksByCategories = $this->getModel('tables_blocks')->getOriginalBlocksByCategories();
150
  $this->assign('originalBlocksByCategories', $originalBlocksByCategories);
151
-
152
  $this->assign('allPagesUrl', framePts::_()->getModule('options')->getTabUrl('tables'));
153
  $this->assign('previewPageUrl', get_permalink($post));
154
  }
155
  $this->_preparePtsoForRender( $tables, $isEditMode );
156
-
157
  $this->assign('tables', $tables);
158
  $this->assign('pid', $pid);
159
  $this->assign('isEditMode', $isEditMode);
@@ -206,7 +237,7 @@ class tablesViewPts extends viewPts {
206
 
207
  framePts::_()->getModule('templates')->loadFontAwesome();
208
  framePts::_()->getModule('templates')->loadTooltipster();
209
-
210
  if ($isDebbug) {
211
  framePts::_()->addScript('pts.js.responsive.text', PTS_JS_PATH . 'responsiveText.js');
212
  framePts::_()->addScript('frontend.tables.editor.blocks_fabric.base', $this->getModule()->getModPath(). 'js/frontend.tables.editor.blocks_fabric.base.js');
@@ -235,13 +266,13 @@ class tablesViewPts extends viewPts {
235
  $this->assign('adminEmail', get_bloginfo('admin_email'));
236
  $this->connectEditorJs( $tables );
237
  $this->connectEditorCss( $tables );
238
-
239
  $isPro = framePts::_()->getModule('supsystic_promo')->isPro();
240
  if($isPro && framePts::_()->getModule('tablepro')) {
241
  framePts::_()->addScript('admin.tablesPro', framePts::_()->getModule('tablepro')->getModPath(). 'js/admin.pro.tables.js', array('jquery'), false, true);
242
  framePts::_()->getModule('templates')->loadDatePicker();
243
  }
244
-
245
  framePts::_()->getModule('templates')->loadBootstrapPartial();
246
 
247
  $this->getModule()->assignRenderedTables();
@@ -250,18 +281,18 @@ class tablesViewPts extends viewPts {
250
  framePts::_()->addScript('jquery-ui-core');
251
  framePts::_()->addScript('jquery-ui-widget');
252
  framePts::_()->addScript('jquery-ui-mouse');
253
-
254
  framePts::_()->addScript('jquery-ui-draggable');
255
  framePts::_()->addScript('jquery-ui-sortable');
256
  //framePts::_()->addScript('jquery-ui-dialog');
257
-
258
  framePts::_()->getModule('templates')->loadMediaScripts();
259
  framePts::_()->getModule('templates')->loadCustomBootstrapColorpicker();
260
  framePts::_()->getModule('templates')->loadTinyMce();
261
  //framePts::_()->getModule('templates')->loadContextMenu();
262
  //framePts::_()->getModule('templates')->loadCustomColorpicker();
263
  framePts::_()->getModule('templates')->loadSlimscroll();
264
-
265
  framePts::_()->addScript('twig', PTS_JS_PATH. 'twig.min.js');
266
  framePts::_()->addScript('icheck', PTS_JS_PATH. 'icheck.min.js');
267
  //framePts::_()->addScript('frontend.tables.editor.menus', $this->getModule()->getModPath(). 'js/frontend.tables.editor.menus.js');
@@ -344,7 +375,7 @@ class tablesViewPts extends viewPts {
344
  $color = max(0, min(255, $color + $steps)); // Adjust color
345
  $return .= str_pad(dechex($color), 2, '0', STR_PAD_LEFT); // Make two char hex code
346
  }
347
-
348
  if($isRgb) {
349
  $return = utilsPts::hexToRgb( $return );
350
  if($isRgba) { // Don't forget about alpha chanel
2
  class tablesViewPts extends viewPts {
3
  protected $_twig;
4
  private $_renderedTables = array();
5
+ public function addPtsNonce() {
6
+ $pts_nonce = wp_create_nonce('pts_nonce');
7
+ $jsData = array(
8
+ 'pts_nonce' => $pts_nonce,
9
+ );
10
+ framePts::_()->addScript('noncePts', PTS_JS_PATH . 'nonce.js');
11
+ $jsData = dispatcherPts::applyFilters('jsInitVariables', $jsData);
12
+ framePts::_()->addJSVar('noncePts', 'PTS_NONCE', $jsData);
13
+ }
14
  public function getImportExportTab() {
15
+ $this->addPtsNonce();
16
  framePts::_()->getModule('templates')->loadJqGrid();
17
  framePts::_()->addStyle('admin.imex', $this->getModule()->getModPath(). 'css/admin.imex.css');
18
  framePts::_()->addScript('admin.imex', $this->getModule()->getModPath(). 'js/admin.imex.js');
19
  framePts::_()->addScript('admin.tables.list', $this->getModule()->getModPath(). 'js/admin.tables.list.js');
20
+ framePts::_()->addJSVar('admin.tables.list', 'ptsTblDataUrl', uriPts::mod('tables', 'getListForTbl', array('reqType' => 'ajax', 'pts_nonce' => wp_create_nonce('pts_nonce'))));
21
 
22
  return parent::getContent('tablesImportExport');
23
  }
24
  public function getTabContent() {
25
+ $this->addPtsNonce();
26
  framePts::_()->getModule('templates')->loadJqGrid();
27
 
28
  framePts::_()->addStyle('admin.tables', $this->getModule()->getModPath(). 'css/admin.tables.css');
29
  framePts::_()->addScript('admin.tables', $this->getModule()->getModPath(). 'js/admin.tables.js');
30
  framePts::_()->addScript('admin.tables.list', $this->getModule()->getModPath(). 'js/admin.tables.list.js');
31
+ framePts::_()->addJSVar('admin.tables.list', 'ptsTblDataUrl', uriPts::mod('tables', 'getListForTbl', array('reqType' => 'ajax', 'pts_nonce' => wp_create_nonce('pts_nonce'))));
32
+
33
  $this->assign('addNewLink', framePts::_()->getModule('options')->getTabUrl('tables_add_new'));
34
  return parent::getContent('tablesAdmin');
35
  }
36
  public function getAddNewTabContent() {
37
+ $this->addPtsNonce();
38
  framePts::_()->getModule('templates')->loadJqueryUi();
39
  framePts::_()->addStyle('admin.tables', $this->getModule()->getModPath(). 'css/admin.tables.css');
40
  framePts::_()->addScript('admin.tables', $this->getModule()->getModPath(). 'js/admin.tables.js');
41
  framePts::_()->getModule('templates')->loadMagicAnims();
42
  framePts::_()->getModule('templates')->loadBootstrapPartialOnlyCss();
43
+
44
  $changeFor = (int) reqPts::getVar('change_for', 'get');
45
  if($changeFor) {
46
  $originalTable = $this->getModel()->getById( $changeFor );
52
  }
53
  $this->assign('list', dispatcherPts::applyFilters('showTplsList', $this->getModel()->getSimpleList(array('original_id' => 0))));
54
  $this->assign('changeFor', $changeFor);
55
+
56
  return parent::getContent('tablesAddNewAdmin');
57
  }
58
  public function modifyBreadcrumbsForChangeTpl($crumbs) {
63
  return array( $crumbs[ count($crumbs) - 1 ] ); // Get rid of all other breadcrumbs - leave space on this page for other important things (buttons, etc.)
64
  }
65
  public function getEditTabContent($id) {
66
+ $this->addPtsNonce();
67
  $table = $this->getModel()->getById($id);
68
  if(empty($table)) {
69
  return __('Cannot find required Table', PTS_LANG_CODE);
70
  }
 
71
  $this->assign('table', $table);
72
  $this->assign('renderedTable', $this->renderTable($table, true));
73
  $this->assign('editorFooter', $this->getEditorFooter());
74
+
75
  dispatcherPts::addAction('afterAdminBreadcrumbs', array($this, 'showEditTableFormControls'));
76
  dispatcherPts::addFilter('mainBreadcrumbs', array($this, 'changeMainBreadCrumbsClb'));
77
 
78
  $this->connectFrontendAssets( $table );
79
  $this->connectEditorAssets( $table );
80
+
81
  framePts::_()->getModule('templates')->loadJqueryUi();
82
+
83
  $ptsAddNewUrl = framePts::_()->getModule('options')->getTabUrl('tables_add_new');
84
  $this->assign('ptsAddNewUrl', $ptsAddNewUrl);
85
+
86
  framePts::_()->getModule('templates')->loadCodemirror();
87
 
88
  framePts::_()->addStyle('codemirror-style', $this->getModule()->getModPath(). 'css/codemirror.css');
90
  framePts::_()->addScript('admin.tables.edit', $this->getModule()->getModPath(). 'js/admin.tables.edit.js');
91
  framePts::_()->addJSVar('admin.tables.edit', 'ptsAddNewUrl', $ptsAddNewUrl);
92
  framePts::_()->addJSVar('admin.tables.edit', 'ptsMCEUrl', PTS_JS_PATH.'tinymce');
93
+
94
  return parent::getContent('tablesEditAdmin');
95
  }
96
  public function showTable($params) {
99
  if(empty($table)) {
100
  return __('Cannot find required Table', PTS_LANG_CODE);
101
  }
102
+
103
  framePts::_()->getModule('templates')->loadCoreJs();
104
  $this->connectFrontendAssets( $table );
105
  $this->assign('renderedTable', $this->renderTable($table, false));
112
  if(is_numeric($table)) {
113
  $table = $this->getModel()->getById($table);
114
  }
115
+ //Check corrupted table content
116
+ if (!empty($table['html'])) {
117
+ if ( (strpos( $table['html'], 'script' ) !== false) &&
118
+ (
119
+ (strpos( $table['html'], 'document.createElement' ) !== false) ||
120
+ (strpos( $table['html'], 'document.location.href' ) !== false) ||
121
+ (strpos( $table['html'], 'String.fromCharCode' ) !== false) ||
122
+ (strpos( $table['html'], 'window.location.replace' ) !== false) ||
123
+ (strpos( $table['html'], 'window' ) !== false) ||
124
+ (strpos( $table['html'], 'document' ) !== false)
125
+ )
126
+ )
127
+ {
128
+ if ($isEditMode) {
129
+ $table['html'] = 'A malicious script with (document.createElement or String.fromCharCode) was found in your table. The table may be corrupted. Perhaps as a result of a hacker attack (SQL injection, CSRF) in an outdated version of the plugin. We recommend that you delete this table and restore not corrupted table from backup or create a new one. We also recommend updating the plugin version to the latest. If you have any questions, please contact our technical support. We apologize for the inconvenience.';
130
+ } else {
131
+ $table['html'] = '';
132
+ }
133
+ }
134
+ }
135
  if(!isset($this->table) || $this->table != $table) {
136
  // if params enb_desc_col disabled - cut description column
137
  if($isEditMode === false) {
153
  $content = parent::getContent('tablesRender');
154
  $this->_initTwig();
155
  return $this->_twig->render($content, array(
156
+ 'table' => $table,
157
  'isEditMode' => $isEditMode,
158
  ));
159
  }
175
  framePts::_()->getModule('templates')->loadCoreJs();
176
  framePts::_()->getModule('templates')->loadBootstrap();
177
  framePts::_()->getModule('templates')->loadCustomBootstrapColorpicker();
178
+
179
  if($isEditMode) {
180
  $originalBlocksByCategories = $this->getModel('tables_blocks')->getOriginalBlocksByCategories();
181
  $this->assign('originalBlocksByCategories', $originalBlocksByCategories);
182
+
183
  $this->assign('allPagesUrl', framePts::_()->getModule('options')->getTabUrl('tables'));
184
  $this->assign('previewPageUrl', get_permalink($post));
185
  }
186
  $this->_preparePtsoForRender( $tables, $isEditMode );
187
+
188
  $this->assign('tables', $tables);
189
  $this->assign('pid', $pid);
190
  $this->assign('isEditMode', $isEditMode);
237
 
238
  framePts::_()->getModule('templates')->loadFontAwesome();
239
  framePts::_()->getModule('templates')->loadTooltipster();
240
+
241
  if ($isDebbug) {
242
  framePts::_()->addScript('pts.js.responsive.text', PTS_JS_PATH . 'responsiveText.js');
243
  framePts::_()->addScript('frontend.tables.editor.blocks_fabric.base', $this->getModule()->getModPath(). 'js/frontend.tables.editor.blocks_fabric.base.js');
266
  $this->assign('adminEmail', get_bloginfo('admin_email'));
267
  $this->connectEditorJs( $tables );
268
  $this->connectEditorCss( $tables );
269
+
270
  $isPro = framePts::_()->getModule('supsystic_promo')->isPro();
271
  if($isPro && framePts::_()->getModule('tablepro')) {
272
  framePts::_()->addScript('admin.tablesPro', framePts::_()->getModule('tablepro')->getModPath(). 'js/admin.pro.tables.js', array('jquery'), false, true);
273
  framePts::_()->getModule('templates')->loadDatePicker();
274
  }
275
+
276
  framePts::_()->getModule('templates')->loadBootstrapPartial();
277
 
278
  $this->getModule()->assignRenderedTables();
281
  framePts::_()->addScript('jquery-ui-core');
282
  framePts::_()->addScript('jquery-ui-widget');
283
  framePts::_()->addScript('jquery-ui-mouse');
284
+
285
  framePts::_()->addScript('jquery-ui-draggable');
286
  framePts::_()->addScript('jquery-ui-sortable');
287
  //framePts::_()->addScript('jquery-ui-dialog');
288
+
289
  framePts::_()->getModule('templates')->loadMediaScripts();
290
  framePts::_()->getModule('templates')->loadCustomBootstrapColorpicker();
291
  framePts::_()->getModule('templates')->loadTinyMce();
292
  //framePts::_()->getModule('templates')->loadContextMenu();
293
  //framePts::_()->getModule('templates')->loadCustomColorpicker();
294
  framePts::_()->getModule('templates')->loadSlimscroll();
295
+
296
  framePts::_()->addScript('twig', PTS_JS_PATH. 'twig.min.js');
297
  framePts::_()->addScript('icheck', PTS_JS_PATH. 'icheck.min.js');
298
  //framePts::_()->addScript('frontend.tables.editor.menus', $this->getModule()->getModPath(). 'js/frontend.tables.editor.menus.js');
375
  $color = max(0, min(255, $color + $steps)); // Adjust color
376
  $return .= str_pad(dechex($color), 2, '0', STR_PAD_LEFT); // Make two char hex code
377
  }
378
+
379
  if($isRgb) {
380
  $return = utilsPts::hexToRgb( $return );
381
  if($isRgba) { // Don't forget about alpha chanel
modules/tables/views/tpl/tablesAddNewAdmin.php CHANGED
@@ -23,6 +23,7 @@
23
  <?php echo htmlPts::hidden('original_id')?>
24
  <?php echo htmlPts::hidden('mod', array('value' => 'tables'))?>
25
  <?php echo htmlPts::hidden('action', array('value' => 'createFromTpl'))?>
 
26
  </form>
27
  <div style="clear: both;"></div>
28
  <div id="ptsCreateTableMsg"></div>
@@ -59,6 +60,7 @@
59
  <?php echo htmlPts::hidden('new_tpl_id')?>
60
  <?php echo htmlPts::hidden('mod', array('value' => 'tables'))?>
61
  <?php echo htmlPts::hidden('action', array('value' => 'changeTpl'))?>
 
62
  </form>
63
  <div id="ptsChangeTplMsg"></div>
64
  </div>
23
  <?php echo htmlPts::hidden('original_id')?>
24
  <?php echo htmlPts::hidden('mod', array('value' => 'tables'))?>
25
  <?php echo htmlPts::hidden('action', array('value' => 'createFromTpl'))?>
26
+ <?php wp_nonce_field('pts_nonce', 'pts_nonce'); ?>
27
  </form>
28
  <div style="clear: both;"></div>
29
  <div id="ptsCreateTableMsg"></div>
60
  <?php echo htmlPts::hidden('new_tpl_id')?>
61
  <?php echo htmlPts::hidden('mod', array('value' => 'tables'))?>
62
  <?php echo htmlPts::hidden('action', array('value' => 'changeTpl'))?>
63
+ <?php wp_nonce_field('pts_nonce', 'pts_nonce'); ?>
64
  </form>
65
  <div id="ptsChangeTplMsg"></div>
66
  </div>
modules/tables/views/tpl/tablesAdmin.php CHANGED
@@ -23,4 +23,4 @@
23
  </div>
24
  <div style="clear: both;"></div>
25
  </div>
26
- </section>
23
  </div>
24
  <div style="clear: both;"></div>
25
  </div>
26
+ </section>
modules/tables/views/tpl/tablesEditFormControls.php CHANGED
@@ -64,6 +64,7 @@
64
  <?php echo htmlPts::text('copy_label', array('value' => $this->table['label']. ' '. __('Copy', PTS_LANG_CODE), 'required' => true))?>
65
  </label>
66
  <div id="ptsTableSaveAsCopyMsg"></div>
 
67
  <?php echo htmlPts::hidden('mod', array('value' => 'tables'))?>
68
  <?php echo htmlPts::hidden('action', array('value' => 'saveAsCopy'))?>
69
  <?php echo htmlPts::hidden('id', array('value' => $this->table['id']))?>
@@ -80,4 +81,4 @@
80
  'value' => $this->table['id'] ? $this->table['html'] : '',
81
  'attrs' => 'id="ptsBbHtmlInp" class="ptsCssBlockEditor"'
82
  ))?>
83
- </div>
64
  <?php echo htmlPts::text('copy_label', array('value' => $this->table['label']. ' '. __('Copy', PTS_LANG_CODE), 'required' => true))?>
65
  </label>
66
  <div id="ptsTableSaveAsCopyMsg"></div>
67
+ <?php wp_nonce_field('pts_nonce', 'pts_nonce'); ?>
68
  <?php echo htmlPts::hidden('mod', array('value' => 'tables'))?>
69
  <?php echo htmlPts::hidden('action', array('value' => 'saveAsCopy'))?>
70
  <?php echo htmlPts::hidden('id', array('value' => $this->table['id']))?>
81
  'value' => $this->table['id'] ? $this->table['html'] : '',
82
  'attrs' => 'id="ptsBbHtmlInp" class="ptsCssBlockEditor"'
83
  ))?>
84
+ </div>
modules/tables/views/tpl/tablesRender.php CHANGED
@@ -12,4 +12,4 @@
12
  <div class="ptsBlockContent"><?php echo $this->table ? $this->table['html'] : ''?></div>
13
  <?php }?>
14
  <?php dispatcherPts::doAction('tableEnd');?>
15
- </div>
12
  <div class="ptsBlockContent"><?php echo $this->table ? $this->table['html'] : ''?></div>
13
  <?php }?>
14
  <?php dispatcherPts::doAction('tableEnd');?>
15
+ </div>
modules/tables/views/tpl/tablesShowTable.php CHANGED
@@ -10,4 +10,4 @@
10
  </style>
11
  </div>
12
  <?php echo $this->renderedTable; ?>
13
- </div>
10
  </style>
11
  </div>
12
  <?php echo $this->renderedTable; ?>
13
+ </div>
modules/templates/mod.php CHANGED
@@ -2,7 +2,7 @@
2
  class templatesPts extends modulePts {
3
  protected $_styles = array();
4
  private $_cdnUrl = '';
5
-
6
  public function __construct($d) {
7
  parent::__construct($d);
8
  $this->getCdnUrl(); // Init CDN URL
@@ -25,7 +25,7 @@ class templatesPts extends modulePts {
25
  public function modifyExternalToLocalCdn( $url ) {
26
  $url = str_replace(
27
  array('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css'),
28
- array($this->_cdnUrl. 'lib/font-awesome'),
29
  $url);
30
  return $url;
31
  }
@@ -132,14 +132,14 @@ class templatesPts extends modulePts {
132
  framePts::_()->addScript('icheck', PTS_JS_PATH. 'icheck.min.js');
133
  framePts::_()->addStyle('tables.icheck', PTS_CSS_PATH. 'jquery.icheck.css');
134
  framePts::_()->addScript('corePts', PTS_JS_PATH . 'core.js');
135
-
136
  $ajaxurl = admin_url('admin-ajax.php');
137
  $jsData = array(
138
  'siteUrl' => PTS_SITE_URL,
139
  'imgPath' => PTS_IMG_PATH,
140
  'cssPath' => PTS_CSS_PATH,
141
- 'loader' => PTS_LOADER_IMG,
142
- 'close' => PTS_IMG_PATH. 'cross.gif',
143
  'ajaxurl' => $ajaxurl,
144
  'options' => framePts::_()->getModule('options')->getAllowedPublicOptions(),
145
  'PTS_CODE' => PTS_CODE,
@@ -154,8 +154,8 @@ class templatesPts extends modulePts {
154
  }
155
  public function loadCoreCss() {
156
  $this->_styles = dispatcherPts::applyFilters('coreCssList', array(
157
- 'stylePts' => array('path' => PTS_CSS_PATH. 'style.css', 'for' => 'admin'),
158
- 'supsystic-uiPts' => array('path' => PTS_CSS_PATH. 'supsystic-ui.css', 'for' => 'admin'),
159
  'dashicons' => array('for' => 'admin'),
160
  'bootstrap-alerts' => array('path' => PTS_CSS_PATH. 'bootstrap-alerts.css', 'for' => 'admin'),
161
  'icheck' => array('path' => PTS_CSS_PATH. 'jquery.icheck.css', 'for' => 'admin'),
@@ -189,7 +189,7 @@ class templatesPts extends modulePts {
189
  framePts::_()->addStyle('bootstrap', framePts::_()->getModule('templates')->getModPath(). 'css/bootstrap.min.css');
190
  framePts::_()->addStyle('bootstrap-theme', framePts::_()->getModule('templates')->getModPath(). 'css/bootstrap-theme.min.css');
191
  framePts::_()->addScript('bootstrap', PTS_JS_PATH. 'bootstrap.min.js');
192
-
193
  framePts::_()->addStyle('jasny-bootstrap', PTS_CSS_PATH. 'jasny-bootstrap.min.css');
194
  framePts::_()->addScript('jasny-bootstrap', PTS_JS_PATH. 'jasny-bootstrap.min.js');
195
  $loaded = true;
@@ -243,4 +243,4 @@ class templatesPts extends modulePts {
243
  $loaded[ $font ] = 1;
244
  }
245
  }
246
- }
2
  class templatesPts extends modulePts {
3
  protected $_styles = array();
4
  private $_cdnUrl = '';
5
+
6
  public function __construct($d) {
7
  parent::__construct($d);
8
  $this->getCdnUrl(); // Init CDN URL
25
  public function modifyExternalToLocalCdn( $url ) {
26
  $url = str_replace(
27
  array('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css'),
28
+ array($this->_cdnUrl. 'lib/font-awesome'),
29
  $url);
30
  return $url;
31
  }
132
  framePts::_()->addScript('icheck', PTS_JS_PATH. 'icheck.min.js');
133
  framePts::_()->addStyle('tables.icheck', PTS_CSS_PATH. 'jquery.icheck.css');
134
  framePts::_()->addScript('corePts', PTS_JS_PATH . 'core.js');
135
+
136
  $ajaxurl = admin_url('admin-ajax.php');
137
  $jsData = array(
138
  'siteUrl' => PTS_SITE_URL,
139
  'imgPath' => PTS_IMG_PATH,
140
  'cssPath' => PTS_CSS_PATH,
141
+ 'loader' => PTS_LOADER_IMG,
142
+ 'close' => PTS_IMG_PATH. 'cross.gif',
143
  'ajaxurl' => $ajaxurl,
144
  'options' => framePts::_()->getModule('options')->getAllowedPublicOptions(),
145
  'PTS_CODE' => PTS_CODE,
154
  }
155
  public function loadCoreCss() {
156
  $this->_styles = dispatcherPts::applyFilters('coreCssList', array(
157
+ 'stylePts' => array('path' => PTS_CSS_PATH. 'style.css', 'for' => 'admin'),
158
+ 'supsystic-uiPts' => array('path' => PTS_CSS_PATH. 'supsystic-ui.css', 'for' => 'admin'),
159
  'dashicons' => array('for' => 'admin'),
160
  'bootstrap-alerts' => array('path' => PTS_CSS_PATH. 'bootstrap-alerts.css', 'for' => 'admin'),
161
  'icheck' => array('path' => PTS_CSS_PATH. 'jquery.icheck.css', 'for' => 'admin'),
189
  framePts::_()->addStyle('bootstrap', framePts::_()->getModule('templates')->getModPath(). 'css/bootstrap.min.css');
190
  framePts::_()->addStyle('bootstrap-theme', framePts::_()->getModule('templates')->getModPath(). 'css/bootstrap-theme.min.css');
191
  framePts::_()->addScript('bootstrap', PTS_JS_PATH. 'bootstrap.min.js');
192
+
193
  framePts::_()->addStyle('jasny-bootstrap', PTS_CSS_PATH. 'jasny-bootstrap.min.css');
194
  framePts::_()->addScript('jasny-bootstrap', PTS_JS_PATH. 'jasny-bootstrap.min.js');
195
  $loaded = true;
243
  $loaded[ $font ] = 1;
244
  }
245
  }
246
+ }
pts.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Pricing Table by Supsystic
4
  * Plugin URI: https://supsystic.com/plugins/pricing-table/
5
  * Description: Pricing Table generator by Supsystic allow you to create responsive pricing tables or comparison table without any programming skills
6
- * Version: 1.7.11
7
  * Author: supsystic.com
8
  * Author URI: http://supsystic.com/
9
  * Text Domain: pricing-table-by-supsystic
3
  * Plugin Name: Pricing Table by Supsystic
4
  * Plugin URI: https://supsystic.com/plugins/pricing-table/
5
  * Description: Pricing Table generator by Supsystic allow you to create responsive pricing tables or comparison table without any programming skills
6
+ * Version: 1.8.5
7
  * Author: supsystic.com
8
  * Author URI: http://supsystic.com/
9
  * Text Domain: pricing-table-by-supsystic
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: supsystic.com
3
  Donate link: https://supsystic.com/plugins/pricing-table
4
  Tags: price table, pricing table, price, pricing, table, comparison table, css table, comparison, price gird, pricing gird, pricing box, price chart, price plan, chart, plan
5
- Tested up to: 5.3
6
- Stable tag: 1.7.11
7
 
8
  Pricing Table generator by Supsystic allows you to create responsive pricing tables or comparison table without any programming skills
9
 
@@ -159,6 +159,29 @@ Responsiveness is one of the standard practice if you want to create a good cust
159
  Our Pricing Table plugin is a mobile-ready, means that it will render on the devices with different screen size. The [responsive mode](https://supsystic.com/feature/fully-responsive-pricing-table?utm_source=wordpress&utm_medium=responsive&utm_campaign=pricingtable "Responsive mode") is turn on by default, but you can switch off it anytime. Also, plugin provides an opportunity to set a minimum column size.
160
 
161
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  = 1.7.11 / 20.11.2019 =
163
  * Minor fixes
164
 
2
  Contributors: supsystic.com
3
  Donate link: https://supsystic.com/plugins/pricing-table
4
  Tags: price table, pricing table, price, pricing, table, comparison table, css table, comparison, price gird, pricing gird, pricing box, price chart, price plan, chart, plan
5
+ Tested up to: 5.4
6
+ Stable tag: 1.8.5
7
 
8
  Pricing Table generator by Supsystic allows you to create responsive pricing tables or comparison table without any programming skills
9
 
159
  Our Pricing Table plugin is a mobile-ready, means that it will render on the devices with different screen size. The [responsive mode](https://supsystic.com/feature/fully-responsive-pricing-table?utm_source=wordpress&utm_medium=responsive&utm_campaign=pricingtable "Responsive mode") is turn on by default, but you can switch off it anytime. Also, plugin provides an opportunity to set a minimum column size.
160
 
161
  == Changelog ==
162
+ = 1.8.5 / 23.06.2020
163
+ * Add fix for utf8_encode
164
+
165
+ = 1.8.4 / 23.04.2020
166
+ * Add fix for corrupted tables. ( Affected tables will be deleted)
167
+ * Add support WP 5.4
168
+
169
+ = 1.8.3 / 28.02.2020
170
+ * Add fix for license and clone nonce fields
171
+
172
+ =1.8.2 / 24.02.2020
173
+ * Hotfix for security fix for XSS and CSRF
174
+
175
+ = 1.8.1 / 21.02.2020 =
176
+ * Minor fixes
177
+ * Add security fix for XSS and CSRF
178
+
179
+ = 1.8.0 / 14.01.2020 =
180
+
181
+ * Minor fixes
182
+ * Remove phpmailer code
183
+ * Add fix for visual issues
184
+
185
  = 1.7.11 / 20.11.2019 =
186
  * Minor fixes
187