Contact Form by Supsystic - Version 1.7.3

Version Description

/ 23.01.2020 = * Broken images on open

Download this release

Release Info

Developer supsystic.com
Plugin Icon 128x128 Contact Form by Supsystic
Version 1.7.3
Comparing to
See all releases

Code changes from version 1.4.6 to 1.7.3

Files changed (42) hide show
  1. cfs.php +3 -1
  2. classes/frame.php +45 -22
  3. classes/html.php +2 -3
  4. classes/installer.php +1 -1
  5. classes/modInstaller.php +51 -42
  6. classes/utils.php +6 -3
  7. config.php +3 -3
  8. css/supsystic-ui.css +11 -5
  9. js/admin.options.js +3 -0
  10. js/common.min.js +1 -1
  11. js/core.min.js +1 -1
  12. lang/cfs_lng-fr_FR.mo +0 -0
  13. lang/cfs_lng-fr_FR.po +0 -3215
  14. lang/cfs_lng.po +0 -3576
  15. languages/contact-form-by-supsystic-fr_FR.mo +0 -0
  16. languages/contact-form-by-supsystic-fr_FR.po +4837 -0
  17. lang/cfs_lng.mo → languages/contact-form-by-supsystic.mo +0 -0
  18. languages/contact-form-by-supsystic.po +3054 -0
  19. modules/admin_nav/views/tpl/adminNavBreadcrumbs.php +1 -1
  20. modules/forms/controller.php +2 -2
  21. modules/forms/js/admin.forms.statistics.js +24 -7
  22. modules/forms/js/admin.forms.submit.js +6 -6
  23. modules/forms/js/frontend.forms.js +13 -1
  24. modules/forms/mod.php +16 -1
  25. modules/forms/models/forms.php +83 -42
  26. modules/forms/views/forms.php +14 -6
  27. modules/forms/views/tpl/formsEditAdminPublishContentOpts.php +10 -1
  28. modules/forms/views/tpl/formsEditAdminRegistrationOpts.php +10 -1
  29. modules/forms/views/tpl/formsEditFormFields.php +2 -2
  30. modules/forms/views/tpl/formsEditFormStatistics.php +11 -4
  31. modules/mail/mod.php +21 -9
  32. modules/options/mod.php +1 -1
  33. modules/options/views/tpl/optionsAdminPage.php +1 -0
  34. modules/supsystic_promo/css/admin.featured-plugins.css +4 -0
  35. modules/supsystic_promo/css/admin.overview.css +7 -4
  36. modules/supsystic_promo/img/kinsta_banner.png +0 -0
  37. modules/supsystic_promo/mod.php +56 -11
  38. modules/supsystic_promo/views/supsystic_promo.php +10 -1
  39. modules/supsystic_promo/views/tpl/discountMsg.php +40 -0
  40. modules/supsystic_promo/views/tpl/featuredPlugins.php +7 -5
  41. modules/supsystic_promo/views/tpl/overviewTabContent.php +6 -0
  42. readme.txt +214 -53
cfs.php CHANGED
@@ -2,9 +2,11 @@
2
  /**
3
  * Plugin Name: Contact Form by Supsystic
4
  * Description: Contact Form Builder with drag-and-drop editor to create responsive, mobile ready contact forms in a second. Custom fields and contact form templates
5
- * Version: 1.4.6
6
  * Author: supsystic.com
7
  * Author URI: https://supsystic.com
 
 
8
  **/
9
  /**
10
  * Base config constants and functions
2
  /**
3
  * Plugin Name: Contact Form by Supsystic
4
  * Description: Contact Form Builder with drag-and-drop editor to create responsive, mobile ready contact forms in a second. Custom fields and contact form templates
5
+ * Version: 1.7.3
6
  * Author: supsystic.com
7
  * Author URI: https://supsystic.com
8
+ * Text Domain: contact-form-by-supsystic
9
+ * Domain Path: /languages
10
  **/
11
  /**
12
  * Base config constants and functions
classes/frame.php CHANGED
@@ -15,7 +15,7 @@ class frameCfs {
15
  private $_styles = array();
16
  private $_stylesInitialized = false;
17
  private $_useFootAssets = false;
18
-
19
  private $_scriptsVars = array();
20
  private $_mod = '';
21
  private $_action = '';
@@ -23,10 +23,10 @@ class frameCfs {
23
  * Object with result of executing non-ajax module request
24
  */
25
  private $_res = null;
26
-
27
  public function __construct() {
28
  $this->_res = toeCreateObjCfs('response', array());
29
-
30
  }
31
  static public function getInstance() {
32
  static $instance;
@@ -107,11 +107,11 @@ class frameCfs {
107
  $this->_initModules();
108
 
109
  dispatcherCfs::doAction('afterModulesInit');
110
-
111
  modInstallerCfs::checkActivationMessages();
112
-
113
  $this->_execModules();
114
-
115
  $addAssetsAction = $this->usePackAssets() && !is_admin() ? 'wp_footer' : 'init';
116
 
117
  add_action($addAssetsAction, array($this, 'addScripts'));
@@ -122,10 +122,32 @@ class frameCfs {
122
  register_deactivation_hook(CFS_DIR. DS. CFS_MAIN_FILE, array( 'utilsCfs', 'deactivatePlugin' ) );
123
 
124
  add_action('init', array($this, 'connectLang'));
 
 
125
  //$operationTime = microtime(true) - $startTime;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  }
127
  public function connectLang() {
128
- load_plugin_textdomain(CFS_LANG_CODE, false, CFS_PLUG_NAME. '/lang');
129
  }
130
  /**
131
  * Check permissions for action in controller by $code and made corresponding action
@@ -153,7 +175,7 @@ class frameCfs {
153
  if($mod) {
154
  $permissions = $mod->getController()->getPermissions();
155
  if(!empty($permissions)) { // Special permissions
156
- if(isset($permissions[CFS_METHODS])
157
  && !empty($permissions[CFS_METHODS])
158
  ) {
159
  foreach($permissions[CFS_METHODS] as $method => $permissions) { // Make case-insensitive
@@ -180,14 +202,14 @@ class frameCfs {
180
  if(is_array($methods)) {
181
  $lowerMethods = array_map('strtolower', $methods); // Make case-insensitive
182
  if(in_array($action, $lowerMethods)) { // Permission for this method exists
183
- if($currentUserPosition != $userlevel)
184
  $res = false;
185
  break;
186
  }
187
  } else {
188
  $lowerMethod = strtolower($methods); // Make case-insensitive
189
  if($lowerMethod == $action) { // Permission for this method exists
190
- if($currentUserPosition != $userlevel)
191
  $res = false;
192
  break;
193
  }
@@ -226,7 +248,7 @@ class frameCfs {
226
  if($mod) {
227
  $permissions = $mod->getController()->getPermissions();
228
  if(!empty($permissions)) { // Special permissions
229
- if(isset($permissions[CFS_METHODS])
230
  && !empty($permissions[CFS_METHODS])
231
  ) {
232
  foreach($permissions[CFS_METHODS] as $method => $permissions) { // Make case-insensitive
@@ -338,7 +360,7 @@ class frameCfs {
338
  }
339
  return $res;
340
  }
341
-
342
  public function getModule($code) {
343
  return (isset($this->_modules[$code]) ? $this->_modules[$code] : NULL);
344
  }
@@ -355,6 +377,7 @@ class frameCfs {
355
  * Push data to script array to use it all in addScripts method
356
  * @see wp_enqueue_script definition
357
  */
 
358
  public function addScript($handle, $src = '', $deps = array(), $ver = false, $in_footer = false, $vars = array()) {
359
  $src = empty($src) ? $src : uriCfs::_($src);
360
  if(!$ver)
@@ -363,10 +386,10 @@ class frameCfs {
363
  wp_enqueue_script($handle, $src, $deps, $ver, $in_footer);
364
  } else {
365
  $this->_scripts[] = array(
366
- 'handle' => $handle,
367
- 'src' => $src,
368
- 'deps' => $deps,
369
- 'ver' => $ver,
370
  'in_footer' => $in_footer,
371
  'vars' => $vars
372
  );
@@ -379,7 +402,7 @@ class frameCfs {
379
  if(!empty($this->_scripts)) {
380
  foreach($this->_scripts as $s) {
381
  wp_enqueue_script($s['handle'], $s['src'], $s['deps'], $s['ver'], $s['in_footer']);
382
-
383
  if($s['vars'] || isset($this->_scriptsVars[$s['handle']])) {
384
  $vars = array();
385
  if($s['vars'])
@@ -403,7 +426,7 @@ class frameCfs {
403
  $this->_scriptsVars[$script][$name] = $val;
404
  }
405
  }
406
-
407
  public function addStyle($handle, $src = false, $deps = array(), $ver = false, $media = 'all') {
408
  $src = empty($src) ? $src : uriCfs::_($src);
409
  if(!$ver)
@@ -416,7 +439,7 @@ class frameCfs {
416
  'src' => $src,
417
  'deps' => $deps,
418
  'ver' => $ver,
419
- 'media' => $media
420
  );
421
  }
422
  }
@@ -430,13 +453,13 @@ class frameCfs {
430
  }
431
  //Very interesting thing going here.............
432
  public function loadPlugins() {
433
- require_once(ABSPATH. 'wp-includes/pluggable.php');
434
  }
435
  public function loadWPSettings() {
436
- require_once(ABSPATH. 'wp-settings.php');
437
  }
438
  public function loadLocale() {
439
- require_once(ABSPATH. 'wp-includes/locale.php');
440
  }
441
  public function moduleActive($code) {
442
  return isset($this->_modules[$code]);
15
  private $_styles = array();
16
  private $_stylesInitialized = false;
17
  private $_useFootAssets = false;
18
+
19
  private $_scriptsVars = array();
20
  private $_mod = '';
21
  private $_action = '';
23
  * Object with result of executing non-ajax module request
24
  */
25
  private $_res = null;
26
+
27
  public function __construct() {
28
  $this->_res = toeCreateObjCfs('response', array());
29
+
30
  }
31
  static public function getInstance() {
32
  static $instance;
107
  $this->_initModules();
108
 
109
  dispatcherCfs::doAction('afterModulesInit');
110
+
111
  modInstallerCfs::checkActivationMessages();
112
+
113
  $this->_execModules();
114
+
115
  $addAssetsAction = $this->usePackAssets() && !is_admin() ? 'wp_footer' : 'init';
116
 
117
  add_action($addAssetsAction, array($this, 'addScripts'));
122
  register_deactivation_hook(CFS_DIR. DS. CFS_MAIN_FILE, array( 'utilsCfs', 'deactivatePlugin' ) );
123
 
124
  add_action('init', array($this, 'connectLang'));
125
+ add_filter('do_not_defer', array($this, 'excludeDeferScripts'));
126
+ add_filter('script_loader_tag', array($this, 'add_defer_attribute'), 10, 2);
127
  //$operationTime = microtime(true) - $startTime;
128
+ }
129
+ public function add_defer_attribute($tag, $handle) {
130
+ // add script handles to the array below
131
+ switch ($handle) {
132
+ case 'google.recaptcha':
133
+ return str_replace(' src', ' defer="defer" src', $tag);
134
+ break;
135
+ case 'google.recaptcha.frontend':
136
+ return str_replace(' src', ' defer="defer" src', $tag);
137
+ break;
138
+ }
139
+ return $tag;
140
+ }
141
+ public function excludeDeferScripts($do_not_defer) {
142
+ //Need when WP deferred javaScript is activated
143
+ global $wp_scripts;
144
+ foreach($wp_scripts->queue as $handle) {
145
+ $do_not_defer[] = $handle;
146
+ }
147
+ return $do_not_defer;
148
  }
149
  public function connectLang() {
150
+ load_plugin_textdomain(CFS_LANG_CODE, false, CFS_PLUG_NAME. '/languages/');
151
  }
152
  /**
153
  * Check permissions for action in controller by $code and made corresponding action
175
  if($mod) {
176
  $permissions = $mod->getController()->getPermissions();
177
  if(!empty($permissions)) { // Special permissions
178
+ if(isset($permissions[CFS_METHODS])
179
  && !empty($permissions[CFS_METHODS])
180
  ) {
181
  foreach($permissions[CFS_METHODS] as $method => $permissions) { // Make case-insensitive
202
  if(is_array($methods)) {
203
  $lowerMethods = array_map('strtolower', $methods); // Make case-insensitive
204
  if(in_array($action, $lowerMethods)) { // Permission for this method exists
205
+ if($currentUserPosition != $userlevel)
206
  $res = false;
207
  break;
208
  }
209
  } else {
210
  $lowerMethod = strtolower($methods); // Make case-insensitive
211
  if($lowerMethod == $action) { // Permission for this method exists
212
+ if($currentUserPosition != $userlevel)
213
  $res = false;
214
  break;
215
  }
248
  if($mod) {
249
  $permissions = $mod->getController()->getPermissions();
250
  if(!empty($permissions)) { // Special permissions
251
+ if(isset($permissions[CFS_METHODS])
252
  && !empty($permissions[CFS_METHODS])
253
  ) {
254
  foreach($permissions[CFS_METHODS] as $method => $permissions) { // Make case-insensitive
360
  }
361
  return $res;
362
  }
363
+
364
  public function getModule($code) {
365
  return (isset($this->_modules[$code]) ? $this->_modules[$code] : NULL);
366
  }
377
  * Push data to script array to use it all in addScripts method
378
  * @see wp_enqueue_script definition
379
  */
380
+
381
  public function addScript($handle, $src = '', $deps = array(), $ver = false, $in_footer = false, $vars = array()) {
382
  $src = empty($src) ? $src : uriCfs::_($src);
383
  if(!$ver)
386
  wp_enqueue_script($handle, $src, $deps, $ver, $in_footer);
387
  } else {
388
  $this->_scripts[] = array(
389
+ 'handle' => $handle,
390
+ 'src' => $src,
391
+ 'deps' => $deps,
392
+ 'ver' => $ver,
393
  'in_footer' => $in_footer,
394
  'vars' => $vars
395
  );
402
  if(!empty($this->_scripts)) {
403
  foreach($this->_scripts as $s) {
404
  wp_enqueue_script($s['handle'], $s['src'], $s['deps'], $s['ver'], $s['in_footer']);
405
+
406
  if($s['vars'] || isset($this->_scriptsVars[$s['handle']])) {
407
  $vars = array();
408
  if($s['vars'])
426
  $this->_scriptsVars[$script][$name] = $val;
427
  }
428
  }
429
+
430
  public function addStyle($handle, $src = false, $deps = array(), $ver = false, $media = 'all') {
431
  $src = empty($src) ? $src : uriCfs::_($src);
432
  if(!$ver)
439
  'src' => $src,
440
  'deps' => $deps,
441
  'ver' => $ver,
442
+ 'media' => $media
443
  );
444
  }
445
  }
453
  }
454
  //Very interesting thing going here.............
455
  public function loadPlugins() {
456
+ require_once(ABSPATH. 'wp-includes/pluggable.php');
457
  }
458
  public function loadWPSettings() {
459
+ require_once(ABSPATH. 'wp-settings.php');
460
  }
461
  public function loadLocale() {
462
+ require_once(ABSPATH. 'wp-includes/locale.php');
463
  }
464
  public function moduleActive($code) {
465
  return isset($this->_modules[$code]);
classes/html.php CHANGED
@@ -14,7 +14,7 @@ class htmlCfs {
14
  return $idMatches[1];
15
  }
16
  }
17
- return str_replace(array('[', ']'), '', $name);
18
  }
19
  static public function textarea($name, $params = array('attrs' => '', 'value' => '', 'rows' => 3, 'cols' => 50)) {
20
  $params['attrs'] = isset($params['attrs']) ? $params['attrs'] : '';
@@ -754,13 +754,12 @@ class htmlCfs {
754
  selectedUrl = attachment.sizes[ props.size ].url;
755
  }
756
  jQuery("#'. $inputId. '").val( selectedUrl ).trigger("change");
757
- '. ($onChange ? $onChange. '(selectedUrl, attachment, "'. $buttonId. '");' : ''). '
758
  } else {
759
  return _orig_send_attachment.apply( this, [props, attachment] );
760
  };
761
  };
762
  wp.media.editor.open(button);
763
- jQuery(".attachment-filters").val("'. $galleryType. '").trigger("change");
764
  return false;
765
  });
766
  });
14
  return $idMatches[1];
15
  }
16
  }
17
+ return str_replace(array('[', ']'), '', $name);
18
  }
19
  static public function textarea($name, $params = array('attrs' => '', 'value' => '', 'rows' => 3, 'cols' => 50)) {
20
  $params['attrs'] = isset($params['attrs']) ? $params['attrs'] : '';
754
  selectedUrl = attachment.sizes[ props.size ].url;
755
  }
756
  jQuery("#'. $inputId. '").val( selectedUrl ).trigger("change");
757
+ '. ($onChange ? $onChange. '(attachment.url, attachment, "'. $buttonId. '");' : ''). '
758
  } else {
759
  return _orig_send_attachment.apply( this, [props, attachment] );
760
  };
761
  };
762
  wp.media.editor.open(button);
 
763
  return false;
764
  });
765
  });
classes/installer.php CHANGED
@@ -66,7 +66,7 @@ class installerCfs {
66
  `original_id` INT(11) NOT NULL DEFAULT '0',
67
  `unique_id` VARCHAR(8) NOT NULL,
68
 
69
- `params` TEXT NOT NULL,
70
  `html` TEXT NOT NULL,
71
  `css` TEXT NOT NULL,
72
  `img_preview` VARCHAR(128) NULL DEFAULT NULL,
66
  `original_id` INT(11) NOT NULL DEFAULT '0',
67
  `unique_id` VARCHAR(8) NOT NULL,
68
 
69
+ `params` MEDIUMTEXT NOT NULL,
70
  `html` TEXT NOT NULL,
71
  `css` TEXT NOT NULL,
72
  `img_preview` VARCHAR(128) NULL DEFAULT NULL,
classes/modInstaller.php CHANGED
@@ -72,7 +72,7 @@ class modInstallerCfs {
72
  if(mkdir(CFS_MODULES_DIR. $code)) {
73
  utilsCfs::copyDirectories($path, CFS_MODULES_DIR. $code);
74
  return true;
75
- } else
76
  errorsCfs::push(__('Cannot create module directory. Try to set permission to '. CFS_MODULES_DIR. ' directory 755 or 777', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
77
  } else
78
  return true;
@@ -89,6 +89,7 @@ class modInstallerCfs {
89
  $locations['plugDir'] = dirname(WP_PLUGIN_DIR. DS. $locations['plugPath']);
90
  $locations['plugMainFile'] = WP_PLUGIN_DIR. DS. $locations['plugPath'];
91
  $locations['xmlPath'] = $locations['plugDir']. DS. 'install.xml';
 
92
  return $locations;
93
  }
94
  static private function _getModulesFromXml($xmlPath) {
@@ -109,6 +110,23 @@ class modInstallerCfs {
109
  errorsCfs::push(__('No XML file were found', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
110
  return false;
111
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  /**
113
  * Check whether modules is installed or not, if not and must be activated - install it
114
  * @param array $codes array with modules data to store in database
@@ -120,16 +138,15 @@ class modInstallerCfs {
120
  add_action('activated_plugin', array(frameCfs::_(), 'savePluginActivationErrors'));
121
  }
122
  $locations = self::_getPluginLocations();
123
- if($modules = self::_getModulesFromXml($locations['xmlPath'])) {
124
  foreach($modules as $m) {
125
- $modDataArr = utilsCfs::xmlNodeAttrsToArr($m);
126
- if(!empty($modDataArr)) {
127
  //If module Exists - just activate it, we can't check this using frameCfs::moduleExists because this will not work for multy-site WP
128
- if(frameCfs::_()->getTable('modules')->exists($modDataArr['code'], 'code') /*frameCfs::_()->moduleExists($modDataArr['code'])*/) {
129
- self::activate($modDataArr);
130
  } else { // if not - install it
131
- if(!self::install($modDataArr, $locations['plugDir'])) {
132
- errorsCfs::push(sprintf(__('Install %s failed'), $modDataArr['code']), errorsCfs::MOD_INSTALL);
133
  }
134
  }
135
  }
@@ -157,12 +174,11 @@ class modInstallerCfs {
157
  */
158
  static public function deactivate() {
159
  $locations = self::_getPluginLocations();
160
- if($modules = self::_getModulesFromXml($locations['xmlPath'])) {
161
  foreach($modules as $m) {
162
- $modDataArr = utilsCfs::xmlNodeAttrsToArr($m);
163
- if(frameCfs::_()->moduleActive($modDataArr['code'])) { //If module is active - then deacivate it
164
  if(frameCfs::_()->getModule('options')->getModel('modules')->put(array(
165
- 'id' => frameCfs::_()->getModule($modDataArr['code'])->getID(),
166
  'active' => 0,
167
  ))->error) {
168
  errorsCfs::push(__('Error Deactivation module', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
@@ -177,27 +193,21 @@ class modInstallerCfs {
177
  return true;
178
  }
179
  static public function activate($modDataArr) {
180
- $locations = self::_getPluginLocations();
181
- if($modules = self::_getModulesFromXml($locations['xmlPath'])) {
182
- foreach($modules as $m) {
183
- $modDataArr = utilsCfs::xmlNodeAttrsToArr($m);
184
- if(!frameCfs::_()->moduleActive($modDataArr['code'])) { //If module is not active - then acivate it
185
- if(frameCfs::_()->getModule('options')->getModel('modules')->put(array(
186
- 'code' => $modDataArr['code'],
187
- 'active' => 1,
188
- ))->error) {
189
- errorsCfs::push(__('Error Activating module', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
190
- } else {
191
- $dbModData = frameCfs::_()->getModule('options')->getModel('modules')->get(array('code' => $modDataArr['code']));
192
- if(!empty($dbModData) && !empty($dbModData[0])) {
193
- $modDataArr['ex_plug_dir'] = $dbModData[0]['ex_plug_dir'];
194
- }
195
- self::_runModuleInstall($modDataArr, 'activate');
196
- }
197
- }
198
- }
199
- }
200
- }
201
  /**
202
  * Display all errors for module installer, must be used ONLY if You realy need it
203
  */
@@ -210,12 +220,11 @@ class modInstallerCfs {
210
  }
211
  static public function uninstall() {
212
  $locations = self::_getPluginLocations();
213
- if($modules = self::_getModulesFromXml($locations['xmlPath'])) {
214
  foreach($modules as $m) {
215
- $modDataArr = utilsCfs::xmlNodeAttrsToArr($m);
216
- self::_uninstallTables($modDataArr);
217
- frameCfs::_()->getModule('options')->getModel('modules')->delete(array('code' => $modDataArr['code']));
218
- utilsCfs::deleteDir(CFS_MODULES_DIR. $modDataArr['code']);
219
  }
220
  }
221
  }
@@ -232,9 +241,9 @@ class modInstallerCfs {
232
  }
233
  }
234
  static public function _installTables($module, $action = 'install') {
235
- $modDir = empty($module['ex_plug_dir']) ?
236
- CFS_MODULES_DIR. $module['code']. DS :
237
- utilsCfs::getPluginDir($module['ex_plug_dir']). $module['code']. DS;
238
  if(is_dir($modDir. 'tables')) {
239
  $tableFiles = utilsCfs::getFilesList($modDir. 'tables');
240
  if(!empty($tableFiles)) {
@@ -247,4 +256,4 @@ class modInstallerCfs {
247
  }
248
  }
249
  }
250
- }
72
  if(mkdir(CFS_MODULES_DIR. $code)) {
73
  utilsCfs::copyDirectories($path, CFS_MODULES_DIR. $code);
74
  return true;
75
+ } else
76
  errorsCfs::push(__('Cannot create module directory. Try to set permission to '. CFS_MODULES_DIR. ' directory 755 or 777', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
77
  } else
78
  return true;
89
  $locations['plugDir'] = dirname(WP_PLUGIN_DIR. DS. $locations['plugPath']);
90
  $locations['plugMainFile'] = WP_PLUGIN_DIR. DS. $locations['plugPath'];
91
  $locations['xmlPath'] = $locations['plugDir']. DS. 'install.xml';
92
+ $locations['extendModPath'] = $locations['plugDir']. DS. 'install.php';
93
  return $locations;
94
  }
95
  static private function _getModulesFromXml($xmlPath) {
110
  errorsCfs::push(__('No XML file were found', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
111
  return false;
112
  }
113
+ static private function _getExtendModules($locations) {
114
+ $modules = array();
115
+ $isExtendModPath = file_exists($locations['extendModPath']);
116
+ $modulesList = $isExtendModPath ? include $locations['extendModPath'] : self::_getModulesFromXml($locations['xmlPath']);
117
+ if(!empty($modulesList)) {
118
+ foreach($modulesList as $mod) {
119
+ $modData = $isExtendModPath ? $mod : utilsCfs::xmlNodeAttrsToArr($mod);
120
+ array_push($modules, $modData);
121
+ }
122
+ if(empty($modules))
123
+ errorsCfs::push(__('No modules were found in installation file', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
124
+ else
125
+ return $modules;
126
+ } else
127
+ errorsCfs::push(__('No installation file were found', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
128
+ return false;
129
+ }
130
  /**
131
  * Check whether modules is installed or not, if not and must be activated - install it
132
  * @param array $codes array with modules data to store in database
138
  add_action('activated_plugin', array(frameCfs::_(), 'savePluginActivationErrors'));
139
  }
140
  $locations = self::_getPluginLocations();
141
+ if($modules = self::_getExtendModules($locations)) {
142
  foreach($modules as $m) {
143
+ if(!empty($m)) {
 
144
  //If module Exists - just activate it, we can't check this using frameCfs::moduleExists because this will not work for multy-site WP
145
+ if(frameCfs::_()->getTable('modules')->exists($m['code'], 'code') /*frameCfs::_()->moduleExists($m['code'])*/) {
146
+ self::activate($m);
147
  } else { // if not - install it
148
+ if(!self::install($m, $locations['plugDir'])) {
149
+ errorsCfs::push(sprintf(__('Install %s failed'), $m['code']), errorsCfs::MOD_INSTALL);
150
  }
151
  }
152
  }
174
  */
175
  static public function deactivate() {
176
  $locations = self::_getPluginLocations();
177
+ if($modules = self::_getExtendModules($locations)) {
178
  foreach($modules as $m) {
179
+ if(frameCfs::_()->moduleActive($m['code'])) { //If module is active - then deacivate it
 
180
  if(frameCfs::_()->getModule('options')->getModel('modules')->put(array(
181
+ 'id' => frameCfs::_()->getModule($m['code'])->getID(),
182
  'active' => 0,
183
  ))->error) {
184
  errorsCfs::push(__('Error Deactivation module', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
193
  return true;
194
  }
195
  static public function activate($modDataArr) {
196
+ if(!empty($modDataArr['code']) && !frameCfs::_()->moduleActive($modDataArr['code'])) { //If module is not active - then acivate it
197
+ if(frameCfs::_()->getModule('options')->getModel('modules')->put(array(
198
+ 'code' => $modDataArr['code'],
199
+ 'active' => 1,
200
+ ))->error) {
201
+ errorsCfs::push(__('Error Activating module', CFS_LANG_CODE), errorsCfs::MOD_INSTALL);
202
+ } else {
203
+ $dbModData = frameCfs::_()->getModule('options')->getModel('modules')->get(array('code' => $modDataArr['code']));
204
+ if(!empty($dbModData) && !empty($dbModData[0])) {
205
+ $modDataArr['ex_plug_dir'] = $dbModData[0]['ex_plug_dir'];
206
+ }
207
+ self::_runModuleInstall($modDataArr, 'activate');
208
+ }
209
+ }
210
+ }
 
 
 
 
 
 
211
  /**
212
  * Display all errors for module installer, must be used ONLY if You realy need it
213
  */
220
  }
221
  static public function uninstall() {
222
  $locations = self::_getPluginLocations();
223
+ if($modules = self::_getExtendModules($locations)) {
224
  foreach($modules as $m) {
225
+ self::_uninstallTables($m);
226
+ frameCfs::_()->getModule('options')->getModel('modules')->delete(array('code' => $m['code']));
227
+ utilsCfs::deleteDir(CFS_MODULES_DIR. $m['code']);
 
228
  }
229
  }
230
  }
241
  }
242
  }
243
  static public function _installTables($module, $action = 'install') {
244
+ $modDir = empty($module['ex_plug_dir']) ?
245
+ CFS_MODULES_DIR. $module['code']. DS :
246
+ utilsCfs::getPluginDir($module['ex_plug_dir']). $module['code']. DS;
247
  if(is_dir($modDir. 'tables')) {
248
  $tableFiles = utilsCfs::getFilesList($modDir. 'tables');
249
  if(!empty($tableFiles)) {
256
  }
257
  }
258
  }
259
+ }
classes/utils.php CHANGED
@@ -332,9 +332,10 @@ class utilsCfs {
332
  foreach ($blog_id as $id) {
333
  if (switch_to_blog($id)) {
334
  installerCfs::init();
 
335
  }
336
  }
337
- restore_current_blog();
338
  // switch_to_blog($orig_id);
339
  return;
340
  } else {
@@ -355,9 +356,10 @@ class utilsCfs {
355
  foreach ($blog_id as $id) {
356
  if (switch_to_blog($id)) {
357
  installerCfs::delete();
 
358
  }
359
  }
360
- restore_current_blog();
361
  // switch_to_blog($orig_id);
362
  return;
363
  } else {
@@ -372,9 +374,10 @@ class utilsCfs {
372
  foreach ($blog_id as $id) {
373
  if (switch_to_blog($id)) {
374
  installerCfs::deactivate();
 
375
  }
376
  }
377
- restore_current_blog();
378
  // switch_to_blog($orig_id);
379
  return;
380
  } else {
332
  foreach ($blog_id as $id) {
333
  if (switch_to_blog($id)) {
334
  installerCfs::init();
335
+ restore_current_blog();
336
  }
337
  }
338
+ // restore_current_blog();
339
  // switch_to_blog($orig_id);
340
  return;
341
  } else {
356
  foreach ($blog_id as $id) {
357
  if (switch_to_blog($id)) {
358
  installerCfs::delete();
359
+ restore_current_blog();
360
  }
361
  }
362
+ // restore_current_blog();
363
  // switch_to_blog($orig_id);
364
  return;
365
  } else {
374
  foreach ($blog_id as $id) {
375
  if (switch_to_blog($id)) {
376
  installerCfs::deactivate();
377
+ restore_current_blog();
378
  }
379
  }
380
+ // restore_current_blog();
381
  // switch_to_blog($orig_id);
382
  return;
383
  } else {
config.php CHANGED
@@ -13,7 +13,7 @@
13
  define('CFS_CLASSES_DIR', CFS_DIR. 'classes'. DS);
14
  define('CFS_TABLES_DIR', CFS_CLASSES_DIR. 'tables'. DS);
15
  define('CFS_HELPERS_DIR', CFS_CLASSES_DIR. 'helpers'. DS);
16
- define('CFS_LANG_DIR', CFS_DIR. 'lang'. DS);
17
  define('CFS_IMG_DIR', CFS_DIR. 'img'. DS);
18
  define('CFS_TEMPLATES_DIR', CFS_DIR. 'templates'. DS);
19
  define('CFS_MODULES_DIR', CFS_DIR. 'modules'. DS);
@@ -48,7 +48,7 @@
48
  define('CFS_EOL', "\n");
49
 
50
  define('CFS_PLUGIN_INSTALLED', true);
51
- define('CFS_VERSION', '1.4.6');
52
  define('CFS_USER', 'user');
53
 
54
  define('CFS_CLASS_PREFIX', 'cfsc');
@@ -72,7 +72,7 @@
72
  */
73
  define('CFS_CODE', 'cfs');
74
 
75
- define('CFS_LANG_CODE', 'cfs_lng');
76
  /**
77
  * Plugin name
78
  */
13
  define('CFS_CLASSES_DIR', CFS_DIR. 'classes'. DS);
14
  define('CFS_TABLES_DIR', CFS_CLASSES_DIR. 'tables'. DS);
15
  define('CFS_HELPERS_DIR', CFS_CLASSES_DIR. 'helpers'. DS);
16
+ define('CFS_LANG_DIR', CFS_DIR. 'languages'. DS);
17
  define('CFS_IMG_DIR', CFS_DIR. 'img'. DS);
18
  define('CFS_TEMPLATES_DIR', CFS_DIR. 'templates'. DS);
19
  define('CFS_MODULES_DIR', CFS_DIR. 'modules'. DS);
48
  define('CFS_EOL', "\n");
49
 
50
  define('CFS_PLUGIN_INSTALLED', true);
51
+ define('CFS_VERSION', '1.7.3');
52
  define('CFS_USER', 'user');
53
 
54
  define('CFS_CLASS_PREFIX', 'cfsc');
72
  */
73
  define('CFS_CODE', 'cfs');
74
 
75
+ define('CFS_LANG_CODE', 'contact-form-by-supsystic');
76
  /**
77
  * Plugin name
78
  */
css/supsystic-ui.css CHANGED
@@ -386,7 +386,7 @@ input[type="color"] {
386
  -o-transition-property: none;
387
  transition-property: none;
388
  }
389
- .supsystic-plugin .nav-tab-active,
390
  .supsystic-plugin .nav-tab-active:hover,
391
  .ui-dialog .nav-tab-active,
392
  .ui-dialog .nav-tab-active:hover {
@@ -401,13 +401,13 @@ input[type="color"] {
401
  display: none;
402
  }
403
  /*buttons*/
404
- .supsystic-plugin .button,
405
  .supsystic-plugin .button-primary,
406
  .ui-dialog .button,
407
  .ui-dialog .button-primary,
408
  .ui-button,
409
  .ui-button.ui-state-default,
410
- .wp-core-ui .supsystic-plugin .button,
411
  .wp-core-ui.supsystic-plugin .button-primary,
412
  /*.wp-core-ui .ui-dialog .button,
413
  .wp-core-ui .ui-dialog .button-primary,*/
@@ -465,7 +465,7 @@ input[type="color"] {
465
  .ui-dialog .button:hover,
466
  .ui-dialog .button-primary:focus,
467
  .ui-button.ui-state-hover,
468
- .ui-button:hover,
469
  .ui-button:focus,
470
  .wp-core-ui .supsystic-plugin .button.hover,
471
  .wp-core-ui .supsystic-plugin .button:hover,
@@ -478,7 +478,7 @@ input[type="color"] {
478
  .wp-core-ui .ui-dialog .button:hover,
479
  .wp-core-ui .ui-dialog .button-primary:focus,
480
  .wp-core-ui .ui-button.ui-state-hover,
481
- .wp-core-ui .ui-button:hover,
482
  .wp-core-ui .ui-button:focus {
483
  background: #4ae8ea !important;
484
  border-color: #4ae8ea !important;
@@ -847,3 +847,9 @@ a.search-choice-close {
847
  #supsystic-breadcrumbs .cfsFormShowMethodSelectionShell .button {
848
  margin-bottom: 10px;
849
  }
 
 
 
 
 
 
386
  -o-transition-property: none;
387
  transition-property: none;
388
  }
389
+ .supsystic-plugin .nav-tab-active,
390
  .supsystic-plugin .nav-tab-active:hover,
391
  .ui-dialog .nav-tab-active,
392
  .ui-dialog .nav-tab-active:hover {
401
  display: none;
402
  }
403
  /*buttons*/
404
+ .supsystic-plugin .button,
405
  .supsystic-plugin .button-primary,
406
  .ui-dialog .button,
407
  .ui-dialog .button-primary,
408
  .ui-button,
409
  .ui-button.ui-state-default,
410
+ .wp-core-ui .supsystic-plugin .button,
411
  .wp-core-ui.supsystic-plugin .button-primary,
412
  /*.wp-core-ui .ui-dialog .button,
413
  .wp-core-ui .ui-dialog .button-primary,*/
465
  .ui-dialog .button:hover,
466
  .ui-dialog .button-primary:focus,
467
  .ui-button.ui-state-hover,
468
+ .ui-button:hover,
469
  .ui-button:focus,
470
  .wp-core-ui .supsystic-plugin .button.hover,
471
  .wp-core-ui .supsystic-plugin .button:hover,
478
  .wp-core-ui .ui-dialog .button:hover,
479
  .wp-core-ui .ui-dialog .button-primary:focus,
480
  .wp-core-ui .ui-button.ui-state-hover,
481
+ .wp-core-ui .ui-button:hover,
482
  .wp-core-ui .ui-button:focus {
483
  background: #4ae8ea !important;
484
  border-color: #4ae8ea !important;
847
  #supsystic-breadcrumbs .cfsFormShowMethodSelectionShell .button {
848
  margin-bottom: 10px;
849
  }
850
+ #cfsCreateFormFrm input {
851
+ height: 35px;
852
+ }
853
+ .button-hero {
854
+ min-height: auto !important;
855
+ }
js/admin.options.js CHANGED
@@ -96,6 +96,9 @@ jQuery(document).ready(function(){
96
  }
97
  // Check for showing review notice after a week usage
98
  cfsInitPlugNotices();
 
 
 
99
  });
100
  function cfsInitTooltips( selector ) {
101
  var tooltipsterSettings = {
96
  }
97
  // Check for showing review notice after a week usage
98
  cfsInitPlugNotices();
99
+
100
+ jQuery(".supsystic-plugin .tooltipstered").removeAttr("title");
101
+
102
  });
103
  function cfsInitTooltips( selector ) {
104
  var tooltipsterSettings = {
js/common.min.js CHANGED
@@ -1,2 +1,2 @@
1
-
2
  jQuery.fn.nextInArray=function(b){var c=0;for(var a=0;a<this.length;a++){if(this[a]==b){c=a+1;break}}if(c>this.length-1){c=0}return this[c]};jQuery.fn.clearForm=function(){return this.each(function(){var b=this.type,a=this.tagName.toLowerCase();if(a=="form"){return jQuery(":input",this).clearForm()}if(b=="text"||b=="password"||a=="textarea"){this.value=""}else{if(b=="checkbox"||b=="radio"){this.checked=false}else{if(a=="select"){this.selectedIndex=-1}}}})};jQuery.fn.tagName=function(){return this.get(0).tagName};jQuery.fn.exists=function(){return(jQuery(this).size()>0?true:false)};function isNumber(a){return/^\d+/.test(a)}function pushDataToParam(e,a){a=a?a:"";var d=[];for(var c in e){var b=a&&a!=""?a+"["+c+"]":c;if(typeof(e[c])==="array"||typeof(e[c])==="object"){d=jQuery.merge(d,pushDataToParam(e[c],b))}else{d.push(b+"="+e[c])}}return d}jQuery.fn.serializeAnythingDeepCfs=function(){var c=[],b=jQuery(this).find(":input").get(),a=function(d,f){for(var e=0;e<d.length;e++){switch(e){case 0:if(!c[d[e]]){c[d[e]]=[]}break;case 1:if(!c[d[e-1]][d[e]]){c[d[e-1]][d[e]]=[]}break;case 2:if(!c[d[e-2]][d[e-1]][d[e]]){c[d[e-2]][d[e-1]][d[e]]=[]}break;case 3:if(!c[d[e-3]][d[e-2]][d[e-1]][d[e]]){c[d[e-3]][d[e-2]][d[e-1]][d[e]]=[]}break;case 4:if(!c[d[e-4]][d[e-3]][d[e-2]][d[e-1]][d[e]]){c[d[e-4]][d[e-3]][d[e-2]][d[e-1]][d[e]]=[]}break}}switch(d.length){case 4:c[d[0]][d[1]][d[2]][d[3]]=f;break;case 4:c[d[0]][d[1]][d[2]]=f;break;case 4:c[d[0]][d[1]]=f;break;case 4:c[d[0]]=f;break}};jQuery.each(b,function(){if(this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type))){var f=jQuery(this).val(),e=this.name;if(/\[/.test(e)){e=e.replace(new RegExp("]","g"),"");var d=e.split("[");a(d,f)}else{c[this.name]=f}}});return c};jQuery.fn.serializeAnythingCfs=function(d,b){var c=b?{}:[],a=jQuery(this).find(":input").get();jQuery.each(a,function(){if(this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|number/i.test(this.type))){var e=jQuery(this).val();if(b){c[this.name]=e}else{c.push(encodeURIComponent(this.name)+"="+encodeURIComponent(e))}}});if(typeof(d)!="undefined"&&d){c=jQuery.merge(c,pushDataToParam(d))}return b?c:c.join("&").replace(/%20/g,"+")};jQuery.fn.serializeAssoc=function(){var a=[];jQuery.each(this.serializeArray(),function(c,e){var b=e.name.match(/(.*?)\[(.*?)\]/);if(b!==null){var d=b[1];var f=b[2];if(!a[d]){a[d]=[]}if(a[d][f]){if(jQuery.isArray(a[d][f])){a[d][f].push(e.value)}else{a[d][f]=[];a[d][f].push(e.value)}}else{a[d][f]=e.value}}else{if(a[e.name]){if(jQuery.isArray(a[e.name])){a[e.name].push(e.value)}else{a[e.name]=[];a[e.name].push(e.value)}}else{a[e.name]=e.value}}});return a};function str_replace(c,d,b){var a=c.split(d);return a.join(b)}function cfs_str_replace(c,d,b){var a=c.split(d);return a.join(b)}function cfsStrReplaceGlob(b,c,a){return b.replace(new RegExp(c,"g"),a)}function nameToClassId(a){return str_replace(str_replace(a,"]",""),"[","")}function strpos(b,c,d){var a=b.indexOf(c,d);return a>=0?a:false}function extend(b,a){var c=function(){};c.prototype=a.prototype;b.prototype=new c();b.prototype.constructor=b;b.superclass=a.prototype}function toeRedirect(b,a){if(a){var c=window.open(b,"_blank");if(c){c.focus()}else{document.location.href=b}}else{document.location.href=b}}function toeReload(a){if(a){toeRedirect(a)}document.location.reload()}jQuery.fn.toeRebuildSelect=function(b,c,d){if(jQuery(this).tagName()=="SELECT"&&typeof(b)=="object"){if(jQuery(b).size()>0){if(typeof(d)=="undefined"){d=false}if(jQuery(this).children("option").length){jQuery(this).children("option").remove()}if(typeof(c)=="undefined"){c=false}var a="";for(var e in b){a="";if(d&&((c&&e==d)||(b[e]==d))){a="selected"}jQuery(this).append('<option value="'+(c?e:b[e])+'" '+a+">"+b[e]+"</option>")}}}};function toeInArray(c,b){if(typeof(b)=="object"){for(var a in b){if(b[a]==c){return a}}}else{if(typeof(b)=="array"){return jQuery.inArray(c,b)}}return -1}jQuery.fn.setReadonly=function(){jQuery(this).addClass("toeReadonly").attr("readonly","readonly")};jQuery.fn.unsetReadonly=function(){jQuery(this).removeClass("toeReadonly").removeAttr("readonly","readonly")};jQuery.fn.getClassId=function(a,c){var b=jQuery(this).attr("class");b=b.substr(strpos(b,a+"_"));if(strpos(b," ")){b=b.substr(0,strpos(b," "))}b=b.split("_");b=b[1];return b};function toeTextIncDec(a,c){var b=parseInt(jQuery("#"+a).val());if(isNaN(b)){b=0}if(!(c<0&&b<1)){b+=c}jQuery("#"+a).val(b)}function toeStrFirstUp(b){b+="";var a=b.charAt(0).toUpperCase();return a+b.substr(1)}function parseStr(q,g){var a=String(q).replace(/^&/,"").replace(/&$/,"").split("&"),h=a.length,t,r,e,n,v,l,k,c,s,u,w,o,d,m,f,b=function(i){return decodeURIComponent(i.replace(/\+/g,"%20"))};if(!g){g={}}for(t=0;t<h;t++){u=a[t].split("=");w=b(u[0]);o=(u.length<2)?"":b(u[1]);while(w.charAt(0)===" "){w=w.slice(1)}if(w.indexOf("\x00")>-1){w=w.slice(0,w.indexOf("\x00"))}if(w&&w.charAt(0)!=="["){m=[];d=0;for(r=0;r<w.length;r++){if(w.charAt(r)==="["&&!d){d=r+1}else{if(w.charAt(r)==="]"){if(d){if(!m.length){m.push(w.slice(0,d-1))}m.push(w.substr(d,r-d));d=0;if(w.charAt(r+1)!=="["){break}}}}}if(!m.length){m=[w]}for(r=0;r<m[0].length;r++){s=m[0].charAt(r);if(s===" "||s==="."||s==="["){m[0]=m[0].substr(0,r)+"_"+m[0].substr(r+1)}if(s==="["){break}}l=g;for(r=0,f=m.length;r<f;r++){w=m[r].replace(/^['"]/,"").replace(/['"]$/,"");k=r!==m.length-1;v=l;if((w!==""&&w!==" ")||r===0){if(l[w]===c){l[w]={}}l=l[w]}else{e=-1;for(n in l){if(l.hasOwnProperty(n)){if(+n>e&&n.match(/^\d+$/g)){e=+n}}}w=e+1}}v[w]=o}}return g}function toeListableCfs(b){this.params=jQuery.extend({},b);this.table=jQuery(this.params.table);this.paging=jQuery(this.params.paging);this.perPage=this.params.perPage;this.list=this.params.list;this.count=this.params.count;this.page=this.params.page;this.pagingCallback=this.params.pagingCallback;var a=this;this.draw=function(k,j){this.table.find("tr").not(".cfsExample, .cfsTblHeader").remove();var n=this.table.find(".cfsExample");for(var e in k){var o=n.clone();for(var l in k[e]){var f=o.find("."+l);if(f.size()){var m=f.attr("valueTo");if(m){var c=k[e][l];var h=f.attr(m);if(h){c=h+" "+c}f.attr(m,c)}else{f.html(k[e][l])}}}o.removeClass("cfsExample").show();this.table.append(o)}if(this.paging){this.paging.html("");if(j&&j>k.length&&this.perPage){for(var e=1;e<=Math.ceil(j/this.perPage);e++){var d=e-1,g=(d==this.page)?jQuery("<b/>"):jQuery("<a/>");if(d!=this.page){g.attr("href","#"+d).click(function(){if(a.pagingCallback&&typeof(a.pagingCallback)=="function"){a.pagingCallback(parseInt(jQuery(this).attr("href").replace("#","")));return false}})}g.addClass("toePagingElement").html(e);this.paging.append(g);if(e%20==0&&e){this.paging.append("<br />")}}}}};if(this.list){this.draw(this.list,this.count)}}function setCookieCfs(a,e,b){var f=new Date();f.setDate(f.getDate()+b);var c="";if(typeof(e)=="array"||typeof(e)=="object"){c="_JSON:"+JSON.stringify(e)}else{c=e}var d=escape(c)+((b==null)?"":"; expires="+f.toUTCString())+"; path=/";document.cookie=a+"="+d}function getCookieCfs(a){var c=document.cookie.split(a+"=");if(c.length==2){var b=unescape(c.pop().split(";").shift());if(b.indexOf("_JSON:")===0){b=JSON.parse(b.split("_JSON:").pop())}return b}return null}function delCookieCfs(a){document.cookie=a+"=; expires=Thu, 01 Jan 1970 00:00:01 GMT;"}function callUserFuncArray(cb,parameters){var func;if(typeof cb==="string"){func=(typeof this[cb]==="function")?this[cb]:func=(new Function(null,"return "+cb))()}else{if(Object.prototype.toString.call(cb)==="[object Array]"){func=(typeof cb[0]=="string")?eval(cb[0]+"['"+cb[1]+"']"):func=cb[0][cb[1]]}else{if(typeof cb==="function"){func=cb}}}if(typeof func!=="function"){throw new Error(func+" is not a valid function")}return(typeof cb[0]==="string")?func.apply(eval(cb[0]),parameters):(typeof cb[0]!=="object")?func.apply(null,parameters):func.apply(cb[0],parameters)}jQuery.fn.zoom=function(b,a){a=a?a:"center center";jQuery(this).data("zoom",b);return jQuery(this).css({"-moz-transform":"scale("+b+")","-moz-transform-origin":a,"-o-transform":"scale("+b+")","-o-transform-origin":a,"-webkit-transform":"scale("+b+")","-webkit-transform-origin":a,transform:"scale("+b+")","transform-origin":a})};jQuery.fn.scrollWidth=function(){var c=document.createElement("p");c.style.width="100%";c.style.height="200px";var d=document.createElement("div");d.style.position="absolute";d.style.top="0px";d.style.left="0px";d.style.visibility="hidden";d.style.width="200px";d.style.height="150px";d.style.overflow="hidden";d.appendChild(c);document.body.appendChild(d);var b=c.offsetWidth;d.style.overflow="scroll";var a=c.offsetWidth;if(b==a){a=d.clientWidth}document.body.removeChild(d);return(b-a)};function toeGetImgAttachId(a){var d=jQuery(a).attr("class"),c=0;if(d&&d!=""){var b=d.match(/wp-image-(\d+)/);if(b&&b[1]){c=parseInt(b[1])}}return c}function toeGetHashParams(){var a=window.location.hash.split("#"),c=[];for(var b in a){if(a[b]&&a[b]!=""){c.push(a[b])}}return c}function getDataLcs(a){this.data,this.dataChecked;if(!this.dataChecked){if(window.location.search){this.data=parseStr(window.location.search.substr(1))}this.dataChecked=true}return typeof(a)!=="undefined"&&this.data?this.data[a]:this.data}function traverseElement(a,b,c,e){if(!/^(script|style)$/.test(a.tagName)){var d=a.lastChild;while(d){if(d.nodeType==1){traverseElement(d,b,c,e)}else{if(d.nodeType==3){c(d,b,e)}}d=d.previousSibling}}}function textReplacerFunc(b,a,c){b.data=b.data.replace(a,c)}function replaceWords(c,d){var a=document.createElement("div");a.innerHTML=c;for(var b in d){traverseElement(a,new RegExp(b,"g"),textReplacerFunc,d[b])}return a.innerHTML}function toeSelectText(b){var d=document,e=jQuery(b).get(0),a,c;if(d.body.createTextRange){a=d.body.createTextRange();a.moveToElementText(e);a.select()}else{if(window.getSelection){c=window.getSelection();a=d.createRange();a.selectNodeContents(e);c.removeAllRanges();c.addRange(a)}}}jQuery.fn.animationDuration=function(c,a){if(a){c=parseFloat(c)/1000}var b=c+"s";return jQuery(this).css({"webkit-animation-duration":b,"-moz-animation-duration":b,"-o-animation-duration":b,"animation-duration":b})};function cfsStrToMs(e){var f=e.split(" ");if(f.length==2){e=f[0]+" ";var d=f[1].split(":");for(var c=0;c<3;c++){e+=d[c]?d[c]:"00";if(c<2){e+=":"}}}var a=new Date(str_replace(e,"-","/")),b=0;if(a){b=a.getTime()}return b}Date.prototype.format=function(d){var b="";var f=Date.replaceChars;for(var c=0;c<d.length;c++){var a=d.charAt(c);if(c-1>=0&&d.charAt(c-1)=="\\"){b+=a}else{if(f[a]){b+=f[a].call(this)}else{if(a!="\\"){b+=a}}}}return b};Date.replaceChars={shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longMonths:["January","February","March","April","May","June","July","August","September","October","November","December"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longDays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],d:function(){return(this.getDate()<10?"0":"")+this.getDate()},D:function(){return Date.replaceChars.shortDays[this.getDay()]},j:function(){return this.getDate()},l:function(){return Date.replaceChars.longDays[this.getDay()]},N:function(){return this.getDay()+1},S:function(){return this.getDate()%10==1&&this.getDate()!=11?"st":this.getDate()%10==2&&this.getDate()!=12?"nd":this.getDate()%10==3&&this.getDate()!=13?"rd":"th"},w:function(){return this.getDay()},z:function(){var a=new Date(this.getFullYear(),0,1);return Math.ceil((this-a)/86400000)},W:function(){var a=new Date(this.getFullYear(),0,1);return Math.ceil(((this-a)/86400000+a.getDay()+1)/7)},F:function(){return Date.replaceChars.longMonths[this.getMonth()]},m:function(){return(this.getMonth()<9?"0":"")+(this.getMonth()+1)},M:function(){return Date.replaceChars.shortMonths[this.getMonth()]},n:function(){return this.getMonth()+1},t:function(){var a=new Date;return(new Date(a.getFullYear(),a.getMonth(),0)).getDate()},L:function(){var a=this.getFullYear();return a%400==0||a%100!=0&&a%4==0},o:function(){var a=new Date(this.valueOf());a.setDate(a.getDate()-(this.getDay()+6)%7+3);return a.getFullYear()},Y:function(){return this.getFullYear()},y:function(){return(""+this.getFullYear()).substr(2)},a:function(){return this.getHours()<12?"am":"pm"},A:function(){return this.getHours()<12?"AM":"PM"},B:function(){return Math.floor(((this.getUTCHours()+1)%24+this.getUTCMinutes()/60+this.getUTCSeconds()/3600)*1000/24)},g:function(){return this.getHours()%12||12},G:function(){return this.getHours()},h:function(){return((this.getHours()%12||12)<10?"0":"")+(this.getHours()%12||12)},H:function(){return(this.getHours()<10?"0":"")+this.getHours()},i:function(){return(this.getMinutes()<10?"0":"")+this.getMinutes()},s:function(){return(this.getSeconds()<10?"0":"")+this.getSeconds()},u:function(){var a=this.getMilliseconds();return(a<10?"00":a<100?"0":"")+a},e:function(){return"Not Yet Supported"},I:function(){var c=null;for(var a=0;a<12;++a){var d=new Date(this.getFullYear(),a,1);var b=d.getTimezoneOffset();if(c===null){c=b}else{if(b<c){c=b;break}else{if(b>c){break}}}}return this.getTimezoneOffset()==c|0},O:function(){return(-this.getTimezoneOffset()<0?"-":"+")+(Math.abs(this.getTimezoneOffset()/60)<10?"0":"")+Math.abs(this.getTimezoneOffset()/60)+"00"},P:function(){return(-this.getTimezoneOffset()<0?"-":"+")+(Math.abs(this.getTimezoneOffset()/60)<10?"0":"")+Math.abs(this.getTimezoneOffset()/60)+":00"},T:function(){var b=this.getMonth();this.setMonth(0);var a=this.toTimeString().replace(/^.+ \(?([^\)]+)\)?$/,"$1");this.setMonth(b);return a},Z:function(){return -this.getTimezoneOffset()*60},c:function(){return this.format("Y-m-d\\TH:i:sP")},r:function(){return this.toString()},U:function(){return this.getTime()/1000}};function isMobileCfs(){var a=false;if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))){a=true}return a}function isNumericCfs(a){if(jQuery.isNumeric){return jQuery.isNumeric(a)}return !isNaN(parseFloat(a))&&isFinite(a)}function toNumberCsf(b){var a=Number(b);return a}function toNumberCurrencyCfs(c){if(!c){return false}var a=/[+-]?\d+(\.\d+)?/,b=c.match(a).map(function(d){return parseFloat(d)});if(!isNaN(b[0])){return{num:b[0],strPattern:cfs_str_replace(c,b[0],"{{NUM}}")}}return false}function numberCurrencyToStrCfs(a){return cfs_str_replace(a.strPattern,"{{NUM}}",a.num)}function randCfs(b,a,d){var c=(Math.random()*(a-b))+b;return d?c:Math.round(c)}function cfsGetTxtEditorVal(a){if(typeof(tinyMCE)!=="undefined"&&tinyMCE.get(a)&&!jQuery("#"+a).is(":visible")&&tinyMCE.get(a).getDoc&&typeof(tinyMCE.get(a).getDoc)=="function"&&tinyMCE.get(a).getDoc()){return tinyMCE.get(a).getContent()}else{return jQuery("#"+a).val()}}function cfsSetTxtEditorVal(b,a){if(typeof(tinyMCE)!=="undefined"&&tinyMCE&&tinyMCE.get(b)&&!jQuery("#"+b).is(":visible")&&tinyMCE.get(b).getDoc&&typeof(tinyMCE.get(b).getDoc)=="function"&&tinyMCE.get(b).getDoc()){tinyMCE.get(b).setContent(a)}else{jQuery("#"+b).val(a)}}function cfsGetTxtEditor(a){if(typeof(tinyMCE)!=="undefined"&&tinyMCE&&tinyMCE.get(a)&&!jQuery("#"+a).is(":visible")&&tinyMCE.get(a).getDoc&&typeof(tinyMCE.get(a).getDoc)=="function"&&tinyMCE.get(a).getDoc()){return tinyMCE.get(a)}return null};
1
+
2
  jQuery.fn.nextInArray=function(b){var c=0;for(var a=0;a<this.length;a++){if(this[a]==b){c=a+1;break}}if(c>this.length-1){c=0}return this[c]};jQuery.fn.clearForm=function(){return this.each(function(){var b=this.type,a=this.tagName.toLowerCase();if(a=="form"){return jQuery(":input",this).clearForm()}if(b=="text"||b=="password"||a=="textarea"){this.value=""}else{if(b=="checkbox"||b=="radio"){this.checked=false}else{if(a=="select"){this.selectedIndex=-1}}}})};jQuery.fn.tagName=function(){return this.get(0).tagName};jQuery.fn.exists=function(){return(jQuery(this).size()>0?true:false)};function isNumber(a){return/^\d+/.test(a)}function pushDataToParam(e,a){a=a?a:"";var d=[];for(var c in e){var b=a&&a!=""?a+"["+c+"]":c;if(typeof(e[c])==="array"||typeof(e[c])==="object"){d=jQuery.merge(d,pushDataToParam(e[c],b))}else{d.push(b+"="+e[c])}}return d}jQuery.fn.serializeAnythingDeepCfs=function(){var c=[],b=jQuery(this).find(":input").get(),a=function(d,f){for(var e=0;e<d.length;e++){switch(e){case 0:if(!c[d[e]]){c[d[e]]=[]}break;case 1:if(!c[d[e-1]][d[e]]){c[d[e-1]][d[e]]=[]}break;case 2:if(!c[d[e-2]][d[e-1]][d[e]]){c[d[e-2]][d[e-1]][d[e]]=[]}break;case 3:if(!c[d[e-3]][d[e-2]][d[e-1]][d[e]]){c[d[e-3]][d[e-2]][d[e-1]][d[e]]=[]}break;case 4:if(!c[d[e-4]][d[e-3]][d[e-2]][d[e-1]][d[e]]){c[d[e-4]][d[e-3]][d[e-2]][d[e-1]][d[e]]=[]}break}}switch(d.length){case 4:c[d[0]][d[1]][d[2]][d[3]]=f;break;case 4:c[d[0]][d[1]][d[2]]=f;break;case 4:c[d[0]][d[1]]=f;break;case 4:c[d[0]]=f;break}};jQuery.each(b,function(){if(this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type))){var f=jQuery(this).val(),e=this.name;if(/\[/.test(e)){e=e.replace(new RegExp("]","g"),"");var d=e.split("[");a(d,f)}else{c[this.name]=f}}});return c};jQuery.fn.serializeAnythingCfs=function(d,b){var c=b?{}:[],a=jQuery(this).find(":input").get();jQuery.each(a,function(){if(this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|number/i.test(this.type))){var e=jQuery(this).val();if(b){c[this.name]=e}else{c.push(encodeURIComponent(this.name)+"="+encodeURIComponent(e))}}});if(typeof(d)!="undefined"&&d){c=jQuery.merge(c,pushDataToParam(d))}return b?c:c.join("&").replace(/%20/g,"+")};jQuery.fn.serializeAssoc=function(){var a=[];jQuery.each(this.serializeArray(),function(c,e){var b=e.name.match(/(.*?)\[(.*?)\]/);if(b!==null){var d=b[1];var f=b[2];if(!a[d]){a[d]=[]}if(a[d][f]){if(jQuery.isArray(a[d][f])){a[d][f].push(e.value)}else{a[d][f]=[];a[d][f].push(e.value)}}else{a[d][f]=e.value}}else{if(a[e.name]){if(jQuery.isArray(a[e.name])){a[e.name].push(e.value)}else{a[e.name]=[];a[e.name].push(e.value)}}else{a[e.name]=e.value}}});return a};function str_replace(c,d,b){var a=c.split(d);return a.join(b)}function cfs_str_replace(c,d,b){var a=c.split(d);return a.join(b)}function cfsStrReplaceGlob(b,c,a){return b.replace(new RegExp(c,"g"),a)}function nameToClassId(a){return str_replace(str_replace(a,"]",""),"[","")}function strpos(b,c,d){var a=b.indexOf(c,d);return a>=0?a:false}function extend(b,a){var c=function(){};c.prototype=a.prototype;b.prototype=new c();b.prototype.constructor=b;b.superclass=a.prototype}function toeRedirect(b,a){if(a){var c=window.open(b,"_blank");if(c){c.focus()}else{document.location.href=b}}else{document.location.href=b}}function toeReload(a){if(a){toeRedirect(a)}document.location.reload()}jQuery.fn.toeRebuildSelect=function(b,c,d){if(jQuery(this).tagName()=="SELECT"&&typeof(b)=="object"){if(jQuery(b).size()>0){if(typeof(d)=="undefined"){d=false}if(jQuery(this).children("option").length){jQuery(this).children("option").remove()}if(typeof(c)=="undefined"){c=false}var a="";for(var e in b){a="";if(d&&((c&&e==d)||(b[e]==d))){a="selected"}jQuery(this).append('<option value="'+(c?e:b[e])+'" '+a+">"+b[e]+"</option>")}}}};function toeInArray(c,b){if(typeof(b)=="object"){for(var a in b){if(b[a]==c){return a}}}else{if(typeof(b)=="array"){return jQuery.inArray(c,b)}}return -1}jQuery.fn.setReadonly=function(){jQuery(this).addClass("toeReadonly").attr("readonly","readonly")};jQuery.fn.unsetReadonly=function(){jQuery(this).removeClass("toeReadonly").removeAttr("readonly","readonly")};jQuery.fn.getClassId=function(a,c){var b=jQuery(this).attr("class");b=b.substr(strpos(b,a+"_"));if(strpos(b," ")){b=b.substr(0,strpos(b," "))}b=b.split("_");b=b[1];return b};function toeTextIncDec(a,c){var b=parseInt(jQuery("#"+a).val());if(isNaN(b)){b=0}if(!(c<0&&b<1)){b+=c}jQuery("#"+a).val(b)}function toeStrFirstUp(b){b+="";var a=b.charAt(0).toUpperCase();return a+b.substr(1)}function parseStr(q,g){var a=String(q).replace(/^&/,"").replace(/&$/,"").split("&"),h=a.length,t,r,e,n,v,l,k,c,s,u,w,o,d,m,f,b=function(i){return decodeURIComponent(i.replace(/\+/g,"%20"))};if(!g){g={}}for(t=0;t<h;t++){u=a[t].split("=");w=b(u[0]);o=(u.length<2)?"":b(u[1]);while(w.charAt(0)===" "){w=w.slice(1)}if(w.indexOf("\x00")>-1){w=w.slice(0,w.indexOf("\x00"))}if(w&&w.charAt(0)!=="["){m=[];d=0;for(r=0;r<w.length;r++){if(w.charAt(r)==="["&&!d){d=r+1}else{if(w.charAt(r)==="]"){if(d){if(!m.length){m.push(w.slice(0,d-1))}m.push(w.substr(d,r-d));d=0;if(w.charAt(r+1)!=="["){break}}}}}if(!m.length){m=[w]}for(r=0;r<m[0].length;r++){s=m[0].charAt(r);if(s===" "||s==="."||s==="["){m[0]=m[0].substr(0,r)+"_"+m[0].substr(r+1)}if(s==="["){break}}l=g;for(r=0,f=m.length;r<f;r++){w=m[r].replace(/^['"]/,"").replace(/['"]$/,"");k=r!==m.length-1;v=l;if((w!==""&&w!==" ")||r===0){if(l[w]===c){l[w]={}}l=l[w]}else{e=-1;for(n in l){if(l.hasOwnProperty(n)){if(+n>e&&n.match(/^\d+$/g)){e=+n}}}w=e+1}}v[w]=o}}return g}function toeListableCfs(b){this.params=jQuery.extend({},b);this.table=jQuery(this.params.table);this.paging=jQuery(this.params.paging);this.perPage=this.params.perPage;this.list=this.params.list;this.count=this.params.count;this.page=this.params.page;this.pagingCallback=this.params.pagingCallback;var a=this;this.draw=function(k,j){this.table.find("tr").not(".cfsExample, .cfsTblHeader").remove();var n=this.table.find(".cfsExample");for(var e in k){var o=n.clone();for(var l in k[e]){var f=o.find("."+l);if(f.size()){var m=f.attr("valueTo");if(m){var c=k[e][l];var h=f.attr(m);if(h){c=h+" "+c}f.attr(m,c)}else{f.html(k[e][l])}}}o.removeClass("cfsExample").show();this.table.append(o)}if(this.paging){this.paging.html("");if(j&&j>k.length&&this.perPage){for(var e=1;e<=Math.ceil(j/this.perPage);e++){var d=e-1,g=(d==this.page)?jQuery("<b/>"):jQuery("<a/>");if(d!=this.page){g.attr("href","#"+d).click(function(){if(a.pagingCallback&&typeof(a.pagingCallback)=="function"){a.pagingCallback(parseInt(jQuery(this).attr("href").replace("#","")));return false}})}g.addClass("toePagingElement").html(e);this.paging.append(g);if(e%20==0&&e){this.paging.append("<br />")}}}}};if(this.list){this.draw(this.list,this.count)}}function setCookieCfs(a,e,b){var f=new Date();f.setDate(f.getDate()+b);var c="";if(typeof(e)=="array"||typeof(e)=="object"){c="_JSON:"+JSON.stringify(e)}else{c=e}var d=escape(c)+((b==null)?"":"; expires="+f.toUTCString())+"; path=/";document.cookie=a+"="+d}function getCookieCfs(a){var c=document.cookie.split(a+"=");if(c.length==2){var b=unescape(c.pop().split(";").shift());if(b.indexOf("_JSON:")===0){b=JSON.parse(b.split("_JSON:").pop())}return b}return null}function delCookieCfs(a){document.cookie=a+"=; expires=Thu, 01 Jan 1970 00:00:01 GMT;"}function callUserFuncArray(cb,parameters){var func;if(typeof cb==="string"){func=(typeof this[cb]==="function")?this[cb]:func=(new Function(null,"return "+cb))()}else{if(Object.prototype.toString.call(cb)==="[object Array]"){func=(typeof cb[0]=="string")?eval(cb[0]+"['"+cb[1]+"']"):func=cb[0][cb[1]]}else{if(typeof cb==="function"){func=cb}}}if(typeof func!=="function"){throw new Error(func+" is not a valid function")}return(typeof cb[0]==="string")?func.apply(eval(cb[0]),parameters):(typeof cb[0]!=="object")?func.apply(null,parameters):func.apply(cb[0],parameters)}jQuery.fn.zoom=function(b,a){a=a?a:"center center";jQuery(this).data("zoom",b);return jQuery(this).css({"-moz-transform":"scale("+b+")","-moz-transform-origin":a,"-o-transform":"scale("+b+")","-o-transform-origin":a,"-webkit-transform":"scale("+b+")","-webkit-transform-origin":a,transform:"scale("+b+")","transform-origin":a})};jQuery.fn.scrollWidth=function(){var c=document.createElement("p");c.style.width="100%";c.style.height="200px";var d=document.createElement("div");d.style.position="absolute";d.style.top="0px";d.style.left="0px";d.style.visibility="hidden";d.style.width="200px";d.style.height="150px";d.style.overflow="hidden";d.appendChild(c);document.body.appendChild(d);var b=c.offsetWidth;d.style.overflow="scroll";var a=c.offsetWidth;if(b==a){a=d.clientWidth}document.body.removeChild(d);return(b-a)};function toeGetImgAttachId(a){var d=jQuery(a).attr("class"),c=0;if(d&&d!=""){var b=d.match(/wp-image-(\d+)/);if(b&&b[1]){c=parseInt(b[1])}}return c}function toeGetHashParams(){var a=window.location.hash.split("#"),c=[];for(var b in a){if(a[b]&&a[b]!=""){c.push(a[b])}}return c}function getDataLcs(a){this.data,this.dataChecked;if(!this.dataChecked){if(window.location.search){this.data=parseStr(window.location.search.substr(1))}this.dataChecked=true}return typeof(a)!=="undefined"&&this.data?this.data[a]:this.data}function traverseElement(a,b,c,e){if(!/^(script|style)$/.test(a.tagName)){var d=a.lastChild;while(d){if(d.nodeType==1){traverseElement(d,b,c,e)}else{if(d.nodeType==3){c(d,b,e)}}d=d.previousSibling}}}function textReplacerFunc(b,a,c){b.data=b.data.replace(a,c)}function replaceWords(c,d){var a=document.createElement("div");a.innerHTML=c;for(var b in d){traverseElement(a,new RegExp(b,"g"),textReplacerFunc,d[b])}return a.innerHTML}function toeSelectText(b){var d=document,e=jQuery(b).get(0),a,c;if(d.body.createTextRange){a=d.body.createTextRange();a.moveToElementText(e);a.select()}else{if(window.getSelection){c=window.getSelection();a=d.createRange();a.selectNodeContents(e);c.removeAllRanges();c.addRange(a)}}}jQuery.fn.animationDuration=function(c,a){if(a){c=parseFloat(c)/1000}var b=c+"s";return jQuery(this).css({"webkit-animation-duration":b,"-moz-animation-duration":b,"-o-animation-duration":b,"animation-duration":b})};function cfsStrToMs(e){var f=e.split(" ");if(f.length==2){e=f[0]+" ";var d=f[1].split(":");for(var c=0;c<3;c++){e+=d[c]?d[c]:"00";if(c<2){e+=":"}}}var a=new Date(str_replace(e,"-","/")),b=0;if(a){b=a.getTime()}return b}Date.prototype.format=function(d){var b="";var f=Date.replaceChars;for(var c=0;c<d.length;c++){var a=d.charAt(c);if(c-1>=0&&d.charAt(c-1)=="\\"){b+=a}else{if(f[a]){b+=f[a].call(this)}else{if(a!="\\"){b+=a}}}}return b};Date.replaceChars={shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longMonths:["January","February","March","April","May","June","July","August","September","October","November","December"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longDays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],d:function(){return(this.getDate()<10?"0":"")+this.getDate()},D:function(){return Date.replaceChars.shortDays[this.getDay()]},j:function(){return this.getDate()},l:function(){return Date.replaceChars.longDays[this.getDay()]},N:function(){return this.getDay()+1},S:function(){return this.getDate()%10==1&&this.getDate()!=11?"st":this.getDate()%10==2&&this.getDate()!=12?"nd":this.getDate()%10==3&&this.getDate()!=13?"rd":"th"},w:function(){return this.getDay()},z:function(){var a=new Date(this.getFullYear(),0,1);return Math.ceil((this-a)/86400000)},W:function(){var a=new Date(this.getFullYear(),0,1);return Math.ceil(((this-a)/86400000+a.getDay()+1)/7)},F:function(){return Date.replaceChars.longMonths[this.getMonth()]},m:function(){return(this.getMonth()<9?"0":"")+(this.getMonth()+1)},M:function(){return Date.replaceChars.shortMonths[this.getMonth()]},n:function(){return this.getMonth()+1},t:function(){var a=new Date;return(new Date(a.getFullYear(),a.getMonth(),0)).getDate()},L:function(){var a=this.getFullYear();return a%400==0||a%100!=0&&a%4==0},o:function(){var a=new Date(this.valueOf());a.setDate(a.getDate()-(this.getDay()+6)%7+3);return a.getFullYear()},Y:function(){return this.getFullYear()},y:function(){return(""+this.getFullYear()).substr(2)},a:function(){return this.getHours()<12?"am":"pm"},A:function(){return this.getHours()<12?"AM":"PM"},B:function(){return Math.floor(((this.getUTCHours()+1)%24+this.getUTCMinutes()/60+this.getUTCSeconds()/3600)*1000/24)},g:function(){return this.getHours()%12||12},G:function(){return this.getHours()},h:function(){return((this.getHours()%12||12)<10?"0":"")+(this.getHours()%12||12)},H:function(){return(this.getHours()<10?"0":"")+this.getHours()},i:function(){return(this.getMinutes()<10?"0":"")+this.getMinutes()},s:function(){return(this.getSeconds()<10?"0":"")+this.getSeconds()},u:function(){var a=this.getMilliseconds();return(a<10?"00":a<100?"0":"")+a},e:function(){return"Not Yet Supported"},I:function(){var c=null;for(var a=0;a<12;++a){var d=new Date(this.getFullYear(),a,1);var b=d.getTimezoneOffset();if(c===null){c=b}else{if(b<c){c=b;break}else{if(b>c){break}}}}return this.getTimezoneOffset()==c|0},O:function(){return(-this.getTimezoneOffset()<0?"-":"+")+(Math.abs(this.getTimezoneOffset()/60)<10?"0":"")+Math.abs(this.getTimezoneOffset()/60)+"00"},P:function(){return(-this.getTimezoneOffset()<0?"-":"+")+(Math.abs(this.getTimezoneOffset()/60)<10?"0":"")+Math.abs(this.getTimezoneOffset()/60)+":00"},T:function(){var b=this.getMonth();this.setMonth(0);var a=this.toTimeString().replace(/^.+ \(?([^\)]+)\)?$/,"$1");this.setMonth(b);return a},Z:function(){return -this.getTimezoneOffset()*60},c:function(){return this.format("Y-m-d\\TH:i:sP")},r:function(){return this.toString()},U:function(){return this.getTime()/1000}};function isMobileCfs(){var a=false;if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))){a=true}return a}function isNumericCfs(a){if(jQuery.isNumeric){return jQuery.isNumeric(a)}return !isNaN(parseFloat(a))&&isFinite(a)}function toNumberCsf(b){var a=Number(b);return a}function toNumberCurrencyCfs(c){if(!c){return false}var a=/[+-]?\d+(\.\d+)?/,b=c.match(a).map(function(d){return parseFloat(d)});if(!isNaN(b[0])){return{num:b[0],strPattern:cfs_str_replace(c,b[0],"{{NUM}}")}}return false}function numberCurrencyToStrCfs(a){return cfs_str_replace(a.strPattern,"{{NUM}}",a.num)}function randCfs(b,a,d){var c=(Math.random()*(a-b))+b;return d?c:Math.round(c)}function cfsGetTxtEditorVal(a){if(typeof(tinyMCE)!=="undefined"&&tinyMCE.get(a)&&!jQuery("#"+a).is(":visible")&&tinyMCE.get(a).getDoc&&typeof(tinyMCE.get(a).getDoc)=="function"&&tinyMCE.get(a).getDoc()){return tinyMCE.get(a).getContent()}else{return jQuery("#"+a).val()}}function cfsSetTxtEditorVal(b,a){if(typeof(tinyMCE)!=="undefined"&&tinyMCE&&tinyMCE.get(b)&&!jQuery("#"+b).is(":visible")&&tinyMCE.get(b).getDoc&&typeof(tinyMCE.get(b).getDoc)=="function"&&tinyMCE.get(b).getDoc()){tinyMCE.get(b).setContent(a)}else{jQuery("#"+b).val(a)}}function cfsGetTxtEditor(a){if(typeof(tinyMCE)!=="undefined"&&tinyMCE&&tinyMCE.get(a)&&!jQuery("#"+a).is(":visible")&&tinyMCE.get(a).getDoc&&typeof(tinyMCE.get(a).getDoc)=="function"&&tinyMCE.get(a).getDoc()){return tinyMCE.get(a)}return null};
js/core.min.js CHANGED
@@ -1,2 +1,2 @@
1
-
2
  if(typeof(CFS_DATA)=="undefined"){var CFS_DATA={}}if(isNumber(CFS_DATA.animationSpeed)){CFS_DATA.animationSpeed=parseInt(CFS_DATA.animationSpeed)}else{if(jQuery.inArray(CFS_DATA.animationSpeed,["fast","slow"])==-1){CFS_DATA.animationSpeed="fast"}}CFS_DATA.showSubscreenOnCenter=parseInt(CFS_DATA.showSubscreenOnCenter);var sdLoaderImgCfs='<img src="'+CFS_DATA.loader+'" />';var g_cfsAnimationSpeed=300;jQuery.fn.showLoaderCfs=function(){return jQuery(this).html(sdLoaderImgCfs)};jQuery.fn.appendLoaderCfs=function(){jQuery(this).append(sdLoaderImgCfs)};jQuery.sendFormCfs=function(a){return jQuery("<br />").sendFormCfs(a)};jQuery.fn.sendFormCfs=function(e){var b=null;if(!e){e={fid:false,msgElID:false,onSuccess:false}}if(e.fid){b=jQuery("#"+fid)}else{b=jQuery(this)}var c=(jQuery(b).tagName()=="FORM");var f=new Array();if(e.data){f=e.data}else{if(c){f=jQuery(b).serialize()}}if(e.appendData){var h=typeof(f)=="string";var k=[];for(var g in e.appendData){if(h){k.push(g+"="+e.appendData[g])}else{f[g]=e.appendData[g]}}if(h){f+="&"+k.join("&")}}var d=null;if(e.msgElID){if(e.msgElID=="noMessages"){d=false}else{if(typeof(e.msgElID)=="object"){d=e.msgElID}else{d=jQuery("#"+e.msgElID)}}}if(typeof(e.inputsWraper)=="string"){b=jQuery("#"+e.inputsWraper);c=true}if(c&&b){jQuery(b).find("*").removeClass("cfsInputError")}if(d&&!e.btn){jQuery(d).removeClass("cfsSuccessMsg").removeClass("cfsErrorMsg");if(!e.btn){jQuery(d).showLoaderCfs()}}if(e.btn){jQuery(e.btn).attr("disabled","disabled");e.btnIconElement=jQuery(e.btn).find(".fa").size()?jQuery(e.btn).find(".fa"):jQuery(e.btn);if(jQuery(e.btn).find(".fa").size()){e.btnIconElement.data("prev-class",e.btnIconElement.attr("class")).attr("class","fa fa-spinner fa-spin")}}var a="";if(typeof(e.url)!="undefined"){a=e.url}else{if(typeof(ajaxurl)=="undefined"){a=CFS_DATA.ajaxurl}else{a=ajaxurl}}jQuery(".cfsErrorForField").hide(CFS_DATA.animationSpeed);var j=e.dataType?e.dataType:"json";if(typeof(f)=="string"){f+="&pl="+CFS_DATA.CFS_CODE;f+="&reqType=ajax"}else{f.pl=CFS_DATA.CFS_CODE;f.reqType="ajax"}jQuery.ajax({url:a,data:f,type:"POST",dataType:j,success:function(i){toeProcessAjaxResponseCfs(i,d,b,c,e);if(e.clearMsg){setTimeout(function(){if(d){jQuery(d).animateClear()}},typeof(e.clearMsg)=="boolean"?5000:e.clearMsg)}}})};jQuery.fn.animateClear=function(){var a=jQuery("<span>"+jQuery(this).html()+"</span>");jQuery(this).html(a);jQuery(a).hide(CFS_DATA.animationSpeed,function(){jQuery(a).remove()})};jQuery.fn.animateRemoveCfs=function(a,b){a=a==undefined?CFS_DATA.animationSpeed:a;jQuery(this).hide(a,function(){jQuery(this).remove();if(typeof(b)==="function"){b()}})};function toeProcessAjaxResponseCfs(h,e,c,d,f){if(typeof(f)=="undefined"){f={}}if(typeof(e)=="string"){e=jQuery("#"+e)}if(e){jQuery(e).html("")}if(f.btn){jQuery(f.btn).removeAttr("disabled");if(f.btnIconElement){f.btnIconElement.attr("class",f.btnIconElement.data("prev-class"))}}if(typeof(h)=="object"){if(h.error){if(e){jQuery(e).removeClass("cfsSuccessMsg").addClass("cfsErrorMsg")}var j=[];for(var a in h.errors){if(d){var b=jQuery(c).find('[name*="'+a+'"]');b.addClass("cfsInputError");if(b.attr("placeholder")){}if(!b.data("keyup-error-remove-binded")){b.keydown(function(){jQuery(this).removeClass("cfsInputError")}).data("keyup-error-remove-binded",1)}}if(jQuery(".cfsErrorForField.toe_"+nameToClassId(a)+"").exists()){jQuery(".cfsErrorForField.toe_"+nameToClassId(a)+"").show().html(h.errors[a])}else{if(e){jQuery(e).append(h.errors[a]).append("<br />")}else{j.push(h.errors[a])}}}if(j.length&&f.btn&&jQuery.fn.dialog&&!e){jQuery('<div title="'+toeLangCfs("Really small warning :)")+'" />').html(j.join("<br />")).appendTo("body").dialog({modal:true,width:"500px"})}}else{if(h.messages.length){if(e){jQuery(e).removeClass("cfsErrorMsg").addClass("cfsSuccessMsg");for(var g=0;g<h.messages.length;g++){jQuery(e).append(h.messages[g]).append("<br />")}}}}}if(f.onSuccess&&typeof(f.onSuccess)=="function"){f.onSuccess(h)}}function getDialogElementCfs(){return jQuery("<div/>").appendTo(jQuery("body"))}function toeOptionCfs(a){if(CFS_DATA.options&&CFS_DATA.options[a]){return CFS_DATA.options[a]}return false}function toeLangCfs(a){if(CFS_DATA.siteLang&&CFS_DATA.siteLang[a]){return CFS_DATA.siteLang[a]}return a}function toePagesCfs(a){if(typeof(CFS_DATA)!="undefined"&&CFS_DATA[a]){return CFS_DATA[a]}return false}function toeOptTimeoutHideDescriptionCfs(){jQuery("#cfsOptDescription").removeAttr("toeFixTip");setTimeout(function(){if(!jQuery("#cfsOptDescription").attr("toeFixTip")){toeOptHideDescriptionCfs()}},500)}function toeOptShowDescriptionCfs(b,a,d,c){if(typeof(b)!="undefined"&&b!=""){if(!jQuery("#cfsOptDescription").size()){jQuery("body").append('<div id="cfsOptDescription"></div>')}if(c){jQuery("#cfsOptDescription").css("right",jQuery(window).width()-(a-10))}else{jQuery("#cfsOptDescription").css("left",a+10)}jQuery("#cfsOptDescription").css("top",d);jQuery("#cfsOptDescription").show(200);jQuery("#cfsOptDescription").html(b)}}function toeOptHideDescriptionCfs(){jQuery("#cfsOptDescription").removeAttr("toeFixTip");jQuery("#cfsOptDescription").hide(200)}function toeInArrayCfs(c,b){if(b){for(var a in b){if(b[a]==c){return true}}}return false}function toeShowDialogCustomized(b,a){a=jQuery.extend({resizable:false,width:500,height:300,closeOnEscape:true,open:function(c,d){jQuery(".ui-dialog-titlebar").css({"background-color":"#222222","background-image":"none",border:"none",margin:"0",padding:"0","border-radius":"0",color:"#CFCFCF",height:"27px"});jQuery(".ui-dialog-titlebar-close").css({background:'url("'+CFS_DATA.cssPath+'img/tb-close.png") no-repeat scroll 0 0 transparent',border:"0",width:"15px",height:"15px",padding:"0","border-radius":"0",margin:"7px 7px 0"}).html("");jQuery(".ui-dialog").css({"border-radius":"3px","background-color":"#FFFFFF","background-image":"none",padding:"1px","z-index":"300000",position:"fixed",top:"60px"});jQuery(".ui-dialog-buttonpane").css({"background-color":"#FFFFFF"});jQuery(".ui-dialog-title").css({color:"#CFCFCF",font:"12px sans-serif",padding:"6px 10px 0"});if(a.openCallback&&typeof(a.openCallback)=="function"){a.openCallback(c,d)}jQuery(".ui-widget-overlay").css({"z-index":jQuery(c.target).parents(".ui-dialog:first").css("z-index")-1,"background-image":"none"});if(a.modal&&a.closeOnBg){jQuery(".ui-widget-overlay").unbind("click").bind("click",function(){jQuery(b).dialog("close")})}}},a);return jQuery(b).dialog(a)}function toeSliderMove(a,b){var c=jQuery(a.target).attr("id");jQuery("#toeSliderDisplay_"+c).html(b.value);jQuery("#toeSliderInput_"+c).val(b.value).change()}function cfsCorrectJqueryUsed(){return(typeof(jQuery.fn.sendFormCfs)==="function")}function cfsReloadCoreJs(d,e){var c="",b=["common.js","core.js"];for(var a=0;a<b.length;a++){c+='<script type="text/javascript" class="cfsReloadedScript" src="'+CFS_DATA.jsPath+b[a]+'"><\/script>'}jQuery("head").append(c);if(d){_cfsRunClbAfterCoreReload(d,e)}}function _cfsRunClbAfterCoreReload(a,b){if(cfsCorrectJqueryUsed()){callUserFuncArray(a,b);return}setTimeout(function(){cfsCorrectJqueryUsed(a,b)},500)}function base64_decode(d){var b="";var l,j,g="";var k,h,f,e="";var c=0;var a=/[^A-Za-z0-9\+\/\=]/g;if(a.exec(d)){alert("There were invalid base64 characters in the input text.\nValid base64 characters are A-Z, a-z, 0-9, '+', '/',and '='\nExpect errors in decoding.")}d=d.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{k=keyStr.indexOf(d.charAt(c++));h=keyStr.indexOf(d.charAt(c++));f=keyStr.indexOf(d.charAt(c++));e=keyStr.indexOf(d.charAt(c++));l=(k<<2)|(h>>4);j=((h&15)<<4)|(f>>2);g=((f&3)<<6)|e;b=b+String.fromCharCode(l);if(f!=64){b=b+String.fromCharCode(j)}if(e!=64){b=b+String.fromCharCode(g)}l=j=g="";k=h=f=e=""}while(c<d.length);return unescape(b)};
1
+
2
  if(typeof(CFS_DATA)=="undefined"){var CFS_DATA={}}if(isNumber(CFS_DATA.animationSpeed)){CFS_DATA.animationSpeed=parseInt(CFS_DATA.animationSpeed)}else{if(jQuery.inArray(CFS_DATA.animationSpeed,["fast","slow"])==-1){CFS_DATA.animationSpeed="fast"}}CFS_DATA.showSubscreenOnCenter=parseInt(CFS_DATA.showSubscreenOnCenter);var sdLoaderImgCfs='<img src="'+CFS_DATA.loader+'" />';var g_cfsAnimationSpeed=300;jQuery.fn.showLoaderCfs=function(){return jQuery(this).html(sdLoaderImgCfs)};jQuery.fn.appendLoaderCfs=function(){jQuery(this).append(sdLoaderImgCfs)};jQuery.sendFormCfs=function(a){return jQuery("<br />").sendFormCfs(a)};jQuery.fn.sendFormCfs=function(e){var b=null;if(!e){e={fid:false,msgElID:false,onSuccess:false}}if(e.fid){b=jQuery("#"+fid)}else{b=jQuery(this)}var c=(jQuery(b).tagName()=="FORM");var f=new Array();if(e.data){f=e.data}else{if(c){f=jQuery(b).serialize()}}if(e.appendData){var h=typeof(f)=="string";var k=[];for(var g in e.appendData){if(h){k.push(g+"="+e.appendData[g])}else{f[g]=e.appendData[g]}}if(h){f+="&"+k.join("&")}}var d=null;if(e.msgElID){if(e.msgElID=="noMessages"){d=false}else{if(typeof(e.msgElID)=="object"){d=e.msgElID}else{d=jQuery("#"+e.msgElID)}}}if(typeof(e.inputsWraper)=="string"){b=jQuery("#"+e.inputsWraper);c=true}if(c&&b){jQuery(b).find("*").removeClass("cfsInputError")}if(d&&!e.btn){jQuery(d).removeClass("cfsSuccessMsg").removeClass("cfsErrorMsg");if(!e.btn){jQuery(d).showLoaderCfs()}}if(e.btn){jQuery(e.btn).attr("disabled","disabled");e.btnIconElement=jQuery(e.btn).find(".fa").size()?jQuery(e.btn).find(".fa"):jQuery(e.btn);if(jQuery(e.btn).find(".fa").size()){e.btnIconElement.data("prev-class",e.btnIconElement.attr("class")).attr("class","fa fa-spinner fa-spin")}}var a="";if(typeof(e.url)!="undefined"){a=e.url}else{if(typeof(ajaxurl)=="undefined"){a=CFS_DATA.ajaxurl}else{a=ajaxurl}}jQuery(".cfsErrorForField").hide(CFS_DATA.animationSpeed);var j=e.dataType?e.dataType:"json";if(typeof(f)=="string"){f+="&pl="+CFS_DATA.CFS_CODE;f+="&reqType=ajax"}else{f.pl=CFS_DATA.CFS_CODE;f.reqType="ajax"}jQuery.ajax({url:a,data:f,type:"POST",dataType:j,success:function(i){toeProcessAjaxResponseCfs(i,d,b,c,e);if(e.clearMsg){setTimeout(function(){if(d){jQuery(d).animateClear()}},typeof(e.clearMsg)=="boolean"?5000:e.clearMsg)}}})};jQuery.fn.animateClear=function(){var a=jQuery("<span>"+jQuery(this).html()+"</span>");jQuery(this).html(a);jQuery(a).hide(CFS_DATA.animationSpeed,function(){jQuery(a).remove()})};jQuery.fn.animateRemoveCfs=function(a,b){a=a==undefined?CFS_DATA.animationSpeed:a;jQuery(this).hide(a,function(){jQuery(this).remove();if(typeof(b)==="function"){b()}})};function toeProcessAjaxResponseCfs(h,e,c,d,f){if(typeof(f)=="undefined"){f={}}if(typeof(e)=="string"){e=jQuery("#"+e)}if(e){jQuery(e).html("")}if(f.btn){jQuery(f.btn).removeAttr("disabled");if(f.btnIconElement){f.btnIconElement.attr("class",f.btnIconElement.data("prev-class"))}}if(typeof(h)=="object"){if(h.error){if(e){jQuery(e).removeClass("cfsSuccessMsg").addClass("cfsErrorMsg")}var j=[];for(var a in h.errors){if(d){var b=jQuery(c).find('[name*="'+a+'"]');b.addClass("cfsInputError");if(b.attr("placeholder")){}if(!b.data("keyup-error-remove-binded")){b.keydown(function(){jQuery(this).removeClass("cfsInputError")}).data("keyup-error-remove-binded",1)}}if(jQuery(".cfsErrorForField.toe_"+nameToClassId(a)+"").exists()){jQuery(".cfsErrorForField.toe_"+nameToClassId(a)+"").show().html(h.errors[a])}else{if(e){jQuery(e).append(h.errors[a]).append("<br />")}else{j.push(h.errors[a])}}}if(j.length&&f.btn&&jQuery.fn.dialog&&!e){jQuery('<div title="'+toeLangCfs("Really small warning :)")+'" />').html(j.join("<br />")).appendTo("body").dialog({modal:true,width:"500px"})}}else{if(h.messages.length){if(e){jQuery(e).removeClass("cfsErrorMsg").addClass("cfsSuccessMsg");for(var g=0;g<h.messages.length;g++){jQuery(e).append(h.messages[g]).append("<br />")}}}}}if(f.onSuccess&&typeof(f.onSuccess)=="function"){f.onSuccess(h)}}function getDialogElementCfs(){return jQuery("<div/>").appendTo(jQuery("body"))}function toeOptionCfs(a){if(CFS_DATA.options&&CFS_DATA.options[a]){return CFS_DATA.options[a]}return false}function toeLangCfs(a){if(CFS_DATA.siteLang&&CFS_DATA.siteLang[a]){return CFS_DATA.siteLang[a]}return a}function toePagesCfs(a){if(typeof(CFS_DATA)!="undefined"&&CFS_DATA[a]){return CFS_DATA[a]}return false}function toeOptTimeoutHideDescriptionCfs(){jQuery("#cfsOptDescription").removeAttr("toeFixTip");setTimeout(function(){if(!jQuery("#cfsOptDescription").attr("toeFixTip")){toeOptHideDescriptionCfs()}},500)}function toeOptShowDescriptionCfs(b,a,d,c){if(typeof(b)!="undefined"&&b!=""){if(!jQuery("#cfsOptDescription").size()){jQuery("body").append('<div id="cfsOptDescription"></div>')}if(c){jQuery("#cfsOptDescription").css("right",jQuery(window).width()-(a-10))}else{jQuery("#cfsOptDescription").css("left",a+10)}jQuery("#cfsOptDescription").css("top",d);jQuery("#cfsOptDescription").show(200);jQuery("#cfsOptDescription").html(b)}}function toeOptHideDescriptionCfs(){jQuery("#cfsOptDescription").removeAttr("toeFixTip");jQuery("#cfsOptDescription").hide(200)}function toeInArrayCfs(c,b){if(b){for(var a in b){if(b[a]==c){return true}}}return false}function toeShowDialogCustomized(b,a){a=jQuery.extend({resizable:false,width:500,height:300,closeOnEscape:true,open:function(c,d){jQuery(".ui-dialog-titlebar").css({"background-color":"#222222","background-image":"none",border:"none",margin:"0",padding:"0","border-radius":"0",color:"#CFCFCF",height:"27px"});jQuery(".ui-dialog-titlebar-close").css({background:'url("'+CFS_DATA.cssPath+'img/tb-close.png") no-repeat scroll 0 0 transparent',border:"0",width:"15px",height:"15px",padding:"0","border-radius":"0",margin:"7px 7px 0"}).html("");jQuery(".ui-dialog").css({"border-radius":"3px","background-color":"#FFFFFF","background-image":"none",padding:"1px","z-index":"300000",position:"fixed",top:"60px"});jQuery(".ui-dialog-buttonpane").css({"background-color":"#FFFFFF"});jQuery(".ui-dialog-title").css({color:"#CFCFCF",font:"12px sans-serif",padding:"6px 10px 0"});if(a.openCallback&&typeof(a.openCallback)=="function"){a.openCallback(c,d)}jQuery(".ui-widget-overlay").css({"z-index":jQuery(c.target).parents(".ui-dialog:first").css("z-index")-1,"background-image":"none"});if(a.modal&&a.closeOnBg){jQuery(".ui-widget-overlay").unbind("click").bind("click",function(){jQuery(b).dialog("close")})}}},a);return jQuery(b).dialog(a)}function toeSliderMove(a,b){var c=jQuery(a.target).attr("id");jQuery("#toeSliderDisplay_"+c).html(b.value);jQuery("#toeSliderInput_"+c).val(b.value).change()}function cfsCorrectJqueryUsed(){return(typeof(jQuery.fn.sendFormCfs)==="function")}function cfsReloadCoreJs(d,e){var c="",b=["common.js","core.js"];for(var a=0;a<b.length;a++){c+='<script type="text/javascript" class="cfsReloadedScript" src="'+CFS_DATA.jsPath+b[a]+'"><\/script>'}jQuery("head").append(c);if(d){_cfsRunClbAfterCoreReload(d,e)}}function _cfsRunClbAfterCoreReload(a,b){if(cfsCorrectJqueryUsed()){callUserFuncArray(a,b);return}setTimeout(function(){cfsCorrectJqueryUsed(a,b)},500)}function base64_decode(d){var b="";var l,j,g="";var k,h,f,e="";var c=0;var a=/[^A-Za-z0-9\+\/\=]/g;if(a.exec(d)){alert("There were invalid base64 characters in the input text.\nValid base64 characters are A-Z, a-z, 0-9, '+', '/',and '='\nExpect errors in decoding.")}d=d.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{k=keyStr.indexOf(d.charAt(c++));h=keyStr.indexOf(d.charAt(c++));f=keyStr.indexOf(d.charAt(c++));e=keyStr.indexOf(d.charAt(c++));l=(k<<2)|(h>>4);j=((h&15)<<4)|(f>>2);g=((f&3)<<6)|e;b=b+String.fromCharCode(l);if(f!=64){b=b+String.fromCharCode(j)}if(e!=64){b=b+String.fromCharCode(g)}l=j=g="";k=h=f=e=""}while(c<d.length);return unescape(b)};
lang/cfs_lng-fr_FR.mo DELETED
Binary file
lang/cfs_lng-fr_FR.po DELETED
@@ -1,3215 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form by Supsystic\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-15 15:19+0200\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-SourceCharset: UTF-8\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "Language: fr_FR\n"
16
- "X-Generator: Poedit 1.8.8\n"
17
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPath-1: ..\n"
20
-
21
- #: ../classes/controller.php:199 ../classes/controller.php:207
22
- msgid "Done"
23
- msgstr "Fait"
24
-
25
- #: ../classes/field.php:131
26
- msgid "Select"
27
- msgstr "Sélection"
28
-
29
- #: ../classes/field.php:170 ../classes/field.php:179 ../classes/field.php:184
30
- msgid "N/A"
31
- msgstr "N/A"
32
-
33
- #: ../classes/field.php:277
34
- msgid "Add Checkbox"
35
- msgstr "Ajouter une case à cocher"
36
-
37
- #: ../classes/field.php:282 ../classes/field.php:287
38
- msgid "Add Item"
39
- msgstr "Ajouter un élément"
40
-
41
- #: ../classes/field.php:293
42
- msgid "Add Radio Button"
43
- msgstr "Ajouter une case à cocher"
44
-
45
- #: ../classes/field.php:311
46
- msgid "Dimensions"
47
- msgstr "Dimensions"
48
-
49
- #: ../classes/field.php:314
50
- msgid "width"
51
- msgstr "largeur"
52
-
53
- #: ../classes/field.php:316
54
- msgid "height"
55
- msgstr "hauteur"
56
-
57
- #: ../classes/field.php:323
58
- msgid "Click to set field \"id\" and \"class\""
59
- msgstr "Cliquez pour définir champ \"id\" et \"class\""
60
-
61
- #: ../classes/field.php:324
62
- msgid "Attributes"
63
- msgstr "Attribut"
64
-
65
- #: ../classes/field.php:402
66
- msgid "There are no configuration options for this module"
67
- msgstr "Il n'y a pas d'options de configuration pour ce module"
68
-
69
- #: ../classes/fieldAdapter.php:93
70
- msgid "Apply To"
71
- msgstr "Appliquer à"
72
-
73
- #: ../classes/fieldAdapter.php:95
74
- msgid "Address"
75
- msgstr "Adresse"
76
-
77
- #: ../classes/fieldAdapter.php:96
78
- msgid "Destination"
79
- msgstr "Destination"
80
-
81
- #: ../classes/fieldAdapter.php:97
82
- msgid "Country"
83
- msgstr "Pays"
84
-
85
- #: ../classes/fieldAdapter.php:100
86
- msgid "Categories"
87
- msgstr "Catégories"
88
-
89
- #: ../classes/fieldAdapter.php:101
90
- msgid "You have no categories"
91
- msgstr "Vous n'avez pas de catégories"
92
-
93
- #: ../classes/fieldAdapter.php:102
94
- msgid "Brands"
95
- msgstr "Marques"
96
-
97
- #: ../classes/fieldAdapter.php:103
98
- msgid "You have no brands"
99
- msgstr "Vous n'avez pas de marques"
100
-
101
- #: ../classes/fieldAdapter.php:105
102
- msgid "Tax Rate"
103
- msgstr "Taux de la TVA"
104
-
105
- #: ../classes/fieldAdapter.php:106
106
- msgid "Absolute"
107
- msgstr "Absolu"
108
-
109
- #: ../classes/fieldAdapter.php:134
110
- msgid "Not selected"
111
- msgstr "Non sélectionné"
112
-
113
- #: ../classes/fieldAdapter.php:184
114
- msgid "class"
115
- msgstr "class"
116
-
117
- #: ../classes/fieldAdapter.php:186
118
- msgid "id"
119
- msgstr "id"
120
-
121
- #: ../classes/fileuploader.php:29
122
- msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
123
- msgstr "Le fichier téléchargé excède le upload_max_filesize dans php.ini"
124
-
125
- #: ../classes/fileuploader.php:32
126
- msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
127
- msgstr "Le fichier téléchargé excède le MAX_FILE_SIZE qui a été spécifié dans le formulaire HTML"
128
-
129
- #: ../classes/fileuploader.php:35
130
- msgid "The uploaded file was only partially uploaded"
131
- msgstr "Le fichier n'a été que partiellement téléchargé"
132
-
133
- #: ../classes/fileuploader.php:38
134
- msgid "No file was uploaded."
135
- msgstr "Aucun fichier n'a été téléchargé."
136
-
137
- #: ../classes/fileuploader.php:41
138
- msgid "Missing a temporary folder"
139
- msgstr "Absenced'un dossier temporaire"
140
-
141
- #: ../classes/fileuploader.php:44
142
- msgid "Failed to write file to disk"
143
- msgstr "Impossible d'écrire le fichier sur le disque"
144
-
145
- #: ../classes/fileuploader.php:47
146
- msgid "File upload stopped by extension"
147
- msgstr "Téléchargement du fichier stoppé par l'extension"
148
-
149
- #: ../classes/fileuploader.php:51
150
- msgid "No error code avaiable"
151
- msgstr "Aucun code d'erreur disponible"
152
-
153
- #: ../classes/fileuploader.php:54
154
- msgid "No file was uploaded.."
155
- msgstr "Aucun fichier n'a été téléchargé !"
156
-
157
- #: ../classes/frame.php:139
158
- msgid "You have no permissions to view this page"
159
- msgstr "Vous n'avez pas les permissions pour voir cette page"
160
-
161
- #: ../classes/html.php:298
162
- msgid "Upload"
163
- msgstr "Téléchargement"
164
-
165
- #: ../classes/html.php:699
166
- msgid "ON"
167
- msgstr "Marche"
168
-
169
- #: ../classes/html.php:700
170
- msgid "OFF"
171
- msgstr "Arrêt"
172
-
173
- #: ../classes/html.php:724
174
- #, php-format
175
- msgid "Select %s"
176
- msgstr "Sélectionnez %s"
177
-
178
- #: ../classes/model.php:176 ../classes/model.php:188
179
- msgid "Database error detected"
180
- msgstr "Erreur de base de données détectée"
181
-
182
- #: ../classes/model.php:178
183
- msgid "Invalid ID"
184
- msgstr "ID invalide"
185
-
186
- #: ../classes/model.php:211
187
- msgid "Empty or invalid ID"
188
- msgstr "Id invalide ou vide"
189
-
190
- #: ../classes/modInstaller.php:34
191
- #, php-format
192
- msgid "Move files for %s failed"
193
- msgstr "Le déplacement des fichiers pour %s a échoué"
194
-
195
- #: ../classes/modInstaller.php:37
196
- #, php-format
197
- msgid "%s is not plugin module"
198
- msgstr "%s est pas un module du plugin"
199
-
200
- #: ../classes/modInstaller.php:76
201
- msgid "Cannot create module directory. Try to set permission to "
202
- msgstr "Impossible de créer le répertoire du module. Essayez de définir l’autorisation pour"
203
-
204
- #: ../classes/modInstaller.php:103
205
- msgid "No modules were found in XML file"
206
- msgstr "Aucun module n'a été trouvé dans le fichier XML"
207
-
208
- #: ../classes/modInstaller.php:107
209
- msgid "Invalid XML file"
210
- msgstr "Fichier XML non valide"
211
-
212
- #: ../classes/modInstaller.php:109
213
- msgid "No XML file were found"
214
- msgstr "Aucun fichier XML n'a été trouvé"
215
-
216
- #: ../classes/modInstaller.php:132
217
- #, php-format
218
- msgid "Install %s failed"
219
- msgstr "L’installation de %s a échouée"
220
-
221
- #: ../classes/modInstaller.php:138
222
- msgid "Error Activate module"
223
- msgstr "Erreur d'activation du module"
224
-
225
- #: ../classes/modInstaller.php:168
226
- msgid "Error Deactivation module"
227
- msgstr "Erreur de désactivation du module"
228
-
229
- #: ../classes/modInstaller.php:189
230
- msgid "Error Activating module"
231
- msgstr "Erreur d'activation du module"
232
-
233
- #: ../classes/table.php:277
234
- msgid "Nothing to update"
235
- msgstr "Pas de mise à jour"
236
-
237
- #: ../classes/table.php:293
238
- msgid "Database error. Please contact your developer."
239
- msgstr "Erreur de base de données. SVP contactez votre développeur."
240
-
241
- #: ../classes/validator.php:30
242
- #, php-format
243
- msgid "Invalid length for %s, max length is %s"
244
- msgstr "Longueur non valide pour %s, la longueur maximale est de %s"
245
-
246
- #: ../classes/validator.php:43
247
- #, php-format
248
- msgid "Invalid numeric value for %s"
249
- msgstr "Valeur numérique non valide pour %s"
250
-
251
- #: ../classes/validator.php:71
252
- #, php-format
253
- msgid "Please enter %s"
254
- msgstr "Veuillez entrer %s"
255
-
256
- #: ../classes/validator.php:78
257
- #, php-format
258
- msgid "Please select %s"
259
- msgstr "SVP sélectionnez %s"
260
-
261
- #: ../classes/validator.php:85 ../classes/validator.php:101
262
- #, php-format
263
- msgid "Invalid %s"
264
- msgstr "Invalide %s"
265
-
266
- #: ../classes/validator.php:88
267
- #, php-format
268
- msgid "%s is already registered"
269
- msgstr "%s est déjà enregistré"
270
-
271
- #: ../classes/tables/modules.php:7 ../classes/tables/modules_type.php:8
272
- msgid "Label"
273
- msgstr "Libellé"
274
-
275
- #: ../classes/tables/modules.php:8
276
- msgid "Type"
277
- msgstr "Type"
278
-
279
- #: ../classes/tables/modules.php:9
280
- msgid "Active"
281
- msgstr "Actif"
282
-
283
- #: ../classes/tables/modules.php:10
284
- msgid "Params"
285
- msgstr "Paramètres"
286
-
287
- #: ../classes/tables/modules.php:13
288
- msgid "Code"
289
- msgstr "Code"
290
-
291
- #: ../classes/tables/modules.php:14
292
- msgid "External plugin directory"
293
- msgstr "Répertoire des plugins externes"
294
-
295
- #: ../classes/tables/modules_type.php:7
296
- msgid "ID"
297
- msgstr "ID "
298
-
299
- #: ../classes/tables/usage_stat.php:8
300
- msgid "code"
301
- msgstr "code"
302
-
303
- #: ../classes/tables/usage_stat.php:9
304
- msgid "visits"
305
- msgstr "visites"
306
-
307
- #: ../classes/tables/usage_stat.php:10
308
- msgid "spent_time"
309
- msgstr "spent_time"
310
-
311
- #: ../classes/tables/usage_stat.php:11
312
- msgid "modify_timestamp"
313
- msgstr "modify_timestamp"
314
-
315
- #: ../doc/contact-form-by-supsystic-pro/wpUpdater.php:68
316
- msgid "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?\" onclick=\"document.location.reload(); return false;\">Try again</a>"
317
- msgstr "Une erreur HTTP inattendue est survenue lors de la demande de l'API. </ p> <p> <a href = \"?\" onclick = \"document.location.reload (); return false;\"> Essayer encore</a>"
318
-
319
- #: ../doc/contact-form-by-supsystic-pro/wpUpdater.php:73
320
- msgid "An unknown error occurred"
321
- msgstr "Une erreur inconnue s’est produite"
322
-
323
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/mod.php:15
324
- msgid "Testing"
325
- msgstr "Essai"
326
-
327
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/models/ab_testing.php:18
328
- msgid "Enter Name"
329
- msgstr "Entrez Nom"
330
-
331
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/models/ab_testing.php:20
332
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/models/ab_testing.php:32
333
- msgid "Empty Base ID"
334
- msgstr "ID de la base vide"
335
-
336
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abEditFormControls.php:3
337
- msgid "Back to Main Form"
338
- msgstr "Retour au formulaire principal"
339
-
340
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abFormEditTab.php:3
341
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abNewForm.php:2
342
- msgid "Add New Test"
343
- msgstr "Ajouter un nouveau test"
344
-
345
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abFormEditTab.php:7
346
- msgid "Delete selected"
347
- msgstr "Effacer la sélection"
348
-
349
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abFormEditTab.php:11
350
- msgid "Clear"
351
- msgstr "Effacer"
352
-
353
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abFormEditTab.php:17
354
- msgid "You have no Test Forms for now. <a href=\"#\" class=\"cfsAbAddNew\" style=\"font-style: italic;\">Create</a> your first Test!"
355
- msgstr "Vous n’avez aucun formulaire de test pour l’instant. <a href=\"#\" class=\"cfsAbAddNew\" style=\"font-style: italic;\">Créer</a>votre premier essai !"
356
-
357
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abNewForm.php:5
358
- msgid "Test Form Name"
359
- msgstr "Nom du formulaire test"
360
-
361
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/mod.php:11
362
- msgid "Active Campaign"
363
- msgstr "Active Campaign"
364
-
365
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:22
366
- msgid "Please make sure that you created some Lists under your Active Campaign account."
367
- msgstr "SVP assurez-vous que vous avez créé quelques listes sous votre compte Active Campaign"
368
-
369
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:26
370
- msgid "Make sure that you entered correct API data."
371
- msgstr "Assurez-vous que vous avez entré les données correctes de l'API."
372
-
373
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:40
374
- msgid "Please enter your API URL"
375
- msgstr "SVP entrez l'URL de votre API"
376
-
377
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:42
378
- msgid "Please enter your API key"
379
- msgstr "SVP entrez la clé de votre API"
380
-
381
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:83
382
- #, php-format
383
- msgid "Add contact failed with error: %s"
384
- msgstr "Ajoutez le contact érroné avec l'erreur : %s"
385
-
386
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:95
387
- msgid "No lists to add selected in admin area - contact site owner to resolve this issue."
388
- msgstr "Aucunes listes à ajouter sélectionnées dans l'admin - contactez le propriétaire du site pour résoudre ce problème."
389
-
390
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:4
391
- msgid "Not supported by Server"
392
- msgstr "Non pris en charge par le serveur"
393
-
394
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:5
395
- msgid "Not supported on your server"
396
- msgstr "Non pris en charge sur votre serveur"
397
-
398
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:8
399
- msgid "This module require to have cUrl library for PHP on server installed. Please contact your hosting provider and ask them to enable cUrl for you, this is Free library."
400
- msgstr "Ce module a besoin d'avoir la bibliothèque cUrl pour PHP installé sur le serveur. SVP contactez votre hébergeur et lui demander d'autoriser cURL pour vous, c'est une bibliothèque gratuite."
401
-
402
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:14
403
- msgid "API URL"
404
- msgstr "URL de l'API"
405
-
406
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:15
407
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:27
408
- #, php-format
409
- msgid "You can find it under your Active Campaign Account -> My Settings -> API, here is <a href=\"%s\" class=\"cfsAcHelpApiKeyLink\">help screenshot</a>"
410
- msgstr "Vous pouvez la trouver sous votre compte Active Campaign -> My Settings -> API, voici une <a href=\"%s\" </a> class=\"cfsAcHelpApiKeyLink\">capture d'écran</a> pour vous aider"
411
-
412
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:26
413
- msgid "API Key"
414
- msgstr "Clé de l'API"
415
-
416
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:38
417
- msgid "Campaigns for subscribe"
418
- msgstr "Campaigns pour s'abonner"
419
-
420
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:39
421
- msgid "Select Campaigns for subscribe. They are taken from your Active Campaign account."
422
- msgstr "Sélectionnez Campaigns pour l'abonnement. Elles sont prises à partir de votre compte Active Campaign."
423
-
424
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:46
425
- msgid "Choose Lists"
426
- msgstr "Choisissez listes"
427
-
428
- #: ../doc/contact-form-by-supsystic-pro/add_fields/controller.php:12
429
- #, php-format
430
- msgid "File %s Uploaded"
431
- msgstr "Fichiers %s téléchargés"
432
-
433
- #: ../doc/contact-form-by-supsystic-pro/add_fields/mod.php:97
434
- msgid "Yes"
435
- msgstr "Oui"
436
-
437
- #: ../doc/contact-form-by-supsystic-pro/add_fields/mod.php:97
438
- msgid "No"
439
- msgstr "Non"
440
-
441
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:29
442
- #, php-format
443
- msgid "File size is too big, maximum file size for %s is %sMb"
444
- msgstr "La taille du fichier est trop grand, la taille maximale du fichier pour %s est de %sMb"
445
-
446
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:40
447
- #, php-format
448
- msgid "File type is invalid, %s is supported only %s types"
449
- msgstr "Ce type de fichier est invalide, %s est supporté seulement par les types %s"
450
-
451
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:59
452
- msgid "Can not find file in request"
453
- msgstr "Fichier introuvable avec la requête"
454
-
455
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:61
456
- msgid "Empty fiels provided"
457
- msgstr "Champ fourni vide"
458
-
459
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:64
460
- msgid "Missing Form"
461
- msgstr "Formulaire manquant"
462
-
463
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:66
464
- msgid "Missing ID"
465
- msgstr "ID manquant"
466
-
467
- #: ../doc/contact-form-by-supsystic-pro/arpreach/mod.php:8
468
- msgid "arpReach"
469
- msgstr "arpReach"
470
-
471
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:4
472
- msgid "arpReach not supported"
473
- msgstr "arpReach non soutenu"
474
-
475
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:5
476
- msgid "This module is not supported by your server configuration."
477
- msgstr "Ce module n'est pas pris en charge par la configuration de votre serveur."
478
-
479
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:8
480
- msgid "arpReach is not supported on your server."
481
- msgstr "arpReach n'est pas pris en charge sur votre serveur."
482
-
483
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:14
484
- msgid "arpReach intake form Action URL"
485
- msgstr "Url pour le formulaire d'admission arpReach"
486
-
487
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:15
488
- msgid "Open your script for intake form, find there form tag with form method='post' action='http://yourdomain.coma/a/a.php/sub/a/xxxxxx', then copy \"action\" attribute - and paste it in text field below."
489
- msgstr "Ouvrez votre script pour le formulaire d'admission, y trouver balise form avec form method='post' action='http://yourdomain.coma /a/a.php/sub/a/xxxxxx', puis copiez l'attribut \"action\" - et coller-le dans le champ de texte ci-dessous."
490
-
491
- #: ../doc/contact-form-by-supsystic-pro/aweber/mod.php:9
492
- msgid "Aweber"
493
- msgstr "Aweber"
494
-
495
- #: ../doc/contact-form-by-supsystic-pro/aweber/models/aweber.php:88
496
- msgid "Can not find your Aweber lists"
497
- msgstr "Impossible de trouvez vos listes Aweber"
498
-
499
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:14
500
- msgid "Authorize in Aweber Account"
501
- msgstr "Autorisez dans le compte d'Aweber"
502
-
503
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:15
504
- msgid "To start integration process - you need to be authorized in Aweber account."
505
- msgstr "Pour commencer le procédé d'intégration - vous devez être autorisé dans le compte d'Aweber."
506
-
507
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:18
508
- msgid "Authorize"
509
- msgstr "Autorisation"
510
-
511
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:24
512
- msgid "Lists for subscribe"
513
- msgstr "Listes pour abonnement"
514
-
515
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:25
516
- msgid "Select lists for subscribe. They are taken from your Aweber account - so make sure that you entered correct API key before."
517
- msgstr "Sélectionner les listes d'abonement. Elles sont prises de votre compte d'Aweber - ainsi assurez-vous que vous avez correctement mis la clé API avant."
518
-
519
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:34
520
- msgid "Enter API key - and your list will appear here"
521
- msgstr "Entrez votre clé API - et votre liste apparaîtra ici"
522
-
523
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/mod.php:12
524
- msgid "Benchmark"
525
- msgstr "Benchmark"
526
-
527
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/models/benchmarkemail.php:41
528
- msgid "Please make sure that you created some Lists under your Benchmark account."
529
- msgstr "Veuillez vous assurer que vous avez créé quelques listes sous votre compte Benchmark."
530
-
531
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/models/benchmarkemail.php:45
532
- msgid "Please enter your Benchmark Password"
533
- msgstr "SVP entrez votre mot de passe Benchmark"
534
-
535
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/models/benchmarkemail.php:47
536
- msgid "Please enter your Benchmark Login"
537
- msgstr "SVP entrez votre identifiant Benchmark"
538
-
539
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:15
540
- msgid "Benchmark Login"
541
- msgstr "Identifiant Benchmark"
542
-
543
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:16
544
- msgid "Login for your Benchmark account."
545
- msgstr "Identifiant pour votre compte Benchmark"
546
-
547
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:27
548
- msgid "Benchmark Password"
549
- msgstr "Mot de passe Benchmark"
550
-
551
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:28
552
- msgid "Password for your Benchmark account."
553
- msgstr "Mot de passe pour votre compte Benchmark"
554
-
555
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:40
556
- msgid "Select Campaigns for subscribe. They are taken from your Benchmark account."
557
- msgstr "Sélectionnez Campaigns pour l'abonnement. Elles sont prises à partir de votre compte Benchmark."
558
-
559
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/mod.php:8
560
- msgid "Campaign Monitor"
561
- msgstr "Campaign Monitor"
562
-
563
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/models/campaignmonitor.php:16
564
- #, php-format
565
- msgid "You have no lists for now. Go to your <a href=\"%s\" target=\"_blank\">Campaign Monitor Account -> Lists & Subscribers</a> and create list at first, then just reload this page"
566
- msgstr "Vous n'avez aucune liste pour l'instant. Allez sur votre <a href=\"%s\" target=\"_blank\">Compte Campaign Monitor ->Lists & Subscribers</a> et créez une liste en tout premier, puis recharger la page"
567
-
568
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/models/campaignmonitor.php:186
569
- msgid "Something going wrong while trying to send data to mail list service. Please contact site owner."
570
- msgstr "Quelque chose ne fonctionne pas quand vous tentez d'envoyer des données à la messagerie. Veuillez contacter le propriétaire du site."
571
-
572
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/models/campaignmonitor.php:196
573
- msgid "Can not detect authorization fo account owner. Contact site owner to resolve this issue."
574
- msgstr "Impossible de détecter l'autorisation pour le compte propriétaire. Contacter le propriétaire du site pour résoudre ce problème."
575
-
576
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:4
577
- msgid "Campaign Monitor not supported"
578
- msgstr "Campaign Monitor non pris en charge"
579
-
580
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:8
581
- msgid "Campaign Monitor require at least PHP version 5.3. Please contact your hosting provider and ask them to switch your PHP to version 5.3. or higher."
582
- msgstr "Campaign Monitor nécessitent au moins PHP version 5.3. SVP contactez votre hébergeur et lui demander de passer votre PHP vers la version 5.3. ou supérieur."
583
-
584
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:14
585
- msgid "Campaign Monitor Setup"
586
- msgstr "Installation de Campaign Monitor "
587
-
588
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:15
589
- msgid "You must authorize to use Campaign Monitor features"
590
- msgstr "Vous devez autoriser pour utiliser les caractéristiques de Campaign Monitor."
591
-
592
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:18
593
- msgid "Authorize in Campaign Monitor"
594
- msgstr "Autoriser dans Campaign Monitor"
595
-
596
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:25
597
- msgid "Select lists for subscribe. They are taken from your Campaign Monitor account."
598
- msgstr "Listes de sélection pour s’abonner. Elles sont tirées de votre compte de Campaign Monitor."
599
-
600
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/mod.php:11
601
- msgid "Constant Contact"
602
- msgstr "Constant Contact"
603
-
604
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/models/constantcontact.php:39
605
- msgid "You are not logged-in"
606
- msgstr "Vous n'êtes pas ouvert une session"
607
-
608
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/models/constantcontact.php:41
609
- msgid "Can not get cc obj"
610
- msgstr "Vous ne pouvez pas obtenir Constant Contact objet"
611
-
612
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:4
613
- msgid "Constant Contact not supported"
614
- msgstr "Constant Contact non pris en charge"
615
-
616
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:8
617
- msgid "Constant Contact require at least PHP version 5.3. Please contact your hosting provider and ask them to switch your PHP to version 5.3. or higher."
618
- msgstr "Constant Contact a besoin au minimum de la version 5.3 de PHP. Veuillez contacter votre hébergeur et demandez-lui de commuter votre PHP à la version 5.3. ou supérieur."
619
-
620
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:14
621
- msgid "Constant Contact Setup"
622
- msgstr "Installation de Constant Contact"
623
-
624
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:15
625
- msgid "You must authorize to use Constant Contact features"
626
- msgstr "Vous devez autoriser pour utiliser les caractéristques de Constant Contact."
627
-
628
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:18
629
- msgid "Authorize in Constant Contact"
630
- msgstr "Autorisez pour Constant Constant"
631
-
632
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:25
633
- msgid "Select lists for subscribe. They are taken from your Constant Contact account."
634
- msgstr "Sélectionnez les listes pour vous abonner. Elles sont prises à partir de votre compte Constant Contact."
635
-
636
- #: ../doc/contact-form-by-supsystic-pro/convertkit/mod.php:11
637
- msgid "ConvertKit"
638
- msgstr "ConvertKit"
639
-
640
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:7
641
- msgid "Please enter your API Key"
642
- msgstr "SVP entrez votre clé API"
643
-
644
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:19
645
- msgid "You have no forms. Please create form at first under your ConvertKit account"
646
- msgstr "Vous n'avez pas de formulaires. SVP créer d'abord un formulaire avec votre compte ConvertKit."
647
-
648
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:36
649
- msgid "There was a problem with sending request to our authentication server. Please try later."
650
- msgstr "Il y a un problème avec l'envoi de la demande vers votre serveur d'authentification. Merci d'essayer ultérieurement."
651
-
652
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:71
653
- msgid "Some error occured during subscription. Please make sure that you entered all information correct."
654
- msgstr "Une erreur est survenue lors de l'abonnement. SVP assurez-vous que avez entré toutes les informations correctement."
655
-
656
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:78
657
- msgid "Please make sure that you entered your API Key and selected forms in admin area"
658
- msgstr "SVP assurez-vous que vous avez entré votre clé API et sélectionné les formulaires dans la zone d'administration."
659
-
660
- #: ../doc/contact-form-by-supsystic-pro/convertkit/views/tpl/ckAdminFields.php:15
661
- msgid "You can find your API Key in the ConvertKit Account page."
662
- msgstr "Vous pouvez trouver votre clé API sur la page du compte ConvertKit."
663
-
664
- #: ../doc/contact-form-by-supsystic-pro/convertkit/views/tpl/ckAdminFields.php:25
665
- msgid "Forms to Subscribe"
666
- msgstr "Formulaires d'abonnement"
667
-
668
- #: ../doc/contact-form-by-supsystic-pro/convertkit/views/tpl/ckAdminFields.php:26
669
- msgid "Select Forms for subscribe. They are taken from your ConvertKit account."
670
- msgstr "Sélection des formulaires pour l'abonnement. Elles sont prises à partir de votre compte ConvertKit."
671
-
672
- #: ../doc/contact-form-by-supsystic-pro/convertkit/views/tpl/ckAdminFields.php:32
673
- msgid "Choose Forms"
674
- msgstr "Choisissez les formulaires"
675
-
676
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/mod.php:8
677
- msgid "FeedBlitz"
678
- msgstr "FeedBlitz"
679
-
680
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/models/feedblitz.php:11
681
- msgid "You have no lists. Login to your FeedBlitz account and create your first list before start using this functionality."
682
- msgstr "Vous n'avez pas de listes. Connectez-vous à votre compte FeedBlitz et créez votre première liste avant de commencer à utiliser cette fonctionnalité."
683
-
684
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/models/feedblitz.php:61
685
- msgid "Some error occured during connection to the server"
686
- msgstr "Une erreur est survenue lors de la connexion au serveur"
687
-
688
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:4
689
- msgid "FeedBlitz not supported"
690
- msgstr "FeedBlitz n'est pas pris en charge"
691
-
692
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:8
693
- msgid "FeedBlitz is not supported on your server"
694
- msgstr "FeedBlitz n'est pas pris en charge sur votre serveur"
695
-
696
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:14
697
- msgid "FeedBlitz API Key"
698
- msgstr "Clé API FeeBlitz"
699
-
700
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:15
701
- msgid "Your FeedBlitz API Key"
702
- msgstr "Votre clé API FeeBlitz"
703
-
704
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:26
705
- msgid "Select lists for subscribe. They are taken from your FeedBlitz account."
706
- msgstr "Sélectionnez les listes pour vous abonner. Elles sont prises à partir de votre compte FeedBlitz."
707
-
708
- #: ../doc/contact-form-by-supsystic-pro/get_response/mod.php:11
709
- msgid "GetResponse"
710
- msgstr "GetResponse"
711
-
712
- #: ../doc/contact-form-by-supsystic-pro/get_response/views/tpl/grAdminFields.php:15
713
- #, php-format
714
- msgid "You can find it under your GetResponse Account -> GetResponse API, here is <a href=\"%s\" class=\"cfsGrHelpApiKeyLink\" target=\"_blank\">help screenshot</a>"
715
- msgstr "Vous pouvez le trouver sous votre compte GetResponse -> API GetResponse, voici une <a href=\"%s\" class=\"cfsGrHelpApiKeyLink\" aide target=\"_blank\">capture d'écran</a> pour vous aider "
716
-
717
- #: ../doc/contact-form-by-supsystic-pro/get_response/views/tpl/grAdminFields.php:26
718
- msgid "Select Campaigns for subscribe. They are taken from your GetResponse account."
719
- msgstr "Sélectionnez Campaigns pour abonnement. Elles sont prises à partir de votre compte GetResponse."
720
-
721
- #: ../doc/contact-form-by-supsystic-pro/get_response/views/tpl/grAdminFields.php:41
722
- msgid "Cycle Day"
723
- msgstr "Jour de cycle"
724
-
725
- #: ../doc/contact-form-by-supsystic-pro/get_response/views/tpl/grAdminFields.php:42
726
- msgid "Insert contact on a given day at the autoresponder cycle. Value of 0 means the beginning of the cycle. Lack of this param means that a contact will not be inserted into cycle."
727
- msgstr "Insérer un contact un jour donné au cycle du répondeur automatique. La valeur 0 signifie le début du cycle. L'absence de ce paramètre signifie qu'un contact ne sera pas inséré dans le cycle."
728
-
729
- #: ../doc/contact-form-by-supsystic-pro/icontact/mod.php:11
730
- msgid "iContact"
731
- msgstr "iContact"
732
-
733
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:20
734
- msgid "Please enter your Application ID"
735
- msgstr "SVP entrez votre ID d'application"
736
-
737
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:23
738
- msgid "Please enter your API Username"
739
- msgstr "SVP entrez votre nom d'utilisateur API"
740
-
741
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:26
742
- msgid "Please enter your API Password"
743
- msgstr "SVP entrez votre mot de passe API"
744
-
745
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:43
746
- msgid "You have no lists in your iContact account for now."
747
- msgstr "Vous avez pas de listes dans votre compte iContact pour le moment."
748
-
749
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:108
750
- msgid "Can't add contact"
751
- msgstr "Impossible d'ajouter un contact"
752
-
753
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:14
754
- msgid "Application ID"
755
- msgstr "ID de l'application"
756
-
757
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:15
758
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:26
759
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:37
760
- #, php-format
761
- msgid "You can create it <a href=\"%s\" target=\"_blank\">here</a>. More info can be found <a href=\"%s\" target=\"_blank\">here</a>"
762
- msgstr "Vous pouvez le créer <a href=\"%s\" target=\"_blank\">ici</a>. Plus d'informations peuvent être trouvées <a href=\"%s\" target=\"_blank\">ici </a>"
763
-
764
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:25
765
- msgid "API Username"
766
- msgstr "Nom d'utilisateur API"
767
-
768
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:36
769
- msgid "API Password"
770
- msgstr "Mot de passe API"
771
-
772
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:48
773
- msgid "Select Lists for subscribe. They are taken from your iContact account."
774
- msgstr "Sélectionnez Listes pour abonnement. Elles sont prises à partir de votre compte iContact."
775
-
776
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/mod.php:13
777
- msgid "InfusionSoft"
778
- msgstr "InfusionSoft"
779
-
780
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/models/infusionsoft.php:88
781
- msgid "Administrator of this site need to re-autentificate in InfusionSoft system from admin area"
782
- msgstr "L'administrateur de ce site a besoin de ré-authentifier dans le système Infusionsoft à partir de la zone d'administration."
783
-
784
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:8
785
- msgid "This module require to have cUrl library for PHP on server installed and PHP version to be at least 5.4. Please contact your hosting provider and ask them to enable cUrl for you, this is Free library, and check your PHP version."
786
- msgstr "Ce module a besoin d'avoir la bibliothèque cURL pour PHP installé sur le serveur et la version PHP 5.4 minimum. SVP contactez votre hébergeur et lui demandez d'activer cURL pour vous, ceci est une librairie gratuite, et vérifiez votre version de PHP."
787
-
788
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:14
789
- msgid "InfusionSoft Setup"
790
- msgstr "Installation d'InfusionSoft"
791
-
792
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:15
793
- msgid "You must authorize to use InfusionSoft features"
794
- msgstr "Vous devez avoir l'autorisation pour utiliser les fonctionnalités de InfusionSoft"
795
-
796
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:18
797
- msgid "Authorize in InfusionSoft"
798
- msgstr "Autorisez dans Infusionsoft"
799
-
800
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:36
801
- msgid "Tags for subscribe"
802
- msgstr "Étiquettes pour vous inscrire"
803
-
804
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:37
805
- msgid "Enter Tags IDs for subscribe. You can get it from your InfusionSoft account -> Settings -> Tags (Id column). You can enter several tags ids here, separate them by comma sign - \",\"."
806
- msgstr "Entrez tags ID pour vous inscrire. Vous pouvez l'obtenir à partir de votre compte Infusionsoft -> Settings -> Tags (colonne Id). Vous pouvez entrer plusieurs balises ids ici, les séparer par des virgules - \",\"."
807
-
808
- #: ../doc/contact-form-by-supsystic-pro/jetpack/mod.php:8
809
- msgid "Jetpack"
810
- msgstr "Jetpack"
811
-
812
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:46
813
- msgid "Not a valid email address"
814
- msgstr "Adresse courriel invalide"
815
-
816
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:47
817
- msgid "Not a valid post ID"
818
- msgstr "Id de l'article invalide"
819
-
820
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:48
821
- msgid "Unknown post"
822
- msgstr "Article inconnu"
823
-
824
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:49
825
- msgid "Strange error. Jetpack servers at WordPress.com could subscribe the email."
826
- msgstr "Erreur bizarre. Les serveurs de Jetpack chez WordPress.com n'ont pu inscrire l'email."
827
-
828
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:50
829
- msgid "Site owner has disabled subscriptions."
830
- msgstr "Le propriétaire de site a désactivé les abonnements."
831
-
832
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:51
833
- msgid "Already subscribed."
834
- msgstr "Déjà abonné."
835
-
836
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:52
837
- msgid "Strange error. Jetpack servers at WordPress.com returned something malformed."
838
- msgstr "Erreur étrange. Les serveurs de Jetpack chez WordPress.com ont renvoyé quelque chose de déformé."
839
-
840
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:53
841
- msgid "Strange error. Jetpack servers at WordPress.com returned something I didn't understand."
842
- msgstr "Erreur bizarre. Les serveurs de Jetpack chez WordPress.com ont renvoyé quelque chose que je n'ai pas compris."
843
-
844
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:56
845
- msgid "Something is going wrong"
846
- msgstr "Quelque chose va mal"
847
-
848
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:62
849
- msgid "Empty response from Jetpack"
850
- msgstr "Réponse vide de Jetpack"
851
-
852
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:64
853
- msgid "Subscriptions module is not activated in Jetpack plugin settings. Activate it before start using this subscribe method."
854
- msgstr "Le module abonnements est pas activé dans les paramètres du plugin Jetpack. Activez-le avant de commencer à utiliser ce type d'abonnement."
855
-
856
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:66
857
- msgid "Can't find Jetpack plugin on this server"
858
- msgstr "Le plugin Jetpack est introuvable sur ce serveur"
859
-
860
- #: ../doc/contact-form-by-supsystic-pro/jetpack/views/tpl/jpkAdminFields.php:8
861
- #, php-format
862
- msgid "To use this subscribe engine - you must have <a target=\"_blank\" href=\"%s\">Jetpack plugin</a> installed on your site"
863
- msgstr "Pour utiliser ce moteur pour abonnement - vous devez avoir le <a target=\"_blank\" href=\"%s\">plugin Jetpack</ a> installé sur votre site"
864
-
865
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:30
866
- #, php-format
867
- msgid "Your license has expired. Once you extend your license - you will be able to Update PRO version. To extend PRO version license - follow <a href=\"%s\" target=\"_blank\">this link</a>, then - go to <a href=\"%s\">License</a> tab anc click on \"Re-activate\" button to re-activate your PRO version."
868
- msgstr "Votre licence a expirée. Une fois que vous aurez prolongé votre licence - vous serez en mesure de mettre à jour la version PRO. Pour prolonger la licence version PRO - suivez <a href=\"%s\" target=\"_blank\">ce lien </a>, puis - aller à l'onglet <a href=\"%s\">licence</a> et cliquer sur bouton \"réactiver\" pour réactiver votre version PRO."
869
-
870
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:38
871
- #, php-format
872
- msgid "Your license for PRO version of %s plugin has expired. You can <a href=\"%s\" target=\"_blank\">click here</a> to extend your license, then - go to <a href=\"%s\">License</a> tab and click on \"Re-activate\" button to re-activate your PRO version."
873
- msgstr "Votre licence pour la version PRO du plugin %s de a expirée. Vous pouvez <a href=\"%s\" cliquez target=\"_blank\">cliquer ici </a> prolonger votre licence, puis - allez à l'onglet <a href=\"%s\">Licence</a> et cliquez sur le bouton \"Réactiver \"pour réactiver votre version PRO."
874
-
875
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:51
876
- msgid "License"
877
- msgstr "Licence"
878
-
879
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:74
880
- msgid "Activate License"
881
- msgstr "Activer la licence"
882
-
883
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:76
884
- msgid "Renew License"
885
- msgstr "Renouveler la licence"
886
-
887
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:54
888
- msgid "Please enter your License Key"
889
- msgstr "SVP entrez la clé de votre licence"
890
-
891
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:56
892
- msgid "Please enter your Email address"
893
- msgstr "SVP entrez votre adresse courriel"
894
-
895
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:154
896
- #, php-format
897
- msgid "License for plugin %s will expire today."
898
- msgstr "La licence pour le plugin %s expire aujourd'hui."
899
-
900
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:156
901
- #, php-format
902
- msgid "License for plugin %s will expire tomorrow."
903
- msgstr "La licence pour le plugin %s expire demain."
904
-
905
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:158
906
- #, php-format
907
- msgid "License for plugin %s will expire in %d days."
908
- msgstr "La licence pour le plugin %s expirera dans %d jours."
909
-
910
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:4
911
- #, php-format
912
- msgid "Congratulations! PRO version of %s plugin has been activated and is working fine!"
913
- msgstr "Félicitations ! La version PRO du plugin %s a été activé et fonctionne parfaitement !"
914
-
915
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:6
916
- #, php-format
917
- msgid "Your license for PRO version of %s plugin has expired. You can <a href=\"%s\" target=\"_blank\">click here</a> to extend your license, then - click on \"Re-activate\" button to re-activate your PRO version."
918
- msgstr "Votre licence pour la version PRO du plugin %s a expirée. Vous pouvez <a href=\"%s\" target=\"_blank\">cliquer ici </a> pour prolonger votre licence, puis - cliquez sur le bouton \"Re-activate\" pour réactiver votre version PRO."
919
-
920
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:8
921
- #, php-format
922
- msgid "Congratulations! You have successfully installed PRO version of %s plugin. Final step to finish Your PRO version setup - is to enter your Email and License Key on this page. This will activate Your copy of software on this site."
923
- msgstr "Félicitations ! Vous avez réussi à installer la version PRO du plugin %s. L'étape finale pour terminer votre configuration PRO version - est de saisir votre e-mail et la clé de licence sur cette page. Cela permettra d'activer votre copie du logiciel sur ce site."
924
-
925
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:20
926
- msgid "Email"
927
- msgstr "Courriel"
928
-
929
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:23
930
- #, php-format
931
- msgid "Your email address, used on checkout procedure on <a href=\"%s\" target=\"_blank\">%s</a>"
932
- msgstr "Votre adresse e-mail, utilisée pour la procédure de paiement sur <a href=\"%s\" target=\"_blank\">%s</a>"
933
-
934
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:31
935
- msgid "License Key"
936
- msgstr "Clé de la licence"
937
-
938
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:34
939
- #, php-format
940
- msgid "Your License Key from your account on <a href=\"%s\" target=\"_blank\">%s</a>"
941
- msgstr "Votre clé de licence de votre compte sur <a href=\"%s\" target=\"_blank\">%s</a>"
942
-
943
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:47
944
- msgid "Re-activate"
945
- msgstr "Re-activation"
946
-
947
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:49
948
- msgid "Activate"
949
- msgstr "Activation"
950
-
951
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/mod.php:8
952
- msgid "MailChimp"
953
- msgstr "MailChimp"
954
-
955
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:96
956
- msgid "Something going wrong while trying to send data to MailChimp. Please contact site owner."
957
- msgstr "Quelque chose qui ne fonctionne pas pendant l'envoi des données à MailChimp. SVP contactez le propriétaire du site."
958
-
959
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:115
960
- msgid "No API key entered in admin area - contact site owner to resolve this issue."
961
- msgstr "Aucune clé d'api n'est entrée dans la zone de l'administration - contactez le propriétaire du site pour résoudre ce problème."
962
-
963
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:178
964
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:210
965
- msgid "There was some problem while trying to get your lists. Make sure that your API key is correct."
966
- msgstr "Il y a des problèmes quand vous tentez d'obtenir vos listes. Assurez-vous que votre clé API est correcte."
967
-
968
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:182
969
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:218
970
- msgid "Empty API key"
971
- msgstr "Clé de l'API vide"
972
-
973
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:216
974
- msgid "Select some Lists before"
975
- msgstr "Sélectionnez les listes avant"
976
-
977
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:14
978
- msgid "MailChimp API key"
979
- msgstr "Clé API MailChimp"
980
-
981
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:15
982
- #, php-format
983
- msgid "To find your MailChimp API Key login to your mailchimp account at <a href=\"%s\" target=\"_blank\">%s</a> then from the left main menu, click on your Username, then select \"Account\" in the flyout menu. From the account page select \"Extras\", \"API Keys\". Your API Key will be listed in the table labeled \"Your API Keys\". Copy / Paste your API key into \"MailChimp API key\" field here. For more detailed instruction - check article <a href=\"%s\" target=\"_blank\">here</a>."
984
- msgstr "Pour trouver votre identifiant pour la clé API de MailChimp sur votre compte de <a href=\"%s\" target=\"_blank\">%s</a> puis à partir du menu principal de gauche, cliquez sur votre nom d'utilisateur, puis sélectionnez \"Account\" dans le menu déroulant. Sur la page du compte sélectionnez \"Extras\", \"API Keys\". Votre clé API sera répertoriée dans le tableau intitulé \"Your API Keys\". Copier / Coller votre clé API dans le champ \"MailChimp API key\". Pour des instructions plus détaillées - consultez l'article <a href=\"%s\" target=\"_blank\">ici</a>."
985
-
986
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:26
987
- msgid "Select lists for subscribe. They are taken from your MailChimp account - so make sure that you entered correct API key before."
988
- msgstr "Sélectionnez les listes pour vous abonner. Elles sont prises à partir de votre compte MailChimp - alors assurez-vous que vous avez entré correctement la clé API avant."
989
-
990
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:41
991
- msgid "Disable double opt-in"
992
- msgstr "Désactiver double opt-in"
993
-
994
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:42
995
- msgid "Disable double opt-in confirmation message sending - will create subscriber directly after he will sign-up to your form."
996
- msgstr "Désactiver l’envoi de confirmation du message double opt-in - il créera l'abonné directement après qu’il soit inscrit à votre formulaire."
997
-
998
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:51
999
- msgid "Send MailChimp Welcome Email"
1000
- msgstr "Envoyez l'email d'accueil de MailChimp"
1001
-
1002
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:52
1003
- msgid "If double opt-in is disable - there will be no Welcome email from MailChimp by default. But if you still need it - just enable this opton, and Welcome email from MailChimp will be sent to your user even in this case."
1004
- msgstr "Si le double opt-in est désactivé - il n'y aura pas e-mail de bienvenue de MailChimp par défaut. Mais si vous avez vraiment besoin - activez cette option et l'email de MailChimp sera envoyé à votre utilisateur, même dans ce cas."
1005
-
1006
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:58
1007
- msgid "Group for subscribe"
1008
- msgstr "Groupe pour abonnement"
1009
-
1010
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:59
1011
- msgid "In MailChimp there are possibility to select groups for your subscribers. This is not mandatory, but some times is really helpful. So, we added this possibility for you in our plugin too - hope you will like it!"
1012
- msgstr "Dans MailChimp, il y a la possibilité de sélectionner des groupes pour vos abonnés. Ce n'est pas obligatoire, mais quelques fois, c'est vraiment utile. Donc, nous avons donc ajouté cette possibilité pour vous dans notre plugin - en espérant que vous aimerez !"
1013
-
1014
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:65
1015
- msgid "Choose Groups"
1016
- msgstr "Choisissez les groupes"
1017
-
1018
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:68
1019
- msgid "Enter API key, select List - and your groups will appear here"
1020
- msgstr "Entrez la clé API, sélectionnez Liste - et vos groupes apparaîtront ici"
1021
-
1022
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/mod.php:8
1023
- msgid "MailPoet"
1024
- msgstr "MailPoet"
1025
-
1026
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/models/mailpoet.php:47
1027
- msgid "Some error occured during subscription process"
1028
- msgstr "Une erreur est survenue lors du processus d'abonnement"
1029
-
1030
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/models/mailpoet.php:50
1031
- msgid "Can't find MailPoet on this server"
1032
- msgstr "mailPoet est introuvable sur le serveur"
1033
-
1034
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/views/tpl/mptAdminFields.php:8
1035
- #, php-format
1036
- msgid "To use this subscribe engine - you must have <a target=\"_blank\" href=\"%s\">MailPoet plugin</a> installed on your site"
1037
- msgstr "Pour utiliser ce moteur abonnement - vous devez avoir le <a target=\"_blank\" href=\"%s\">plugin MailPoet</ est-> installé sur votre site"
1038
-
1039
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/views/tpl/mptAdminFields.php:14
1040
- msgid "MailPoet Subscribe Lists"
1041
- msgstr "Listes des abonnements MailPoet"
1042
-
1043
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/views/tpl/mptAdminFields.php:22
1044
- #, php-format
1045
- msgid "You have no subscribe lists, <a target=\"_blank\" href=\"%s\">create lists</a> at first, then - select them here."
1046
- msgstr "Vous avez pas de listes d'abonnés, <a target=\"_blank\" href=\"%s\">créer des listes </a> d'abord, puis - sélectionnez-les ici."
1047
-
1048
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/mod.php:9
1049
- msgid "Mailrelay"
1050
- msgstr "Mailrelay"
1051
-
1052
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/models/mailrelay.php:15
1053
- msgid "You have no lists. Login to your Mailrelay account and create your first list before start using this functionality."
1054
- msgstr "Vous avez pas de listes. Connectez-vous à votre compte Mailrelay et créez votre première liste avant de commencer à utiliser cette fonctionnalité."
1055
-
1056
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/models/mailrelay.php:166
1057
- msgid "Failed to create subscriber."
1058
- msgstr "Impossible de créer d'abonné."
1059
-
1060
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/models/mailrelay.php:172
1061
- #: ../doc/contact-form-by-supsystic-pro/myemma/models/myemma.php:79
1062
- msgid "Can not detect Host and API key. Contact site owner to resolve this issue."
1063
- msgstr "Impossible de détecter l'hôte et la clé de l'API. Contacter le propriétaire du site pour résoudre ce problème."
1064
-
1065
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:4
1066
- msgid "Mailrelay not supported"
1067
- msgstr "Mailrelay non supporté"
1068
-
1069
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:8
1070
- msgid "Mailrelay is not supported on your server"
1071
- msgstr "Mailrelay est pas pris en charge sur votre serveur"
1072
-
1073
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:14
1074
- msgid "Mailrelay Host"
1075
- msgstr "Hôte Mailrelay"
1076
-
1077
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:15
1078
- msgid "Please enter the host that you have in your Mairelay welcome email. Please enter it without the initial http:// (for example demo.ip-zone.com)"
1079
- msgstr "SVP entrez l'hôte que vous avez dans votre email de bienvenue de Mairelay. SVP entrez-le sans le http initial : // (par exemple demo.ip-zone.com)"
1080
-
1081
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:34
1082
- msgid "Mailrelay API Key"
1083
- msgstr "Clé API Mailrelay"
1084
-
1085
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:35
1086
- msgid "Please enter your API key. You can generate your API key on your Mailrelay panel, Configuration -> API access -> Generate API key"
1087
- msgstr "SVP entrez votre clé API. Vous pouvez générer votre clé API sur votre panneau Mailrelay, Configuration -> API access -> Generate API key"
1088
-
1089
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:47
1090
- msgid "To create new groups in Mailrelay, you must login into the control panel and click into the Mail Relay > Subscribers groups. Once there you can add a new group for your Wordpress users, or edit an existing one"
1091
- msgstr "Pour créer de nouveaux groupes dans Mailrelay, vous devez vous connecter dans le panneau de contrôle et cliquez sur les relais de messagerie > groupes d'abonnés. Une fois là, vous pouvez ajouter un nouveau groupe pour vos utilisateurs de Wordpress, ou modifier un existant"
1092
-
1093
- #: ../doc/contact-form-by-supsystic-pro/myemma/mod.php:8
1094
- msgid "Emma"
1095
- msgstr "Emma"
1096
-
1097
- #: ../doc/contact-form-by-supsystic-pro/myemma/models/myemma.php:18
1098
- msgid "Please enter your Account ID"
1099
- msgstr "SVP entrez votre ID de compte"
1100
-
1101
- #: ../doc/contact-form-by-supsystic-pro/myemma/models/myemma.php:21
1102
- msgid "Please enter your Public API Key"
1103
- msgstr "SVP entrez votre clé API publique"
1104
-
1105
- #: ../doc/contact-form-by-supsystic-pro/myemma/models/myemma.php:24
1106
- msgid "Please enter your Private API Key"
1107
- msgstr "SVP entrez votre clé API privée"
1108
-
1109
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:4
1110
- msgid "Emma not supported"
1111
- msgstr "Emma non supporté"
1112
-
1113
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:8
1114
- msgid "Emma is not supported on your server, please nstall cUrl PHP Library on your server first - it's free."
1115
- msgstr "Emma est pas pris en charge sur votre serveur, SVP installez la librairie cURL PHP sur votre serveur d'abord - c'est gratuit."
1116
-
1117
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:14
1118
- msgid "Emma Account ID"
1119
- msgstr "Id du compte Emma"
1120
-
1121
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:15
1122
- msgid "Your account ID"
1123
- msgstr "ID de votre compte"
1124
-
1125
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:25
1126
- msgid "Emma Public API key"
1127
- msgstr "Clé API publique Emma"
1128
-
1129
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:26
1130
- msgid "Your Public API key"
1131
- msgstr "Votre clé API publique d'Emma"
1132
-
1133
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:36
1134
- msgid "Emma Private API key"
1135
- msgstr "Clé API Privée d'Emma"
1136
-
1137
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:37
1138
- msgid "Your Private API key"
1139
- msgstr "Votre clé API privée d'Emma"
1140
-
1141
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:47
1142
- msgid "Groups for subscribe"
1143
- msgstr "Groupes pour vous inscrire"
1144
-
1145
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:48
1146
- msgid "To create new groups in Emma, you must login into the control panel and click into the Emma > Subscribers groups. Once there you can add a new group for your Wordpress users, or edit an existing one"
1147
- msgstr "Pour créer de nouveaux groupes dans Emma, vous devez vous connecter dans le panneau de contrôle et cliquez sur Emma > Subscribers groups. Une fois là, vous pouvez ajouter un nouveau groupe pour vos utilisateurs de Wordpress, ou modifier un existant"
1148
-
1149
- #: ../doc/contact-form-by-supsystic-pro/salesforce/mod.php:11
1150
- msgid "SalesForce - Web-to-Lead"
1151
- msgstr "SalesForce - Web-to-Lead"
1152
-
1153
- #: ../doc/contact-form-by-supsystic-pro/salesforce/views/tpl/sfAdminFields.php:14
1154
- msgid "Form ID"
1155
- msgstr "ID du formulaire"
1156
-
1157
- #: ../doc/contact-form-by-supsystic-pro/salesforce/views/tpl/sfAdminFields.php:15
1158
- #, php-format
1159
- msgid "Generate your lead form in your Salesforce account (more about generating form you can read <a target=\"_blank\" href=\"%s\">here</a>), then copy \"oid\" value from it (<a target=\"_blank\" href=\"%s\">like this</a>) and insert it into this paramter"
1160
- msgstr "Générez votre formulaire principal dans votre compte Salesforce (pour en savoir plus sur la génération du formulaire, vous pouvez lire <a target=\"_blank\" href=\"%s\">ici</a>), puis copiez la valeur \"oid\" de celui-ci (<a target=\"_blank\" href = \"%s\">comme ceci </a>) et l'insérer dans ce paramètre"
1161
-
1162
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/mod.php:9
1163
- msgid "SendGrid"
1164
- msgstr "SendGrid"
1165
-
1166
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/models/new_model.php:19
1167
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/models/sendgrid.php:15
1168
- msgid "You have no lists. Login to your SendGrid account and create your first list before start using this functionality."
1169
- msgstr "Vous avez pas de listes. Connectez-vous à votre compte SendGrid et créez votre première liste avant de commencer à utiliser cette fonctionnalité."
1170
-
1171
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:4
1172
- msgid "SendGrid not supported"
1173
- msgstr "SendGrid pas pris en charge"
1174
-
1175
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:8
1176
- msgid "SendGrid is not supported on your server"
1177
- msgstr "SendGrid n'est pas pris en charge sur votre serveur"
1178
-
1179
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:14
1180
- msgid "SendGrid Username"
1181
- msgstr "Num d'utilisateur SendGrid"
1182
-
1183
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:15
1184
- msgid "Your SendGrid name"
1185
- msgstr "Votre nom SendGrid"
1186
-
1187
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:25
1188
- msgid "SendGrid Password"
1189
- msgstr "Mot de passe SendGrid"
1190
-
1191
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:26
1192
- msgid "Your SendGrid password"
1193
- msgstr "Votre mot de passe SendGrid"
1194
-
1195
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:37
1196
- msgid "Select lists for subscribe. They are taken from your SendGrid account."
1197
- msgstr "Sélectionnez les listes abonnement. Elles sont prises à partir de votre compte SendGrid."
1198
-
1199
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/mod.php:8
1200
- msgid "SG Autorepondeur"
1201
- msgstr "SG Autorepondeur"
1202
-
1203
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:87
1204
- msgid "Required fields are missing"
1205
- msgstr "Les champs obligatoires sont manquants"
1206
-
1207
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:88
1208
- msgid "The email is already in the list"
1209
- msgstr "L'e-mail est déjà dans la liste"
1210
-
1211
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:89
1212
- msgid "Registration was refused-blacklisted"
1213
- msgstr "L'enregistrement a été refusé, blacklisté"
1214
-
1215
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:90
1216
- msgid "The country has been blocked"
1217
- msgstr "Le pays a été bloqué"
1218
-
1219
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:91
1220
- msgid "Too many entries with the same IP address"
1221
- msgstr "Trop d'entrées avec la même adresse IP"
1222
-
1223
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:92
1224
- msgid "Ok Register following a behavioral segmentation"
1225
- msgstr "Ok Inscription suite à une segmentation comportementale"
1226
-
1227
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:95
1228
- msgid "The email is not the right format"
1229
- msgstr "L'email n'est pas au bon format"
1230
-
1231
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:96
1232
- msgid "Error on one of the variables - User ID or List ID or Activation Code"
1233
- msgstr "Erreur sur l'une des variables - Id de l'utilisateur ou ID de liste ou code d'activation"
1234
-
1235
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:4
1236
- msgid "SG Autorepondeur not supported"
1237
- msgstr "SG Autorépondeur n'est pas pris en charge"
1238
-
1239
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:8
1240
- msgid "SG Autorepondeur is not supported on your server"
1241
- msgstr "SG Autorépondeur n'est pas pris en charge sur votre serveur"
1242
-
1243
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:14
1244
- msgid "SG Autorepondeur User ID"
1245
- msgstr "ID de l'utilisateur SG Autorépondeur"
1246
-
1247
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:15
1248
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:26
1249
- msgid "This info available on your home page in SG Autorepondeur"
1250
- msgstr "Cette information est disponible sur votre page d'accueil dans SG Autorépondeur"
1251
-
1252
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:25
1253
- msgid "SG Autorepondeur List ID"
1254
- msgstr "ID de la liste SG Autorepondeur"
1255
-
1256
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:36
1257
- msgid "SG Client Activation Code"
1258
- msgstr "Code d'activation client SG"
1259
-
1260
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:37
1261
- msgid "This info available on the member's area in the top menu \"my account\" (at the bottom of the page)"
1262
- msgstr "Cette information est disponible dans la zone des membres dans le menu supérieur \"my account\" (en bas de la page)"
1263
-
1264
- #: ../doc/contact-form-by-supsystic-pro/subscribe/mod.php:10
1265
- msgid "Subscribe"
1266
- msgstr "S'abonner"
1267
-
1268
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:47
1269
- msgid "Something goes wrong"
1270
- msgstr "Quelque chose ne va pas"
1271
-
1272
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:99
1273
- msgid "New User notification"
1274
- msgstr "Nouvelle notification de l'utilisateur"
1275
-
1276
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:99
1277
- msgid "New Subscriber notification"
1278
- msgstr "Nouvelle notification d'abonné"
1279
-
1280
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:102
1281
- #, php-format
1282
- msgid "New Subscriber on %s"
1283
- msgstr "Nouvel abonné sur %s"
1284
-
1285
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:109
1286
- msgid "You have new user registration on your site <a href=\"[siteurl]\">[sitename]</a>, here us user information:<br />[subscriber_data]"
1287
- msgstr "Vous avez l'enregistrement d'un nouvel utilisateur sur votre site <a href=\"siteurl]> [sitename] </a>, ici données de l'utilisateur : <br /> [subscriber_data]"
1288
-
1289
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:110
1290
- msgid "You have new subscriber on your site <a href=\"[siteurl]\">[sitename]</a>, here is subscriber information:<br />[subscriber_data]"
1291
- msgstr "Vous avez un nouvel abonné sur votre site <a href=\"[siteurl]\"> [sitename] </a>, voici des informations de l'abonné :<br /> [subscriber_data] "
1292
-
1293
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:171
1294
- msgid "Can't detect your IP, please don't spam"
1295
- msgstr "Impossible de détecter votre IP, SVP évitez de nous spammer"
1296
-
1297
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:203
1298
- msgid "You just subscribed from this IP"
1299
- msgstr "Vous venez de vous abonner à partir de cette IP"
1300
-
1301
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:218
1302
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:93
1303
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:104
1304
- msgid "Empty or invalid email"
1305
- msgstr "Courriel invalide ou vide"
1306
-
1307
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:7
1308
- msgid "Enable Subscription"
1309
- msgstr "Activer l'abonnement"
1310
-
1311
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:14
1312
- msgid "Subscribe to"
1313
- msgstr "S'abonner à"
1314
-
1315
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:15
1316
- msgid "Destination for your Subscribers."
1317
- msgstr "Destination pour vos abonnés."
1318
-
1319
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:30
1320
- msgid "Activate License or update PRO version plugin"
1321
- msgstr "Activer la licence ou mettre à jour la version PRO du plugin"
1322
-
1323
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:31
1324
- msgid "Apparently - you have installed PRO version, but did not activate it license - then please activate it. Or you have old version of plugin - then you need go to Plugins page and Update PRO version plugin, after this go to License tab and re-activate license (just click one more time on \"Activate\" button)."
1325
- msgstr "Apparemment, - vous avez installé la version PRO, mais elle n'est pas activée - alors SVP activez-la. Ou vous avez une ancienne version du plugin - alors vous devez aller à la page Plugins et mise à jour du plugin version PRO, après cela, allez dans l'onglet Licence et re-activez-la (il suffit de cliquer une fois sur le bouton \"Activate\")."
1326
-
1327
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:54
1328
- msgid "Create WP user"
1329
- msgstr "Créer un utilisateur WP"
1330
-
1331
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:55
1332
- msgid "Once user will subscribe to selected Subscription service - it will create WordPress Subscriber too. PLease be carefull using this option: WordPressusers will be created right after you submit your Subscribe form without confirmation."
1333
- msgstr "Une fois que l'utilisateur sera abonné au service d'abonnement choisi - il va créer WordPress Subscriber aussi. SVP soyez prudent en utilisant cette option : WordPressusers seront créés juste après que vous ayez soumis votre formulaire d'abonnement sans confirmation."
1334
-
1335
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:66
1336
- msgid "\"Confirmation sent\" message"
1337
- msgstr "Message \"Confirmation envoyé\""
1338
-
1339
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:67
1340
- msgid "This is the message that the user will see after subscription, when letter with confirmation link was sent."
1341
- msgstr "Tel est le message que l'utilisateur verra après l'abonnement, lorsque le message avec lien de confirmation aura été envoyé."
1342
-
1343
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:71
1344
- msgid "Confirmation link was sent to your email address. Check your email!"
1345
- msgstr "Le lien de confirmation a été envoyé à votre adresse e-mail. Vérifiez votre messagerie !"
1346
-
1347
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:77
1348
- msgid "Subscribe success message"
1349
- msgstr "Message de réussite de votre abonnement"
1350
-
1351
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:78
1352
- msgid "Right after subscriber will be created and confirmed - this message will be shown."
1353
- msgstr "Juste après l'abonné sera créé et confirmé - ce message sera affiché."
1354
-
1355
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:82
1356
- msgid "Thank you for subscribing!"
1357
- msgstr "Merci pour votre inscription !"
1358
-
1359
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:88
1360
- msgid "Email error message"
1361
- msgstr "Message d'erreur Email"
1362
-
1363
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:89
1364
- msgid "If email that was entered by user is invalid, user will see this message"
1365
- msgstr "Si l'email qui a été saisi par l'utilisateur est invalide, l'utilisateur verra ce message"
1366
-
1367
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:99
1368
- msgid "Email exists error message"
1369
- msgstr "L'email existe message d'erreur"
1370
-
1371
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:100
1372
- msgid "If email that was entered by user already exists - user will see this message. But be careful: this can be used by hackers - to detect existing email in your database, so it's better for you to leave this message same as error message about invalid email above."
1373
- msgstr "Si l'email qui a été saisi par l'utilisateur existe déjà - l'utilisateur verra ce message. Mais attention : cela peut être utilisé par des pirates - pour détecter si l'email existe dans votre base de données, il est donc préférable pour vous de laisser ce message même s'il y a message d'erreur à propos d'email invalide ci-dessus."
1374
-
1375
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:110
1376
- msgid "Redirect after subscription URL"
1377
- msgstr "Redirirection après URL d'abonnement"
1378
-
1379
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:111
1380
- msgid "You can enable redirection after subscription, just enter here URL that you want to redirect to after subscribe - and user will be redirected there. If you don't need this feature - just leave this field empty."
1381
- msgstr "Vous pouvez activer la redirection après la souscription, il suffit d'entrer ici l'URL vers lequel vous souhaitez rediriger après l'inscription - et l'utilisateur y sera redirigé. Si vous n'avez pas besoin de cette fonction - il suffit de laisser ce champ vide."
1382
-
1383
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:121
1384
- msgid "Open in a new window (tab)"
1385
- msgstr "Ouvrir dans une nouvelle fenêtre (onglet)"
1386
-
1387
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:127
1388
- msgid "Confirmation email subject"
1389
- msgstr "Confirmation objet de l'email"
1390
-
1391
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:128
1392
- msgid "Email with confirmation link subject"
1393
- msgstr "Email avec le sujet de lien de confirmation"
1394
-
1395
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:134
1396
- msgid "Confirm subscription on [sitename]"
1397
- msgstr "Confirmez l'abonnement sur [sitename]"
1398
-
1399
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:140
1400
- msgid "Confirmation email From field"
1401
- msgstr "Email de confirmation depuis champ"
1402
-
1403
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:141
1404
- msgid "Email with confirmation link From field"
1405
- msgstr "Email avec le lien de confirmation depuis champ"
1406
-
1407
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:153
1408
- msgid "Confirmation email text"
1409
- msgstr "Texte de l'email de confirmation"
1410
-
1411
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:154
1412
- msgid "Email with confirmation link content"
1413
- msgstr "Email avec le contenu du lien de confirmation"
1414
-
1415
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:161
1416
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:210
1417
- #, php-format
1418
- msgid "You can use next variables here: %s, and any other subscribe field value - just place here [user_FIELD_NAME], where FIELD_NAME - is name attribute of required field."
1419
- msgstr "Vous pouvez employer de prochaines variables ici : %s et tout autre valeur de champ de l'inscription- placez juste ici [user_FIELD_NAME], où FIELD_NAME - est le nom du champ exigé."
1420
-
1421
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:167
1422
- msgid "You subscribed on site <a href=\"[siteurl]\">[sitename]</a>. Follow <a href=\"[confirm_link]\">this link</a> to complete your subscription. If you did not subscribe here - just ignore this message."
1423
- msgstr "Vous êtes abonné sur le site <a href=\"[siteurrl]\">[sitename]</a>. Suivez <a href=\"[confirm link]\">ce lien </a> pour compléter votre abonnement. Si vous ne vous pas souscrivez ici - ignorer simplement ce message."
1424
-
1425
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:170
1426
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:219
1427
- msgid "Add Attach"
1428
- msgstr "Add Attach"
1429
-
1430
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:176
1431
- msgid "New Subscriber email subject"
1432
- msgstr "Email au sujet du nouvel abonné"
1433
-
1434
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:177
1435
- msgid "Email to New Subscriber subject"
1436
- msgstr "Envoyer un courriel au sujet du nouvel abonné"
1437
-
1438
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:183
1439
- msgid "[sitename] Your username and password"
1440
- msgstr "[sitename] Votre nom d’utilisateur et mot de passe"
1441
-
1442
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:189
1443
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:190
1444
- msgid "New Subscriber email From field"
1445
- msgstr "Courriel nouvel abonné depuis champ"
1446
-
1447
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:202
1448
- msgid "New Subscriber email text"
1449
- msgstr "Texte du courriel nouvel abonné"
1450
-
1451
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:203
1452
- msgid "Email to New Subscriber content"
1453
- msgstr "Envoyer un courriel au nouvel abonné"
1454
-
1455
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:216
1456
- msgid "Username: [user_login]<br />Password: [password]<br />[login_url]"
1457
- msgstr "Nom d’utilisateur : [user_login]<br />Mot de passe : [password]<br />[login_url]"
1458
-
1459
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:225
1460
- msgid "Redirect if email already exists"
1461
- msgstr "Redirection si le courriel existe déjà"
1462
-
1463
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:226
1464
- msgid "Link to redirect to if user subscribes - but this email already exists"
1465
- msgstr "Lien de redirection si l’utilisateur s’abonne - mais ce email existe déjà"
1466
-
1467
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:240
1468
- msgid "Select File"
1469
- msgstr "Sélectionnez un fichier"
1470
-
1471
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:245
1472
- msgid "Remove"
1473
- msgstr "Supprimer "
1474
-
1475
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/mod.php:16
1476
- msgid "Vertical Response"
1477
- msgstr "Vertical Response"
1478
-
1479
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/models/verticalresponse.php:104
1480
- msgid "Can not access to Vertical Responce server"
1481
- msgstr "Impossible d'accéder au serveur de Vertical Response"
1482
-
1483
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/models/verticalresponse.php:106
1484
- msgid "Empty code returned"
1485
- msgstr "Code vide retourné"
1486
-
1487
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/views/tpl/vrAdminFields.php:4
1488
- msgid "Vertical Response Setup"
1489
- msgstr "Installation de Vertical Response"
1490
-
1491
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/views/tpl/vrAdminFields.php:5
1492
- msgid "You must authorize to use Vertical Response features"
1493
- msgstr "Vous devez autoriser l'utilisation des fonctionnalités de Vertical Response"
1494
-
1495
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/views/tpl/vrAdminFields.php:8
1496
- msgid "Authorize in Vertical Response"
1497
- msgstr "Autoriser dans Vertical Response"
1498
-
1499
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/views/tpl/vrAdminFields.php:15
1500
- msgid "Select lists for subscribe. They are taken from your Vertical Response account."
1501
- msgstr "Listes de sélection pour s’abonner. Ils sont tirés de votre compte Vertical Response"
1502
-
1503
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:12
1504
- #, php-format
1505
- msgid "Registered from %s"
1506
- msgstr "Enregistré depuis %s"
1507
-
1508
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:13
1509
- #, php-format
1510
- msgid "Subscribed to %s"
1511
- msgstr "Abonné à %s"
1512
-
1513
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:16
1514
- msgid "Username"
1515
- msgstr "Nom d'Identifiant"
1516
-
1517
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:28
1518
- msgid "Activated"
1519
- msgstr "Activé"
1520
-
1521
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:30
1522
- msgid "Date Created"
1523
- msgstr "Date de création"
1524
-
1525
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:65
1526
- msgid "There are no members for now"
1527
- msgstr "Il n’y a pas de membres pour l’instant"
1528
-
1529
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:66
1530
- msgid "There are no subscribers for now"
1531
- msgstr "Il n’y a pas d’abonnés pour l’instant"
1532
-
1533
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/mod.php:8
1534
- msgid "WordPress"
1535
- msgstr "WordPress"
1536
-
1537
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/models/wp_subscribe.php:90
1538
- msgid "Can't registrate for now. Please try again later."
1539
- msgstr "Impossible de s’inscrire pour l’instant. Veuillez réessayer ultérieurement."
1540
-
1541
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/models/wp_subscribe.php:90
1542
- msgid "Can't subscribe for now. Please try again later."
1543
- msgstr "Impossible de s’abonner pour l’instant. Veuillez réessayer ultérieurement."
1544
-
1545
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/models/wp_subscribe.php:237
1546
- msgid "Send me some info, pls"
1547
- msgstr "Envoyez-moi des infos, SVP"
1548
-
1549
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:10
1550
- msgid "Registration Confirmation"
1551
- msgstr "Confirmation d’inscription"
1552
-
1553
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:11
1554
- msgid "Subscribe Confirmation"
1555
- msgstr "Confirmation d'abonnement"
1556
-
1557
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:53
1558
- msgid "Some errors occured while trying to registrate"
1559
- msgstr "Quelques erreurs se sont produites pendant l'inscription"
1560
-
1561
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:54
1562
- msgid "Some errors occured while trying to subscribe"
1563
- msgstr "Quelques erreurs se sont produites pendant l'abonnement"
1564
-
1565
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:63
1566
- msgid "Thank you for registration!"
1567
- msgstr "Merci pour l'enregistrement."
1568
-
1569
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:75
1570
- msgid "Registration confirmed"
1571
- msgstr "Inscription confirmée"
1572
-
1573
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:76
1574
- msgid "Subscription confirmed"
1575
- msgstr "Abonnement confirmé"
1576
-
1577
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:81
1578
- #, php-format
1579
- msgid "<a href=\"%s\">Back to site</a> in <i id=\"cfsConfirmBackCounter\">%d</i> seconds"
1580
- msgstr "<a href=\"%s\">Retour au site</a> dans <i id=\"cfsConfirmBackCounter\">%d</i> secondes"
1581
-
1582
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:14
1583
- msgid "Create user with the chosen role after subscribing"
1584
- msgstr "Créer l’utilisateur avec le rôle choisi après inscription"
1585
-
1586
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:15
1587
- msgid "Use this only if you really need it. Remember! After you change this option - your new subscriber will have more privileges than usual subscribers, so be careful with this option!"
1588
- msgstr "Utilisez-le seulement si vous avez vraiment besoin. N’oubliez pas ! Après que vous modifiez cette option - votre nouvel abonné aura plus de privilèges que les abonnés habituels, alors soyez prudent avec cette option !"
1589
-
1590
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:25
1591
- msgid "Create Subscriber without confirmation"
1592
- msgstr "Créer abonné sans confirmation"
1593
-
1594
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:26
1595
- msgid "Usually, after user subscribes, we send an email with the confirmation link - to confirm the email address, and only after user clicks on the link from this email - we will create a new subscriber. This option allows you to create a subscriber - right after subscription, without the email confirmation process."
1596
- msgstr "Habituellement, après l'abonnement, nous envoyons un email avec le lien de confirmation - pour confirmer l'adresse e-mail, et seulement après l'utilisateur clique sur le lien de cet e-mail - nous allons créer un nouvel abonné. Cette option vous permet de créer un abonné - juste après , inscription sans le processus de confirmation par courriel."
1597
-
1598
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:35
1599
- msgid "Export Subscribers"
1600
- msgstr "Exporter tous les abonnés"
1601
-
1602
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:36
1603
- msgid "Export all subscribers, who subscribed using WordPress \"Subscribe to\" method, as CSV file."
1604
- msgstr "Exporter tous les abonnés, qui se sont inscrits en utilisant la méthode \"Abonnez-vous à\" de WordPress, sous forme de fichier CSV."
1605
-
1606
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:39
1607
- msgid "Get CSV List"
1608
- msgstr "Obtenir la liste CSV"
1609
-
1610
- #: ../modules/adminmenu/mod.php:13
1611
- #, php-format
1612
- msgid "Cool WordPress plugins from supsystic.com developers. I tried %s - and this was what I need! #supsystic.com"
1613
- msgstr " De supers plugins Wordpress de l'équipe de supsystic.com. J’ai essayé %s - et c’est ce dont j’avais besoin ! #supsystic.com"
1614
-
1615
- #: ../modules/adminmenu/mod.php:14
1616
- msgid "Settings"
1617
- msgstr "Paramètres "
1618
-
1619
- #: ../modules/adminmenu/mod.php:15
1620
- msgid "More plugins for your WordPress site here!"
1621
- msgstr "Plus de plugins pour votre site WordPress ici !"
1622
-
1623
- #: ../modules/adminmenu/mod.php:16 ../modules/adminmenu/mod.php:17
1624
- #: ../modules/adminmenu/mod.php:18
1625
- msgid "Spread the word!"
1626
- msgstr "Qu’on se le dise !"
1627
-
1628
- #: ../modules/forms/controller.php:234
1629
- msgid "Done, redirecting to new Form..."
1630
- msgstr "Fait, redirection vers le nouveau formulaire..."
1631
-
1632
- #: ../modules/forms/controller.php:292
1633
- msgid "Thank you for contacting us!"
1634
- msgstr "Merci de nous avoir contacté."
1635
-
1636
- #: ../modules/forms/controller.php:319
1637
- #, php-format
1638
- msgid "Contacts from %s"
1639
- msgstr "Contacts depuis %s"
1640
-
1641
- #: ../modules/forms/controller.php:329
1642
- msgid "IP"
1643
- msgstr "IP"
1644
-
1645
- #: ../modules/forms/controller.php:330 ../modules/forms/mod.php:85
1646
- msgid "URL"
1647
- msgstr "URL"
1648
-
1649
- #: ../modules/forms/controller.php:360
1650
- msgid "There are no Contacts for now"
1651
- msgstr "Il n’y a pas de contacts pour l’instant"
1652
-
1653
- #: ../modules/forms/mod.php:14
1654
- msgid "Add New Form"
1655
- msgstr "Ajouter un nouveau formulaire"
1656
-
1657
- #: ../modules/forms/mod.php:17
1658
- msgid "Edit"
1659
- msgstr "Éditer"
1660
-
1661
- #: ../modules/forms/mod.php:20
1662
- msgid "Show All Forms"
1663
- msgstr "Afficher tous les formulaires"
1664
-
1665
- #: ../modules/forms/mod.php:56
1666
- msgid "Form"
1667
- msgstr "Formulaire"
1668
-
1669
- #: ../modules/forms/mod.php:63
1670
- msgid "Text"
1671
- msgstr "Texte"
1672
-
1673
- #: ../modules/forms/mod.php:65
1674
- msgid "Select Box"
1675
- msgstr "Boîte de sélection"
1676
-
1677
- #: ../modules/forms/mod.php:66
1678
- msgid "Select List"
1679
- msgstr "Sélectionner une liste"
1680
-
1681
- #: ../modules/forms/mod.php:67
1682
- msgid "Textarea"
1683
- msgstr "Zone de texte"
1684
-
1685
- #: ../modules/forms/mod.php:68
1686
- msgid "Radiobutton"
1687
- msgstr "Bouton radio"
1688
-
1689
- #: ../modules/forms/mod.php:69
1690
- msgid "Radiobuttons List"
1691
- msgstr "Liste boutons radio"
1692
-
1693
- #: ../modules/forms/mod.php:70
1694
- msgid "Checkbox"
1695
- msgstr "Boîte de sélection"
1696
-
1697
- #: ../modules/forms/mod.php:71
1698
- msgid "Checkbox List"
1699
- msgstr "Liste de cases à cocher"
1700
-
1701
- #: ../modules/forms/mod.php:72
1702
- msgid "Subscribe Checkbox"
1703
- msgstr "Cases à cocher pour abonnement"
1704
-
1705
- #: ../modules/forms/mod.php:73
1706
- msgid "Country List"
1707
- msgstr "Liste des pays"
1708
-
1709
- #: ../modules/forms/mod.php:74
1710
- msgid "Country List Multiple"
1711
- msgstr "Liste multiple des pays"
1712
-
1713
- #: ../modules/forms/mod.php:76
1714
- msgid "Number"
1715
- msgstr "Nombre"
1716
-
1717
- #: ../modules/forms/mod.php:78
1718
- msgid "Date"
1719
- msgstr "Date "
1720
-
1721
- #: ../modules/forms/mod.php:79
1722
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:35
1723
- msgid "Month"
1724
- msgstr "Mois"
1725
-
1726
- #: ../modules/forms/mod.php:80
1727
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:34
1728
- msgid "Week"
1729
- msgstr "Semaine"
1730
-
1731
- #: ../modules/forms/mod.php:81
1732
- msgid "Time"
1733
- msgstr "Temps"
1734
-
1735
- #: ../modules/forms/mod.php:83 ../modules/forms/views/forms.php:96
1736
- msgid "Color"
1737
- msgstr "Couleur "
1738
-
1739
- #: ../modules/forms/mod.php:84
1740
- msgid "Range"
1741
- msgstr "Rang"
1742
-
1743
- #: ../modules/forms/mod.php:87
1744
- msgid "File Upload"
1745
- msgstr "Chargement de fichier"
1746
-
1747
- #: ../modules/forms/mod.php:88
1748
- msgid "reCaptcha"
1749
- msgstr "reCaptcha"
1750
-
1751
- #: ../modules/forms/mod.php:90
1752
- msgid "Hidden Field"
1753
- msgstr "Champ caché"
1754
-
1755
- #: ../modules/forms/mod.php:91
1756
- msgid "Submit Button"
1757
- msgstr "Bouton d'envoi"
1758
-
1759
- #: ../modules/forms/mod.php:92
1760
- msgid "Reset Button"
1761
- msgstr "Bouton remise à zéro"
1762
-
1763
- #: ../modules/forms/mod.php:94
1764
- msgid "HTML / Text Delimiter"
1765
- msgstr "HTML / Séparateur de texte"
1766
-
1767
- #: ../modules/forms/models/forms.php:39
1768
- msgid "Can't find form"
1769
- msgstr "Impossible de trouver le formulaire"
1770
-
1771
- #: ../modules/forms/models/forms.php:41
1772
- msgid "Empty Form ID"
1773
- msgstr "ID de formulaire vide"
1774
-
1775
- #: ../modules/forms/models/forms.php:82
1776
- msgid "reCaptcha: The secret parameter is missing."
1777
- msgstr "reCaptcha : Le paramètre secret est manquant."
1778
-
1779
- #: ../modules/forms/models/forms.php:83
1780
- msgid "reCaptcha: The secret parameter is invalid or malformed."
1781
- msgstr "reCaptcha: Le paramètre secret est invalide ou malformé."
1782
-
1783
- #: ../modules/forms/models/forms.php:84
1784
- msgid "Please prove that you are not a robot - check reCaptcha."
1785
- msgstr "SVP prouvez que vous n'êtes pas un robot - vérifier reCaptcha."
1786
-
1787
- #: ../modules/forms/models/forms.php:85
1788
- msgid "reCaptcha: The response parameter is invalid or malformed."
1789
- msgstr "reCaptcha : Le paramètre de réponse est invalide ou malformé."
1790
-
1791
- #: ../modules/forms/models/forms.php:96
1792
- msgid "There was a problem with sending request to Google reCaptcha validation server. Please make sure that your server have possibility to send server-server requests. Ask your hosting provider about this."
1793
- msgstr "Il y avait un problème avec l'envoi de la demande pour la validation sur le serveur de Google reCaptcha. SVP faites que votre serveur ait la possibilité d'envoyer des requêtes à ce serveur. Questionner votre hébergeur à ce sujet."
1794
-
1795
- #: ../modules/forms/models/forms.php:124
1796
- #, php-format
1797
- msgid "Please check %s"
1798
- msgstr "Veuillez vérifier %s"
1799
-
1800
- #: ../modules/forms/models/forms.php:351
1801
- msgid "img/preview/"
1802
- msgstr "img/aperçu /"
1803
-
1804
- #: ../modules/forms/models/forms.php:381
1805
- msgid "Please select Form template from list below"
1806
- msgstr "Sélectionnez un modèle de formulaire dans la liste ci-dessous"
1807
-
1808
- #: ../modules/forms/models/forms.php:383 ../modules/forms/models/forms.php:644
1809
- msgid "Please enter Name"
1810
- msgstr "Veuillez saisir Nom"
1811
-
1812
- #: ../modules/forms/models/forms.php:537
1813
- msgid "Provided data was corrupted"
1814
- msgstr "Données corrompues"
1815
-
1816
- #: ../modules/forms/models/forms.php:670
1817
- msgid "Name can not be empty"
1818
- msgstr "Nom ne peut pas être vide"
1819
-
1820
- #: ../modules/forms/models/forms.php:685 ../modules/forms/models/forms.php:691
1821
- #: ../modules/forms/models/forms.php:697
1822
- msgid "Form background"
1823
- msgstr "Arrière plan du formulaire"
1824
-
1825
- #: ../modules/forms/models/forms.php:686 ../modules/forms/models/forms.php:692
1826
- msgid "Inputs background"
1827
- msgstr "Entrées du fond"
1828
-
1829
- #: ../modules/forms/models/forms.php:687 ../modules/forms/models/forms.php:693
1830
- msgid "Submit buttons background"
1831
- msgstr "Soumettre les boutons de fond"
1832
-
1833
- #: ../modules/forms/models/forms.php:688 ../modules/forms/models/forms.php:694
1834
- msgid "Reset buttons background"
1835
- msgstr "Réinitialiser les boutons de fond"
1836
-
1837
- #: ../modules/forms/models/forms.php:698
1838
- msgid "Inputs and Buttons background"
1839
- msgstr "Entrées et boutons de fond"
1840
-
1841
- #: ../modules/forms/views/forms.php:40
1842
- msgid "Modify Form Template"
1843
- msgstr "Modifier le modèle de formulaire"
1844
-
1845
- #: ../modules/forms/views/forms.php:49
1846
- msgid "Cannot find required Form"
1847
- msgstr "Impossible de trouver le formulaire requis"
1848
-
1849
- #: ../modules/forms/views/forms.php:94
1850
- msgid "None"
1851
- msgstr "Aucun"
1852
-
1853
- #: ../modules/forms/views/forms.php:95
1854
- #: ../modules/forms/views/tpl/formsEditFormFields.php:254
1855
- msgid "Image"
1856
- msgstr "Image"
1857
-
1858
- #: ../modules/forms/views/forms.php:116
1859
- msgid "Design"
1860
- msgstr "Design"
1861
-
1862
- #: ../modules/forms/views/forms.php:121
1863
- msgid "Fields"
1864
- msgstr "Champs"
1865
-
1866
- #: ../modules/forms/views/forms.php:126
1867
- msgid "Submit Options"
1868
- msgstr "Soumettre les options"
1869
-
1870
- #: ../modules/forms/views/forms.php:131
1871
- msgid "Statistics"
1872
- msgstr "Statistiques"
1873
-
1874
- #: ../modules/forms/views/forms.php:137
1875
- msgid "CSS / HTML Code"
1876
- msgstr "Code CSS / HTML "
1877
-
1878
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:20
1879
- #, php-format
1880
- msgid "Change Template to any other from the list below or <a class=\"button\" href=\"%s\">return to Form edit</a>"
1881
- msgstr "Changer de modèle à un autre dans la liste ci-dessous ou <a class=\"button\" href=\"%s\">retour à l'édition du formulaire</a>"
1882
-
1883
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:22
1884
- msgid "Choose Form Template. You can change it later."
1885
- msgstr "Choisissez le modèle de formulaire. Vous pourrez le changer plus tard."
1886
-
1887
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:31
1888
- msgid "Form Name"
1889
- msgstr "Nom du formulaire "
1890
-
1891
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:36
1892
- #: ../modules/forms/views/tpl/formsEditFormControls.php:32
1893
- msgid "Save"
1894
- msgstr "Valider"
1895
-
1896
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:57
1897
- msgid "Get in PRO"
1898
- msgstr "Obtenez en PRO"
1899
-
1900
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:68
1901
- msgid "Change Template"
1902
- msgstr "Changer de modèle"
1903
-
1904
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:70
1905
- msgid "Are you sure you want to change your current template - to "
1906
- msgstr "Êtes-vous sûr de que vouloir modifier votre modèle actuel - vers"
1907
-
1908
- #: ../modules/forms/views/tpl/formsAdmin.php:11
1909
- #: ../modules/forms/views/tpl/formsAdmin.php:12
1910
- msgid "Search"
1911
- msgstr "Rechercher !"
1912
-
1913
- #: ../modules/forms/views/tpl/formsAdmin.php:21
1914
- #, php-format
1915
- msgid "You have no Forms for now. <a href=\"%s\" style=\"font-style: italic;\">Create</a> your Form!"
1916
- msgstr "Vous n’avez aucun formulaire pour l’instant. <a href=\"%s\" style=\"font-style: italic;\">Créer</a> votre formulaire !"
1917
-
1918
- #: ../modules/forms/views/tpl/formsEditAdmin.php:98
1919
- msgid "Loading preview..."
1920
- msgstr "Chargement de l’aperçu..."
1921
-
1922
- #: ../modules/forms/views/tpl/formsEditAdmin.php:103
1923
- msgid "Back to top"
1924
- msgstr "Haut de page"
1925
-
1926
- #: ../modules/forms/views/tpl/formsEditAdmin.php:114
1927
- msgid "You have no submit fields in your Form - this make it's submission impossible. Please add one submit field in Fields tab - and then save your form."
1928
- msgstr "Vous n’avez aucuns champs à soumettre pour votre formulaire - cela rend sa communication impossible.. SVP ajoutez un champ dans l’onglet 'champ ' - et puis enregistrez votre formulaire."
1929
-
1930
- #: ../modules/forms/views/tpl/formsEditAdmin.php:117
1931
- msgid "You have no data to submit to in your form - in this case all form data will not be send anywhere. Go to Submit Options tab - and add there at least one data submit block - and then save your form."
1932
- msgstr "Vous n’avez aucunes données a soumettre dans votre formulaire - dans ce cas toutes les données du formulaire ne seront pas envoyées n’importe où. Allez dans l’onglet Options d’envoi - et y ajouter au moins un bloc de données à soumettre - et puis enregistrez votre formulaire."
1933
-
1934
- #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:3
1935
- msgid "Edit this ONLY if you know basics of HTML and CSS"
1936
- msgstr "Modifier ceci seulement si vous connaissez les bases du HTML et CSS"
1937
-
1938
- #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:6
1939
- msgid "Field Wrapper"
1940
- msgstr "Contenant du champ"
1941
-
1942
- #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:10
1943
- msgid "CSS code"
1944
- msgstr "Code CSS"
1945
-
1946
- #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:14
1947
- msgid "HTML code"
1948
- msgstr "Code HTML"
1949
-
1950
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:2
1951
- msgid "Change Form Template"
1952
- msgstr "Changer le modèle du formulaire"
1953
-
1954
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:8
1955
- msgid "Width"
1956
- msgstr "Largeur"
1957
-
1958
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:14
1959
- msgid "Max width for percentage - is 100"
1960
- msgstr "Largeur max. de pourcentage - est 100"
1961
-
1962
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:16
1963
- msgid "Percents"
1964
- msgstr "Pourcentage"
1965
-
1966
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:20
1967
- msgid "Pixels"
1968
- msgstr "Pixels"
1969
-
1970
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:28
1971
- msgid "Background"
1972
- msgstr "Arrière Plan"
1973
-
1974
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:28
1975
- #, php-format
1976
- msgid "Background %d"
1977
- msgstr "Arrière-plan %d"
1978
-
1979
- #: ../modules/forms/views/tpl/formsEditFormControls.php:1
1980
- msgid "Click to Edit"
1981
- msgstr "Cliquez pour éditer"
1982
-
1983
- #: ../modules/forms/views/tpl/formsEditFormControls.php:10
1984
- msgid "Shortcode"
1985
- msgstr "Raccourci"
1986
-
1987
- #: ../modules/forms/views/tpl/formsEditFormControls.php:11
1988
- msgid "PHP code"
1989
- msgstr "Code PHP"
1990
-
1991
- #: ../modules/forms/views/tpl/formsEditFormControls.php:12
1992
- msgid "Widget"
1993
- msgstr "Widget"
1994
-
1995
- #: ../modules/forms/views/tpl/formsEditFormControls.php:26
1996
- msgid "Add Contact Form Widget"
1997
- msgstr "Ajouter le Widget du formulaire de Contact"
1998
-
1999
- #: ../modules/forms/views/tpl/formsEditFormControls.php:30
2000
- msgid "Save all changes"
2001
- msgstr "Enregistrer les changements"
2002
-
2003
- #: ../modules/forms/views/tpl/formsEditFormControls.php:34
2004
- msgid "Clone to New Form"
2005
- msgstr "Dupliquer le nouveau formulaire"
2006
-
2007
- #: ../modules/forms/views/tpl/formsEditFormControls.php:36
2008
- msgid "Clone"
2009
- msgstr "Dupliquer"
2010
-
2011
- #: ../modules/forms/views/tpl/formsEditFormControls.php:40
2012
- msgid "Preview"
2013
- msgstr "Previsualisation"
2014
-
2015
- #: ../modules/forms/views/tpl/formsEditFormControls.php:42
2016
- msgid "Turn Off"
2017
- msgstr "Désactiver"
2018
-
2019
- #: ../modules/forms/views/tpl/formsEditFormControls.php:42
2020
- msgid "Turn On"
2021
- msgstr "Activer"
2022
-
2023
- #: ../modules/forms/views/tpl/formsEditFormControls.php:48
2024
- msgid "Delete"
2025
- msgstr "Supprimer "
2026
-
2027
- #: ../modules/forms/views/tpl/formsEditFormControls.php:55
2028
- msgid "New Name"
2029
- msgstr "Nouveau nom"
2030
-
2031
- #: ../modules/forms/views/tpl/formsEditFormControls.php:56
2032
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:99
2033
- msgid "Copy"
2034
- msgstr "Copie"
2035
-
2036
- #: ../modules/forms/views/tpl/formsEditFormFields.php:4
2037
- msgid "Field invalid error message"
2038
- msgstr "Message d'erreur pour champ invalide"
2039
-
2040
- #: ../modules/forms/views/tpl/formsEditFormFields.php:5
2041
- msgid "By default our plugin will show standard browser error messages about invalid or empty fields values. But if you need - you can replace it here. Use [label] - to set field name in your error message. For example \"Please fill out [label] field\". You can just leave this field empty - to use standard browser messages."
2042
- msgstr "Par défaut notre plugin affichera les messages standard d'erreurs du navigateur sur les valeurs des champs non valides ou vides. Mais si vous avez besoin - vous pouvez le remplacer ici. Utilisez [label] - pour définir le nom de champ dans votre message d'erreur. Par exemple, \"SVP remplir [label] champ\". Vous pouvez laisser ce champ vide - utilisez les messages standard du navigateur."
2043
-
2044
- #: ../modules/forms/views/tpl/formsEditFormFields.php:17
2045
- msgid "Add New Field"
2046
- msgstr "Ajouter un nouveau champ"
2047
-
2048
- #: ../modules/forms/views/tpl/formsEditFormFields.php:23
2049
- msgid "Move Up / Down"
2050
- msgstr "Déplacer haut / bas"
2051
-
2052
- #: ../modules/forms/views/tpl/formsEditFormFields.php:29
2053
- msgid "Move Left / Right"
2054
- msgstr "Déplacer gauche / droite"
2055
-
2056
- #: ../modules/forms/views/tpl/formsEditFormFields.php:32
2057
- msgid "Add New Field at the Top"
2058
- msgstr "Ajouter le nouveau champ en haut"
2059
-
2060
- #: ../modules/forms/views/tpl/formsEditFormFields.php:36
2061
- msgid "Add New Field at the Right"
2062
- msgstr "Ajouter le nouveau champ à droite"
2063
-
2064
- #: ../modules/forms/views/tpl/formsEditFormFields.php:40
2065
- msgid "Add New Field at the Bottom"
2066
- msgstr "Ajouter un nouveau champ en bas"
2067
-
2068
- #: ../modules/forms/views/tpl/formsEditFormFields.php:44
2069
- msgid "Add New Field at the Left"
2070
- msgstr "Ajouter un nouveau champ à gauche"
2071
-
2072
- #: ../modules/forms/views/tpl/formsEditFormFields.php:75
2073
- msgid "Click on required elements from list bellow"
2074
- msgstr "Cliquez sur les éléments requis à partir de la liste ci-dessous"
2075
-
2076
- #: ../modules/forms/views/tpl/formsEditFormFields.php:89
2077
- msgid "PRO"
2078
- msgstr "PRO"
2079
-
2080
- #: ../modules/forms/views/tpl/formsEditFormFields.php:96
2081
- msgid "Edit field settings"
2082
- msgstr "Modifier les paramètres de champ"
2083
-
2084
- #: ../modules/forms/views/tpl/formsEditFormFields.php:100
2085
- msgid "Basic Settings"
2086
- msgstr "Paramètres de base"
2087
-
2088
- #: ../modules/forms/views/tpl/formsEditFormFields.php:104
2089
- msgid "Advanced"
2090
- msgstr "Avancé"
2091
-
2092
- #: ../modules/forms/views/tpl/formsEditFormFields.php:108
2093
- msgid "Field Validation"
2094
- msgstr "Validation du champ"
2095
-
2096
- #: ../modules/forms/views/tpl/formsEditFormFields.php:115
2097
- #: ../modules/forms/views/tpl/formsEditFormFields.php:183
2098
- msgid "Name"
2099
- msgstr "Nom"
2100
-
2101
- #: ../modules/forms/views/tpl/formsEditFormFields.php:116
2102
- msgid "Name attribute for your field. You can use here latin letters, numbers or symdols \"-\", \"_\"."
2103
- msgstr "Entrez un nom unique pour le champ. Vous pouvez utiliser ici des lettres latines, des chiffres ou des symboles \"-\", \"_\"."
2104
-
2105
- #: ../modules/forms/views/tpl/formsEditFormFields.php:124
2106
- msgid "Please fill-in Name for your field, and make sure that it contains only latin letters, numbers or symdols \"-\", \"_\"."
2107
- msgstr "SVP donnez un nom à votre champ, et assurez-vous qu'il ne contient que des lettres latines, des chiffres ou des symboles \"-\", \"_\"."
2108
-
2109
- #: ../modules/forms/views/tpl/formsEditFormFields.php:130
2110
- msgid "Field label - that your users will see on your Form right near your field."
2111
- msgstr "Libellé du champ - que vos utilisateurs verront sur votre formulaire juste à côté de votre champ."
2112
-
2113
- #: ../modules/forms/views/tpl/formsEditFormFields.php:138
2114
- msgid "Placeholder"
2115
- msgstr "Filigramme"
2116
-
2117
- #: ../modules/forms/views/tpl/formsEditFormFields.php:139
2118
- msgid "Field placeholder - will be printed in your field as a tip."
2119
- msgstr "Filigramme du champ sera inscrit sur votre champ en fond."
2120
-
2121
- #: ../modules/forms/views/tpl/formsEditFormFields.php:147
2122
- msgid "Please fill-in Label or Placeholder for your field - it's required for users to know - what field in Form that are filling-in."
2123
- msgstr "SVP remplissez le libellé ou l'espace réservé dans le champ- il est nécessaire que les utilisateurs sachent - quel champ dans le formulaire est rempli"
2124
-
2125
- #: ../modules/forms/views/tpl/formsEditFormFields.php:152
2126
- msgid "Default Value"
2127
- msgstr "Valeur par defaut"
2128
-
2129
- #: ../modules/forms/views/tpl/formsEditFormFields.php:153
2130
- msgid "You can set default value for your field, and one it appear on your site - field will be pre-filled with this value."
2131
- msgstr "Vous pouvez définir la valeur par défaut pour votre champ, et celle-ci apparaîtra sur votre site - le champ sera pré-rempli avec cette valeur."
2132
-
2133
- #: ../modules/forms/views/tpl/formsEditFormFields.php:160
2134
- msgid "Display as"
2135
- msgstr "Afficher comme"
2136
-
2137
- #: ../modules/forms/views/tpl/formsEditFormFields.php:163
2138
- msgid "In row"
2139
- msgstr "En ligne"
2140
-
2141
- #: ../modules/forms/views/tpl/formsEditFormFields.php:164
2142
- msgid "In column"
2143
- msgstr "En Colonne"
2144
-
2145
- #: ../modules/forms/views/tpl/formsEditFormFields.php:171
2146
- msgid "Select Options"
2147
- msgstr "Sélectionner les options"
2148
-
2149
- #: ../modules/forms/views/tpl/formsEditFormFields.php:198
2150
- msgid "Checked by Default"
2151
- msgstr "Coché par défaut"
2152
-
2153
- #: ../modules/forms/views/tpl/formsEditFormFields.php:206
2154
- msgid "Required"
2155
- msgstr "Requis "
2156
-
2157
- #: ../modules/forms/views/tpl/formsEditFormFields.php:215
2158
- msgid "Site Key"
2159
- msgstr "Clé du site"
2160
-
2161
- #: ../modules/forms/views/tpl/formsEditFormFields.php:216
2162
- #, php-format
2163
- msgid "Your site key, generated on <a href=\"%s\" target=\"_blank\">%s</a>."
2164
- msgstr "Votre clé de site, générée sur <a href=\"%s\" target=\"_blank\">%s</a> ."
2165
-
2166
- #: ../modules/forms/views/tpl/formsEditFormFields.php:224
2167
- msgid "Secret Key"
2168
- msgstr "Clé secrète "
2169
-
2170
- #: ../modules/forms/views/tpl/formsEditFormFields.php:225
2171
- #, php-format
2172
- msgid "Your secret key, generated on <a href=\"%s\" target=\"_blank\">%s</a>."
2173
- msgstr "Votre clé secrète, générée sur <a href=\"%s\" target=\"_blank\">%s</a> ."
2174
-
2175
- #: ../modules/forms/views/tpl/formsEditFormFields.php:237
2176
- msgid "reCaptcha Theme"
2177
- msgstr "Thème du reCaptcha"
2178
-
2179
- #: ../modules/forms/views/tpl/formsEditFormFields.php:238
2180
- msgid "The color theme. You can select from themes, provided by Google, for your reCaptcha."
2181
- msgstr "Couleur du thème. Vous pouvez choisir parmi les thèmes, fourni par Google pour votre reCaptcha."
2182
-
2183
- #: ../modules/forms/views/tpl/formsEditFormFields.php:242
2184
- msgid "Light"
2185
- msgstr "Clair"
2186
-
2187
- #: ../modules/forms/views/tpl/formsEditFormFields.php:242
2188
- msgid "Dark"
2189
- msgstr "Foncé"
2190
-
2191
- #: ../modules/forms/views/tpl/formsEditFormFields.php:249
2192
- msgid "reCaptcha Type"
2193
- msgstr "Type de reCaptcha"
2194
-
2195
- #: ../modules/forms/views/tpl/formsEditFormFields.php:250
2196
- msgid "The type of CAPTCHA to serve."
2197
- msgstr "Type de CAPTCHA à utiliser"
2198
-
2199
- #: ../modules/forms/views/tpl/formsEditFormFields.php:254
2200
- msgid "Audio"
2201
- msgstr "Audio"
2202
-
2203
- #: ../modules/forms/views/tpl/formsEditFormFields.php:261
2204
- msgid "reCaptcha Size"
2205
- msgstr "Taille du reCaptcha"
2206
-
2207
- #: ../modules/forms/views/tpl/formsEditFormFields.php:262
2208
- msgid "The size of the CAPTCHA widget."
2209
- msgstr "La taille du widget CAPTCHA."
2210
-
2211
- #: ../modules/forms/views/tpl/formsEditFormFields.php:266
2212
- msgid "Compact"
2213
- msgstr "Compact"
2214
-
2215
- #: ../modules/forms/views/tpl/formsEditFormFields.php:266
2216
- msgid "Normal"
2217
- msgstr "Normale"
2218
-
2219
- #: ../modules/forms/views/tpl/formsEditFormFields.php:273
2220
- msgid "Additional classes"
2221
- msgstr "Class additionnelles"
2222
-
2223
- #: ../modules/forms/views/tpl/formsEditFormFields.php:274
2224
- msgid "You can specify here additinal CSS classes for your field."
2225
- msgstr "Vous pouvez spécifier ici les class CSS supplémentaires pour votre champ."
2226
-
2227
- #: ../modules/forms/views/tpl/formsEditFormFields.php:282
2228
- msgid "Additional styles"
2229
- msgstr "Styles supplémentaires"
2230
-
2231
- #: ../modules/forms/views/tpl/formsEditFormFields.php:283
2232
- msgid "You can specify here additinal CSS styles, that will be included in \"style\" tag, for your field."
2233
- msgstr "Vous pouvez spécifier ici les styles CSS supplémentaires, qui seront inclus dans la balise \"style\", pour votre champ."
2234
-
2235
- #: ../modules/forms/views/tpl/formsEditFormFields.php:291
2236
- msgid "Additional HTML attributes"
2237
- msgstr "Attributs HTML supplémentaires"
2238
-
2239
- #: ../modules/forms/views/tpl/formsEditFormFields.php:292
2240
- msgid "You can specify here additinal HTML attributes, such as \"id\", or other, for your field."
2241
- msgstr "Vous pouvez spécifier ici des attributs HTML supplémentaires, telles que « id », ou autre, pour votre champ."
2242
-
2243
- #: ../modules/forms/views/tpl/formsEditFormFields.php:304
2244
- msgid "Minimum length"
2245
- msgstr "Longueur minimale"
2246
-
2247
- #: ../modules/forms/views/tpl/formsEditFormFields.php:305
2248
- msgid "Possibility to bound field minimum length."
2249
- msgstr "Possibilité de limiter la longueur minimum du champ."
2250
-
2251
- #: ../modules/forms/views/tpl/formsEditFormFields.php:313
2252
- msgid "Maximum length"
2253
- msgstr "Longueur maximale"
2254
-
2255
- #: ../modules/forms/views/tpl/formsEditFormFields.php:314
2256
- msgid "Possibility to bound field maximum length. For Files fields types - this is restriction for file size, in Mb."
2257
- msgstr "Possibilité de limite de longueur maximale du champ. Types de champs des fichiers - ceci est une restriction pour la taille du fichier, en Mb."
2258
-
2259
- #: ../modules/forms/views/tpl/formsEditFormFields.php:322
2260
- msgid "Only numbers"
2261
- msgstr "Chiffres seulement"
2262
-
2263
- #: ../modules/forms/views/tpl/formsEditFormFields.php:323
2264
- msgid "Allow users to enter in this field - only numeric values."
2265
- msgstr "Permettre aux utilisateurs d’entrer dans ce champ - uniquement des valeurs numériques."
2266
-
2267
- #: ../modules/forms/views/tpl/formsEditFormFields.php:331
2268
- msgid "Only letters"
2269
- msgstr "Lettres seulement"
2270
-
2271
- #: ../modules/forms/views/tpl/formsEditFormFields.php:332
2272
- msgid "Only letters will be allowed."
2273
- msgstr "Seules les lettres seront autorisées."
2274
-
2275
- #: ../modules/forms/views/tpl/formsEditFormFields.php:340
2276
- msgid "Validation Pattern"
2277
- msgstr "Modèle de Validation "
2278
-
2279
- #: ../modules/forms/views/tpl/formsEditFormFields.php:341
2280
- msgid "You can modify or set here your custom patters. Edit this ONLY if you know how to modify regular expression patterns! For Files fields types you can set here file extensions, separated by comma - \",\"."
2281
- msgstr "Vous pouvez modifier ou définir ici vos modèles personnalisés. Modifier SEULEMENT si vous savez comment modifier les modèles ! Pour les types de champs des dossiers vous pouvez placer ici des extensions du fichier, séparés par des virgules - \",\"."
2282
-
2283
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:4
2284
- msgid "Total Statistics"
2285
- msgstr "Total pour les statistiques"
2286
-
2287
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:6
2288
- msgid "Clear selection"
2289
- msgstr "Vider la sélection"
2290
-
2291
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:8
2292
- msgid "From"
2293
- msgstr "Depuis"
2294
-
2295
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:11
2296
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:88
2297
- msgid "To"
2298
- msgstr "Vers"
2299
-
2300
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:26
2301
- msgid "Reset Zoom"
2302
- msgstr "Réinitialiser le Zoom"
2303
-
2304
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:31
2305
- msgid "Group by"
2306
- msgstr "Groupé par"
2307
-
2308
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:32
2309
- msgid "Hour"
2310
- msgstr "Heure "
2311
-
2312
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:33
2313
- msgid "Day"
2314
- msgstr "Jour"
2315
-
2316
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:37
2317
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:55
2318
- msgid "Export to CSV"
2319
- msgstr "Exporter au format CSV"
2320
-
2321
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:42
2322
- msgid "Clear data"
2323
- msgstr "Effacer les données"
2324
-
2325
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:49
2326
- msgid "Total Statistics is empty for now."
2327
- msgstr "Le total des statistiques est vide pour l’instant."
2328
-
2329
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:50
2330
- msgid "Once your site visitors begin to use your form - all form statistics usage will be here."
2331
- msgstr "Une fois que vos visiteurs du site commencent à utiliser votre formulaire - toutes les statistiques des formulaires seront ici."
2332
-
2333
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:4
2334
- msgid "Form sent message"
2335
- msgstr "Message d'envoi du formulaire"
2336
-
2337
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:5
2338
- msgid "Message, that your users will see after success form submition."
2339
- msgstr "Message que vos utilisateurs verront après la réussite de l'envoi."
2340
-
2341
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:13
2342
- msgid "Redirect after submit"
2343
- msgstr "Redirection après envoi"
2344
-
2345
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:14
2346
- msgid "If you want - you can redirect user after Form was submitted. Just enter required Redirect URL here - and each time after Form will be submitted - user will be redirected to that URL. Just leave this field empty - if you don't need this functionality in your Form."
2347
- msgstr "Si vous voulez, vous pouvez rediriger l’utilisateur après l'envoi du formulaire. Saisissez simplement l’URL de redirection requis ici et chaque fois que le formulaire sera envoyé - l’utilisateur sera redirigé vers cette URL. Il suffit de laisser ce champ vide - si vous n’avez pas besoin cette fonctionnalité dans votre formulaire."
2348
-
2349
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:30
2350
- msgid "Test Email Function"
2351
- msgstr "Fonction test email"
2352
-
2353
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:31
2354
- msgid "Email delivery depends from your server configuration. For some cases - you and your subscribers can not receive emails just because email on your server is not working correctly. You can easy test it here - by sending test email. If you receive it - then it means that email functionality on your server works well. If not - this means that it is not working correctly and you should contact your hosting provider with this issue and ask them to setup email functionality for you on your server."
2355
- msgstr "L'email de livraison dépend de la configuration de votre serveur. Pour certains cas, vous et vos abonnés, ne peuvent pas recevoir des e-mails tout simplement parce que l’email sur votre serveur ne fonctionne pas correctement. Vous pouvez facilement le tester ici, en envoyant l’email de test. Si vous ne le recevez pas, alors ça signifie que la fonctionnalité sur votre serveur fonctionne bien. Si ce n’est pas le cas-cela signifie qu’il ne fonctionne pas correctement et vous devrez communiquer avec votre hébergeur avec cette question : quelles sont les fonctionnalités de messagerie pour vous sur votre serveur."
2356
-
2357
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:39
2358
- msgid "Send Test Email"
2359
- msgstr "Envoyer un courriel test"
2360
-
2361
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:42
2362
- msgid "Email was sent. Now check your email inbox / spam folders for test mail. If you don’t find it - it means that your server can't send emails - and you need to contact your hosting provider with this issue."
2363
- msgstr "Le courriel a été envoyé. Maintenant, vérifiez votre boîte de réception ou le dossier anti-spam pour le mail test. Si vous ne le trouvez pas, cela signifie que votre serveur ne peut pas envoyer des emails - et vous devez contacter votre hébergeur pour ce problème."
2364
-
2365
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:48
2366
- msgid "Save contacts data"
2367
- msgstr "Enregistrer les contacts"
2368
-
2369
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:49
2370
- msgid "Store each contact form submission - into database, so you will be able to check all your form submit data."
2371
- msgstr "Stocker chaque soumission de formulaire de contact dans la base de données, donc vous serez en mesure de vérifier toutes vos données sur les formulaires soumis."
2372
-
2373
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:63
2374
- msgid "Add additional data for submit"
2375
- msgstr "Ajouter des données supplémentaires pour envoi"
2376
-
2377
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:70
2378
- msgid "Add Copy"
2379
- msgstr "Ajouter copie"
2380
-
2381
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:71
2382
- msgid "Remove Copy"
2383
- msgstr "Supprimer la copie"
2384
-
2385
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:81
2386
- msgid "You can use next variables in any field bellow: [sitename] - name of your site, [siteurl] - URL address of your site, [user_FIELD_NAME] - any user field, entered by user, where FIELD_NAME - is name of required field, for example insert in subject [user_email] - and there will be user email field data, or [user_first_name] - and there will be inserted user First Name - if such field exists in your form fields list, and variable [form_data] - only for Message field - it will contans full generated input form data."
2387
- msgstr "Vous pouvez utiliser des variables suivantes dans tous les domaines ci-dessous: [sitename] - nom de votre site, [siteurl] - adresse URL de votre site, [user_FIELD_NAME] - tous les champs de l'utilisateur, sont entrés par l'utilisateur, où FIELD_NAME - est le nom du champ obligatoire, par exemple insérer dans le thème [user_email] - et il y aura des données sur la zone de messagerie de l'utilisateur, ou [USER_FIRST_NAME] - et il sera inséré le prénom de l'utilisateur - si ce champ existe dans votre liste de champs de formulaire et variables [form_data] - uniquement pour champ du message - il contient les données complètes du formulaire d'entrée ainsi générées."
2388
-
2389
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:89
2390
- msgid "Email where we need to send contact form info. Can enter several email addresses, separated by comma \",\"."
2391
- msgstr "Courriel où nous devons envoyer les infos du formulaire de contact. Vous pouvez saisir plusieurs adresses, séparées par une virgule \",\"."
2392
-
2393
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:100
2394
- msgid "Add recipients to copy email addresses. Can enter several email addresses, separated by comma \",\"."
2395
- msgstr "Ajouter des destinataires vers la copie des adresses e-mail. vous pouvez saisir plusieurs adresses, séparées par une virgule \" , \"."
2396
-
2397
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:108
2398
- msgid "Reply To"
2399
- msgstr "Répondre à"
2400
-
2401
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:109
2402
- msgid "Reply To parameter in your email"
2403
- msgstr "Réponse au paramètre dans votre email"
2404
-
2405
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:117
2406
- msgid "Subject"
2407
- msgstr "Objet "
2408
-
2409
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:118
2410
- msgid "Email subject"
2411
- msgstr "Objet de l'email"
2412
-
2413
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:126
2414
- msgid "Message"
2415
- msgstr "Message"
2416
-
2417
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:127
2418
- msgid "Email message content"
2419
- msgstr "Contenu du message."
2420
-
2421
- #: ../modules/forms_widget/mod.php:18
2422
- msgid "Display Contact Form"
2423
- msgstr "Afficher le formulaire de contact"
2424
-
2425
- #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:2
2426
- msgid "Title"
2427
- msgstr " Titre"
2428
-
2429
- #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:9
2430
- msgid "Form to display"
2431
- msgstr "Affichage du formulaire"
2432
-
2433
- #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:19
2434
- msgid "You have no Forms for now. Create your first form - and you will be able to select it for widget here."
2435
- msgstr "Vous n’avez aucun formulaires pour l’instant. Créer votre premier formulaire et vous serez en mesure de le sélectionner pour le widget ici."
2436
-
2437
- #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:23
2438
- msgid "Create Form"
2439
- msgstr "Créer un formulaire"
2440
-
2441
- #: ../modules/mail/controller.php:7
2442
- msgid "Now check your email inbox / spam folders for test mail."
2443
- msgstr "Maintenant, vérifiez votre boîte de réception / dossier anti-spam pour le mail test."
2444
-
2445
- #: ../modules/mail/mod.php:62
2446
- msgid "Cannot send email - problem with send server"
2447
- msgstr "Impossible d’envoyer email - problème avec le serveur"
2448
-
2449
- #: ../modules/mail/mod.php:75
2450
- msgid "Mail"
2451
- msgstr "E-Mail"
2452
-
2453
- #: ../modules/mail/mod.php:77
2454
- msgid "Mail function tested and work"
2455
- msgstr "Fonction email testée et fonctionnelle"
2456
-
2457
- #: ../modules/mail/mod.php:78
2458
- msgid "Notify Email"
2459
- msgstr "Notifier par courriel"
2460
-
2461
- #: ../modules/mail/mod.php:78
2462
- msgid "Email address used for all email notifications from plugin"
2463
- msgstr "Adresse email utilisée pour toutes les notifications par courrier électronique du plugin"
2464
-
2465
- #: ../modules/mail/models/mail.php:7
2466
- msgid "Test email functionality"
2467
- msgstr "Fonctionnalité de courriel"
2468
-
2469
- #: ../modules/mail/models/mail.php:8
2470
- #, php-format
2471
- msgid "This is a test email for testing email functionality on your site, %s."
2472
- msgstr "Il s’agit d’un e-mail test pour les fonctionnalités de messagerie sur votre site, %s."
2473
-
2474
- #: ../modules/mail/models/mail.php:15
2475
- msgid "Empty email address"
2476
- msgstr "Adresse e-mail vide"
2477
-
2478
- #: ../modules/mail/views/tpl/mailAdmin.php:3
2479
- msgid "Send test email to"
2480
- msgstr "Envoyer un email test vers"
2481
-
2482
- #: ../modules/mail/views/tpl/mailAdmin.php:10
2483
- msgid "Send test"
2484
- msgstr "Envoyer essai"
2485
-
2486
- #: ../modules/mail/views/tpl/mailAdmin.php:12
2487
- msgid "This option allows you to check your server mail functionality"
2488
- msgstr "Cette option vous permet de vérifier la fonctionnalité de votre messagerie"
2489
-
2490
- #: ../modules/mail/views/tpl/mailAdmin.php:15
2491
- msgid "Did you receive test email?"
2492
- msgstr "Avez-vous reçu le mail test ?"
2493
-
2494
- #: ../modules/mail/views/tpl/mailAdmin.php:18
2495
- msgid "Yes! It works!"
2496
- msgstr "Oui ! Ça marche !"
2497
-
2498
- #: ../modules/mail/views/tpl/mailAdmin.php:22
2499
- msgid "No, I need to contact my hosting provider with mail function issue."
2500
- msgstr "Non, je dois contacter mon hébergeur pour le problème de fonctionnement de la messagerie."
2501
-
2502
- #: ../modules/mail/views/tpl/mailAdmin.php:26
2503
- msgid "Great! Mail function was tested and is working fine."
2504
- msgstr "Formidable ! La fonction mail a été testée et fonctionne très bien."
2505
-
2506
- #: ../modules/mail/views/tpl/mailAdmin.php:29
2507
- msgid "Bad, please contact your hosting provider and ask them to setup mail functionality on your server."
2508
- msgstr "Désolé, SVP contactez votre hébergeur et demandez-lui de vérifier la fonctionnalité de messagerie sur votre serveur."
2509
-
2510
- #: ../modules/mail/views/tpl/mailAdmin.php:47
2511
- #: ../modules/options/views/tpl/optionsSettingsTabContent.php:44
2512
- #, php-format
2513
- msgid "Turned On %s"
2514
- msgstr "Activée sur %s"
2515
-
2516
- #: ../modules/mail/views/tpl/mailAdmin.php:48
2517
- #: ../modules/options/views/tpl/optionsSettingsTabContent.php:45
2518
- #, php-format
2519
- msgid "Turned Off %s"
2520
- msgstr "Éteinte sur %s"
2521
-
2522
- #: ../modules/options/mod.php:114
2523
- msgid "General"
2524
- msgstr "Général "
2525
-
2526
- #: ../modules/options/mod.php:116
2527
- msgid "Send usage statistics"
2528
- msgstr "Envoyer les statistiques d'utilisation"
2529
-
2530
- #: ../modules/options/mod.php:116
2531
- msgid "Send information about what plugin options you prefer to use, this will help us make our solution better for You."
2532
- msgstr "Envoyer-nous des informations sur les options de ce plugin que vous préférez utiliser, cela nous aidera à l'améliorer."
2533
-
2534
- #: ../modules/options/mod.php:117
2535
- msgid "Enable blocking Contact from same IP"
2536
- msgstr "Activer le blocage de contact de la même adresse IP"
2537
-
2538
- #: ../modules/options/mod.php:117
2539
- msgid "Our plugin have feature to block form submission from same IP more then one time per hour - to avoid spam. You can enable this feature here."
2540
- msgstr "Notre plugin a la fonction de bloquer l’envoi d’un formulaire de même IP plus d’une fois par heure, ceci pour éviter le spam. Vous pouvez activer cette fonction ici."
2541
-
2542
- #: ../modules/options/mod.php:118
2543
- msgid "Disable autosave on Form Edit"
2544
- msgstr "Désactiver la fonction auto-enregistrer sur l'édition du formulaire"
2545
-
2546
- #: ../modules/options/mod.php:118
2547
- msgid "By default our plugin will make autosave all your changes that you do in Form edit screen, but you can disable this feature here. Just don't forget to save your Form each time you make any changes in it."
2548
- msgstr "Par défaut notre plugin fera une sauvegarde de toutes vos modifications que vous faites sur l’écran quand vous modifiez le formulaire, mais vous pouvez désactiver cette fonctionnalité ici. Mais n’oubliez pas d’enregistrer votre formulaire chaque fois que vous y apportez des modifications."
2549
-
2550
- #: ../modules/options/mod.php:119
2551
- msgid "Enable promo link"
2552
- msgstr "Activez le lien promo"
2553
-
2554
- #: ../modules/options/mod.php:119
2555
- msgid "We are trying to make our plugin better for you, and you can help us with this. Just check this option - and small promotion link will be added in the bottom of your Form. This is easy for you - but very helpful for us!"
2556
- msgstr "Nous essayons de créer notre plugin du mieux possible, et vous pouvez nous aider avec ceci. Il suffit de cocher cette option et le petit lien sera ajouté en bas de votre formulaire. C’est facile pour vous - mais très utile pour nous !"
2557
-
2558
- #: ../modules/options/mod.php:120
2559
- msgid "User role can use plugin"
2560
- msgstr "Rôle de l’utilisateur pour utiliser le plugin"
2561
-
2562
- #: ../modules/options/mod.php:120
2563
- msgid "User with next roles will have access to whole plugin from admin area."
2564
- msgstr "L'utilisateur avec les rôles suivants auront accès à l'ensemble du plugin dans la zone d’administration."
2565
-
2566
- #: ../modules/options/mod.php:121
2567
- msgid "Load Assets in Footer"
2568
- msgstr "Charger les scripts dans le bas de page"
2569
-
2570
- #: ../modules/options/mod.php:121
2571
- msgid "Force load all plugin CSS and JavaScript files in footer - to increase page load speed. Please make sure that you have correct footer.php file in your WordPress theme with wp_footer() function call in it."
2572
- msgstr "Chargement du css et du javascript du plugin en pied de page - pour augmenter la vitesse de chargement de page. SVP assurez-vous que vous avez bon fichier footer.php de votre thème WordPress avec la fonction wp_footer() appelée dedans."
2573
-
2574
- #: ../modules/options/mod.php:122
2575
- msgid "Disable HTML Emails content type"
2576
- msgstr "Désactiver le type de contenu HTML des Emails"
2577
-
2578
- #: ../modules/options/mod.php:122
2579
- msgid "Some servers fail send emails with HTML content type: content-type = \"text/html\", so if you have problems with sending emails from our plugn - try to disable this feature here."
2580
- msgstr "Certains serveurs ne parviennent pas à envoyer des emails avec le type de contenu HTML : content-type = « text/html », donc si vous avez des problèmes avec l’envoi d’emails à l'aide de notre plugin - essayez de désactiver cette fonction ici."
2581
-
2582
- #: ../modules/options/models/modules.php:35
2583
- msgid "Module Updated"
2584
- msgstr "Mise à jour des modules"
2585
-
2586
- #: ../modules/options/models/modules.php:50
2587
- msgid "Module Update Failed"
2588
- msgstr "Échec mise à jour du module"
2589
-
2590
- #: ../modules/options/models/modules.php:53
2591
- msgid "Error module ID"
2592
- msgstr "Erreur ID module"
2593
-
2594
- #: ../modules/options/models/options.php:64
2595
- msgid "Empty data to save option"
2596
- msgstr "Données vides pour sauvegarde option"
2597
-
2598
- #: ../modules/options/views/options.php:66
2599
- msgid "Undefined"
2600
- msgstr "Indéfini"
2601
-
2602
- #: ../modules/options/views/tpl/optionsAdminMain.php:18
2603
- msgid "Main page Go here!!!!"
2604
- msgstr "Page d’accueil Allez-y !!!"
2605
-
2606
- #: ../modules/options/views/tpl/optionsAdminPage.php:35
2607
- msgid "Improve Free version"
2608
- msgstr "Améliorer la version gratuite"
2609
-
2610
- #: ../modules/options/views/tpl/optionsAdminPage.php:37
2611
- #, php-format
2612
- msgid "Please be advised that this template with all other options and PRO templates is available only in <a target=\"_blank\" href=\"%s\">PRO version</a>. You can <a target=\"_blank\" href=\"%s\" class=\"button\">Get PRO</a> today and get this and other PRO templates and features for your Forms!"
2613
- msgstr "Veuillez noter que ce modèle avec toutes les autres options et modèles PRO sont disponibles uniquement en <a target=\"_blank\" href=\"%s\">version PRO</a>. Vous pouvez <a target=\"_blank\" href=\"%s\" class=\"button\">Obtenir PRO</a> aujourd'hui et obtenez ce modèle PRO et autres fonctionnalités pour vos formulaires !"
2614
-
2615
- #: ../modules/options/views/tpl/optionsAdminPage.php:40
2616
- #, php-format
2617
- msgid "Please be advised that this option is available only in <a target=\"_blank\" href=\"%s\">PRO version</a>. You can <a target=\"_blank\" href=\"%s\" class=\"button\">Get PRO</a> today and get this and other PRO option for your Forms!"
2618
- msgstr "Prière de noter que cette option est disponible uniquement en <a target=\"_blank\" href=\"%s\">version PRO</a>. Vous pouvez <a target=\"_blank\" href=\"%s\" class=\"button\">Obtenir PRO</a> aujourd'hui et obtenir cette et autre option PRO pour vos formulaires !"
2619
-
2620
- #: ../modules/options/views/tpl/optionsSettingsTabContent.php:3
2621
- msgid "Save all options"
2622
- msgstr "Sauvegarder les Options"
2623
-
2624
- #: ../modules/options/views/tpl/optionsSettingsTabContent.php:52
2625
- msgid "PRO option"
2626
- msgstr "Option PRO"
2627
-
2628
- #: ../modules/pages/views/tpl/deactivatePage.php:33
2629
- msgid "Delete Plugin Data (options, setup data, database tables, etc.)"
2630
- msgstr "Supprimer les données de Plugin (options, données de configuration, tables de base de données, etc...)."
2631
-
2632
- #: ../modules/statistics/controller.php:40
2633
- #, php-format
2634
- msgid "Statistics for %s"
2635
- msgstr "Statistiques pour %s"
2636
-
2637
- #: ../modules/statistics/controller.php:43
2638
- msgid "Views"
2639
- msgstr " Vues"
2640
-
2641
- #: ../modules/statistics/controller.php:44
2642
- msgid "Unique Views"
2643
- msgstr "Vues uniques"
2644
-
2645
- #: ../modules/statistics/controller.php:45
2646
- msgid "Actions"
2647
- msgstr "Actions"
2648
-
2649
- #: ../modules/statistics/controller.php:46
2650
- msgid "Conversion"
2651
- msgstr "Conversion"
2652
-
2653
- #: ../modules/statistics/mod.php:7
2654
- msgid "Displayed"
2655
- msgstr "Affiché"
2656
-
2657
- #: ../modules/statistics/mod.php:8
2658
- msgid "Submitted"
2659
- msgstr "Soumis"
2660
-
2661
- #: ../modules/statistics/mod.php:9
2662
- msgid "Submitted Success"
2663
- msgstr "Soumis avec succès"
2664
-
2665
- #: ../modules/statistics/mod.php:10
2666
- msgid "Submitted Fail"
2667
- msgstr "Erreur d'envoi"
2668
-
2669
- #: ../modules/statistics/models/statistics.php:177
2670
- msgid "No data found"
2671
- msgstr "Aucune donnée trouvée !"
2672
-
2673
- #: ../modules/supsystic_promo/controller.php:7
2674
- #: ../modules/supsystic_promo/controller.php:100
2675
- #: ../modules/supsystic_promo/controller.php:108
2676
- #: ../modules/supsystic_promo/controller.php:116
2677
- msgid "Information was saved. Thank you!"
2678
- msgstr "Les informations ont été sauvegardées. Merci !"
2679
-
2680
- #: ../modules/supsystic_promo/controller.php:23
2681
- msgid "Please don't send contact requests so often - wait for response for your previous requests."
2682
- msgstr "S’VP ne pas envoyer de demandes de contact trop souvent, attendez la réponse à vos demandes précédentes."
2683
-
2684
- #: ../modules/supsystic_promo/controller.php:45
2685
- msgid "Please enter valid email address"
2686
- msgstr "Veuillez entrer un Email valide."
2687
-
2688
- #: ../modules/supsystic_promo/mod.php:35
2689
- #, php-format
2690
- msgid "<h3>Hey, I noticed you just use %s over a week – that’s awesome!</h3><p>Could you please do me a BIG favor and give it a 5-star rating on WordPress? Just to help us spread the word and boost our motivation.</p>"
2691
- msgstr "<h3>Hey, j’ai remarqué que vous utilisiez %s depuis plus d’une semaine – c’est génial !</h3><p>Pourriez-vous, s’il vous plaît, me faire une grande faveur et lui donner une note de 5 étoiles sur WordPress ? Juste pour nous aider en nous motivant !!.</p>"
2692
-
2693
- #: ../modules/supsystic_promo/mod.php:36 ../modules/supsystic_promo/mod.php:42
2694
- msgid "Ok, you deserve it"
2695
- msgstr "Vous le méritez bien"
2696
-
2697
- #: ../modules/supsystic_promo/mod.php:37 ../modules/supsystic_promo/mod.php:43
2698
- msgid "Nope, maybe later"
2699
- msgstr "Peut-être plus tard"
2700
-
2701
- #: ../modules/supsystic_promo/mod.php:38
2702
- msgid "I already did"
2703
- msgstr "Je l’ai déjà fait !"
2704
-
2705
- #: ../modules/supsystic_promo/mod.php:39
2706
- #, php-format
2707
- msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
2708
- msgstr "<h3>Plus de onze jours avec notre plugin %s - félicitations !</h3>"
2709
-
2710
- #: ../modules/supsystic_promo/mod.php:40
2711
- msgid "<p>On behalf of the entire <a href=\"https://supsystic.com/\" target=\"_blank\">supsystic.com</a> company I would like to thank you for been with us, and I really hope that our software helped you.</p>"
2712
- msgstr "<p>Au nom de la société <a href=\"https://supsystic.com/\" target=\"_blank\">supsystic.com</a> , je tiens à vous remercier pour avoir été avec nous, et j’espère vraiment que notre logiciel vous a aidé.</p>"
2713
-
2714
- #: ../modules/supsystic_promo/mod.php:41
2715
- msgid "<p>And today, if you want, - you can help us. This is really simple - you can just add small promo link to our site under your Forms. This is small step for you, but a big help for us! Sure, if you don't want - just skip this and continue enjoy our software!</p>"
2716
- msgstr "<p>Et aujourd'hui, si vous voulez, - vous pouvez nous aider. C’est très simple - vous pouvez simplement ajouter un petit lien promo vers notre site dans vos formulaires. Il s’agit d'un petit pas pour vous, mais une grande aide pour nous ! Bien sûr, si vous ne le voulez pas, vous pouvez juste ignorer cela et continuer à profiter de notre logiciel !</p>"
2717
-
2718
- #: ../modules/supsystic_promo/mod.php:44
2719
- msgid "Skip"
2720
- msgstr "Ignorer"
2721
-
2722
- #: ../modules/supsystic_promo/mod.php:91
2723
- msgid "Overview"
2724
- msgstr "Résumé"
2725
-
2726
- #: ../modules/supsystic_promo/mod.php:98
2727
- msgid "Constant Contact - PRO"
2728
- msgstr "Constant Contact - PRO"
2729
-
2730
- #: ../modules/supsystic_promo/mod.php:99
2731
- msgid "Campaign Monitor - PRO"
2732
- msgstr "Campaign Monitor - PRO"
2733
-
2734
- #: ../modules/supsystic_promo/mod.php:100
2735
- msgid "Vertical Response - PRO"
2736
- msgstr "Vertical Response - PRO"
2737
-
2738
- #: ../modules/supsystic_promo/mod.php:101
2739
- msgid "SendGrid - PRO"
2740
- msgstr "SendGrid - PRO"
2741
-
2742
- #: ../modules/supsystic_promo/mod.php:102
2743
- msgid "GetResponse - PRO"
2744
- msgstr "GetResponse - PRO"
2745
-
2746
- #: ../modules/supsystic_promo/mod.php:103
2747
- msgid "iContact - PRO"
2748
- msgstr "iContact - PRO"
2749
-
2750
- #: ../modules/supsystic_promo/mod.php:104
2751
- msgid "Active Campaign - PRO"
2752
- msgstr "Active Campaign - PRO"
2753
-
2754
- #: ../modules/supsystic_promo/mod.php:105
2755
- msgid "Mailrelay - PRO"
2756
- msgstr "Mailrelay - PRO"
2757
-
2758
- #: ../modules/supsystic_promo/mod.php:106
2759
- msgid "arpReach - PRO"
2760
- msgstr "arpReach - PRO"
2761
-
2762
- #: ../modules/supsystic_promo/mod.php:107
2763
- msgid "SG Autorepondeur - PRO"
2764
- msgstr "SG Autorepondeur - PRO"
2765
-
2766
- #: ../modules/supsystic_promo/mod.php:108
2767
- msgid "Benchmark - PRO"
2768
- msgstr "Benchmark - PRO"
2769
-
2770
- #: ../modules/supsystic_promo/mod.php:109
2771
- msgid "InfusionSoft - PRO"
2772
- msgstr "InfusionSoft - PRO"
2773
-
2774
- #: ../modules/supsystic_promo/mod.php:110
2775
- msgid "SalesForce - Web-to-Lead - PRO"
2776
- msgstr "SalesForce - Web-to-Lead - PRO"
2777
-
2778
- #: ../modules/supsystic_promo/mod.php:111
2779
- msgid "ConvertKit - PRO"
2780
- msgstr "ConvertKit - PRO"
2781
-
2782
- #: ../modules/supsystic_promo/mod.php:112
2783
- msgid "Emma - PRO"
2784
- msgstr "Emma - PRO"
2785
-
2786
- #: ../modules/supsystic_promo/mod.php:147
2787
- #: ../modules/supsystic_promo/mod.php:159
2788
- msgid "Get PRO"
2789
- msgstr "Obtenir PRO"
2790
-
2791
- #: ../modules/supsystic_promo/mod.php:170
2792
- msgid "Form Location"
2793
- msgstr "Emplacement du formulaire"
2794
-
2795
- #: ../modules/supsystic_promo/mod.php:219
2796
- msgid "Website"
2797
- msgstr "Site internet "
2798
-
2799
- #: ../modules/supsystic_promo/mod.php:221
2800
- msgid "Topic"
2801
- msgstr "Thème"
2802
-
2803
- #: ../modules/supsystic_promo/mod.php:222
2804
- msgid "Plugin options"
2805
- msgstr "Options de l’extension"
2806
-
2807
- #: ../modules/supsystic_promo/mod.php:223
2808
- msgid "Report a bug"
2809
- msgstr "Rapporter un bug"
2810
-
2811
- #: ../modules/supsystic_promo/mod.php:224
2812
- msgid "Require a new functionality"
2813
- msgstr "Besoin d’une nouvelle fonctionnalité"
2814
-
2815
- #: ../modules/supsystic_promo/mod.php:225
2816
- msgid "Other"
2817
- msgstr "Autre"
2818
-
2819
- #: ../modules/supsystic_promo/mod.php:227
2820
- msgid "Hello Supsystic Team!"
2821
- msgstr "Bonjour l'équipe Supsystic!"
2822
-
2823
- #: ../modules/supsystic_promo/views/supsystic_promo.php:25
2824
- msgid "Why Form by Supsystic is \"must have\" for your website?"
2825
- msgstr "Pourquoi le formulaire par Supsystic est \"le top du top\" pour votre site web ?"
2826
-
2827
- #: ../modules/supsystic_promo/views/supsystic_promo.php:26
2828
- #, php-format
2829
- msgid "Increase your sales by 500%% using Form by Supsystic! More subscribers = more sales! It's that simple!<br />More info you can find here <a target=\"_blank\" href=\"%s\">Form by Supsystic is \"must have\" for your website</a>"
2830
- msgstr "Augmentez vos ventes de 500 %% en utilisant le formulaire de Supsystic ! Plus d’abonnés = plus de ventes ! C’est aussi simple que cela !<br />Pour plus d’informations, vous pouvez trouver tout ici <a target=\"_blank\" href=\"%s\">formulaire par Supsystic est le \"le top du top\" pour votre site Web</a>"
2831
-
2832
- #: ../modules/supsystic_promo/views/supsystic_promo.php:27
2833
- msgid "What is A/B testing?"
2834
- msgstr "Ce qui est A / B testing ?"
2835
-
2836
- #: ../modules/supsystic_promo/views/supsystic_promo.php:28
2837
- #, php-format
2838
- msgid "A/B testing is one of the easiest ways to increase conversion rates and learn more about your audience!<br />A/B test in Form plugin involves testing two or more versions of a forms window - an A version (original) and a B versions (the variation) - with live traffic and measuring the effect each version has on your conversion rate.<br />To know more detail – click <a target=\"_blank\" href=\"%s\">here</a>"
2839
- msgstr "Le test A / B est l'un des moyens les plus faciles pour augmenter les taux de conversion et d'en apprendre plus sur votre public <br />Le test A / B dans le plugin formulaire consiste à tester deux ou plusieurs versions d’une fenêtre du formulaire - une versions de B (la variation) et une version A (originale) - avec trafic en direct et mesurer l’effet sur votre taux de conversion de chaque version.<br />Pour connaître plus en détail – cliquez <a target=\"_blank\" href=\"%s\">ici</a>"
2840
-
2841
- #: ../modules/supsystic_promo/views/supsystic_promo.php:29
2842
- msgid "How to enable subscription to Aweber?"
2843
- msgstr "Comment activer l’abonnement à Aweber ?"
2844
-
2845
- #: ../modules/supsystic_promo/views/supsystic_promo.php:30
2846
- #, php-format
2847
- msgid "In order to subscribe to Aweber you need to know unique list id of your aweber account - check this <a target=\"_blank\" href=\"%s\">page</a> for more details."
2848
- msgstr "Pour vous abonner à Aweber vous devez connaître l’id de la liste unique de votre compte aweber - consultez cette <a target=\"_blank\" href=\"%s\">page</a> pour plus de détails."
2849
-
2850
- #: ../modules/supsystic_promo/views/supsystic_promo.php:31
2851
- msgid "How to subscribe to MailChimp?"
2852
- msgstr "Comment s’abonner à MailChimp ?"
2853
-
2854
- #: ../modules/supsystic_promo/views/supsystic_promo.php:32
2855
- msgid ""
2856
- "To subscribe to MailChimp you need enter your MailChimp API key and name of list for subscription. To find your MailChimp API key - follow the instructions below:<br />\n"
2857
- "\t\t\t\t1. Login to your mailchimp account at http://mailchimp.com<br />\n"
2858
- "\t\t\t\t2. From the left main menu, click on your Username, then select \"Account\" in the flyout menu.<br />\n"
2859
- "\t\t\t\t3. From the account page select \"Extras\" -> \"API Keys\".<br />\n"
2860
- "\t\t\t\t4. Your API Key will be listed in the table labeled \"Your API Keys\".<br />\n"
2861
- "\t\t\t\t5. Copy / Paste your API key into \"MailChimp API key\" field in Form edit screen -> Subscribe section."
2862
- msgstr ""
2863
- "Pour vous abonner à MailChimp vous devez entrer votre clé API MailChimp et le nom de la liste de souscription. Pour trouver votre clé API MailChimp - suivez les instructions ci-dessous: <br />\n"
2864
- "\t\t\t\t1.Connectez-vous à votre compte MailChimp à http://mailchimp.com <br />\n"
2865
- "\t\t\t\t2. Dans le menu principal de gauche, cliquez sur votre nom d'utilisateur, puis sélectionnez «Compte» dans le menu déroulant. <br />\n"
2866
- "\t\t\t\t3. Sur la page de compte sélectionnez \"Extras\" -> \"API Keys\" <br />.\n"
2867
- "\t\t\t\t4. Votre clé API sera répertorié dans le tableau intitulé \"Your API Keys\". <br />\n"
2868
- "\t\t\t\t5. Copier / Coller votre clé API dans le champ \"MailChimp API key\" de l'affichage de votre formulaire -> Section inscription."
2869
-
2870
- #: ../modules/supsystic_promo/views/supsystic_promo.php:38
2871
- msgid "Where to find css code for the pop-up window?"
2872
- msgstr "Où trouver le code css pour la fenêtre pop-up ?"
2873
-
2874
- #: ../modules/supsystic_promo/views/supsystic_promo.php:39
2875
- msgid ""
2876
- "With Form by Supsystic you can edit CSS style directly from the plugin. <br />\n"
2877
- "\t\t\t\tIn WordPress admin area - \n"
2878
- "go to Form by Supsystic -> choose a forms, what you need -> click Code tab. <br />\n"
2879
- "Here you can edit css style of the pop-up window."
2880
- msgstr ""
2881
- "Avec le plugin formulaire de Supsystic vous pouvez modifier le style CSS directement depuis le plugin.<br />\n"
2882
- "\t\t\t\tDans la zone de l'administration de WordPress - \n"
2883
- "allez au formulaire de Supsystic-> choisir un formulaire, ce que vous avez besoin-> cliquez sur Code tab.<br />\n"
2884
- "Ici vous pouvez modifier le style css de la fenêtre popup."
2885
-
2886
- #: ../modules/supsystic_promo/views/supsystic_promo.php:43
2887
- msgid "How to get PRO version of plugin for FREE?"
2888
- msgstr "Comment obtenir la version PRO de plugin gratuitement ?"
2889
-
2890
- #: ../modules/supsystic_promo/views/supsystic_promo.php:44
2891
- #, php-format
2892
- msgid ""
2893
- "You have an incredible opportunity to get PRO version for free. Make Translation of the plugin! It will be amazing if you take advantage of this offer!<br />\n"
2894
- "\t\t\t\t\tMore info you can find here <a target=\"_blank\" href=\"%s\">“Get PRO version of any plugin for FREE”</a>"
2895
- msgstr ""
2896
- "Vous avez une opportunité incroyable pour obtenir la version PRO gratuite. Faire la traduction du plugin ! Il sera étonnant si vous ne profitez pas de cette offre !<br />\n"
2897
- "\t\t\t\t\tPlus d’informations vous pouvez trouver ici <a target=\"_blank\" href=\"%s\">\"Obtenir la version PRO de n’importe quel plugin gratuitement\"</a>"
2898
-
2899
- #: ../modules/supsystic_promo/views/supsystic_promo.php:46
2900
- msgid "Translation"
2901
- msgstr "Traduction "
2902
-
2903
- #: ../modules/supsystic_promo/views/supsystic_promo.php:47
2904
- #, php-format
2905
- msgid ""
2906
- "All available languages are provided with the Supsystic Form plugin. If your language isn’t available, your plugin will be in English by default.<br />\n"
2907
- "\t\t\t\t\tAvailable Translations: English, French, German, Spanish, Russian<br />\n"
2908
- "\t\t\t\t\tTranslate or update a translation Form WordPress plugin in your language and get a Premium license for FREE. <a target=\"_blank\" href=\"%s\">Contact us.</a>"
2909
- msgstr ""
2910
- "Toutes les langues disponibles sont fournis avec le plugin Supsystic forme. Si votre langue n’est pas disponible, votre plugin sera en anglais par défaut.<br />\n"
2911
- "\t\t\t\t\tTraductions : Anglais, Français, allemand, espagnol, russe<br />\n"
2912
- "\t\t\t\t\tTraduire ou mettre à jour la traduction du plugin formulaire WordPress dans votre langue et obtenez une licence Premium gratuitement. <a target=\"_blank\" href=\"%s\">Contactez-nous.</a>"
2913
-
2914
- #: ../modules/supsystic_promo/views/supsystic_promo.php:54
2915
- msgid "Where's my subscribers?"
2916
- msgstr "Où sont mes abonnés ?"
2917
-
2918
- #: ../modules/supsystic_promo/views/supsystic_promo.php:55
2919
- #, php-format
2920
- msgid ""
2921
- "By default all subscribers add to the WordPress. \n"
2922
- "\t\t\t\t\tTo find your subscribers go to Users tab on the left navigation menu of WordPress admin area. \n"
2923
- "\t\t\t\t\tAlso available subscription to the Aweber, MailChimp, MailPoet <a href='%s' target='_blank'>and other</a>. \n"
2924
- "\t\t\t\t\tIf you want to add another subscription service - just <a href='%s' target='_blank'>contact us</a> and provide URL of the subscription service."
2925
- msgstr ""
2926
- "Par défaut, tous les abonnés ajouts à votre blog WordPress. \n"
2927
- "\t\t\t\t\tPour trouver vos abonnés allez à l'onglet utilisateurs dans le menu de navigation à gauche de la zone d’administration de WordPress. \n"
2928
- "\t\t\t\t\tAussi disponible : abonnement à Aweber, MailChimp, MailPoet <a href='%s' target='_blank'>et autres</a>. \n"
2929
- "\t\t\t\t\tSi vous souhaitez ajouter un autre abonnement service ou juste <a href='%s' target='_blank'>nous contacter</a> et indiquer l’URL du service abonnement."
2930
-
2931
- #: ../modules/supsystic_promo/views/supsystic_promo.php:59
2932
- msgid "Form doesn't appear on the website"
2933
- msgstr "Le formulaire n’apparaît pas sur le site Web"
2934
-
2935
- #: ../modules/supsystic_promo/views/supsystic_promo.php:60
2936
- #, php-format
2937
- msgid "If you setup you're Form properly, and it still doesn't show on the page - there are can be conflict with your WordPress theme or other plugins. <a href='%s' target='_blank'>Contact us</a> with the URL of the webpage you add forms and screenshots / text of the error messages, if you have one - and we will help you resolve your issue."
2938
- msgstr "Si vous configurez votre formulaire correctement, et qu'il ne s'affiche toujours pas sur la page - il y a peut être en conflit avec votre thème WordPress ou d'autres plugins. <a href='%s' target='_blank'>Contactez-nous</a> avec l'URL de la page Web où vous installé votre formulaire avec des captures d' écran / le texte des messages d'erreur, si vous en avez un - et nous vous aiderons à résoudre votre problème."
2939
-
2940
- #: ../modules/supsystic_promo/views/supsystic_promo.php:76
2941
- #, php-format
2942
- msgid "There were some problems while trying to retrieve our news, but you can always check all list <a target=\"_blank\" href=\"%s\">here</a>."
2943
- msgstr "Il y a quelques soucis quand vous essayez de récupérer nos nouveautés, mais vous pouvez toujours vérifier toutes les listes <a target=\"_blank\" href=\"%s\">ici</a>."
2944
-
2945
- #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:1
2946
- #, php-format
2947
- msgid "Show when user tries to exit from your site. <a target=\"_blank\" href=\"%s\">Check example.</a>"
2948
- msgstr "Afficher lorsque l' utilisateur tente de quitter votre site. <a target=\"_blank\" href=\"%s\">Vérifiez exemple.</a>"
2949
-
2950
- #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:7
2951
- msgid "On Exit from Site"
2952
- msgstr "Sortie du site"
2953
-
2954
- #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:9
2955
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:10
2956
- msgid "Available in PRO"
2957
- msgstr "Disponible en PRO"
2958
-
2959
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:4
2960
- msgid "Version"
2961
- msgstr "Version"
2962
-
2963
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
2964
- msgid "Go"
2965
- msgstr "Allez"
2966
-
2967
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:15
2968
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:28
2969
- msgid "Support"
2970
- msgstr "Support"
2971
-
2972
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:4
2973
- #, php-format
2974
- msgid "Welcome to %s plugin!"
2975
- msgstr "Bienvenue sur le plugin %s !"
2976
-
2977
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:5
2978
- #, php-format
2979
- msgid "Thank you for choosing our %s plugin. Just click here to start using it - and we will show you it's possibilities and powerfull features."
2980
- msgstr "Merci d'avoir choisi le plugin de notre %s. Il suffit de cliquer ici pour commencer à l'utiliser et nous allons vous montrer ses possibilités et fonctionnalités."
2981
-
2982
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:8
2983
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:18
2984
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:28
2985
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:38
2986
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:48
2987
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:58
2988
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:68
2989
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:78
2990
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:88
2991
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:98
2992
- msgid "Close"
2993
- msgstr "Fermer"
2994
-
2995
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:9
2996
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:19
2997
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:29
2998
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:39
2999
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:49
3000
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:59
3001
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:69
3002
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:79
3003
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:89
3004
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:99
3005
- msgid "Next"
3006
- msgstr "Suivant "
3007
-
3008
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:14
3009
- msgid "Create your firs Form"
3010
- msgstr "Créer votre premier formulaire"
3011
-
3012
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:15
3013
- msgid "Click on \"Add New Form\" button to create your firs Form. Just try - this is really simple!"
3014
- msgstr "Cliquez sur le bouton \"Ajouter un nouveau formulaire\" pour créer votre premier formulaire. Essayer - c'est vraiment simple!"
3015
-
3016
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:24
3017
- msgid "Enter name for your Form"
3018
- msgstr "Entrez le nom de votre formulaire"
3019
-
3020
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:25
3021
- msgid "This will be name of your Form. You can change it latter."
3022
- msgstr "Ce sera le nom de votre formulaire. Vous pouvez le modifier ultérieurement."
3023
-
3024
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:34
3025
- msgid "Selecte template for your Form"
3026
- msgstr "Sélectionner le modèle de votre formulaire"
3027
-
3028
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:35
3029
- msgid "Choose any templates from this list. You will be able to customize it after creation, and also - you will be able to change it latter if you will need this."
3030
- msgstr "Choisissez vos modèles à partir de cette liste. Vous serez en mesure de les personnaliser après la création, et aussi - vous serez en mesure de changer celui-ci si vous le désirez."
3031
-
3032
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:44
3033
- msgid "Save first Form"
3034
- msgstr "Sauvegarder votre premier formulaire"
3035
-
3036
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:45
3037
- msgid "After you entered name of your Form and selected it's template - just save it, and you will be redirected to Form edit screen - where you will be able to customize your Form."
3038
- msgstr "Après avoir entré le nom de votre formulaire et sélectionné le modèle - il faut simplement l'enregistrer, et vous serez redirigé vers son affichage - où vous serez en mesure de personnaliser votre formulaire."
3039
-
3040
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:54
3041
- msgid "Main Settings"
3042
- msgstr "Réglages principaux"
3043
-
3044
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:55
3045
- msgid "Here you can setup main display settings for your Form - when it should be visible for your user, when it need to be closed, if required - select specific pages/posts where you need to show your Form."
3046
- msgstr "Ici vous pouvez configurer les paramètres d'affichage principal pour votre formulaire - quand il doit être visible pour l'utilisateur, quand il a besoin d'être fermé, si nécessaire - sélectionner les pages spécifiques ou articles où vous avez besoin de montrer votre formulaire."
3047
-
3048
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:64
3049
- msgid "Design Settings"
3050
- msgstr "Paramètres du design"
3051
-
3052
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:65
3053
- msgid "One of our most powerfull features - possibility to <strong>customize</strong> design for each Form window for your needs. In this section you can select your Form colors and images, enter required texts that will describe your neds for your visitors, setup social settings (if required), select Form location, and in the end - select Animation style for your Form from list of more then 20 different animation styles!"
3054
- msgstr "L'une des fonctionnalités les plus puissantes - possibilité de <strong>personnaliser</strong> la conception pour chaque fenêtre de formulaire pour vos besoins. Dans cette section, vous pouvez sélectionner les couleurs de votre formulaire et des images, entrez les textes nécessaires qui décrivent vos besoins pour vos visiteurs, les paramètres sociaux de configuration (si nécessaire), sélectionnez l'emplacement de formulaire, et à la fin - sélectionnez le style d'animation pour votre formulaire de la liste des plus de 20 styles d'animation présentés !"
3055
-
3056
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:74
3057
- msgid "Subscribe Settings"
3058
- msgstr "Paramètres d’abonnement"
3059
-
3060
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:75
3061
- msgid "Setup your Subscription settings here - select Subscribers destination in \"Subscribe to\" option - it allow to flow your subscribers not only to WordPress Users, but to other popular subscribe services. With other subscription options you will be able to easily customize your subscribe form in Form window."
3062
- msgstr "Configuration de vos paramètres d'abonnement ici - sélectionnez la destination des abonnés dans l'option \"Abonnez-vous à\" - il permet de diriger vos abonnés non seulement vers les utilisateurs de WordPress, mais vers d'autres services . Avec d'autres options d'abonnement, vous serez en mesure de personnaliser facilement votre formulaire d'abonnement dans la fenêtre du formulaire."
3063
-
3064
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:84
3065
- msgid "Form Statistics"
3066
- msgstr "Statistiques du formulaire"
3067
-
3068
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:85
3069
- msgid "After you will setup your Form - it will start displaying to your site visitors. And now - you need to check it's displaying statistics. Here, in Statistics tab, you will be able to see how many times Form was shown to your visitors, how many times visitors subscribed to it (if subscription is enabled), how many times visitors shared your site using Social Share Form functionality and what social networks for share is most popular (if it was enabled). If you will use AB Testing feature to increase your site popularity - you will see here all your main and tested Forms statistics - in one graph or diagramm, - and this will provide you with all required information about your Form popularity!"
3070
- msgstr "Une fois que vous voulez configurer votre formulaire - il commencera a s'afficher sur votre site à vos visiteurs. Et maintenant - vous devez vérifier qu'il 'affiche les statistiques. Ici, dans l'onglet Statistiques, vous serez en mesure de voir combien de fois le formulaire a été montré à vos visiteurs, combien de fois les visiteurs se sont inscrits (si l'abonnement est activé), combien de fois les visiteurs ont partagé votre site en utilisant la fonctionnalité des réseaux sociaux de votre formulaire et lequel des réseaux sociaux pour le partage est le plus populaire (si elle a été activée). Si vous allez utiliser AB Testing fonction pour augmenter la popularité de votre site - vous verrez ici toutes vos statistiques principales et testées des formulaires - dans un seul graphique ou diagramme, - et cela va vous fournir toutes les informations nécessaires sur la popularité de votre formulaire !"
3071
-
3072
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:94
3073
- msgid "Form CSS / HTML Code"
3074
- msgstr "Code CSS / HTML du formulaire"
3075
-
3076
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:95
3077
- #, php-format
3078
- msgid "In case you will need modify source CSS / HTML code of your Form - you can easily do this here. Just make sure that you know what you are doing - don't break Form. You can also find additional information about editing source code <a href=\"%s\" target=\"_blank\">here</a>."
3079
- msgstr "Dans le cas où vous auriez besoin de modifier le code source CSS / HTML de votre formulaire - vous pouvez facilement le faire ici. Assurez-vous que vous savez ce que vous faites - pour ne pas bloquer le formulaire. Vous pouvez également trouver des informations supplémentaires sur la modification du code source <a href=\"%s\" target=\"_blank\">ici</a> ."
3080
-
3081
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:104
3082
- msgid "Well Done!"
3083
- msgstr "Bien joué!"
3084
-
3085
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:105
3086
- #, php-format
3087
- msgid "That's it! Now you know how to use our %s. Just save your Form after you will setup it - and you will see results. You can also check our site - <a href=\"%s\" target=\"_blank\">supsystic.com</a> to find out more about our %s plugin. If you will have any questions - you can always contact us on <a href=\"%s\" target=\"_blank\">WordPress plugin forum</a> or in <a href=\"%s\" target=\"_blank\">our support system</a>. We really hope that our solution will be helpful for you. Good luck!"
3088
- msgstr "C'est tout ! Maintenant, vous savez comment utiliser notre %s. Il suffit d'enregistrer votre formulaire après configuration - et vous verrez les résultats. Vous pouvez également consulter notre site - <a href=\"%s\" target=\"_blank\">supsystic.com</a> pour en savoir plus sur le plugin de notre %s. Si vous avez des questions - vous pouvez toujours nous contacter sur le<a href=\"%s\" target=\"_blank\">forum des plugins Wordpress</a> ou dans <a href=\"%s\" target=\"_blank\">notre système de soutien</a> . Nous espérons vraiment que notre solution vous sera utile. Bonne chance !"
3089
-
3090
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:108
3091
- msgid "Finish"
3092
- msgstr "Fini"
3093
-
3094
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:8
3095
- msgid "Enable Layered Form Style"
3096
- msgstr "Activer les différents styles du formulaire"
3097
-
3098
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:12
3099
- msgid "By default all Forms have modal style: it appears on user screen over the whole site. Layered style allows you to show your Form - on selected position: top, bottom, etc. and not over your site - but right near your content."
3100
- msgstr "Par défaut, tous les formulaires ont un style modal : il apparaît sur l'écran d'utilisateur au-dessus de tout le site. Les différents types de style vous permettent d’afficher votre formulaire - sur la position sélectionnée: haut, bas, etc. et non pas sur votre site - mais juste sur le côté droit de votre contenu."
3101
-
3102
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:16
3103
- msgid "Select position for your Form"
3104
- msgstr "Sélectionner la position de votre formulaire"
3105
-
3106
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:19
3107
- msgid "Top Left"
3108
- msgstr "En haut à gauche"
3109
-
3110
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:20
3111
- msgid "Top"
3112
- msgstr "En haut"
3113
-
3114
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:21
3115
- msgid "Top Right"
3116
- msgstr "En haut à droite"
3117
-
3118
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:23
3119
- msgid "Center Left"
3120
- msgstr "AU centre à gauche"
3121
-
3122
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:24
3123
- msgid "Center"
3124
- msgstr "Au centre"
3125
-
3126
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:25
3127
- msgid "Center Right"
3128
- msgstr "Au centre à droite"
3129
-
3130
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:27
3131
- msgid "Bottom Left"
3132
- msgstr "En bas à gauche"
3133
-
3134
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:28
3135
- msgid "Bottom"
3136
- msgstr "En bas"
3137
-
3138
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:29
3139
- msgid "Bottom Right"
3140
- msgstr "En bas à droite"
3141
-
3142
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:77
3143
- #, php-format
3144
- msgid "This functionality and more - is available in PRO version. <a class=\"button button-primary\" target=\"_blank\" href=\"%s\">Get it</a> today for 29$"
3145
- msgstr "Cette fonctionnalité et plus - est disponible dans la version PRO. <a target=\"_blank\" class=\"button button-primary\" href=\"%s\">L'obtenir</a> aujourd'hui pour 29 $"
3146
-
3147
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:31
3148
- msgid "Server Settings"
3149
- msgstr "Paramètres du serveur"
3150
-
3151
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:44
3152
- msgid "News"
3153
- msgstr "Actualités"
3154
-
3155
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:50
3156
- msgid "All news and info"
3157
- msgstr "Toutes les actualités et infos"
3158
-
3159
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:55
3160
- msgid "Contact form"
3161
- msgstr "Formulaire de contact"
3162
-
3163
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:87
3164
- msgid "Send email"
3165
- msgstr "Envoyer un mail"
3166
-
3167
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:96
3168
- msgid "Your email was sent, we will try to respond to your as soon as possible. Thank you for support!"
3169
- msgstr "Votre courriel a été envoyé, nous allons essayer d'y répondre le plus tôt possible. Merci pour le soutien !"
3170
-
3171
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:7
3172
- #, php-format
3173
- msgid "Welcome to the %s v %s"
3174
- msgstr "Bienvenue à %s contre %s"
3175
-
3176
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:8
3177
- msgid "Skip tutorial"
3178
- msgstr "Tutoriel"
3179
-
3180
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:11
3181
- msgid "The best way to collect subscribers and show notifications.<br />We are trying to make our plugin work in most comfortable way for you. Here is some base information about it."
3182
- msgstr "La meilleure façon de recueillir des abonnés et afficher des notifications. <br /> Nous essayons de faire que notre plugin fonctionne de manière la plus confortable pour vous. Voici quelques informations de base à ce sujet."
3183
-
3184
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:19
3185
- msgid "Step-by-step tutorial"
3186
- msgstr "Tutoriel étape par étape"
3187
-
3188
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:21
3189
- msgid "There're really many options of forms customization. So as soon as you close that page, I'll show you step-by-step tutorial of how to use plugin. Hope it will be usefull for you :)"
3190
- msgstr "Il y a vraiment beaucoup d’options de personnalisation des formulaires. Donc dès que vous fermerez cette page, je vais vous montrer un tutoriel étape par étape comment utiliser le plugin. Espérons qu’il sera utile pour vous  :)"
3191
-
3192
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:24
3193
- msgid "As an option we can install and setup plugin for you."
3194
- msgstr "En option, nous pouvons installer et configurer le plugin pour vous."
3195
-
3196
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:30
3197
- #, php-format
3198
- msgid "We love our plugin and do the best to improve all features for You. But sometimes issues happened, or you can't find required feature that you need. Don't worry, just <a href='%s' target='_blank'>contact us</a> and we will help you!"
3199
- msgstr "Nous aimons notre plugin et faisons de notre mieux pour améliorer toutes les fonctionnalités pour vous. Mais parfois, des problèmes apparissent, ou vous ne pouvez pas trouver la fonctionnalité nécessaire dont vous avez besoin. Ne vous inquiétez pas, il suffit de <a href='%s' target='_blank'>nous contacter </a> et nous vous aiderons !"
3200
-
3201
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:36
3202
- msgid "Video Tutorial"
3203
- msgstr "Tutoriel vidéo"
3204
-
3205
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:48
3206
- msgid "Frequently Asked Questions"
3207
- msgstr "Questions fréquemment posées"
3208
-
3209
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:51
3210
- msgid "Check all FAQs"
3211
- msgstr "Consultez toutes les FAQ"
3212
-
3213
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:59
3214
- msgid "Let's Start!"
3215
- msgstr "C'est parti !!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/cfs_lng.po DELETED
@@ -1,3576 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Form by Supsystic\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-11-23 14:08+0200\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: supsystic.com <supsystic.team@gmail.com>\n"
8
- "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
- "X-Poedit-Country: UNITED STATES\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
- "X-Poedit-SearchPath-1: ..\n"
19
-
20
- #: ../classes/controller.php:207
21
- #: ../classes/controller.php:215
22
- msgid "Done"
23
- msgstr ""
24
-
25
- #: ../classes/field.php:131
26
- msgid "Select"
27
- msgstr ""
28
-
29
- #: ../classes/field.php:170
30
- #: ../classes/field.php:179
31
- #: ../classes/field.php:184
32
- msgid "N/A"
33
- msgstr ""
34
-
35
- #: ../classes/field.php:277
36
- msgid "Add Checkbox"
37
- msgstr ""
38
-
39
- #: ../classes/field.php:282
40
- #: ../classes/field.php:287
41
- msgid "Add Item"
42
- msgstr ""
43
-
44
- #: ../classes/field.php:293
45
- msgid "Add Radio Button"
46
- msgstr ""
47
-
48
- #: ../classes/field.php:311
49
- msgid "Dimensions"
50
- msgstr ""
51
-
52
- #: ../classes/field.php:314
53
- msgid "width"
54
- msgstr ""
55
-
56
- #: ../classes/field.php:316
57
- msgid "height"
58
- msgstr ""
59
-
60
- #: ../classes/field.php:323
61
- msgid "Click to set field \"id\" and \"class\""
62
- msgstr ""
63
-
64
- #: ../classes/field.php:324
65
- msgid "Attributes"
66
- msgstr ""
67
-
68
- #: ../classes/field.php:402
69
- msgid "There are no configuration options for this module"
70
- msgstr ""
71
-
72
- #: ../classes/fieldAdapter.php:93
73
- msgid "Apply To"
74
- msgstr ""
75
-
76
- #: ../classes/fieldAdapter.php:95
77
- msgid "Address"
78
- msgstr ""
79
-
80
- #: ../classes/fieldAdapter.php:96
81
- msgid "Destination"
82
- msgstr ""
83
-
84
- #: ../classes/fieldAdapter.php:97
85
- msgid "Country"
86
- msgstr ""
87
-
88
- #: ../classes/fieldAdapter.php:100
89
- msgid "Categories"
90
- msgstr ""
91
-
92
- #: ../classes/fieldAdapter.php:101
93
- msgid "You have no categories"
94
- msgstr ""
95
-
96
- #: ../classes/fieldAdapter.php:102
97
- msgid "Brands"
98
- msgstr ""
99
-
100
- #: ../classes/fieldAdapter.php:103
101
- msgid "You have no brands"
102
- msgstr ""
103
-
104
- #: ../classes/fieldAdapter.php:105
105
- msgid "Tax Rate"
106
- msgstr ""
107
-
108
- #: ../classes/fieldAdapter.php:106
109
- msgid "Absolute"
110
- msgstr ""
111
-
112
- #: ../classes/fieldAdapter.php:132
113
- msgid "Not selected"
114
- msgstr ""
115
-
116
- #: ../classes/fieldAdapter.php:183
117
- msgid "class"
118
- msgstr ""
119
-
120
- #: ../classes/fieldAdapter.php:185
121
- msgid "id"
122
- msgstr ""
123
-
124
- #: ../classes/fileuploader.php:29
125
- msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
126
- msgstr ""
127
-
128
- #: ../classes/fileuploader.php:32
129
- msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
130
- msgstr ""
131
-
132
- #: ../classes/fileuploader.php:35
133
- msgid "The uploaded file was only partially uploaded"
134
- msgstr ""
135
-
136
- #: ../classes/fileuploader.php:38
137
- msgid "No file was uploaded."
138
- msgstr ""
139
-
140
- #: ../classes/fileuploader.php:41
141
- msgid "Missing a temporary folder"
142
- msgstr ""
143
-
144
- #: ../classes/fileuploader.php:44
145
- msgid "Failed to write file to disk"
146
- msgstr ""
147
-
148
- #: ../classes/fileuploader.php:47
149
- msgid "File upload stopped by extension"
150
- msgstr ""
151
-
152
- #: ../classes/fileuploader.php:51
153
- msgid "No error code avaiable"
154
- msgstr ""
155
-
156
- #: ../classes/fileuploader.php:54
157
- msgid "No file was uploaded.."
158
- msgstr ""
159
-
160
- #: ../classes/frame.php:139
161
- msgid "You have no permissions to view this page"
162
- msgstr ""
163
-
164
- #: ../classes/html.php:302
165
- msgid "Upload"
166
- msgstr ""
167
-
168
- #: ../classes/html.php:715
169
- msgid "ON"
170
- msgstr ""
171
-
172
- #: ../classes/html.php:716
173
- msgid "OFF"
174
- msgstr ""
175
-
176
- #: ../classes/html.php:740
177
- #, php-format
178
- msgid "Select %s"
179
- msgstr ""
180
-
181
- #: ../classes/model.php:176
182
- #: ../classes/model.php:188
183
- msgid "Database error detected"
184
- msgstr ""
185
-
186
- #: ../classes/model.php:178
187
- msgid "Invalid ID"
188
- msgstr ""
189
-
190
- #: ../classes/model.php:211
191
- msgid "Empty or invalid ID"
192
- msgstr ""
193
-
194
- #: ../classes/modInstaller.php:34
195
- #, php-format
196
- msgid "Move files for %s failed"
197
- msgstr ""
198
-
199
- #: ../classes/modInstaller.php:37
200
- #, php-format
201
- msgid "%s is not plugin module"
202
- msgstr ""
203
-
204
- #: ../classes/modInstaller.php:76
205
- msgid "Cannot create module directory. Try to set permission to "
206
- msgstr ""
207
-
208
- #: ../classes/modInstaller.php:103
209
- msgid "No modules were found in XML file"
210
- msgstr ""
211
-
212
- #: ../classes/modInstaller.php:107
213
- msgid "Invalid XML file"
214
- msgstr ""
215
-
216
- #: ../classes/modInstaller.php:109
217
- msgid "No XML file were found"
218
- msgstr ""
219
-
220
- #: ../classes/modInstaller.php:132
221
- #, php-format
222
- msgid "Install %s failed"
223
- msgstr ""
224
-
225
- #: ../classes/modInstaller.php:138
226
- msgid "Error Activate module"
227
- msgstr ""
228
-
229
- #: ../classes/modInstaller.php:168
230
- msgid "Error Deactivation module"
231
- msgstr ""
232
-
233
- #: ../classes/modInstaller.php:189
234
- msgid "Error Activating module"
235
- msgstr ""
236
-
237
- #: ../classes/table.php:277
238
- msgid "Nothing to update"
239
- msgstr ""
240
-
241
- #: ../classes/table.php:293
242
- msgid "Database error. Please contact your developer."
243
- msgstr ""
244
-
245
- #: ../classes/validator.php:30
246
- #, php-format
247
- msgid "Invalid length for %s, max length is %s"
248
- msgstr ""
249
-
250
- #: ../classes/validator.php:43
251
- #, php-format
252
- msgid "Invalid numeric value for %s"
253
- msgstr ""
254
-
255
- #: ../classes/validator.php:71
256
- #, php-format
257
- msgid "Please enter %s"
258
- msgstr ""
259
-
260
- #: ../classes/validator.php:78
261
- #, php-format
262
- msgid "Please select %s"
263
- msgstr ""
264
-
265
- #: ../classes/validator.php:85
266
- #: ../classes/validator.php:101
267
- #, php-format
268
- msgid "Invalid %s"
269
- msgstr ""
270
-
271
- #: ../classes/validator.php:88
272
- #, php-format
273
- msgid "%s is already registered"
274
- msgstr ""
275
-
276
- #: ../classes/tables/modules.php:7
277
- #: ../classes/tables/modules_type.php:8
278
- msgid "Label"
279
- msgstr ""
280
-
281
- #: ../classes/tables/modules.php:8
282
- msgid "Type"
283
- msgstr ""
284
-
285
- #: ../classes/tables/modules.php:9
286
- msgid "Active"
287
- msgstr ""
288
-
289
- #: ../classes/tables/modules.php:10
290
- msgid "Params"
291
- msgstr ""
292
-
293
- #: ../classes/tables/modules.php:13
294
- msgid "Code"
295
- msgstr ""
296
-
297
- #: ../classes/tables/modules.php:14
298
- msgid "External plugin directory"
299
- msgstr ""
300
-
301
- #: ../classes/tables/modules_type.php:7
302
- msgid "ID"
303
- msgstr ""
304
-
305
- #: ../classes/tables/usage_stat.php:8
306
- msgid "code"
307
- msgstr ""
308
-
309
- #: ../classes/tables/usage_stat.php:9
310
- msgid "visits"
311
- msgstr ""
312
-
313
- #: ../classes/tables/usage_stat.php:10
314
- msgid "spent_time"
315
- msgstr ""
316
-
317
- #: ../classes/tables/usage_stat.php:11
318
- msgid "modify_timestamp"
319
- msgstr ""
320
-
321
- #: ../doc/contact-form-by-supsystic-pro/wpUpdater.php:68
322
- msgid "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?\" onclick=\"document.location.reload(); return false;\">Try again</a>"
323
- msgstr ""
324
-
325
- #: ../doc/contact-form-by-supsystic-pro/wpUpdater.php:73
326
- msgid "An unknown error occurred"
327
- msgstr ""
328
-
329
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/mod.php:15
330
- msgid "Testing"
331
- msgstr ""
332
-
333
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/models/ab_testing.php:18
334
- msgid "Enter Name"
335
- msgstr ""
336
-
337
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/models/ab_testing.php:20
338
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/models/ab_testing.php:32
339
- msgid "Empty Base ID"
340
- msgstr ""
341
-
342
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abEditFormControls.php:3
343
- msgid "Back to Main Form"
344
- msgstr ""
345
-
346
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abFormEditTab.php:3
347
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abNewForm.php:2
348
- msgid "Add New Test"
349
- msgstr ""
350
-
351
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abFormEditTab.php:7
352
- msgid "Delete selected"
353
- msgstr ""
354
-
355
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abFormEditTab.php:11
356
- msgid "Clear"
357
- msgstr ""
358
-
359
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abFormEditTab.php:17
360
- msgid "You have no Test Forms for now. <a href=\"#\" class=\"cfsAbAddNew\" style=\"font-style: italic;\">Create</a> your first Test!"
361
- msgstr ""
362
-
363
- #: ../doc/contact-form-by-supsystic-pro/ab_testing/views/tpl/abNewForm.php:5
364
- msgid "Test Form Name"
365
- msgstr ""
366
-
367
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/mod.php:11
368
- msgid "Active Campaign"
369
- msgstr ""
370
-
371
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:22
372
- msgid "Please make sure that you created some Lists under your Active Campaign account."
373
- msgstr ""
374
-
375
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:26
376
- msgid "Make sure that you entered correct API data."
377
- msgstr ""
378
-
379
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:40
380
- msgid "Please enter your API URL"
381
- msgstr ""
382
-
383
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:42
384
- msgid "Please enter your API key"
385
- msgstr ""
386
-
387
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:83
388
- #, php-format
389
- msgid "Add contact failed with error: %s"
390
- msgstr ""
391
-
392
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/models/activecampaign.php:95
393
- msgid "No lists to add selected in admin area - contact site owner to resolve this issue."
394
- msgstr ""
395
-
396
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:4
397
- msgid "Not supported by Server"
398
- msgstr ""
399
-
400
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:5
401
- msgid "Not supported on your server"
402
- msgstr ""
403
-
404
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:8
405
- msgid "This module require to have cUrl library for PHP on server installed. Please contact your hosting provider and ask them to enable cUrl for you, this is Free library."
406
- msgstr ""
407
-
408
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:14
409
- msgid "API URL"
410
- msgstr ""
411
-
412
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:15
413
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:27
414
- #, php-format
415
- msgid "You can find it under your Active Campaign Account -> My Settings -> API, here is <a href=\"%s\" class=\"cfsAcHelpApiKeyLink\">help screenshot</a>"
416
- msgstr ""
417
-
418
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:26
419
- msgid "API Key"
420
- msgstr ""
421
-
422
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:38
423
- msgid "Campaigns for subscribe"
424
- msgstr ""
425
-
426
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:39
427
- msgid "Select Campaigns for subscribe. They are taken from your Active Campaign account."
428
- msgstr ""
429
-
430
- #: ../doc/contact-form-by-supsystic-pro/activecampaign/views/tpl/acAdminFields.php:46
431
- msgid "Choose Lists"
432
- msgstr ""
433
-
434
- #: ../doc/contact-form-by-supsystic-pro/add_fields/controller.php:12
435
- #, php-format
436
- msgid "File %s Uploaded"
437
- msgstr ""
438
-
439
- #: ../doc/contact-form-by-supsystic-pro/add_fields/mod.php:121
440
- msgid "Yes"
441
- msgstr ""
442
-
443
- #: ../doc/contact-form-by-supsystic-pro/add_fields/mod.php:121
444
- msgid "No"
445
- msgstr ""
446
-
447
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:29
448
- #, php-format
449
- msgid "File size is too big, maximum file size for %s is %sMb"
450
- msgstr ""
451
-
452
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:40
453
- #, php-format
454
- msgid "File type is invalid, %s is supported only %s types"
455
- msgstr ""
456
-
457
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:59
458
- msgid "Can not find file in request"
459
- msgstr ""
460
-
461
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:61
462
- msgid "Empty fiels provided"
463
- msgstr ""
464
-
465
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:64
466
- msgid "Missing Form"
467
- msgstr ""
468
-
469
- #: ../doc/contact-form-by-supsystic-pro/add_fields/models/add_fields.php:66
470
- msgid "Missing ID"
471
- msgstr ""
472
-
473
- #: ../doc/contact-form-by-supsystic-pro/arpreach/mod.php:8
474
- msgid "arpReach"
475
- msgstr ""
476
-
477
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:4
478
- msgid "arpReach not supported"
479
- msgstr ""
480
-
481
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:5
482
- msgid "This module is not supported by your server configuration."
483
- msgstr ""
484
-
485
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:8
486
- msgid "arpReach is not supported on your server."
487
- msgstr ""
488
-
489
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:14
490
- msgid "arpReach intake form Action URL"
491
- msgstr ""
492
-
493
- #: ../doc/contact-form-by-supsystic-pro/arpreach/views/tpl/arAdminFields.php:15
494
- msgid "Open your script for intake form, find there form tag with form method='post' action='http://yourdomain.coma/a/a.php/sub/a/xxxxxx', then copy \"action\" attribute - and paste it in text field below."
495
- msgstr ""
496
-
497
- #: ../doc/contact-form-by-supsystic-pro/aweber/mod.php:9
498
- msgid "Aweber"
499
- msgstr ""
500
-
501
- #: ../doc/contact-form-by-supsystic-pro/aweber/models/aweber.php:88
502
- msgid "Can not find your Aweber lists"
503
- msgstr ""
504
-
505
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:14
506
- msgid "Authorize in Aweber Account"
507
- msgstr ""
508
-
509
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:15
510
- msgid "To start integration process - you need to be authorized in Aweber account."
511
- msgstr ""
512
-
513
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:18
514
- msgid "Authorize"
515
- msgstr ""
516
-
517
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:24
518
- msgid "Lists for subscribe"
519
- msgstr ""
520
-
521
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:25
522
- msgid "Select lists for subscribe. They are taken from your Aweber account - so make sure that you entered correct API key before."
523
- msgstr ""
524
-
525
- #: ../doc/contact-form-by-supsystic-pro/aweber/views/tpl/awbAdminFields.php:34
526
- msgid "Enter API key - and your list will appear here"
527
- msgstr ""
528
-
529
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/mod.php:12
530
- msgid "Benchmark"
531
- msgstr ""
532
-
533
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/models/benchmarkemail.php:41
534
- msgid "Please make sure that you created some Lists under your Benchmark account."
535
- msgstr ""
536
-
537
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/models/benchmarkemail.php:45
538
- msgid "Please enter your Benchmark Password"
539
- msgstr ""
540
-
541
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/models/benchmarkemail.php:47
542
- msgid "Please enter your Benchmark Login"
543
- msgstr ""
544
-
545
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:15
546
- msgid "Benchmark Login"
547
- msgstr ""
548
-
549
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:16
550
- msgid "Login for your Benchmark account."
551
- msgstr ""
552
-
553
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:27
554
- msgid "Benchmark Password"
555
- msgstr ""
556
-
557
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:28
558
- msgid "Password for your Benchmark account."
559
- msgstr ""
560
-
561
- #: ../doc/contact-form-by-supsystic-pro/benchmarkemail/views/tpl/beAdminFields.php:40
562
- msgid "Select Campaigns for subscribe. They are taken from your Benchmark account."
563
- msgstr ""
564
-
565
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/mod.php:8
566
- msgid "Campaign Monitor"
567
- msgstr ""
568
-
569
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/models/campaignmonitor.php:16
570
- #, php-format
571
- msgid "You have no lists for now. Go to your <a href=\"%s\" target=\"_blank\">Campaign Monitor Account -> Lists & Subscribers</a> and create list at first, then just reload this page"
572
- msgstr ""
573
-
574
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/models/campaignmonitor.php:186
575
- msgid "Something going wrong while trying to send data to mail list service. Please contact site owner."
576
- msgstr ""
577
-
578
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/models/campaignmonitor.php:196
579
- msgid "Can not detect authorization fo account owner. Contact site owner to resolve this issue."
580
- msgstr ""
581
-
582
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:4
583
- msgid "Campaign Monitor not supported"
584
- msgstr ""
585
-
586
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:8
587
- msgid "Campaign Monitor require at least PHP version 5.3. Please contact your hosting provider and ask them to switch your PHP to version 5.3. or higher."
588
- msgstr ""
589
-
590
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:14
591
- msgid "Campaign Monitor Setup"
592
- msgstr ""
593
-
594
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:15
595
- msgid "You must authorize to use Campaign Monitor features"
596
- msgstr ""
597
-
598
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:18
599
- msgid "Authorize in Campaign Monitor"
600
- msgstr ""
601
-
602
- #: ../doc/contact-form-by-supsystic-pro/campaignmonitor/views/tpl/cmAdminFields.php:25
603
- msgid "Select lists for subscribe. They are taken from your Campaign Monitor account."
604
- msgstr ""
605
-
606
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/mod.php:10
607
- msgid "Conditional Logic"
608
- msgstr ""
609
-
610
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:7
611
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:31
612
- msgid "Field"
613
- msgstr ""
614
-
615
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:8
616
- msgid "User"
617
- msgstr ""
618
-
619
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:11
620
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:27
621
- msgid "Equal"
622
- msgstr ""
623
-
624
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:12
625
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:28
626
- msgid "Like"
627
- msgstr ""
628
-
629
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:13
630
- msgid "More"
631
- msgstr ""
632
-
633
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:14
634
- msgid "Less"
635
- msgstr ""
636
-
637
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:17
638
- msgid "Or"
639
- msgstr ""
640
-
641
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:18
642
- msgid "And"
643
- msgstr ""
644
-
645
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:21
646
- msgid "From"
647
- msgstr ""
648
-
649
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:22
650
- msgid "Language"
651
- msgstr ""
652
-
653
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:23
654
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:153
655
- msgid "URL"
656
- msgstr ""
657
-
658
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:32
659
- msgid "Redirect"
660
- msgstr ""
661
-
662
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:35
663
- msgid "Show"
664
- msgstr ""
665
-
666
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:36
667
- msgid "Hide"
668
- msgstr ""
669
-
670
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:37
671
- msgid "Set Value"
672
- msgstr ""
673
-
674
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:38
675
- msgid "Add Value"
676
- msgstr ""
677
-
678
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:39
679
- msgid "Substruct Value"
680
- msgstr ""
681
-
682
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:40
683
- msgid "Add Currency"
684
- msgstr ""
685
-
686
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/conditional_logic.php:41
687
- msgid "Substruct Currency"
688
- msgstr ""
689
-
690
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:6
691
- msgid "Add New Conditional Logic"
692
- msgstr ""
693
-
694
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:12
695
- msgid "Show / Hide Settings"
696
- msgstr ""
697
-
698
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:28
699
- msgid "Your conditions"
700
- msgstr ""
701
-
702
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:29
703
- msgid "Conditions"
704
- msgstr ""
705
-
706
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:32
707
- msgid "Add Condition"
708
- msgstr ""
709
-
710
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:40
711
- msgid "Your actions"
712
- msgstr ""
713
-
714
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:41
715
- msgid "Actions"
716
- msgstr ""
717
-
718
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:44
719
- msgid "Add Action"
720
- msgstr ""
721
-
722
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:88
723
- msgid "Select Country"
724
- msgstr ""
725
-
726
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:97
727
- msgid "Select Language"
728
- msgstr ""
729
-
730
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:112
731
- msgid "Remove Condition"
732
- msgstr ""
733
-
734
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:134
735
- msgid "Select Field"
736
- msgstr ""
737
-
738
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:151
739
- msgid "to"
740
- msgstr ""
741
-
742
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:156
743
- msgid "Redirect after form will be submitted"
744
- msgstr ""
745
-
746
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:157
747
- msgid "After submit"
748
- msgstr ""
749
-
750
- #: ../doc/contact-form-by-supsystic-pro/conditional_logic/views/tpl/clAdminTab.php:164
751
- msgid "Remove Action"
752
- msgstr ""
753
-
754
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/mod.php:11
755
- msgid "Constant Contact"
756
- msgstr ""
757
-
758
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/models/constantcontact.php:39
759
- msgid "You are not logged-in"
760
- msgstr ""
761
-
762
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/models/constantcontact.php:41
763
- msgid "Can not get cc obj"
764
- msgstr ""
765
-
766
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:4
767
- msgid "Constant Contact not supported"
768
- msgstr ""
769
-
770
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:8
771
- msgid "Constant Contact require at least PHP version 5.3. Please contact your hosting provider and ask them to switch your PHP to version 5.3. or higher."
772
- msgstr ""
773
-
774
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:14
775
- msgid "Constant Contact Setup"
776
- msgstr ""
777
-
778
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:15
779
- msgid "You must authorize to use Constant Contact features"
780
- msgstr ""
781
-
782
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:18
783
- msgid "Authorize in Constant Contact"
784
- msgstr ""
785
-
786
- #: ../doc/contact-form-by-supsystic-pro/constantcontact/views/tpl/ccAdminFields.php:25
787
- msgid "Select lists for subscribe. They are taken from your Constant Contact account."
788
- msgstr ""
789
-
790
- #: ../doc/contact-form-by-supsystic-pro/convertkit/mod.php:11
791
- msgid "ConvertKit"
792
- msgstr ""
793
-
794
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:7
795
- msgid "Please enter your API Key"
796
- msgstr ""
797
-
798
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:19
799
- msgid "You have no forms. Please create form at first under your ConvertKit account"
800
- msgstr ""
801
-
802
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:36
803
- msgid "There was a problem with sending request to our authentication server. Please try later."
804
- msgstr ""
805
-
806
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:71
807
- msgid "Some error occured during subscription. Please make sure that you entered all information correct."
808
- msgstr ""
809
-
810
- #: ../doc/contact-form-by-supsystic-pro/convertkit/models/convertkit.php:78
811
- msgid "Please make sure that you entered your API Key and selected forms in admin area"
812
- msgstr ""
813
-
814
- #: ../doc/contact-form-by-supsystic-pro/convertkit/views/tpl/ckAdminFields.php:15
815
- msgid "You can find your API Key in the ConvertKit Account page."
816
- msgstr ""
817
-
818
- #: ../doc/contact-form-by-supsystic-pro/convertkit/views/tpl/ckAdminFields.php:25
819
- msgid "Forms to Subscribe"
820
- msgstr ""
821
-
822
- #: ../doc/contact-form-by-supsystic-pro/convertkit/views/tpl/ckAdminFields.php:26
823
- msgid "Select Forms for subscribe. They are taken from your ConvertKit account."
824
- msgstr ""
825
-
826
- #: ../doc/contact-form-by-supsystic-pro/convertkit/views/tpl/ckAdminFields.php:32
827
- msgid "Choose Forms"
828
- msgstr ""
829
-
830
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/mod.php:8
831
- msgid "FeedBlitz"
832
- msgstr ""
833
-
834
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/models/feedblitz.php:11
835
- msgid "You have no lists. Login to your FeedBlitz account and create your first list before start using this functionality."
836
- msgstr ""
837
-
838
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/models/feedblitz.php:61
839
- msgid "Some error occured during connection to the server"
840
- msgstr ""
841
-
842
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:4
843
- msgid "FeedBlitz not supported"
844
- msgstr ""
845
-
846
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:8
847
- msgid "FeedBlitz is not supported on your server"
848
- msgstr ""
849
-
850
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:14
851
- msgid "FeedBlitz API Key"
852
- msgstr ""
853
-
854
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:15
855
- msgid "Your FeedBlitz API Key"
856
- msgstr ""
857
-
858
- #: ../doc/contact-form-by-supsystic-pro/feedblitz/views/tpl/feedbAdminFields.php:26
859
- msgid "Select lists for subscribe. They are taken from your FeedBlitz account."
860
- msgstr ""
861
-
862
- #: ../doc/contact-form-by-supsystic-pro/get_response/mod.php:11
863
- msgid "GetResponse"
864
- msgstr ""
865
-
866
- #: ../doc/contact-form-by-supsystic-pro/get_response/views/tpl/grAdminFields.php:15
867
- #, php-format
868
- msgid "You can find it under your GetResponse Account -> GetResponse API, here is <a href=\"%s\" class=\"cfsGrHelpApiKeyLink\" target=\"_blank\">help screenshot</a>"
869
- msgstr ""
870
-
871
- #: ../doc/contact-form-by-supsystic-pro/get_response/views/tpl/grAdminFields.php:26
872
- msgid "Select Campaigns for subscribe. They are taken from your GetResponse account."
873
- msgstr ""
874
-
875
- #: ../doc/contact-form-by-supsystic-pro/get_response/views/tpl/grAdminFields.php:41
876
- msgid "Cycle Day"
877
- msgstr ""
878
-
879
- #: ../doc/contact-form-by-supsystic-pro/get_response/views/tpl/grAdminFields.php:42
880
- msgid "Insert contact on a given day at the autoresponder cycle. Value of 0 means the beginning of the cycle. Lack of this param means that a contact will not be inserted into cycle."
881
- msgstr ""
882
-
883
- #: ../doc/contact-form-by-supsystic-pro/icontact/mod.php:11
884
- msgid "iContact"
885
- msgstr ""
886
-
887
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:20
888
- msgid "Please enter your Application ID"
889
- msgstr ""
890
-
891
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:23
892
- msgid "Please enter your API Username"
893
- msgstr ""
894
-
895
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:26
896
- msgid "Please enter your API Password"
897
- msgstr ""
898
-
899
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:43
900
- msgid "You have no lists in your iContact account for now."
901
- msgstr ""
902
-
903
- #: ../doc/contact-form-by-supsystic-pro/icontact/models/icontact.php:108
904
- msgid "Can't add contact"
905
- msgstr ""
906
-
907
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:14
908
- msgid "Application ID"
909
- msgstr ""
910
-
911
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:15
912
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:26
913
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:37
914
- #, php-format
915
- msgid "You can create it <a href=\"%s\" target=\"_blank\">here</a>. More info can be found <a href=\"%s\" target=\"_blank\">here</a>"
916
- msgstr ""
917
-
918
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:25
919
- msgid "API Username"
920
- msgstr ""
921
-
922
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:36
923
- msgid "API Password"
924
- msgstr ""
925
-
926
- #: ../doc/contact-form-by-supsystic-pro/icontact/views/tpl/icAdminFields.php:48
927
- msgid "Select Lists for subscribe. They are taken from your iContact account."
928
- msgstr ""
929
-
930
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/mod.php:13
931
- msgid "InfusionSoft"
932
- msgstr ""
933
-
934
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/models/infusionsoft.php:88
935
- msgid "Administrator of this site need to re-autentificate in InfusionSoft system from admin area"
936
- msgstr ""
937
-
938
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:8
939
- msgid "This module require to have cUrl library for PHP on server installed and PHP version to be at least 5.4. Please contact your hosting provider and ask them to enable cUrl for you, this is Free library, and check your PHP version."
940
- msgstr ""
941
-
942
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:14
943
- msgid "InfusionSoft Setup"
944
- msgstr ""
945
-
946
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:15
947
- msgid "You must authorize to use InfusionSoft features"
948
- msgstr ""
949
-
950
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:18
951
- msgid "Authorize in InfusionSoft"
952
- msgstr ""
953
-
954
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:36
955
- msgid "Tags for subscribe"
956
- msgstr ""
957
-
958
- #: ../doc/contact-form-by-supsystic-pro/infusionsoft/views/tpl/isAdminFields.php:37
959
- msgid "Enter Tags IDs for subscribe. You can get it from your InfusionSoft account -> Settings -> Tags (Id column). You can enter several tags ids here, separate them by comma sign - \",\"."
960
- msgstr ""
961
-
962
- #: ../doc/contact-form-by-supsystic-pro/jetpack/mod.php:8
963
- msgid "Jetpack"
964
- msgstr ""
965
-
966
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:46
967
- msgid "Not a valid email address"
968
- msgstr ""
969
-
970
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:47
971
- msgid "Not a valid post ID"
972
- msgstr ""
973
-
974
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:48
975
- msgid "Unknown post"
976
- msgstr ""
977
-
978
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:49
979
- msgid "Strange error. Jetpack servers at WordPress.com could subscribe the email."
980
- msgstr ""
981
-
982
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:50
983
- msgid "Site owner has disabled subscriptions."
984
- msgstr ""
985
-
986
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:51
987
- msgid "Already subscribed."
988
- msgstr ""
989
-
990
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:52
991
- msgid "Strange error. Jetpack servers at WordPress.com returned something malformed."
992
- msgstr ""
993
-
994
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:53
995
- msgid "Strange error. Jetpack servers at WordPress.com returned something I didn't understand."
996
- msgstr ""
997
-
998
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:56
999
- msgid "Something is going wrong"
1000
- msgstr ""
1001
-
1002
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:62
1003
- msgid "Empty response from Jetpack"
1004
- msgstr ""
1005
-
1006
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:64
1007
- msgid "Subscriptions module is not activated in Jetpack plugin settings. Activate it before start using this subscribe method."
1008
- msgstr ""
1009
-
1010
- #: ../doc/contact-form-by-supsystic-pro/jetpack/models/jetpack.php:66
1011
- msgid "Can't find Jetpack plugin on this server"
1012
- msgstr ""
1013
-
1014
- #: ../doc/contact-form-by-supsystic-pro/jetpack/views/tpl/jpkAdminFields.php:8
1015
- #, php-format
1016
- msgid "To use this subscribe engine - you must have <a target=\"_blank\" href=\"%s\">Jetpack plugin</a> installed on your site"
1017
- msgstr ""
1018
-
1019
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:30
1020
- #, php-format
1021
- msgid "Your license has expired. Once you extend your license - you will be able to Update PRO version. To extend PRO version license - follow <a href=\"%s\" target=\"_blank\">this link</a>, then - go to <a href=\"%s\">License</a> tab anc click on \"Re-activate\" button to re-activate your PRO version."
1022
- msgstr ""
1023
-
1024
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:38
1025
- #, php-format
1026
- msgid "Your license for PRO version of %s plugin has expired. You can <a href=\"%s\" target=\"_blank\">click here</a> to extend your license, then - go to <a href=\"%s\">License</a> tab and click on \"Re-activate\" button to re-activate your PRO version."
1027
- msgstr ""
1028
-
1029
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:51
1030
- msgid "License"
1031
- msgstr ""
1032
-
1033
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:74
1034
- msgid "Activate License"
1035
- msgstr ""
1036
-
1037
- #: ../doc/contact-form-by-supsystic-pro/license/mod.php:76
1038
- msgid "Renew License"
1039
- msgstr ""
1040
-
1041
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:54
1042
- msgid "Please enter your License Key"
1043
- msgstr ""
1044
-
1045
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:56
1046
- msgid "Please enter your Email address"
1047
- msgstr ""
1048
-
1049
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:154
1050
- #, php-format
1051
- msgid "License for plugin %s will expire today."
1052
- msgstr ""
1053
-
1054
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:156
1055
- #, php-format
1056
- msgid "License for plugin %s will expire tomorrow."
1057
- msgstr ""
1058
-
1059
- #: ../doc/contact-form-by-supsystic-pro/license/models/license.php:158
1060
- #, php-format
1061
- msgid "License for plugin %s will expire in %d days."
1062
- msgstr ""
1063
-
1064
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:4
1065
- #, php-format
1066
- msgid "Congratulations! PRO version of %s plugin has been activated and is working fine!"
1067
- msgstr ""
1068
-
1069
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:6
1070
- #, php-format
1071
- msgid "Your license for PRO version of %s plugin has expired. You can <a href=\"%s\" target=\"_blank\">click here</a> to extend your license, then - click on \"Re-activate\" button to re-activate your PRO version."
1072
- msgstr ""
1073
-
1074
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:8
1075
- #, php-format
1076
- msgid "Congratulations! You have successfully installed PRO version of %s plugin. Final step to finish Your PRO version setup - is to enter your Email and License Key on this page. This will activate Your copy of software on this site."
1077
- msgstr ""
1078
-
1079
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:20
1080
- msgid "Email"
1081
- msgstr ""
1082
-
1083
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:23
1084
- #, php-format
1085
- msgid "Your email address, used on checkout procedure on <a href=\"%s\" target=\"_blank\">%s</a>"
1086
- msgstr ""
1087
-
1088
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:31
1089
- msgid "License Key"
1090
- msgstr ""
1091
-
1092
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:34
1093
- #, php-format
1094
- msgid "Your License Key from your account on <a href=\"%s\" target=\"_blank\">%s</a>"
1095
- msgstr ""
1096
-
1097
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:47
1098
- msgid "Re-activate"
1099
- msgstr ""
1100
-
1101
- #: ../doc/contact-form-by-supsystic-pro/license/views/tpl/licenseAdmin.php:49
1102
- msgid "Activate"
1103
- msgstr ""
1104
-
1105
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/mod.php:8
1106
- msgid "MailChimp"
1107
- msgstr ""
1108
-
1109
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:96
1110
- msgid "Something going wrong while trying to send data to MailChimp. Please contact site owner."
1111
- msgstr ""
1112
-
1113
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:115
1114
- msgid "No API key entered in admin area - contact site owner to resolve this issue."
1115
- msgstr ""
1116
-
1117
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:178
1118
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:210
1119
- msgid "There was some problem while trying to get your lists. Make sure that your API key is correct."
1120
- msgstr ""
1121
-
1122
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:182
1123
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:218
1124
- msgid "Empty API key"
1125
- msgstr ""
1126
-
1127
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/models/mailchimp.php:216
1128
- msgid "Select some Lists before"
1129
- msgstr ""
1130
-
1131
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:14
1132
- msgid "MailChimp API key"
1133
- msgstr ""
1134
-
1135
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:15
1136
- #, php-format
1137
- msgid "To find your MailChimp API Key login to your mailchimp account at <a href=\"%s\" target=\"_blank\">%s</a> then from the left main menu, click on your Username, then select \"Account\" in the flyout menu. From the account page select \"Extras\", \"API Keys\". Your API Key will be listed in the table labeled \"Your API Keys\". Copy / Paste your API key into \"MailChimp API key\" field here. For more detailed instruction - check article <a href=\"%s\" target=\"_blank\">here</a>."
1138
- msgstr ""
1139
-
1140
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:26
1141
- msgid "Select lists for subscribe. They are taken from your MailChimp account - so make sure that you entered correct API key before."
1142
- msgstr ""
1143
-
1144
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:41
1145
- msgid "Disable double opt-in"
1146
- msgstr ""
1147
-
1148
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:42
1149
- msgid "Disable double opt-in confirmation message sending - will create subscriber directly after he will sign-up to your form."
1150
- msgstr ""
1151
-
1152
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:51
1153
- msgid "Send MailChimp Welcome Email"
1154
- msgstr ""
1155
-
1156
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:52
1157
- msgid "If double opt-in is disable - there will be no Welcome email from MailChimp by default. But if you still need it - just enable this opton, and Welcome email from MailChimp will be sent to your user even in this case."
1158
- msgstr ""
1159
-
1160
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:58
1161
- msgid "Group for subscribe"
1162
- msgstr ""
1163
-
1164
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:59
1165
- msgid "In MailChimp there are possibility to select groups for your subscribers. This is not mandatory, but some times is really helpful. So, we added this possibility for you in our plugin too - hope you will like it!"
1166
- msgstr ""
1167
-
1168
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:65
1169
- msgid "Choose Groups"
1170
- msgstr ""
1171
-
1172
- #: ../doc/contact-form-by-supsystic-pro/mailchimp/views/tpl/mcpAdminFields.php:68
1173
- msgid "Enter API key, select List - and your groups will appear here"
1174
- msgstr ""
1175
-
1176
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/mod.php:8
1177
- msgid "MailPoet"
1178
- msgstr ""
1179
-
1180
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/models/mailpoet.php:47
1181
- msgid "Some error occured during subscription process"
1182
- msgstr ""
1183
-
1184
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/models/mailpoet.php:50
1185
- msgid "Can't find MailPoet on this server"
1186
- msgstr ""
1187
-
1188
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/views/tpl/mptAdminFields.php:8
1189
- #, php-format
1190
- msgid "To use this subscribe engine - you must have <a target=\"_blank\" href=\"%s\">MailPoet plugin</a> installed on your site"
1191
- msgstr ""
1192
-
1193
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/views/tpl/mptAdminFields.php:14
1194
- msgid "MailPoet Subscribe Lists"
1195
- msgstr ""
1196
-
1197
- #: ../doc/contact-form-by-supsystic-pro/mailpoet/views/tpl/mptAdminFields.php:22
1198
- #, php-format
1199
- msgid "You have no subscribe lists, <a target=\"_blank\" href=\"%s\">create lists</a> at first, then - select them here."
1200
- msgstr ""
1201
-
1202
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/mod.php:9
1203
- msgid "Mailrelay"
1204
- msgstr ""
1205
-
1206
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/models/mailrelay.php:15
1207
- msgid "You have no lists. Login to your Mailrelay account and create your first list before start using this functionality."
1208
- msgstr ""
1209
-
1210
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/models/mailrelay.php:166
1211
- msgid "Failed to create subscriber."
1212
- msgstr ""
1213
-
1214
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/models/mailrelay.php:172
1215
- #: ../doc/contact-form-by-supsystic-pro/myemma/models/myemma.php:79
1216
- msgid "Can not detect Host and API key. Contact site owner to resolve this issue."
1217
- msgstr ""
1218
-
1219
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:4
1220
- msgid "Mailrelay not supported"
1221
- msgstr ""
1222
-
1223
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:8
1224
- msgid "Mailrelay is not supported on your server"
1225
- msgstr ""
1226
-
1227
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:14
1228
- msgid "Mailrelay Host"
1229
- msgstr ""
1230
-
1231
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:15
1232
- msgid "Please enter the host that you have in your Mairelay welcome email. Please enter it without the initial http:// (for example demo.ip-zone.com)"
1233
- msgstr ""
1234
-
1235
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:34
1236
- msgid "Mailrelay API Key"
1237
- msgstr ""
1238
-
1239
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:35
1240
- msgid "Please enter your API key. You can generate your API key on your Mailrelay panel, Configuration -> API access -> Generate API key"
1241
- msgstr ""
1242
-
1243
- #: ../doc/contact-form-by-supsystic-pro/mailrelay/views/tpl/mrAdminFields.php:47
1244
- msgid "To create new groups in Mailrelay, you must login into the control panel and click into the Mail Relay > Subscribers groups. Once there you can add a new group for your Wordpress users, or edit an existing one"
1245
- msgstr ""
1246
-
1247
- #: ../doc/contact-form-by-supsystic-pro/myemma/mod.php:8
1248
- msgid "Emma"
1249
- msgstr ""
1250
-
1251
- #: ../doc/contact-form-by-supsystic-pro/myemma/models/myemma.php:18
1252
- msgid "Please enter your Account ID"
1253
- msgstr ""
1254
-
1255
- #: ../doc/contact-form-by-supsystic-pro/myemma/models/myemma.php:21
1256
- msgid "Please enter your Public API Key"
1257
- msgstr ""
1258
-
1259
- #: ../doc/contact-form-by-supsystic-pro/myemma/models/myemma.php:24
1260
- msgid "Please enter your Private API Key"
1261
- msgstr ""
1262
-
1263
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:4
1264
- msgid "Emma not supported"
1265
- msgstr ""
1266
-
1267
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:8
1268
- msgid "Emma is not supported on your server, please nstall cUrl PHP Library on your server first - it's free."
1269
- msgstr ""
1270
-
1271
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:14
1272
- msgid "Emma Account ID"
1273
- msgstr ""
1274
-
1275
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:15
1276
- msgid "Your account ID"
1277
- msgstr ""
1278
-
1279
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:25
1280
- msgid "Emma Public API key"
1281
- msgstr ""
1282
-
1283
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:26
1284
- msgid "Your Public API key"
1285
- msgstr ""
1286
-
1287
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:36
1288
- msgid "Emma Private API key"
1289
- msgstr ""
1290
-
1291
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:37
1292
- msgid "Your Private API key"
1293
- msgstr ""
1294
-
1295
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:47
1296
- msgid "Groups for subscribe"
1297
- msgstr ""
1298
-
1299
- #: ../doc/contact-form-by-supsystic-pro/myemma/views/tpl/memAdminFields.php:48
1300
- msgid "To create new groups in Emma, you must login into the control panel and click into the Emma > Subscribers groups. Once there you can add a new group for your Wordpress users, or edit an existing one"
1301
- msgstr ""
1302
-
1303
- #: ../doc/contact-form-by-supsystic-pro/salesforce/mod.php:11
1304
- msgid "SalesForce - Web-to-Lead"
1305
- msgstr ""
1306
-
1307
- #: ../doc/contact-form-by-supsystic-pro/salesforce/views/tpl/sfAdminFields.php:14
1308
- msgid "Form ID"
1309
- msgstr ""
1310
-
1311
- #: ../doc/contact-form-by-supsystic-pro/salesforce/views/tpl/sfAdminFields.php:15
1312
- #, php-format
1313
- msgid "Generate your lead form in your Salesforce account (more about generating form you can read <a target=\"_blank\" href=\"%s\">here</a>), then copy \"oid\" value from it (<a target=\"_blank\" href=\"%s\">like this</a>) and insert it into this paramter"
1314
- msgstr ""
1315
-
1316
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/mod.php:9
1317
- msgid "SendGrid"
1318
- msgstr ""
1319
-
1320
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/models/new_model.php:19
1321
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/models/sendgrid.php:15
1322
- msgid "You have no lists. Login to your SendGrid account and create your first list before start using this functionality."
1323
- msgstr ""
1324
-
1325
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:4
1326
- msgid "SendGrid not supported"
1327
- msgstr ""
1328
-
1329
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:8
1330
- msgid "SendGrid is not supported on your server"
1331
- msgstr ""
1332
-
1333
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:14
1334
- msgid "SendGrid Username"
1335
- msgstr ""
1336
-
1337
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:15
1338
- msgid "Your SendGrid name"
1339
- msgstr ""
1340
-
1341
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:25
1342
- msgid "SendGrid Password"
1343
- msgstr ""
1344
-
1345
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:26
1346
- msgid "Your SendGrid password"
1347
- msgstr ""
1348
-
1349
- #: ../doc/contact-form-by-supsystic-pro/sendgrid/views/tpl/sgAdminFields.php:37
1350
- msgid "Select lists for subscribe. They are taken from your SendGrid account."
1351
- msgstr ""
1352
-
1353
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/mod.php:8
1354
- msgid "SG Autorepondeur"
1355
- msgstr ""
1356
-
1357
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:61
1358
- msgid "Required fields are missing"
1359
- msgstr ""
1360
-
1361
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:62
1362
- msgid "The email is already in the list"
1363
- msgstr ""
1364
-
1365
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:63
1366
- msgid "Registration was refused-blacklisted"
1367
- msgstr ""
1368
-
1369
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:64
1370
- msgid "The country has been blocked"
1371
- msgstr ""
1372
-
1373
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:65
1374
- msgid "Too many entries with the same IP address"
1375
- msgstr ""
1376
-
1377
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:66
1378
- msgid "Ok Register following a behavioral segmentation"
1379
- msgstr ""
1380
-
1381
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:69
1382
- msgid "The email is not the right format"
1383
- msgstr ""
1384
-
1385
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/models/sgautorepondeur.php:70
1386
- msgid "Error on one of the variables - User ID or List ID or Activation Code"
1387
- msgstr ""
1388
-
1389
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:4
1390
- msgid "SG Autorepondeur not supported"
1391
- msgstr ""
1392
-
1393
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:8
1394
- msgid "SG Autorepondeur is not supported on your server"
1395
- msgstr ""
1396
-
1397
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:14
1398
- msgid "SG Autorepondeur User ID"
1399
- msgstr ""
1400
-
1401
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:15
1402
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:26
1403
- msgid "This info available on your home page in SG Autorepondeur"
1404
- msgstr ""
1405
-
1406
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:25
1407
- msgid "SG Autorepondeur List ID"
1408
- msgstr ""
1409
-
1410
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:36
1411
- msgid "SG Client Activation Code"
1412
- msgstr ""
1413
-
1414
- #: ../doc/contact-form-by-supsystic-pro/sgautorepondeur/views/tpl/sgaAdminFields.php:37
1415
- msgid "This info available on the member's area in the top menu \"my account\" (at the bottom of the page)"
1416
- msgstr ""
1417
-
1418
- #: ../doc/contact-form-by-supsystic-pro/subscribe/mod.php:10
1419
- msgid "Subscribe"
1420
- msgstr ""
1421
-
1422
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:47
1423
- msgid "Something goes wrong"
1424
- msgstr ""
1425
-
1426
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:99
1427
- msgid "New User notification"
1428
- msgstr ""
1429
-
1430
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:99
1431
- msgid "New Subscriber notification"
1432
- msgstr ""
1433
-
1434
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:102
1435
- #, php-format
1436
- msgid "New Subscriber on %s"
1437
- msgstr ""
1438
-
1439
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:109
1440
- msgid "You have new user registration on your site <a href=\"[siteurl]\">[sitename]</a>, here us user information:<br />[subscriber_data]"
1441
- msgstr ""
1442
-
1443
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:110
1444
- msgid "You have new subscriber on your site <a href=\"[siteurl]\">[sitename]</a>, here is subscriber information:<br />[subscriber_data]"
1445
- msgstr ""
1446
-
1447
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:171
1448
- msgid "Can't detect your IP, please don't spam"
1449
- msgstr ""
1450
-
1451
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:203
1452
- msgid "You just subscribed from this IP"
1453
- msgstr ""
1454
-
1455
- #: ../doc/contact-form-by-supsystic-pro/subscribe/models/subscribe.php:218
1456
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:93
1457
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:104
1458
- msgid "Empty or invalid email"
1459
- msgstr ""
1460
-
1461
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:7
1462
- msgid "Enable Subscription"
1463
- msgstr ""
1464
-
1465
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:14
1466
- msgid "Subscribe to"
1467
- msgstr ""
1468
-
1469
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:15
1470
- msgid "Destination for your Subscribers."
1471
- msgstr ""
1472
-
1473
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:30
1474
- msgid "Activate License or update PRO version plugin"
1475
- msgstr ""
1476
-
1477
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:31
1478
- msgid "Apparently - you have installed PRO version, but did not activate it license - then please activate it. Or you have old version of plugin - then you need go to Plugins page and Update PRO version plugin, after this go to License tab and re-activate license (just click one more time on \"Activate\" button)."
1479
- msgstr ""
1480
-
1481
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:54
1482
- msgid "Create WP user"
1483
- msgstr ""
1484
-
1485
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:55
1486
- msgid "Once user will subscribe to selected Subscription service - it will create WordPress Subscriber too. PLease be carefull using this option: WordPressusers will be created right after you submit your Subscribe form without confirmation."
1487
- msgstr ""
1488
-
1489
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:66
1490
- msgid "\"Confirmation sent\" message"
1491
- msgstr ""
1492
-
1493
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:67
1494
- msgid "This is the message that the user will see after subscription, when letter with confirmation link was sent."
1495
- msgstr ""
1496
-
1497
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:71
1498
- msgid "Confirmation link was sent to your email address. Check your email!"
1499
- msgstr ""
1500
-
1501
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:77
1502
- msgid "Subscribe success message"
1503
- msgstr ""
1504
-
1505
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:78
1506
- msgid "Right after subscriber will be created and confirmed - this message will be shown."
1507
- msgstr ""
1508
-
1509
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:82
1510
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:64
1511
- msgid "Thank you for subscribing!"
1512
- msgstr ""
1513
-
1514
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:88
1515
- msgid "Email error message"
1516
- msgstr ""
1517
-
1518
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:89
1519
- msgid "If email that was entered by user is invalid, user will see this message"
1520
- msgstr ""
1521
-
1522
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:99
1523
- msgid "Email exists error message"
1524
- msgstr ""
1525
-
1526
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:100
1527
- msgid "If email that was entered by user already exists - user will see this message. But be careful: this can be used by hackers - to detect existing email in your database, so it's better for you to leave this message same as error message about invalid email above."
1528
- msgstr ""
1529
-
1530
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:110
1531
- msgid "Redirect after subscription URL"
1532
- msgstr ""
1533
-
1534
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:111
1535
- msgid "You can enable redirection after subscription, just enter here URL that you want to redirect to after subscribe - and user will be redirected there. If you don't need this feature - just leave this field empty."
1536
- msgstr ""
1537
-
1538
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:121
1539
- msgid "Open in a new window (tab)"
1540
- msgstr ""
1541
-
1542
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:127
1543
- msgid "Confirmation email subject"
1544
- msgstr ""
1545
-
1546
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:128
1547
- msgid "Email with confirmation link subject"
1548
- msgstr ""
1549
-
1550
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:134
1551
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/models/wp_subscribe.php:182
1552
- msgid "Confirm subscription on [sitename]"
1553
- msgstr ""
1554
-
1555
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:140
1556
- msgid "Confirmation email From field"
1557
- msgstr ""
1558
-
1559
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:141
1560
- msgid "Email with confirmation link From field"
1561
- msgstr ""
1562
-
1563
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:153
1564
- msgid "Confirmation email text"
1565
- msgstr ""
1566
-
1567
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:154
1568
- msgid "Email with confirmation link content"
1569
- msgstr ""
1570
-
1571
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:161
1572
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:210
1573
- #, php-format
1574
- msgid "You can use next variables here: %s, and any other subscribe field value - just place here [user_FIELD_NAME], where FIELD_NAME - is name attribute of required field."
1575
- msgstr ""
1576
-
1577
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:167
1578
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/models/wp_subscribe.php:185
1579
- msgid "You subscribed on site <a href=\"[siteurl]\">[sitename]</a>. Follow <a href=\"[confirm_link]\">this link</a> to complete your subscription. If you did not subscribe here - just ignore this message."
1580
- msgstr ""
1581
-
1582
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:170
1583
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:219
1584
- msgid "Add Attach"
1585
- msgstr ""
1586
-
1587
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:176
1588
- msgid "New Subscriber email subject"
1589
- msgstr ""
1590
-
1591
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:177
1592
- msgid "Email to New Subscriber subject"
1593
- msgstr ""
1594
-
1595
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:183
1596
- msgid "[sitename] Your username and password"
1597
- msgstr ""
1598
-
1599
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:189
1600
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:190
1601
- msgid "New Subscriber email From field"
1602
- msgstr ""
1603
-
1604
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:202
1605
- msgid "New Subscriber email text"
1606
- msgstr ""
1607
-
1608
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:203
1609
- msgid "Email to New Subscriber content"
1610
- msgstr ""
1611
-
1612
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:216
1613
- msgid "Username: [user_login]<br />Password: [password]<br />[login_url]"
1614
- msgstr ""
1615
-
1616
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:225
1617
- msgid "Redirect if email already exists"
1618
- msgstr ""
1619
-
1620
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:226
1621
- msgid "Link to redirect to if user subscribes - but this email already exists"
1622
- msgstr ""
1623
-
1624
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:240
1625
- msgid "Select File"
1626
- msgstr ""
1627
-
1628
- #: ../doc/contact-form-by-supsystic-pro/subscribe/views/tpl/subFormEditTab.php:245
1629
- msgid "Remove"
1630
- msgstr ""
1631
-
1632
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/mod.php:16
1633
- msgid "Vertical Response"
1634
- msgstr ""
1635
-
1636
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/models/verticalresponse.php:104
1637
- msgid "Can not access to Vertical Responce server"
1638
- msgstr ""
1639
-
1640
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/models/verticalresponse.php:106
1641
- msgid "Empty code returned"
1642
- msgstr ""
1643
-
1644
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/views/tpl/vrAdminFields.php:4
1645
- msgid "Vertical Response Setup"
1646
- msgstr ""
1647
-
1648
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/views/tpl/vrAdminFields.php:5
1649
- msgid "You must authorize to use Vertical Response features"
1650
- msgstr ""
1651
-
1652
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/views/tpl/vrAdminFields.php:8
1653
- msgid "Authorize in Vertical Response"
1654
- msgstr ""
1655
-
1656
- #: ../doc/contact-form-by-supsystic-pro/verticalresponse/views/tpl/vrAdminFields.php:15
1657
- msgid "Select lists for subscribe. They are taken from your Vertical Response account."
1658
- msgstr ""
1659
-
1660
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:12
1661
- #, php-format
1662
- msgid "Registered from %s"
1663
- msgstr ""
1664
-
1665
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:13
1666
- #, php-format
1667
- msgid "Subscribed to %s"
1668
- msgstr ""
1669
-
1670
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:16
1671
- msgid "Username"
1672
- msgstr ""
1673
-
1674
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:28
1675
- msgid "Activated"
1676
- msgstr ""
1677
-
1678
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:30
1679
- msgid "Date Created"
1680
- msgstr ""
1681
-
1682
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:65
1683
- msgid "There are no members for now"
1684
- msgstr ""
1685
-
1686
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/controller.php:66
1687
- msgid "There are no subscribers for now"
1688
- msgstr ""
1689
-
1690
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/mod.php:8
1691
- msgid "WordPress"
1692
- msgstr ""
1693
-
1694
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/models/wp_subscribe.php:90
1695
- msgid "Can't registrate for now. Please try again later."
1696
- msgstr ""
1697
-
1698
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/models/wp_subscribe.php:90
1699
- msgid "Can't subscribe for now. Please try again later."
1700
- msgstr ""
1701
-
1702
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/models/wp_subscribe.php:237
1703
- msgid "Send me some info, pls"
1704
- msgstr ""
1705
-
1706
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:10
1707
- msgid "Registration Confirmation"
1708
- msgstr ""
1709
-
1710
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:11
1711
- msgid "Subscribe Confirmation"
1712
- msgstr ""
1713
-
1714
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:53
1715
- msgid "Some errors occured while trying to registrate"
1716
- msgstr ""
1717
-
1718
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:54
1719
- msgid "Some errors occured while trying to subscribe"
1720
- msgstr ""
1721
-
1722
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:63
1723
- msgid "Thank you for registration!"
1724
- msgstr ""
1725
-
1726
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:75
1727
- msgid "Registration confirmed"
1728
- msgstr ""
1729
-
1730
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:76
1731
- msgid "Subscription confirmed"
1732
- msgstr ""
1733
-
1734
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/subSuccessPage.php:81
1735
- #, php-format
1736
- msgid "<a href=\"%s\">Back to site</a> in <i id=\"cfsConfirmBackCounter\">%d</i> seconds"
1737
- msgstr ""
1738
-
1739
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:14
1740
- msgid "Create user with the chosen role after subscribing"
1741
- msgstr ""
1742
-
1743
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:15
1744
- msgid "Use this only if you really need it. Remember! After you change this option - your new subscriber will have more privileges than usual subscribers, so be careful with this option!"
1745
- msgstr ""
1746
-
1747
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:25
1748
- msgid "Create Subscriber without confirmation"
1749
- msgstr ""
1750
-
1751
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:26
1752
- msgid "Usually, after user subscribes, we send an email with the confirmation link - to confirm the email address, and only after user clicks on the link from this email - we will create a new subscriber. This option allows you to create a subscriber - right after subscription, without the email confirmation process."
1753
- msgstr ""
1754
-
1755
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:35
1756
- msgid "Export Subscribers"
1757
- msgstr ""
1758
-
1759
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:36
1760
- msgid "Export all subscribers, who subscribed using WordPress \"Subscribe to\" method, as CSV file."
1761
- msgstr ""
1762
-
1763
- #: ../doc/contact-form-by-supsystic-pro/wp_subscribe/views/tpl/wpsubAdminFields.php:39
1764
- msgid "Get CSV List"
1765
- msgstr ""
1766
-
1767
- #: ../modules/adminmenu/mod.php:13
1768
- #, php-format
1769
- msgid "Cool WordPress plugins from supsystic.com developers. I tried %s - and this was what I need! #supsystic.com"
1770
- msgstr ""
1771
-
1772
- #: ../modules/adminmenu/mod.php:14
1773
- msgid "Settings"
1774
- msgstr ""
1775
-
1776
- #: ../modules/adminmenu/mod.php:15
1777
- msgid "More plugins for your WordPress site here!"
1778
- msgstr ""
1779
-
1780
- #: ../modules/adminmenu/mod.php:16
1781
- #: ../modules/adminmenu/mod.php:17
1782
- #: ../modules/adminmenu/mod.php:18
1783
- msgid "Spread the word!"
1784
- msgstr ""
1785
-
1786
- #: ../modules/forms/controller.php:270
1787
- msgid "Done, redirecting to new Form..."
1788
- msgstr ""
1789
-
1790
- #: ../modules/forms/controller.php:328
1791
- msgid "Thank you for contacting us!"
1792
- msgstr ""
1793
-
1794
- #: ../modules/forms/controller.php:356
1795
- #, php-format
1796
- msgid "Contacts from %s"
1797
- msgstr ""
1798
-
1799
- #: ../modules/forms/controller.php:369
1800
- msgid "IP"
1801
- msgstr ""
1802
-
1803
- #: ../modules/forms/controller.php:400
1804
- msgid "There are no Contacts for now"
1805
- msgstr ""
1806
-
1807
- #: ../modules/forms/mod.php:14
1808
- msgid "Add New Form"
1809
- msgstr ""
1810
-
1811
- #: ../modules/forms/mod.php:17
1812
- msgid "Edit"
1813
- msgstr ""
1814
-
1815
- #: ../modules/forms/mod.php:20
1816
- msgid "Show All Forms"
1817
- msgstr ""
1818
-
1819
- #: ../modules/forms/mod.php:56
1820
- msgid "Form"
1821
- msgstr ""
1822
-
1823
- #: ../modules/forms/mod.php:63
1824
- msgid "Text"
1825
- msgstr ""
1826
-
1827
- #: ../modules/forms/mod.php:65
1828
- msgid "Select Box"
1829
- msgstr ""
1830
-
1831
- #: ../modules/forms/mod.php:66
1832
- msgid "Select List"
1833
- msgstr ""
1834
-
1835
- #: ../modules/forms/mod.php:67
1836
- msgid "Textarea"
1837
- msgstr ""
1838
-
1839
- #: ../modules/forms/mod.php:68
1840
- msgid "Radiobutton"
1841
- msgstr ""
1842
-
1843
- #: ../modules/forms/mod.php:69
1844
- msgid "Radiobuttons List"
1845
- msgstr ""
1846
-
1847
- #: ../modules/forms/mod.php:70
1848
- msgid "Checkbox"
1849
- msgstr ""
1850
-
1851
- #: ../modules/forms/mod.php:71
1852
- msgid "Checkbox List"
1853
- msgstr ""
1854
-
1855
- #: ../modules/forms/mod.php:72
1856
- msgid "Subscribe Checkbox"
1857
- msgstr ""
1858
-
1859
- #: ../modules/forms/mod.php:73
1860
- msgid "Country List"
1861
- msgstr ""
1862
-
1863
- #: ../modules/forms/mod.php:74
1864
- msgid "Country List Multiple"
1865
- msgstr ""
1866
-
1867
- #: ../modules/forms/mod.php:76
1868
- msgid "Number"
1869
- msgstr ""
1870
-
1871
- #: ../modules/forms/mod.php:78
1872
- msgid "Date"
1873
- msgstr ""
1874
-
1875
- #: ../modules/forms/mod.php:79
1876
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:35
1877
- msgid "Month"
1878
- msgstr ""
1879
-
1880
- #: ../modules/forms/mod.php:80
1881
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:34
1882
- msgid "Week"
1883
- msgstr ""
1884
-
1885
- #: ../modules/forms/mod.php:81
1886
- msgid "Time"
1887
- msgstr ""
1888
-
1889
- #: ../modules/forms/mod.php:83
1890
- #: ../modules/forms/views/forms.php:98
1891
- msgid "Color"
1892
- msgstr ""
1893
-
1894
- #: ../modules/forms/mod.php:84
1895
- msgid "Range"
1896
- msgstr ""
1897
-
1898
- #: ../modules/forms/mod.php:87
1899
- msgid "File Upload"
1900
- msgstr ""
1901
-
1902
- #: ../modules/forms/mod.php:88
1903
- msgid "reCaptcha"
1904
- msgstr ""
1905
-
1906
- #: ../modules/forms/mod.php:90
1907
- msgid "Hidden Field"
1908
- msgstr ""
1909
-
1910
- #: ../modules/forms/mod.php:91
1911
- msgid "Submit Button"
1912
- msgstr ""
1913
-
1914
- #: ../modules/forms/mod.php:92
1915
- msgid "Reset Button"
1916
- msgstr ""
1917
-
1918
- #: ../modules/forms/mod.php:94
1919
- msgid "HTML / Text Delimiter"
1920
- msgstr ""
1921
-
1922
- #: ../modules/forms/mod.php:96
1923
- msgid "Google Map"
1924
- msgstr ""
1925
-
1926
- #: ../modules/forms/models/forms.php:39
1927
- msgid "Can't find form"
1928
- msgstr ""
1929
-
1930
- #: ../modules/forms/models/forms.php:41
1931
- msgid "Empty Form ID"
1932
- msgstr ""
1933
-
1934
- #: ../modules/forms/models/forms.php:82
1935
- msgid "reCaptcha: The secret parameter is missing."
1936
- msgstr ""
1937
-
1938
- #: ../modules/forms/models/forms.php:83
1939
- msgid "reCaptcha: The secret parameter is invalid or malformed."
1940
- msgstr ""
1941
-
1942
- #: ../modules/forms/models/forms.php:84
1943
- msgid "Please prove that you are not a robot - check reCaptcha."
1944
- msgstr ""
1945
-
1946
- #: ../modules/forms/models/forms.php:85
1947
- msgid "reCaptcha: The response parameter is invalid or malformed."
1948
- msgstr ""
1949
-
1950
- #: ../modules/forms/models/forms.php:96
1951
- msgid "There was a problem with sending request to Google reCaptcha validation server. Please make sure that your server have possibility to send server-server requests. Ask your hosting provider about this."
1952
- msgstr ""
1953
-
1954
- #: ../modules/forms/models/forms.php:129
1955
- #, php-format
1956
- msgid "Please check %s"
1957
- msgstr ""
1958
-
1959
- #: ../modules/forms/models/forms.php:144
1960
- #, php-format
1961
- msgid "Minimum value for %s is %d"
1962
- msgstr ""
1963
-
1964
- #: ../modules/forms/models/forms.php:152
1965
- #, php-format
1966
- msgid "Maximum value for %s is %d"
1967
- msgstr ""
1968
-
1969
- #: ../modules/forms/models/forms.php:157
1970
- #, php-format
1971
- msgid "Invalid value for %s"
1972
- msgstr ""
1973
-
1974
- #: ../modules/forms/models/forms.php:397
1975
- msgid "img/preview/"
1976
- msgstr ""
1977
-
1978
- #: ../modules/forms/models/forms.php:427
1979
- msgid "Please select Form template from list below"
1980
- msgstr ""
1981
-
1982
- #: ../modules/forms/models/forms.php:429
1983
- #: ../modules/forms/models/forms.php:647
1984
- msgid "Please enter Name"
1985
- msgstr ""
1986
-
1987
- #: ../modules/forms/models/forms.php:534
1988
- msgid "Provided data was corrupted"
1989
- msgstr ""
1990
-
1991
- #: ../modules/forms/models/forms.php:673
1992
- msgid "Name can not be empty"
1993
- msgstr ""
1994
-
1995
- #: ../modules/forms/models/forms.php:688
1996
- #: ../modules/forms/models/forms.php:694
1997
- #: ../modules/forms/models/forms.php:700
1998
- msgid "Form background"
1999
- msgstr ""
2000
-
2001
- #: ../modules/forms/models/forms.php:689
2002
- #: ../modules/forms/models/forms.php:695
2003
- msgid "Inputs background"
2004
- msgstr ""
2005
-
2006
- #: ../modules/forms/models/forms.php:690
2007
- #: ../modules/forms/models/forms.php:696
2008
- msgid "Submit buttons background"
2009
- msgstr ""
2010
-
2011
- #: ../modules/forms/models/forms.php:691
2012
- #: ../modules/forms/models/forms.php:697
2013
- msgid "Reset buttons background"
2014
- msgstr ""
2015
-
2016
- #: ../modules/forms/models/forms.php:701
2017
- msgid "Inputs and Buttons background"
2018
- msgstr ""
2019
-
2020
- #: ../modules/forms/views/forms.php:42
2021
- msgid "Modify Form Template"
2022
- msgstr ""
2023
-
2024
- #: ../modules/forms/views/forms.php:51
2025
- msgid "Cannot find required Form"
2026
- msgstr ""
2027
-
2028
- #: ../modules/forms/views/forms.php:96
2029
- msgid "None"
2030
- msgstr ""
2031
-
2032
- #: ../modules/forms/views/forms.php:97
2033
- #: ../modules/forms/views/tpl/formsEditFormFields.php:266
2034
- msgid "Image"
2035
- msgstr ""
2036
-
2037
- #: ../modules/forms/views/forms.php:118
2038
- msgid "Design"
2039
- msgstr ""
2040
-
2041
- #: ../modules/forms/views/forms.php:123
2042
- msgid "Fields"
2043
- msgstr ""
2044
-
2045
- #: ../modules/forms/views/forms.php:128
2046
- msgid "Submit Options"
2047
- msgstr ""
2048
-
2049
- #: ../modules/forms/views/forms.php:133
2050
- msgid "Statistics"
2051
- msgstr ""
2052
-
2053
- #: ../modules/forms/views/forms.php:139
2054
- msgid "CSS / HTML Code"
2055
- msgstr ""
2056
-
2057
- #: ../modules/forms/views/forms.php:470
2058
- #: ../modules/forms/views/tpl/formsEditFormFields.php:377
2059
- #, php-format
2060
- msgid "To use this field type you need to have installed and activated <a href=\"%s\" target=\"_blank\">Google Maps Easy</a> plugin - it's Free! Just install it <a class=\"button\" target=\"_blank\" href=\"%s\">here.</a>"
2061
- msgstr ""
2062
-
2063
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:20
2064
- #, php-format
2065
- msgid "Change Template to any other from the list below or <a class=\"button\" href=\"%s\">return to Form edit</a>"
2066
- msgstr ""
2067
-
2068
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:22
2069
- msgid "Choose Form Template. You can change it later."
2070
- msgstr ""
2071
-
2072
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:31
2073
- msgid "Form Name"
2074
- msgstr ""
2075
-
2076
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:36
2077
- #: ../modules/forms/views/tpl/formsEditFormControls.php:40
2078
- msgid "Save"
2079
- msgstr ""
2080
-
2081
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:57
2082
- msgid "Get in PRO"
2083
- msgstr ""
2084
-
2085
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:68
2086
- msgid "Change Template"
2087
- msgstr ""
2088
-
2089
- #: ../modules/forms/views/tpl/formsAddNewAdmin.php:70
2090
- msgid "Are you sure you want to change your current template - to "
2091
- msgstr ""
2092
-
2093
- #: ../modules/forms/views/tpl/formsAdmin.php:11
2094
- #: ../modules/forms/views/tpl/formsAdmin.php:12
2095
- msgid "Search"
2096
- msgstr ""
2097
-
2098
- #: ../modules/forms/views/tpl/formsAdmin.php:21
2099
- #, php-format
2100
- msgid "You have no Forms for now. <a href=\"%s\" style=\"font-style: italic;\">Create</a> your Form!"
2101
- msgstr ""
2102
-
2103
- #: ../modules/forms/views/tpl/formsEditAdmin.php:99
2104
- msgid "Loading preview..."
2105
- msgstr ""
2106
-
2107
- #: ../modules/forms/views/tpl/formsEditAdmin.php:104
2108
- msgid "Back to top"
2109
- msgstr ""
2110
-
2111
- #: ../modules/forms/views/tpl/formsEditAdmin.php:115
2112
- msgid "You have no submit fields in your Form - this make it's submission impossible. Please add one submit field in Fields tab - and then save your form."
2113
- msgstr ""
2114
-
2115
- #: ../modules/forms/views/tpl/formsEditAdmin.php:118
2116
- msgid "You have no data to submit to in your form - in this case all form data will not be send anywhere. Go to Submit Options tab - and add there at least one data submit block - and then save your form."
2117
- msgstr ""
2118
-
2119
- #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:3
2120
- msgid "Edit this ONLY if you know basics of HTML and CSS"
2121
- msgstr ""
2122
-
2123
- #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:6
2124
- msgid "Field Wrapper"
2125
- msgstr ""
2126
-
2127
- #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:10
2128
- msgid "CSS code"
2129
- msgstr ""
2130
-
2131
- #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:14
2132
- msgid "HTML code"
2133
- msgstr ""
2134
-
2135
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:2
2136
- msgid "Change Form Template"
2137
- msgstr ""
2138
-
2139
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:8
2140
- msgid "Width"
2141
- msgstr ""
2142
-
2143
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:14
2144
- msgid "Max width for percentage - is 100"
2145
- msgstr ""
2146
-
2147
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:16
2148
- msgid "Percents"
2149
- msgstr ""
2150
-
2151
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:20
2152
- msgid "Pixels"
2153
- msgstr ""
2154
-
2155
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:28
2156
- msgid "Background"
2157
- msgstr ""
2158
-
2159
- #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:28
2160
- #, php-format
2161
- msgid "Background %d"
2162
- msgstr ""
2163
-
2164
- #: ../modules/forms/views/tpl/formsEditFormControls.php:1
2165
- msgid "Click to Edit"
2166
- msgstr ""
2167
-
2168
- #: ../modules/forms/views/tpl/formsEditFormControls.php:10
2169
- msgid "Shortcode"
2170
- msgstr ""
2171
-
2172
- #: ../modules/forms/views/tpl/formsEditFormControls.php:11
2173
- msgid "PHP code"
2174
- msgstr ""
2175
-
2176
- #: ../modules/forms/views/tpl/formsEditFormControls.php:12
2177
- msgid "Widget"
2178
- msgstr ""
2179
-
2180
- #: ../modules/forms/views/tpl/formsEditFormControls.php:13
2181
- msgid "PopUp"
2182
- msgstr ""
2183
-
2184
- #: ../modules/forms/views/tpl/formsEditFormControls.php:27
2185
- msgid "Add Contact Form Widget"
2186
- msgstr ""
2187
-
2188
- #: ../modules/forms/views/tpl/formsEditFormControls.php:31
2189
- #, php-format
2190
- msgid "<a href=\"%s\" target=\"_blank\" class=\"button\">Select your Form</a> in any PopUp"
2191
- msgstr ""
2192
-
2193
- #: ../modules/forms/views/tpl/formsEditFormControls.php:33
2194
- #, php-format
2195
- msgid "You need to have <a href=\"%s\" target=\"_blank\" class=\"button\">installed PopUp plugin</a> to use this feature"
2196
- msgstr ""
2197
-
2198
- #: ../modules/forms/views/tpl/formsEditFormControls.php:38
2199
- msgid "Save all changes"
2200
- msgstr ""
2201
-
2202
- #: ../modules/forms/views/tpl/formsEditFormControls.php:42
2203
- msgid "Clone to New Form"
2204
- msgstr ""
2205
-
2206
- #: ../modules/forms/views/tpl/formsEditFormControls.php:44
2207
- msgid "Clone"
2208
- msgstr ""
2209
-
2210
- #: ../modules/forms/views/tpl/formsEditFormControls.php:48
2211
- msgid "Preview"
2212
- msgstr ""
2213
-
2214
- #: ../modules/forms/views/tpl/formsEditFormControls.php:57
2215
- msgid "Delete"
2216
- msgstr ""
2217
-
2218
- #: ../modules/forms/views/tpl/formsEditFormControls.php:64
2219
- msgid "New Name"
2220
- msgstr ""
2221
-
2222
- #: ../modules/forms/views/tpl/formsEditFormControls.php:65
2223
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:150
2224
- msgid "Copy"
2225
- msgstr ""
2226
-
2227
- #: ../modules/forms/views/tpl/formsEditFormFields.php:4
2228
- msgid "Field invalid error message"
2229
- msgstr ""
2230
-
2231
- #: ../modules/forms/views/tpl/formsEditFormFields.php:5
2232
- msgid "By default our plugin will show standard browser error messages about invalid or empty fields values. But if you need - you can replace it here. Use [label] - to set field name in your error message. For example \"Please fill out [label] field\". You can just leave this field empty - to use standard browser messages."
2233
- msgstr ""
2234
-
2235
- #: ../modules/forms/views/tpl/formsEditFormFields.php:17
2236
- msgid "Add New Field"
2237
- msgstr ""
2238
-
2239
- #: ../modules/forms/views/tpl/formsEditFormFields.php:23
2240
- msgid "Move Up / Down"
2241
- msgstr ""
2242
-
2243
- #: ../modules/forms/views/tpl/formsEditFormFields.php:29
2244
- msgid "Move Left / Right"
2245
- msgstr ""
2246
-
2247
- #: ../modules/forms/views/tpl/formsEditFormFields.php:32
2248
- msgid "Add New Field at the Top"
2249
- msgstr ""
2250
-
2251
- #: ../modules/forms/views/tpl/formsEditFormFields.php:36
2252
- msgid "Add New Field at the Right"
2253
- msgstr ""
2254
-
2255
- #: ../modules/forms/views/tpl/formsEditFormFields.php:40
2256
- msgid "Add New Field at the Bottom"
2257
- msgstr ""
2258
-
2259
- #: ../modules/forms/views/tpl/formsEditFormFields.php:44
2260
- msgid "Add New Field at the Left"
2261
- msgstr ""
2262
-
2263
- #: ../modules/forms/views/tpl/formsEditFormFields.php:75
2264
- msgid "Click on required elements from list bellow"
2265
- msgstr ""
2266
-
2267
- #: ../modules/forms/views/tpl/formsEditFormFields.php:89
2268
- msgid "PRO"
2269
- msgstr ""
2270
-
2271
- #: ../modules/forms/views/tpl/formsEditFormFields.php:96
2272
- msgid "Edit field settings"
2273
- msgstr ""
2274
-
2275
- #: ../modules/forms/views/tpl/formsEditFormFields.php:100
2276
- msgid "Basic Settings"
2277
- msgstr ""
2278
-
2279
- #: ../modules/forms/views/tpl/formsEditFormFields.php:104
2280
- msgid "Advanced"
2281
- msgstr ""
2282
-
2283
- #: ../modules/forms/views/tpl/formsEditFormFields.php:108
2284
- msgid "Field Validation"
2285
- msgstr ""
2286
-
2287
- #: ../modules/forms/views/tpl/formsEditFormFields.php:115
2288
- #: ../modules/forms/views/tpl/formsEditFormFields.php:195
2289
- msgid "Name"
2290
- msgstr ""
2291
-
2292
- #: ../modules/forms/views/tpl/formsEditFormFields.php:116
2293
- msgid "Name attribute for your field. You can use here latin letters, numbers or symdols \"-\", \"_\"."
2294
- msgstr ""
2295
-
2296
- #: ../modules/forms/views/tpl/formsEditFormFields.php:124
2297
- msgid "Please fill-in Name for your field, and make sure that it contains only latin letters, numbers or symdols \"-\", \"_\"."
2298
- msgstr ""
2299
-
2300
- #: ../modules/forms/views/tpl/formsEditFormFields.php:130
2301
- msgid "Field label - that your users will see on your Form right near your field."
2302
- msgstr ""
2303
-
2304
- #: ../modules/forms/views/tpl/formsEditFormFields.php:138
2305
- msgid "Placeholder"
2306
- msgstr ""
2307
-
2308
- #: ../modules/forms/views/tpl/formsEditFormFields.php:139
2309
- msgid "Field placeholder - will be printed in your field as a tip."
2310
- msgstr ""
2311
-
2312
- #: ../modules/forms/views/tpl/formsEditFormFields.php:147
2313
- msgid "Please fill-in Label or Placeholder for your field - it's required for users to know - what field in Form that are filling-in."
2314
- msgstr ""
2315
-
2316
- #: ../modules/forms/views/tpl/formsEditFormFields.php:152
2317
- msgid "Default Value"
2318
- msgstr ""
2319
-
2320
- #: ../modules/forms/views/tpl/formsEditFormFields.php:153
2321
- msgid "You can set default value for your field, and one it appear on your site - field will be pre-filled with this value."
2322
- msgstr ""
2323
-
2324
- #: ../modules/forms/views/tpl/formsEditFormFields.php:159
2325
- msgid "or select preset"
2326
- msgstr ""
2327
-
2328
- #: ../modules/forms/views/tpl/formsEditFormFields.php:160
2329
- msgid "User IP"
2330
- msgstr ""
2331
-
2332
- #: ../modules/forms/views/tpl/formsEditFormFields.php:161
2333
- msgid "User Country code"
2334
- msgstr ""
2335
-
2336
- #: ../modules/forms/views/tpl/formsEditFormFields.php:162
2337
- msgid "User Country name"
2338
- msgstr ""
2339
-
2340
- #: ../modules/forms/views/tpl/formsEditFormFields.php:165
2341
- msgid "Allow to insert some pre-defined values, like current user IP addres, or his country - to send you this data."
2342
- msgstr ""
2343
-
2344
- #: ../modules/forms/views/tpl/formsEditFormFields.php:167
2345
- msgid "PRO option"
2346
- msgstr ""
2347
-
2348
- #: ../modules/forms/views/tpl/formsEditFormFields.php:172
2349
- msgid "Display as"
2350
- msgstr ""
2351
-
2352
- #: ../modules/forms/views/tpl/formsEditFormFields.php:175
2353
- msgid "In row"
2354
- msgstr ""
2355
-
2356
- #: ../modules/forms/views/tpl/formsEditFormFields.php:176
2357
- msgid "In column"
2358
- msgstr ""
2359
-
2360
- #: ../modules/forms/views/tpl/formsEditFormFields.php:183
2361
- msgid "Select Options"
2362
- msgstr ""
2363
-
2364
- #: ../modules/forms/views/tpl/formsEditFormFields.php:210
2365
- msgid "Checked by Default"
2366
- msgstr ""
2367
-
2368
- #: ../modules/forms/views/tpl/formsEditFormFields.php:218
2369
- msgid "Required"
2370
- msgstr ""
2371
-
2372
- #: ../modules/forms/views/tpl/formsEditFormFields.php:227
2373
- msgid "Site Key"
2374
- msgstr ""
2375
-
2376
- #: ../modules/forms/views/tpl/formsEditFormFields.php:228
2377
- #, php-format
2378
- msgid "Your site key, generated on <a href=\"%s\" target=\"_blank\">%s</a>. To get more info - check <a href=\"%s\" target=\"_blank\">our tutorial.</a>"
2379
- msgstr ""
2380
-
2381
- #: ../modules/forms/views/tpl/formsEditFormFields.php:236
2382
- msgid "Secret Key"
2383
- msgstr ""
2384
-
2385
- #: ../modules/forms/views/tpl/formsEditFormFields.php:237
2386
- #, php-format
2387
- msgid "Your secret key, generated on <a href=\"%s\" target=\"_blank\">%s</a>. To get more info - check <a href=\"%s\" target=\"_blank\">our tutorial.</a>"
2388
- msgstr ""
2389
-
2390
- #: ../modules/forms/views/tpl/formsEditFormFields.php:249
2391
- msgid "reCaptcha Theme"
2392
- msgstr ""
2393
-
2394
- #: ../modules/forms/views/tpl/formsEditFormFields.php:250
2395
- #, php-format
2396
- msgid "The color theme. You can select from themes, provided by Google, for your reCaptcha. To get more info - check <a href=\"%s\" target=\"_blank\">our tutorial.</a>"
2397
- msgstr ""
2398
-
2399
- #: ../modules/forms/views/tpl/formsEditFormFields.php:254
2400
- msgid "Light"
2401
- msgstr ""
2402
-
2403
- #: ../modules/forms/views/tpl/formsEditFormFields.php:254
2404
- msgid "Dark"
2405
- msgstr ""
2406
-
2407
- #: ../modules/forms/views/tpl/formsEditFormFields.php:261
2408
- msgid "reCaptcha Type"
2409
- msgstr ""
2410
-
2411
- #: ../modules/forms/views/tpl/formsEditFormFields.php:262
2412
- msgid "The type of CAPTCHA to serve."
2413
- msgstr ""
2414
-
2415
- #: ../modules/forms/views/tpl/formsEditFormFields.php:266
2416
- msgid "Audio"
2417
- msgstr ""
2418
-
2419
- #: ../modules/forms/views/tpl/formsEditFormFields.php:273
2420
- msgid "reCaptcha Size"
2421
- msgstr ""
2422
-
2423
- #: ../modules/forms/views/tpl/formsEditFormFields.php:274
2424
- msgid "The size of the CAPTCHA widget."
2425
- msgstr ""
2426
-
2427
- #: ../modules/forms/views/tpl/formsEditFormFields.php:278
2428
- msgid "Compact"
2429
- msgstr ""
2430
-
2431
- #: ../modules/forms/views/tpl/formsEditFormFields.php:278
2432
- msgid "Normal"
2433
- msgstr ""
2434
-
2435
- #: ../modules/forms/views/tpl/formsEditFormFields.php:285
2436
- msgid "Additional classes"
2437
- msgstr ""
2438
-
2439
- #: ../modules/forms/views/tpl/formsEditFormFields.php:286
2440
- msgid "You can specify here additinal CSS classes for your field."
2441
- msgstr ""
2442
-
2443
- #: ../modules/forms/views/tpl/formsEditFormFields.php:294
2444
- msgid "Additional styles"
2445
- msgstr ""
2446
-
2447
- #: ../modules/forms/views/tpl/formsEditFormFields.php:295
2448
- msgid "You can specify here additinal CSS styles, that will be included in \"style\" tag, for your field."
2449
- msgstr ""
2450
-
2451
- #: ../modules/forms/views/tpl/formsEditFormFields.php:303
2452
- msgid "Additional HTML attributes"
2453
- msgstr ""
2454
-
2455
- #: ../modules/forms/views/tpl/formsEditFormFields.php:304
2456
- msgid "You can specify here additinal HTML attributes, such as \"id\", or other, for your field."
2457
- msgstr ""
2458
-
2459
- #: ../modules/forms/views/tpl/formsEditFormFields.php:316
2460
- msgid "Minimum length"
2461
- msgstr ""
2462
-
2463
- #: ../modules/forms/views/tpl/formsEditFormFields.php:317
2464
- msgid "Possibility to bound field minimum length."
2465
- msgstr ""
2466
-
2467
- #: ../modules/forms/views/tpl/formsEditFormFields.php:325
2468
- msgid "Maximum length"
2469
- msgstr ""
2470
-
2471
- #: ../modules/forms/views/tpl/formsEditFormFields.php:326
2472
- msgid "Possibility to bound field maximum length. For Files fields types - this is restriction for file size, in Mb."
2473
- msgstr ""
2474
-
2475
- #: ../modules/forms/views/tpl/formsEditFormFields.php:334
2476
- msgid "Only numbers"
2477
- msgstr ""
2478
-
2479
- #: ../modules/forms/views/tpl/formsEditFormFields.php:335
2480
- msgid "Allow users to enter in this field - only numeric values."
2481
- msgstr ""
2482
-
2483
- #: ../modules/forms/views/tpl/formsEditFormFields.php:343
2484
- msgid "Only letters"
2485
- msgstr ""
2486
-
2487
- #: ../modules/forms/views/tpl/formsEditFormFields.php:344
2488
- msgid "Only letters will be allowed."
2489
- msgstr ""
2490
-
2491
- #: ../modules/forms/views/tpl/formsEditFormFields.php:352
2492
- msgid "Validation Pattern"
2493
- msgstr ""
2494
-
2495
- #: ../modules/forms/views/tpl/formsEditFormFields.php:353
2496
- msgid "You can modify or set here your custom patters. Edit this ONLY if you know how to modify regular expression patterns! For Files fields types you can set here file extensions, separated by comma - \",\"."
2497
- msgstr ""
2498
-
2499
- #: ../modules/forms/views/tpl/formsEditFormFields.php:363
2500
- msgid "HTML / Text / Images / etc."
2501
- msgstr ""
2502
-
2503
- #: ../modules/forms/views/tpl/formsEditFormFields.php:366
2504
- msgid "Select desired Map"
2505
- msgstr ""
2506
-
2507
- #: ../modules/forms/views/tpl/formsEditFormFields.php:369
2508
- msgid "Select Map"
2509
- msgstr ""
2510
-
2511
- #: ../modules/forms/views/tpl/formsEditFormFields.php:374
2512
- #, php-format
2513
- msgid "You have no Google Maps for now. <a href=\"%s\" target=\"_blank\" class=\"button\">Create Maps</a> at first, then you will be able to select it here and past into your form"
2514
- msgstr ""
2515
-
2516
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:4
2517
- msgid "Total Statistics"
2518
- msgstr ""
2519
-
2520
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:6
2521
- msgid "Clear selection"
2522
- msgstr ""
2523
-
2524
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:11
2525
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:128
2526
- msgid "To"
2527
- msgstr ""
2528
-
2529
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:26
2530
- msgid "Reset Zoom"
2531
- msgstr ""
2532
-
2533
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:31
2534
- msgid "Group by"
2535
- msgstr ""
2536
-
2537
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:32
2538
- msgid "Hour"
2539
- msgstr ""
2540
-
2541
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:33
2542
- msgid "Day"
2543
- msgstr ""
2544
-
2545
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:37
2546
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:77
2547
- msgid "Export to CSV"
2548
- msgstr ""
2549
-
2550
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:42
2551
- msgid "Clear data"
2552
- msgstr ""
2553
-
2554
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:49
2555
- msgid "Total Statistics is empty for now."
2556
- msgstr ""
2557
-
2558
- #: ../modules/forms/views/tpl/formsEditFormStatistics.php:50
2559
- msgid "Once your site visitors begin to use your form - all form statistics usage will be here."
2560
- msgstr ""
2561
-
2562
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:4
2563
- msgid "Form sent message"
2564
- msgstr ""
2565
-
2566
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:5
2567
- msgid "Message, that your users will see after success form submition."
2568
- msgstr ""
2569
-
2570
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:13
2571
- msgid "Form sent message color"
2572
- msgstr ""
2573
-
2574
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:14
2575
- msgid "Text color for your Success message."
2576
- msgstr ""
2577
-
2578
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:24
2579
- msgid "Hide form after submit"
2580
- msgstr ""
2581
-
2582
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:25
2583
- msgid "By default form will be hidden after successful submit, but you can disable this here - and after submit form will be just cleared."
2584
- msgstr ""
2585
-
2586
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:35
2587
- msgid "Redirect after submit"
2588
- msgstr ""
2589
-
2590
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:36
2591
- msgid "If you want - you can redirect user after Form was submitted. Just enter required Redirect URL here - and each time after Form will be submitted - user will be redirected to that URL. Just leave this field empty - if you don't need this functionality in your Form."
2592
- msgstr ""
2593
-
2594
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:52
2595
- msgid "Test Email Function"
2596
- msgstr ""
2597
-
2598
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:53
2599
- msgid "Email delivery depends from your server configuration. For some cases - you and your subscribers can not receive emails just because email on your server is not working correctly. You can easy test it here - by sending test email. If you receive it - then it means that email functionality on your server works well. If not - this means that it is not working correctly and you should contact your hosting provider with this issue and ask them to setup email functionality for you on your server."
2600
- msgstr ""
2601
-
2602
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:61
2603
- msgid "Send Test Email"
2604
- msgstr ""
2605
-
2606
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:64
2607
- msgid "Email was sent. Now check your email inbox / spam folders for test mail. If you don’t find it - it means that your server can't send emails - and you need to contact your hosting provider with this issue."
2608
- msgstr ""
2609
-
2610
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:70
2611
- msgid "Save contacts data"
2612
- msgstr ""
2613
-
2614
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:71
2615
- msgid "Store each contact form submission - into database, so you will be able to check all your form submit data."
2616
- msgstr ""
2617
-
2618
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:79
2619
- msgid "Delimiter for CSV file columns"
2620
- msgstr ""
2621
-
2622
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:80
2623
- msgid "Delimiter"
2624
- msgstr ""
2625
-
2626
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:91
2627
- msgid "Send only Field values"
2628
- msgstr ""
2629
-
2630
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:92
2631
- msgid "By default - we will send field labels + values like:<br /><b>Field Label</b>: Field Value<br />But if you need to receive only values - you can disable sending Field Values here - just check this checkbox and it will done."
2632
- msgstr ""
2633
-
2634
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:103
2635
- msgid "Add additional data for submit"
2636
- msgstr ""
2637
-
2638
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:110
2639
- msgid "Add Copy"
2640
- msgstr ""
2641
-
2642
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:111
2643
- msgid "Remove Copy"
2644
- msgstr ""
2645
-
2646
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:121
2647
- msgid "You can use next variables in any field bellow: [sitename] - name of your site, [siteurl] - URL address of your site, [user_FIELD_NAME] - any user field, entered by user, where FIELD_NAME - is name of required field, for example insert in subject [user_email] - and there will be user email field data, or [user_first_name] - and there will be inserted user First Name - if such field exists in your form fields list, and variable [form_data] - only for Message field - it will contans full generated input form data."
2648
- msgstr ""
2649
-
2650
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:129
2651
- msgid "Email where we need to send contact form info. Can enter several email addresses, separated by comma \",\"."
2652
- msgstr ""
2653
-
2654
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:140
2655
- msgid "\"From\" parameter in your emails. Usually - this is your main admin WP email address."
2656
- msgstr ""
2657
-
2658
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:151
2659
- msgid "Add recipients to copy email addresses. Can enter several email addresses, separated by comma \",\"."
2660
- msgstr ""
2661
-
2662
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:159
2663
- msgid "Reply To"
2664
- msgstr ""
2665
-
2666
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:160
2667
- msgid "Reply To parameter in your email"
2668
- msgstr ""
2669
-
2670
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:168
2671
- msgid "Subject"
2672
- msgstr ""
2673
-
2674
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:169
2675
- msgid "Email subject"
2676
- msgstr ""
2677
-
2678
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:177
2679
- msgid "Message"
2680
- msgstr ""
2681
-
2682
- #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:178
2683
- msgid "Email message content"
2684
- msgstr ""
2685
-
2686
- #: ../modules/forms_widget/mod.php:18
2687
- msgid "Display Contact Form"
2688
- msgstr ""
2689
-
2690
- #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:2
2691
- msgid "Title"
2692
- msgstr ""
2693
-
2694
- #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:9
2695
- msgid "Form to display"
2696
- msgstr ""
2697
-
2698
- #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:19
2699
- msgid "You have no Forms for now. Create your first form - and you will be able to select it for widget here."
2700
- msgstr ""
2701
-
2702
- #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:23
2703
- msgid "Create Form"
2704
- msgstr ""
2705
-
2706
- #: ../modules/mail/controller.php:7
2707
- msgid "Now check your email inbox / spam folders for test mail."
2708
- msgstr ""
2709
-
2710
- #: ../modules/mail/mod.php:62
2711
- msgid "Cannot send email - problem with send server"
2712
- msgstr ""
2713
-
2714
- #: ../modules/mail/mod.php:75
2715
- msgid "Mail"
2716
- msgstr ""
2717
-
2718
- #: ../modules/mail/mod.php:77
2719
- msgid "Mail function tested and work"
2720
- msgstr ""
2721
-
2722
- #: ../modules/mail/mod.php:78
2723
- msgid "Notify Email"
2724
- msgstr ""
2725
-
2726
- #: ../modules/mail/mod.php:78
2727
- msgid "Email address used for all email notifications from plugin"
2728
- msgstr ""
2729
-
2730
- #: ../modules/mail/models/mail.php:7
2731
- msgid "Test email functionality"
2732
- msgstr ""
2733
-
2734
- #: ../modules/mail/models/mail.php:8
2735
- #, php-format
2736
- msgid "This is a test email for testing email functionality on your site, %s."
2737
- msgstr ""
2738
-
2739
- #: ../modules/mail/models/mail.php:15
2740
- msgid "Empty email address"
2741
- msgstr ""
2742
-
2743
- #: ../modules/mail/views/tpl/mailAdmin.php:3
2744
- msgid "Send test email to"
2745
- msgstr ""
2746
-
2747
- #: ../modules/mail/views/tpl/mailAdmin.php:10
2748
- msgid "Send test"
2749
- msgstr ""
2750
-
2751
- #: ../modules/mail/views/tpl/mailAdmin.php:12
2752
- msgid "This option allows you to check your server mail functionality"
2753
- msgstr ""
2754
-
2755
- #: ../modules/mail/views/tpl/mailAdmin.php:15
2756
- msgid "Did you receive test email?"
2757
- msgstr ""
2758
-
2759
- #: ../modules/mail/views/tpl/mailAdmin.php:18
2760
- msgid "Yes! It works!"
2761
- msgstr ""
2762
-
2763
- #: ../modules/mail/views/tpl/mailAdmin.php:22
2764
- msgid "No, I need to contact my hosting provider with mail function issue."
2765
- msgstr ""
2766
-
2767
- #: ../modules/mail/views/tpl/mailAdmin.php:26
2768
- msgid "Great! Mail function was tested and is working fine."
2769
- msgstr ""
2770
-
2771
- #: ../modules/mail/views/tpl/mailAdmin.php:29
2772
- msgid "Bad, please contact your hosting provider and ask them to setup mail functionality on your server."
2773
- msgstr ""
2774
-
2775
- #: ../modules/mail/views/tpl/mailAdmin.php:47
2776
- #, php-format
2777
- msgid "Turned On %s"
2778
- msgstr ""
2779
-
2780
- #: ../modules/mail/views/tpl/mailAdmin.php:48
2781
- #, php-format
2782
- msgid "Turned Off %s"
2783
- msgstr ""
2784
-
2785
- #: ../modules/options/mod.php:114
2786
- msgid "General"
2787
- msgstr ""
2788
-
2789
- #: ../modules/options/mod.php:116
2790
- msgid "Send usage statistics"
2791
- msgstr ""
2792
-
2793
- #: ../modules/options/mod.php:116
2794
- msgid "Send information about what plugin options you prefer to use, this will help us make our solution better for You."
2795
- msgstr ""
2796
-
2797
- #: ../modules/options/mod.php:117
2798
- msgid "Enable blocking Contact from same IP"
2799
- msgstr ""
2800
-
2801
- #: ../modules/options/mod.php:117
2802
- msgid "Our plugin have feature to block form submission from same IP more then one time per hour - to avoid spam. You can enable this feature here."
2803
- msgstr ""
2804
-
2805
- #: ../modules/options/mod.php:118
2806
- msgid "Disable autosave on Form Edit"
2807
- msgstr ""
2808
-
2809
- #: ../modules/options/mod.php:118
2810
- msgid "By default our plugin will make autosave all your changes that you do in Form edit screen, but you can disable this feature here. Just don't forget to save your Form each time you make any changes in it."
2811
- msgstr ""
2812
-
2813
- #: ../modules/options/mod.php:119
2814
- msgid "Enable promo link"
2815
- msgstr ""
2816
-
2817
- #: ../modules/options/mod.php:119
2818
- msgid "We are trying to make our plugin better for you, and you can help us with this. Just check this option - and small promotion link will be added in the bottom of your Form. This is easy for you - but very helpful for us!"
2819
- msgstr ""
2820
-
2821
- #: ../modules/options/mod.php:120
2822
- msgid "User role can use plugin"
2823
- msgstr ""
2824
-
2825
- #: ../modules/options/mod.php:120
2826
- msgid "User with next roles will have access to whole plugin from admin area."
2827
- msgstr ""
2828
-
2829
- #: ../modules/options/mod.php:121
2830
- msgid "Load Assets in Footer"
2831
- msgstr ""
2832
-
2833
- #: ../modules/options/mod.php:121
2834
- msgid "Force load all plugin CSS and JavaScript files in footer - to increase page load speed. Please make sure that you have correct footer.php file in your WordPress theme with wp_footer() function call in it."
2835
- msgstr ""
2836
-
2837
- #: ../modules/options/mod.php:122
2838
- msgid "Disable HTML Emails content type"
2839
- msgstr ""
2840
-
2841
- #: ../modules/options/mod.php:122
2842
- msgid "Some servers fail send emails with HTML content type: content-type = \"text/html\", so if you have problems with sending emails from our plugn - try to disable this feature here."
2843
- msgstr ""
2844
-
2845
- #: ../modules/options/models/modules.php:35
2846
- msgid "Module Updated"
2847
- msgstr ""
2848
-
2849
- #: ../modules/options/models/modules.php:50
2850
- msgid "Module Update Failed"
2851
- msgstr ""
2852
-
2853
- #: ../modules/options/models/modules.php:53
2854
- msgid "Error module ID"
2855
- msgstr ""
2856
-
2857
- #: ../modules/options/models/options.php:64
2858
- msgid "Empty data to save option"
2859
- msgstr ""
2860
-
2861
- #: ../modules/options/views/options.php:66
2862
- msgid "Undefined"
2863
- msgstr ""
2864
-
2865
- #: ../modules/options/views/tpl/optionsAdminMain.php:18
2866
- msgid "Main page Go here!!!!"
2867
- msgstr ""
2868
-
2869
- #: ../modules/options/views/tpl/optionsAdminPage.php:35
2870
- msgid "Improve Free version"
2871
- msgstr ""
2872
-
2873
- #: ../modules/options/views/tpl/optionsAdminPage.php:37
2874
- #, php-format
2875
- msgid "Please be advised that this template with all other options and PRO templates is available only in <a target=\"_blank\" href=\"%s\">PRO version</a>. You can <a target=\"_blank\" href=\"%s\" class=\"button\">Get PRO</a> today and get this and other PRO templates and features for your Forms!"
2876
- msgstr ""
2877
-
2878
- #: ../modules/options/views/tpl/optionsAdminPage.php:40
2879
- #, php-format
2880
- msgid "Please be advised that this option is available only in <a target=\"_blank\" href=\"%s\">PRO version</a>. You can <a target=\"_blank\" href=\"%s\" class=\"button\">Get PRO</a> today and get this and other PRO option for your Forms!"
2881
- msgstr ""
2882
-
2883
- #: ../modules/options/views/tpl/optionsSettingsTabContent.php:3
2884
- msgid "Save all options"
2885
- msgstr ""
2886
-
2887
- #: ../modules/pages/views/tpl/deactivatePage.php:33
2888
- msgid "Delete Plugin Data (options, setup data, database tables, etc.)"
2889
- msgstr ""
2890
-
2891
- #: ../modules/statistics/controller.php:40
2892
- #, php-format
2893
- msgid "Statistics for %s"
2894
- msgstr ""
2895
-
2896
- #: ../modules/statistics/controller.php:43
2897
- msgid "Views"
2898
- msgstr ""
2899
-
2900
- #: ../modules/statistics/controller.php:44
2901
- msgid "Unique Views"
2902
- msgstr ""
2903
-
2904
- #: ../modules/statistics/controller.php:46
2905
- msgid "Conversion"
2906
- msgstr ""
2907
-
2908
- #: ../modules/statistics/mod.php:7
2909
- msgid "Displayed"
2910
- msgstr ""
2911
-
2912
- #: ../modules/statistics/mod.php:8
2913
- msgid "Submitted"
2914
- msgstr ""
2915
-
2916
- #: ../modules/statistics/mod.php:9
2917
- msgid "Submitted Success"
2918
- msgstr ""
2919
-
2920
- #: ../modules/statistics/mod.php:10
2921
- msgid "Submitted Fail"
2922
- msgstr ""
2923
-
2924
- #: ../modules/statistics/models/statistics.php:177
2925
- msgid "No data found"
2926
- msgstr ""
2927
-
2928
- #: ../modules/supsystic_promo/controller.php:7
2929
- #: ../modules/supsystic_promo/controller.php:100
2930
- #: ../modules/supsystic_promo/controller.php:108
2931
- #: ../modules/supsystic_promo/controller.php:116
2932
- msgid "Information was saved. Thank you!"
2933
- msgstr ""
2934
-
2935
- #: ../modules/supsystic_promo/controller.php:23
2936
- msgid "Please don't send contact requests so often - wait for response for your previous requests."
2937
- msgstr ""
2938
-
2939
- #: ../modules/supsystic_promo/controller.php:45
2940
- msgid "Please enter valid email address"
2941
- msgstr ""
2942
-
2943
- #: ../modules/supsystic_promo/mod.php:47
2944
- #, php-format
2945
- msgid "<h3>Hey, I noticed you just use %s over a week – that’s awesome!</h3><p>Could you please do me a BIG favor and give it a 5-star rating on WordPress? Just to help us spread the word and boost our motivation.</p>"
2946
- msgstr ""
2947
-
2948
- #: ../modules/supsystic_promo/mod.php:48
2949
- #: ../modules/supsystic_promo/mod.php:54
2950
- msgid "Ok, you deserve it"
2951
- msgstr ""
2952
-
2953
- #: ../modules/supsystic_promo/mod.php:49
2954
- #: ../modules/supsystic_promo/mod.php:55
2955
- msgid "Nope, maybe later"
2956
- msgstr ""
2957
-
2958
- #: ../modules/supsystic_promo/mod.php:50
2959
- msgid "I already did"
2960
- msgstr ""
2961
-
2962
- #: ../modules/supsystic_promo/mod.php:51
2963
- #, php-format
2964
- msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
2965
- msgstr ""
2966
-
2967
- #: ../modules/supsystic_promo/mod.php:52
2968
- msgid "<p>On behalf of the entire <a href=\"https://supsystic.com/\" target=\"_blank\">supsystic.com</a> company I would like to thank you for been with us, and I really hope that our software helped you.</p>"
2969
- msgstr ""
2970
-
2971
- #: ../modules/supsystic_promo/mod.php:53
2972
- msgid "<p>And today, if you want, - you can help us. This is really simple - you can just add small promo link to our site under your Forms. This is small step for you, but a big help for us! Sure, if you don't want - just skip this and continue enjoy our software!</p>"
2973
- msgstr ""
2974
-
2975
- #: ../modules/supsystic_promo/mod.php:56
2976
- msgid "Skip"
2977
- msgstr ""
2978
-
2979
- #: ../modules/supsystic_promo/mod.php:103
2980
- msgid "Overview"
2981
- msgstr ""
2982
-
2983
- #: ../modules/supsystic_promo/mod.php:106
2984
- msgid "Featured Plugins"
2985
- msgstr ""
2986
-
2987
- #: ../modules/supsystic_promo/mod.php:113
2988
- msgid "Constant Contact - PRO"
2989
- msgstr ""
2990
-
2991
- #: ../modules/supsystic_promo/mod.php:114
2992
- msgid "Campaign Monitor - PRO"
2993
- msgstr ""
2994
-
2995
- #: ../modules/supsystic_promo/mod.php:115
2996
- msgid "Vertical Response - PRO"
2997
- msgstr ""
2998
-
2999
- #: ../modules/supsystic_promo/mod.php:116
3000
- msgid "SendGrid - PRO"
3001
- msgstr ""
3002
-
3003
- #: ../modules/supsystic_promo/mod.php:117
3004
- msgid "GetResponse - PRO"
3005
- msgstr ""
3006
-
3007
- #: ../modules/supsystic_promo/mod.php:118
3008
- msgid "iContact - PRO"
3009
- msgstr ""
3010
-
3011
- #: ../modules/supsystic_promo/mod.php:119
3012
- msgid "Active Campaign - PRO"
3013
- msgstr ""
3014
-
3015
- #: ../modules/supsystic_promo/mod.php:120
3016
- msgid "Mailrelay - PRO"
3017
- msgstr ""
3018
-
3019
- #: ../modules/supsystic_promo/mod.php:121
3020
- msgid "arpReach - PRO"
3021
- msgstr ""
3022
-
3023
- #: ../modules/supsystic_promo/mod.php:122
3024
- msgid "SG Autorepondeur - PRO"
3025
- msgstr ""
3026
-
3027
- #: ../modules/supsystic_promo/mod.php:123
3028
- msgid "Benchmark - PRO"
3029
- msgstr ""
3030
-
3031
- #: ../modules/supsystic_promo/mod.php:124
3032
- msgid "InfusionSoft - PRO"
3033
- msgstr ""
3034
-
3035
- #: ../modules/supsystic_promo/mod.php:125
3036
- msgid "SalesForce - Web-to-Lead - PRO"
3037
- msgstr ""
3038
-
3039
- #: ../modules/supsystic_promo/mod.php:126
3040
- msgid "ConvertKit - PRO"
3041
- msgstr ""
3042
-
3043
- #: ../modules/supsystic_promo/mod.php:127
3044
- msgid "Emma - PRO"
3045
- msgstr ""
3046
-
3047
- #: ../modules/supsystic_promo/mod.php:162
3048
- #: ../modules/supsystic_promo/mod.php:174
3049
- msgid "Get PRO"
3050
- msgstr ""
3051
-
3052
- #: ../modules/supsystic_promo/mod.php:185
3053
- msgid "Form Location"
3054
- msgstr ""
3055
-
3056
- #: ../modules/supsystic_promo/mod.php:234
3057
- msgid "Website"
3058
- msgstr ""
3059
-
3060
- #: ../modules/supsystic_promo/mod.php:236
3061
- msgid "Topic"
3062
- msgstr ""
3063
-
3064
- #: ../modules/supsystic_promo/mod.php:237
3065
- msgid "Plugin options"
3066
- msgstr ""
3067
-
3068
- #: ../modules/supsystic_promo/mod.php:238
3069
- msgid "Report a bug"
3070
- msgstr ""
3071
-
3072
- #: ../modules/supsystic_promo/mod.php:239
3073
- msgid "Require a new functionality"
3074
- msgstr ""
3075
-
3076
- #: ../modules/supsystic_promo/mod.php:240
3077
- msgid "Other"
3078
- msgstr ""
3079
-
3080
- #: ../modules/supsystic_promo/mod.php:242
3081
- msgid "Hello Supsystic Team!"
3082
- msgstr ""
3083
-
3084
- #: ../modules/supsystic_promo/views/supsystic_promo.php:25
3085
- msgid "Why Form by Supsystic is \"must have\" for your website?"
3086
- msgstr ""
3087
-
3088
- #: ../modules/supsystic_promo/views/supsystic_promo.php:26
3089
- #, php-format
3090
- msgid "Increase your sales by 500%% using Form by Supsystic! More subscribers = more sales! It's that simple!<br />More info you can find here <a target=\"_blank\" href=\"%s\">Form by Supsystic is \"must have\" for your website</a>"
3091
- msgstr ""
3092
-
3093
- #: ../modules/supsystic_promo/views/supsystic_promo.php:27
3094
- msgid "What is A/B testing?"
3095
- msgstr ""
3096
-
3097
- #: ../modules/supsystic_promo/views/supsystic_promo.php:28
3098
- #, php-format
3099
- msgid "A/B testing is one of the easiest ways to increase conversion rates and learn more about your audience!<br />A/B test in Form plugin involves testing two or more versions of a forms window - an A version (original) and a B versions (the variation) - with live traffic and measuring the effect each version has on your conversion rate.<br />To know more detail – click <a target=\"_blank\" href=\"%s\">here</a>"
3100
- msgstr ""
3101
-
3102
- #: ../modules/supsystic_promo/views/supsystic_promo.php:29
3103
- msgid "How to enable subscription to Aweber?"
3104
- msgstr ""
3105
-
3106
- #: ../modules/supsystic_promo/views/supsystic_promo.php:30
3107
- #, php-format
3108
- msgid "In order to subscribe to Aweber you need to know unique list id of your aweber account - check this <a target=\"_blank\" href=\"%s\">page</a> for more details."
3109
- msgstr ""
3110
-
3111
- #: ../modules/supsystic_promo/views/supsystic_promo.php:31
3112
- msgid "How to subscribe to MailChimp?"
3113
- msgstr ""
3114
-
3115
- #: ../modules/supsystic_promo/views/supsystic_promo.php:32
3116
- msgid ""
3117
- "To subscribe to MailChimp you need enter your MailChimp API key and name of list for subscription. To find your MailChimp API key - follow the instructions below:<br />\n"
3118
- "\t\t\t\t1. Login to your mailchimp account at http://mailchimp.com<br />\n"
3119
- "\t\t\t\t2. From the left main menu, click on your Username, then select \"Account\" in the flyout menu.<br />\n"
3120
- "\t\t\t\t3. From the account page select \"Extras\" -> \"API Keys\".<br />\n"
3121
- "\t\t\t\t4. Your API Key will be listed in the table labeled \"Your API Keys\".<br />\n"
3122
- "\t\t\t\t5. Copy / Paste your API key into \"MailChimp API key\" field in Form edit screen -> Subscribe section."
3123
- msgstr ""
3124
-
3125
- #: ../modules/supsystic_promo/views/supsystic_promo.php:38
3126
- msgid "Where to find css code for the pop-up window?"
3127
- msgstr ""
3128
-
3129
- #: ../modules/supsystic_promo/views/supsystic_promo.php:39
3130
- msgid ""
3131
- "With Form by Supsystic you can edit CSS style directly from the plugin. <br />\n"
3132
- "\t\t\t\tIn WordPress admin area - \n"
3133
- "go to Form by Supsystic -> choose a forms, what you need -> click Code tab. <br />\n"
3134
- "Here you can edit css style of the pop-up window."
3135
- msgstr ""
3136
-
3137
- #: ../modules/supsystic_promo/views/supsystic_promo.php:43
3138
- msgid "How to get PRO version of plugin for FREE?"
3139
- msgstr ""
3140
-
3141
- #: ../modules/supsystic_promo/views/supsystic_promo.php:44
3142
- #, php-format
3143
- msgid ""
3144
- "You have an incredible opportunity to get PRO version for free. Make Translation of the plugin! It will be amazing if you take advantage of this offer!<br />\n"
3145
- "\t\t\t\t\tMore info you can find here <a target=\"_blank\" href=\"%s\">“Get PRO version of any plugin for FREE”</a>"
3146
- msgstr ""
3147
-
3148
- #: ../modules/supsystic_promo/views/supsystic_promo.php:46
3149
- msgid "Translation"
3150
- msgstr ""
3151
-
3152
- #: ../modules/supsystic_promo/views/supsystic_promo.php:47
3153
- #, php-format
3154
- msgid ""
3155
- "All available languages are provided with the Supsystic Form plugin. If your language isn’t available, your plugin will be in English by default.<br />\n"
3156
- "\t\t\t\t\tAvailable Translations: English, French, German, Spanish, Russian<br />\n"
3157
- "\t\t\t\t\tTranslate or update a translation Form WordPress plugin in your language and get a Premium license for FREE. <a target=\"_blank\" href=\"%s\">Contact us.</a>"
3158
- msgstr ""
3159
-
3160
- #: ../modules/supsystic_promo/views/supsystic_promo.php:54
3161
- msgid "Where's my subscribers?"
3162
- msgstr ""
3163
-
3164
- #: ../modules/supsystic_promo/views/supsystic_promo.php:55
3165
- #, php-format
3166
- msgid ""
3167
- "By default all subscribers add to the WordPress. \n"
3168
- "\t\t\t\t\tTo find your subscribers go to Users tab on the left navigation menu of WordPress admin area. \n"
3169
- "\t\t\t\t\tAlso available subscription to the Aweber, MailChimp, MailPoet <a href='%s' target='_blank'>and other</a>. \n"
3170
- "\t\t\t\t\tIf you want to add another subscription service - just <a href='%s' target='_blank'>contact us</a> and provide URL of the subscription service."
3171
- msgstr ""
3172
-
3173
- #: ../modules/supsystic_promo/views/supsystic_promo.php:59
3174
- msgid "Form doesn't appear on the website"
3175
- msgstr ""
3176
-
3177
- #: ../modules/supsystic_promo/views/supsystic_promo.php:60
3178
- #, php-format
3179
- msgid "If you setup you're Form properly, and it still doesn't show on the page - there are can be conflict with your WordPress theme or other plugins. <a href='%s' target='_blank'>Contact us</a> with the URL of the webpage you add forms and screenshots / text of the error messages, if you have one - and we will help you resolve your issue."
3180
- msgstr ""
3181
-
3182
- #: ../modules/supsystic_promo/views/supsystic_promo.php:76
3183
- #, php-format
3184
- msgid "There were some problems while trying to retrieve our news, but you can always check all list <a target=\"_blank\" href=\"%s\">here</a>."
3185
- msgstr ""
3186
-
3187
- #: ../modules/supsystic_promo/views/supsystic_promo.php:133
3188
- msgid "Popup Plugin"
3189
- msgstr ""
3190
-
3191
- #: ../modules/supsystic_promo/views/supsystic_promo.php:133
3192
- msgid "The Best WordPress PopUp option plugin to help you gain more subscribers, social followers or advertisement. Responsive pop-ups with friendly options."
3193
- msgstr ""
3194
-
3195
- #: ../modules/supsystic_promo/views/supsystic_promo.php:134
3196
- msgid "Slider Plugin"
3197
- msgstr ""
3198
-
3199
- #: ../modules/supsystic_promo/views/supsystic_promo.php:134
3200
- msgid "Creating slideshows with Slider plugin is fast and easy. Simply select images from your WordPress Media Library, Flickr, Instagram or Facebook, set slide captions, links and SEO fields all from one page."
3201
- msgstr ""
3202
-
3203
- #: ../modules/supsystic_promo/views/supsystic_promo.php:135
3204
- msgid "Photo Gallery Plugin"
3205
- msgstr ""
3206
-
3207
- #: ../modules/supsystic_promo/views/supsystic_promo.php:135
3208
- msgid "Photo Gallery Plugin with a great number of layouts will help you to create quality respectable portfolios and image galleries."
3209
- msgstr ""
3210
-
3211
- #: ../modules/supsystic_promo/views/supsystic_promo.php:136
3212
- msgid "Data Tables Generator"
3213
- msgstr ""
3214
-
3215
- #: ../modules/supsystic_promo/views/supsystic_promo.php:136
3216
- msgid "Create and manage beautiful data tables with custom design. No HTML knowledge is required."
3217
- msgstr ""
3218
-
3219
- #: ../modules/supsystic_promo/views/supsystic_promo.php:137
3220
- msgid "Social Share Buttons"
3221
- msgstr ""
3222
-
3223
- #: ../modules/supsystic_promo/views/supsystic_promo.php:137
3224
- msgid "Social share buttons to increase social traffic and popularity. Social sharing to Facebook, Twitter and other social networks."
3225
- msgstr ""
3226
-
3227
- #: ../modules/supsystic_promo/views/supsystic_promo.php:138
3228
- msgid "Live Chat Plugin"
3229
- msgstr ""
3230
-
3231
- #: ../modules/supsystic_promo/views/supsystic_promo.php:138
3232
- msgid "Be closer to your visitors and customers with Live Chat Support by Supsystic. Help you visitors, support them in real-time with exceptional Live Chat WordPress plugin by Supsystic."
3233
- msgstr ""
3234
-
3235
- #: ../modules/supsystic_promo/views/supsystic_promo.php:139
3236
- msgid "Pricing Table"
3237
- msgstr ""
3238
-
3239
- #: ../modules/supsystic_promo/views/supsystic_promo.php:139
3240
- msgid "It’s never been so easy to create and manage pricing and comparison tables with table builder. Any element of the table can be customise with mouse click."
3241
- msgstr ""
3242
-
3243
- #: ../modules/supsystic_promo/views/supsystic_promo.php:140
3244
- msgid "Coming Soon Plugin"
3245
- msgstr ""
3246
-
3247
- #: ../modules/supsystic_promo/views/supsystic_promo.php:140
3248
- msgid "Coming soon page with drag-and-drop builder or under construction | maintenance mode to notify visitors and collects emails."
3249
- msgstr ""
3250
-
3251
- #: ../modules/supsystic_promo/views/supsystic_promo.php:141
3252
- msgid "Backup Plugin"
3253
- msgstr ""
3254
-
3255
- #: ../modules/supsystic_promo/views/supsystic_promo.php:141
3256
- msgid "Backup and Restore WordPress Plugin by Supsystic provides quick and unhitched DropBox, FTP, Amazon S3, Google Drive backup for your WordPress website."
3257
- msgstr ""
3258
-
3259
- #: ../modules/supsystic_promo/views/supsystic_promo.php:142
3260
- msgid "Google Maps Easy"
3261
- msgstr ""
3262
-
3263
- #: ../modules/supsystic_promo/views/supsystic_promo.php:142
3264
- msgid "Display custom Google Maps. Set markers and locations with text, images, categories and links. Customize google map in a simple and intuitive way."
3265
- msgstr ""
3266
-
3267
- #: ../modules/supsystic_promo/views/supsystic_promo.php:143
3268
- msgid "Digital Publication Plugin"
3269
- msgstr ""
3270
-
3271
- #: ../modules/supsystic_promo/views/supsystic_promo.php:143
3272
- msgid "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, Portfolios. Convert images, posts, PDF to the page flip book."
3273
- msgstr ""
3274
-
3275
- #: ../modules/supsystic_promo/views/supsystic_promo.php:144
3276
- msgid "Contact Form Plugin"
3277
- msgstr ""
3278
-
3279
- #: ../modules/supsystic_promo/views/supsystic_promo.php:144
3280
- msgid "One of the best plugin for creating Contact Forms on your WordPress site. Changeable fonts, backgrounds, an option for adding fields etc."
3281
- msgstr ""
3282
-
3283
- #: ../modules/supsystic_promo/views/supsystic_promo.php:145
3284
- msgid "Newsletter Plugin"
3285
- msgstr ""
3286
-
3287
- #: ../modules/supsystic_promo/views/supsystic_promo.php:145
3288
- msgid "Supsystic Newsletter plugin for automatic mailing of your letters. You will have no need to control it or send them manually. No coding, hard skills or long hours of customizing are required."
3289
- msgstr ""
3290
-
3291
- #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:1
3292
- #, php-format
3293
- msgid "Show when user tries to exit from your site. <a target=\"_blank\" href=\"%s\">Check example.</a>"
3294
- msgstr ""
3295
-
3296
- #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:7
3297
- msgid "On Exit from Site"
3298
- msgstr ""
3299
-
3300
- #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:9
3301
- msgid "Available in PRO"
3302
- msgstr ""
3303
-
3304
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:4
3305
- msgid "Version"
3306
- msgstr ""
3307
-
3308
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
3309
- msgid "Go"
3310
- msgstr ""
3311
-
3312
- #: ../modules/supsystic_promo/views/tpl/adminFooter.php:15
3313
- msgid "Support"
3314
- msgstr ""
3315
-
3316
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:4
3317
- #, php-format
3318
- msgid "Welcome to %s plugin!"
3319
- msgstr ""
3320
-
3321
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:5
3322
- #, php-format
3323
- msgid "Thank you for choosing our %s plugin. Just click here to start using it - and we will show you it's possibilities and powerfull features."
3324
- msgstr ""
3325
-
3326
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:8
3327
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:18
3328
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:28
3329
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:38
3330
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:48
3331
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:58
3332
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:68
3333
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:78
3334
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:88
3335
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:98
3336
- msgid "Close"
3337
- msgstr ""
3338
-
3339
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:9
3340
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:19
3341
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:29
3342
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:39
3343
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:49
3344
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:59
3345
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:69
3346
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:79
3347
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:89
3348
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:99
3349
- msgid "Next"
3350
- msgstr ""
3351
-
3352
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:14
3353
- msgid "Create your firs Form"
3354
- msgstr ""
3355
-
3356
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:15
3357
- msgid "Click on \"Add New Form\" button to create your firs Form. Just try - this is really simple!"
3358
- msgstr ""
3359
-
3360
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:24
3361
- msgid "Enter name for your Form"
3362
- msgstr ""
3363
-
3364
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:25
3365
- msgid "This will be name of your Form. You can change it latter."
3366
- msgstr ""
3367
-
3368
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:34
3369
- msgid "Selecte template for your Form"
3370
- msgstr ""
3371
-
3372
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:35
3373
- msgid "Choose any templates from this list. You will be able to customize it after creation, and also - you will be able to change it latter if you will need this."
3374
- msgstr ""
3375
-
3376
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:44
3377
- msgid "Save first Form"
3378
- msgstr ""
3379
-
3380
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:45
3381
- msgid "After you entered name of your Form and selected it's template - just save it, and you will be redirected to Form edit screen - where you will be able to customize your Form."
3382
- msgstr ""
3383
-
3384
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:54
3385
- msgid "Main Settings"
3386
- msgstr ""
3387
-
3388
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:55
3389
- msgid "Here you can setup main display settings for your Form - when it should be visible for your user, when it need to be closed, if required - select specific pages/posts where you need to show your Form."
3390
- msgstr ""
3391
-
3392
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:64
3393
- msgid "Design Settings"
3394
- msgstr ""
3395
-
3396
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:65
3397
- msgid "One of our most powerfull features - possibility to <strong>customize</strong> design for each Form window for your needs. In this section you can select your Form colors and images, enter required texts that will describe your neds for your visitors, setup social settings (if required), select Form location, and in the end - select Animation style for your Form from list of more then 20 different animation styles!"
3398
- msgstr ""
3399
-
3400
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:74
3401
- msgid "Subscribe Settings"
3402
- msgstr ""
3403
-
3404
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:75
3405
- msgid "Setup your Subscription settings here - select Subscribers destination in \"Subscribe to\" option - it allow to flow your subscribers not only to WordPress Users, but to other popular subscribe services. With other subscription options you will be able to easily customize your subscribe form in Form window."
3406
- msgstr ""
3407
-
3408
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:84
3409
- msgid "Form Statistics"
3410
- msgstr ""
3411
-
3412
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:85
3413
- msgid "After you will setup your Form - it will start displaying to your site visitors. And now - you need to check it's displaying statistics. Here, in Statistics tab, you will be able to see how many times Form was shown to your visitors, how many times visitors subscribed to it (if subscription is enabled), how many times visitors shared your site using Social Share Form functionality and what social networks for share is most popular (if it was enabled). If you will use AB Testing feature to increase your site popularity - you will see here all your main and tested Forms statistics - in one graph or diagramm, - and this will provide you with all required information about your Form popularity!"
3414
- msgstr ""
3415
-
3416
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:94
3417
- msgid "Form CSS / HTML Code"
3418
- msgstr ""
3419
-
3420
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:95
3421
- #, php-format
3422
- msgid "In case you will need modify source CSS / HTML code of your Form - you can easily do this here. Just make sure that you know what you are doing - don't break Form. You can also find additional information about editing source code <a href=\"%s\" target=\"_blank\">here</a>."
3423
- msgstr ""
3424
-
3425
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:104
3426
- msgid "Well Done!"
3427
- msgstr ""
3428
-
3429
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:105
3430
- #, php-format
3431
- msgid "That's it! Now you know how to use our %s. Just save your Form after you will setup it - and you will see results. You can also check our site - <a href=\"%s\" target=\"_blank\">supsystic.com</a> to find out more about our %s plugin. If you will have any questions - you can always contact us on <a href=\"%s\" target=\"_blank\">WordPress plugin forum</a> or in <a href=\"%s\" target=\"_blank\">our support system</a>. We really hope that our solution will be helpful for you. Good luck!"
3432
- msgstr ""
3433
-
3434
- #: ../modules/supsystic_promo/views/tpl/adminTour.php:108
3435
- msgid "Finish"
3436
- msgstr ""
3437
-
3438
- #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:3
3439
- msgid "Get plugins bundle today and save over 80%"
3440
- msgstr ""
3441
-
3442
- #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:6
3443
- msgid "Check It out"
3444
- msgstr ""
3445
-
3446
- #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:31
3447
- msgid "More info"
3448
- msgstr ""
3449
-
3450
- #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:34
3451
- msgid "Download"
3452
- msgstr ""
3453
-
3454
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:8
3455
- msgid "Enable Layered Form Style"
3456
- msgstr ""
3457
-
3458
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:12
3459
- msgid "By default all Forms have modal style: it appears on user screen over the whole site. Layered style allows you to show your Form - on selected position: top, bottom, etc. and not over your site - but right near your content."
3460
- msgstr ""
3461
-
3462
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:16
3463
- msgid "Select position for your Form"
3464
- msgstr ""
3465
-
3466
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:19
3467
- msgid "Top Left"
3468
- msgstr ""
3469
-
3470
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:20
3471
- msgid "Top"
3472
- msgstr ""
3473
-
3474
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:21
3475
- msgid "Top Right"
3476
- msgstr ""
3477
-
3478
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:23
3479
- msgid "Center Left"
3480
- msgstr ""
3481
-
3482
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:24
3483
- msgid "Center"
3484
- msgstr ""
3485
-
3486
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:25
3487
- msgid "Center Right"
3488
- msgstr ""
3489
-
3490
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:27
3491
- msgid "Bottom Left"
3492
- msgstr ""
3493
-
3494
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:28
3495
- msgid "Bottom"
3496
- msgstr ""
3497
-
3498
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:29
3499
- msgid "Bottom Right"
3500
- msgstr ""
3501
-
3502
- #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:77
3503
- #, php-format
3504
- msgid "This functionality and more - is available in PRO version. <a class=\"button button-primary\" target=\"_blank\" href=\"%s\">Get it</a> today for 29$"
3505
- msgstr ""
3506
-
3507
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:31
3508
- msgid "Server Settings"
3509
- msgstr ""
3510
-
3511
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:44
3512
- msgid "News"
3513
- msgstr ""
3514
-
3515
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:50
3516
- msgid "All news and info"
3517
- msgstr ""
3518
-
3519
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:55
3520
- msgid "Contact form"
3521
- msgstr ""
3522
-
3523
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:87
3524
- msgid "Send email"
3525
- msgstr ""
3526
-
3527
- #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:96
3528
- msgid "Your email was sent, we will try to respond to your as soon as possible. Thank you for support!"
3529
- msgstr ""
3530
-
3531
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:7
3532
- #, php-format
3533
- msgid "Welcome to the %s v %s"
3534
- msgstr ""
3535
-
3536
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:8
3537
- msgid "Skip tutorial"
3538
- msgstr ""
3539
-
3540
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:11
3541
- msgid "The best way to collect subscribers and show notifications.<br />We are trying to make our plugin work in most comfortable way for you. Here is some base information about it."
3542
- msgstr ""
3543
-
3544
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:19
3545
- msgid "Step-by-step tutorial"
3546
- msgstr ""
3547
-
3548
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:21
3549
- msgid "There're really many options of forms customization. So as soon as you close that page, I'll show you step-by-step tutorial of how to use plugin. Hope it will be usefull for you :)"
3550
- msgstr ""
3551
-
3552
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:24
3553
- msgid "As an option we can install and setup plugin for you."
3554
- msgstr ""
3555
-
3556
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:30
3557
- #, php-format
3558
- msgid "We love our plugin and do the best to improve all features for You. But sometimes issues happened, or you can't find required feature that you need. Don't worry, just <a href='%s' target='_blank'>contact us</a> and we will help you!"
3559
- msgstr ""
3560
-
3561
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:36
3562
- msgid "Video Tutorial"
3563
- msgstr ""
3564
-
3565
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:48
3566
- msgid "Frequently Asked Questions"
3567
- msgstr ""
3568
-
3569
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:51
3570
- msgid "Check all FAQs"
3571
- msgstr ""
3572
-
3573
- #: ../modules/supsystic_promo/views/tpl/welcomePage.php:59
3574
- msgid "Let's Start!"
3575
- msgstr ""
3576
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/contact-form-by-supsystic-fr_FR.mo ADDED
Binary file
languages/contact-form-by-supsystic-fr_FR.po ADDED
@@ -0,0 +1,4837 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Contact Form by Supsystic\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-06-11 15:45+0300\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: supsystic.com <supsystic.team@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.1\n"
17
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPath-1: ..\n"
20
+
21
+ #: ../classes/controller.php:207 ../classes/controller.php:215
22
+ #: ../modules/forms/controller.php:9 ../modules/forms/controller.php:111
23
+ #: ../modules/forms/controller.php:119 ../modules/forms/controller.php:217
24
+ #: ../modules/forms/controller.php:329 ../modules/forms/controller.php:337
25
+ #: ../modules/mail/controller.php:23 ../modules/options/controller.php:6
26
+ #: ../modules/pages/views/tpl/deactivatePage.php:37
27
+ #: ../modules/statistics/controller.php:20
28
+ #: ../modules/statistics/controller.php:29
29
+ msgid "Done"
30
+ msgstr "Fait"
31
+
32
+ #: ../classes/field.php:131
33
+ msgid "Select"
34
+ msgstr "Sélection"
35
+
36
+ #: ../classes/field.php:170 ../classes/field.php:179 ../classes/field.php:184
37
+ msgid "N/A"
38
+ msgstr "N/A"
39
+
40
+ #: ../classes/field.php:277
41
+ msgid "Add Checkbox"
42
+ msgstr "Ajouter une case à cocher"
43
+
44
+ #: ../classes/field.php:282 ../classes/field.php:287
45
+ msgid "Add Item"
46
+ msgstr "Ajouter un élément"
47
+
48
+ #: ../classes/field.php:293
49
+ msgid "Add Radio Button"
50
+ msgstr "Ajouter une case à cocher"
51
+
52
+ #: ../classes/field.php:311
53
+ msgid "Dimensions"
54
+ msgstr "Dimensions"
55
+
56
+ #: ../classes/field.php:314
57
+ msgid "width"
58
+ msgstr "largeur"
59
+
60
+ #: ../classes/field.php:316
61
+ msgid "height"
62
+ msgstr "hauteur"
63
+
64
+ #: ../classes/field.php:323
65
+ msgid "Click to set field \"id\" and \"class\""
66
+ msgstr "Cliquez pour définir champ \"id\" et \"class\""
67
+
68
+ #: ../classes/field.php:324
69
+ msgid "Attributes"
70
+ msgstr "Attribut"
71
+
72
+ #: ../classes/field.php:402
73
+ msgid "There are no configuration options for this module"
74
+ msgstr "Il n'y a pas d'options de configuration pour ce module"
75
+
76
+ #: ../classes/fieldAdapter.php:93
77
+ msgid "Apply To"
78
+ msgstr "Appliquer à"
79
+
80
+ #: ../classes/fieldAdapter.php:95
81
+ msgid "Address"
82
+ msgstr "Adresse"
83
+
84
+ #: ../classes/fieldAdapter.php:96
85
+ msgid "Destination"
86
+ msgstr "Destination"
87
+
88
+ #: ../classes/fieldAdapter.php:97
89
+ msgid "Country"
90
+ msgstr "Pays"
91
+
92
+ #: ../classes/fieldAdapter.php:100
93
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:295
94
+ msgid "Categories"
95
+ msgstr "Catégories"
96
+
97
+ #: ../classes/fieldAdapter.php:101
98
+ msgid "You have no categories"
99
+ msgstr "Vous n'avez pas de catégories"
100
+
101
+ #: ../classes/fieldAdapter.php:102
102
+ msgid "Brands"
103
+ msgstr "Marques"
104
+
105
+ #: ../classes/fieldAdapter.php:103
106
+ msgid "You have no brands"
107
+ msgstr "Vous n'avez pas de marques"
108
+
109
+ #: ../classes/fieldAdapter.php:105
110
+ msgid "Tax Rate"
111
+ msgstr "Taux de la TVA"
112
+
113
+ #: ../classes/fieldAdapter.php:106
114
+ msgid "Absolute"
115
+ msgstr "Absolu"
116
+
117
+ #: ../classes/fieldAdapter.php:132
118
+ msgid "Not selected"
119
+ msgstr "Non sélectionné"
120
+
121
+ #: ../classes/fieldAdapter.php:183
122
+ msgid "class"
123
+ msgstr "class"
124
+
125
+ #: ../classes/fieldAdapter.php:185 ../classes/tables/usage_stat.php:7
126
+ msgid "id"
127
+ msgstr "id"
128
+
129
+ #: ../classes/fileuploader.php:29
130
+ msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
131
+ msgstr "Le fichier téléchargé excède le upload_max_filesize dans php.ini"
132
+
133
+ #: ../classes/fileuploader.php:32
134
+ msgid ""
135
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
136
+ "the HTML form"
137
+ msgstr ""
138
+ "Le fichier téléchargé excède le MAX_FILE_SIZE qui a été spécifié dans le "
139
+ "formulaire HTML"
140
+
141
+ #: ../classes/fileuploader.php:35
142
+ msgid "The uploaded file was only partially uploaded"
143
+ msgstr "Le fichier n'a été que partiellement téléchargé"
144
+
145
+ #: ../classes/fileuploader.php:38
146
+ msgid "No file was uploaded."
147
+ msgstr "Aucun fichier n'a été téléchargé."
148
+
149
+ #: ../classes/fileuploader.php:41
150
+ msgid "Missing a temporary folder"
151
+ msgstr "Absenced'un dossier temporaire"
152
+
153
+ #: ../classes/fileuploader.php:44
154
+ msgid "Failed to write file to disk"
155
+ msgstr "Impossible d'écrire le fichier sur le disque"
156
+
157
+ #: ../classes/fileuploader.php:47
158
+ msgid "File upload stopped by extension"
159
+ msgstr "Téléchargement du fichier stoppé par l'extension"
160
+
161
+ #: ../classes/fileuploader.php:51
162
+ msgid "No error code avaiable"
163
+ msgstr "Aucun code d'erreur disponible"
164
+
165
+ #: ../classes/fileuploader.php:54
166
+ msgid "No file was uploaded.."
167
+ msgstr "Aucun fichier n'a été téléchargé !"
168
+
169
+ #: ../classes/frame.php:149
170
+ msgid "You have no permissions to view this page"
171
+ msgstr "Vous n'avez pas les permissions pour voir cette page"
172
+
173
+ #: ../classes/html.php:302
174
+ msgid "Upload"
175
+ msgstr "Téléchargement"
176
+
177
+ #: ../classes/html.php:715
178
+ msgid "ON"
179
+ msgstr "Marche"
180
+
181
+ #: ../classes/html.php:716
182
+ msgid "OFF"
183
+ msgstr "Arrêt"
184
+
185
+ #: ../classes/html.php:740
186
+ #, php-format
187
+ msgid "Select %s"
188
+ msgstr "Sélectionnez %s"
189
+
190
+ #: ../classes/modInstaller.php:34
191
+ #, php-format
192
+ msgid "Move files for %s failed"
193
+ msgstr "Le déplacement des fichiers pour %s a échoué"
194
+
195
+ #: ../classes/modInstaller.php:37
196
+ #, php-format
197
+ msgid "%s is not plugin module"
198
+ msgstr "%s est pas un module du plugin"
199
+
200
+ #: ../classes/modInstaller.php:76
201
+ msgid "Cannot create module directory. Try to set permission to "
202
+ msgstr ""
203
+ "Impossible de créer le répertoire du module. Essayez de définir "
204
+ "l’autorisation pour"
205
+
206
+ #: ../classes/modInstaller.php:104
207
+ msgid "No modules were found in XML file"
208
+ msgstr "Aucun module n'a été trouvé dans le fichier XML"
209
+
210
+ #: ../classes/modInstaller.php:108
211
+ msgid "Invalid XML file"
212
+ msgstr "Fichier XML non valide"
213
+
214
+ #: ../classes/modInstaller.php:110
215
+ msgid "No XML file were found"
216
+ msgstr "Aucun fichier XML n'a été trouvé"
217
+
218
+ #: ../classes/modInstaller.php:123
219
+ #, fuzzy
220
+ #| msgid "No modules were found in XML file"
221
+ msgid "No modules were found in installation file"
222
+ msgstr "Aucun module n'a été trouvé dans le fichier XML"
223
+
224
+ #: ../classes/modInstaller.php:127
225
+ #, fuzzy
226
+ #| msgid "No XML file were found"
227
+ msgid "No installation file were found"
228
+ msgstr "Aucun fichier XML n'a été trouvé"
229
+
230
+ #: ../classes/modInstaller.php:149
231
+ #, php-format
232
+ msgid "Install %s failed"
233
+ msgstr "L’installation de %s a échouée"
234
+
235
+ #: ../classes/modInstaller.php:155
236
+ msgid "Error Activate module"
237
+ msgstr "Erreur d'activation du module"
238
+
239
+ #: ../classes/modInstaller.php:184
240
+ msgid "Error Deactivation module"
241
+ msgstr "Erreur de désactivation du module"
242
+
243
+ #: ../classes/modInstaller.php:201
244
+ msgid "Error Activating module"
245
+ msgstr "Erreur d'activation du module"
246
+
247
+ #: ../classes/model.php:176 ../classes/model.php:188
248
+ #: ../modules/forms/models/forms.php:594 ../modules/forms/models/forms.php:606
249
+ msgid "Database error detected"
250
+ msgstr "Erreur de base de données détectée"
251
+
252
+ #: ../classes/model.php:178 ../modules/forms/models/forms.php:596
253
+ #: ../modules/forms/models/forms.php:801 ../modules/forms/models/forms.php:817
254
+ #: ../modules/forms/models/forms.php:831
255
+ #: ../modules/statistics/models/statistics.php:112
256
+ #: ../modules/statistics/models/statistics.php:143
257
+ msgid "Invalid ID"
258
+ msgstr "ID invalide"
259
+
260
+ #: ../classes/model.php:211
261
+ msgid "Empty or invalid ID"
262
+ msgstr "Id invalide ou vide"
263
+
264
+ #: ../classes/table.php:277
265
+ msgid "Nothing to update"
266
+ msgstr "Pas de mise à jour"
267
+
268
+ #: ../classes/table.php:293
269
+ msgid "Database error. Please contact your developer."
270
+ msgstr "Erreur de base de données. SVP contactez votre développeur."
271
+
272
+ #: ../classes/tables/modules.php:7 ../classes/tables/modules_type.php:8
273
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:134
274
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:244
275
+ msgid "Label"
276
+ msgstr "Libellé"
277
+
278
+ #: ../classes/tables/modules.php:8
279
+ msgid "Type"
280
+ msgstr "Type"
281
+
282
+ #: ../classes/tables/modules.php:9
283
+ msgid "Active"
284
+ msgstr "Actif"
285
+
286
+ #: ../classes/tables/modules.php:10
287
+ msgid "Params"
288
+ msgstr "Paramètres"
289
+
290
+ #: ../classes/tables/modules.php:13
291
+ msgid "Code"
292
+ msgstr "Code"
293
+
294
+ #: ../classes/tables/modules.php:14
295
+ msgid "External plugin directory"
296
+ msgstr "Répertoire des plugins externes"
297
+
298
+ #: ../classes/tables/modules_type.php:7
299
+ msgid "ID"
300
+ msgstr "ID "
301
+
302
+ #: ../classes/tables/usage_stat.php:8
303
+ msgid "code"
304
+ msgstr "code"
305
+
306
+ #: ../classes/tables/usage_stat.php:9
307
+ msgid "visits"
308
+ msgstr "visites"
309
+
310
+ #: ../classes/tables/usage_stat.php:10
311
+ msgid "spent_time"
312
+ msgstr "spent_time"
313
+
314
+ #: ../classes/tables/usage_stat.php:11
315
+ msgid "modify_timestamp"
316
+ msgstr "modify_timestamp"
317
+
318
+ #: ../classes/validator.php:30
319
+ #, php-format
320
+ msgid "Invalid length for %s, max length is %s"
321
+ msgstr "Longueur non valide pour %s, la longueur maximale est de %s"
322
+
323
+ #: ../classes/validator.php:43
324
+ #, php-format
325
+ msgid "Invalid numeric value for %s"
326
+ msgstr "Valeur numérique non valide pour %s"
327
+
328
+ #: ../classes/validator.php:71 ../modules/forms/models/forms.php:168
329
+ #: ../modules/supsystic_promo/controller.php:39
330
+ #, php-format
331
+ msgid "Please enter %s"
332
+ msgstr "Veuillez entrer %s"
333
+
334
+ #: ../classes/validator.php:78 ../modules/forms/models/forms.php:160
335
+ #: ../modules/supsystic_promo/controller.php:39
336
+ #, php-format
337
+ msgid "Please select %s"
338
+ msgstr "SVP sélectionnez %s"
339
+
340
+ #: ../classes/validator.php:85 ../classes/validator.php:101
341
+ #, php-format
342
+ msgid "Invalid %s"
343
+ msgstr "Invalide %s"
344
+
345
+ #: ../classes/validator.php:88
346
+ #, php-format
347
+ msgid "%s is already registered"
348
+ msgstr "%s est déjà enregistré"
349
+
350
+ #: ../modules/adminmenu/mod.php:13
351
+ #, php-format
352
+ msgid ""
353
+ "Cool WordPress plugins from supsystic.com developers. I tried %s - and this "
354
+ "was what I need! #supsystic.com"
355
+ msgstr ""
356
+ " De supers plugins Wordpress de l'équipe de supsystic.com. J’ai essayé %s - "
357
+ "et c’est ce dont j’avais besoin ! #supsystic.com"
358
+
359
+ #: ../modules/adminmenu/mod.php:14 ../modules/options/mod.php:48
360
+ msgid "Settings"
361
+ msgstr "Paramètres "
362
+
363
+ #: ../modules/adminmenu/mod.php:15
364
+ msgid "More plugins for your WordPress site here!"
365
+ msgstr "Plus de plugins pour votre site WordPress ici !"
366
+
367
+ #: ../modules/adminmenu/mod.php:16 ../modules/adminmenu/mod.php:17
368
+ #: ../modules/adminmenu/mod.php:18
369
+ msgid "Spread the word!"
370
+ msgstr "Qu’on se le dise !"
371
+
372
+ #: ../modules/forms/controller.php:40
373
+ #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:35
374
+ msgid "Download"
375
+ msgstr ""
376
+
377
+ #: ../modules/forms/controller.php:63 ../modules/forms/models/forms.php:353
378
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:41
379
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:87
380
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:92
381
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:94
382
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:95
383
+ msgid "Yes"
384
+ msgstr "Oui"
385
+
386
+ #: ../modules/forms/controller.php:63 ../modules/forms/models/forms.php:351
387
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:40
388
+ #: ../modules/options/mod.php:140
389
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:87
390
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:92
391
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:94
392
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:95
393
+ msgid "No"
394
+ msgstr "Non"
395
+
396
+ #: ../modules/forms/controller.php:320
397
+ msgid "Done, redirecting to new Form..."
398
+ msgstr "Fait, redirection vers le nouveau formulaire..."
399
+
400
+ #: ../modules/forms/controller.php:376
401
+ msgid "Thank you for contacting us!"
402
+ msgstr "Merci de nous avoir contacté."
403
+
404
+ #: ../modules/forms/controller.php:412
405
+ #, php-format
406
+ msgid "Contacts from %s"
407
+ msgstr "Contacts depuis %s"
408
+
409
+ #: ../modules/forms/controller.php:425
410
+ msgid "IP"
411
+ msgstr "IP"
412
+
413
+ #: ../modules/forms/controller.php:426 ../modules/forms/mod.php:111
414
+ msgid "URL"
415
+ msgstr "URL"
416
+
417
+ #: ../modules/forms/controller.php:427
418
+ msgid "Form ID"
419
+ msgstr "ID du formulaire"
420
+
421
+ #: ../modules/forms/controller.php:428
422
+ msgid "Date Created"
423
+ msgstr "Date de création"
424
+
425
+ #: ../modules/forms/controller.php:459
426
+ msgid "There are no Contacts for now"
427
+ msgstr "Il n’y a pas de contacts pour l’instant"
428
+
429
+ #: ../modules/forms/mod.php:30
430
+ msgid "Add New Form"
431
+ msgstr "Ajouter un nouveau formulaire"
432
+
433
+ #: ../modules/forms/mod.php:33
434
+ msgid "Edit"
435
+ msgstr "Éditer"
436
+
437
+ #: ../modules/forms/mod.php:36
438
+ msgid "Show All Forms"
439
+ msgstr "Afficher tous les formulaires"
440
+
441
+ #: ../modules/forms/mod.php:39
442
+ #, fuzzy
443
+ #| msgid "iContact"
444
+ msgid "Contacts"
445
+ msgstr "iContact"
446
+
447
+ #: ../modules/forms/mod.php:79
448
+ msgid "Form"
449
+ msgstr "Formulaire"
450
+
451
+ #: ../modules/forms/mod.php:86
452
+ msgid "Text"
453
+ msgstr "Texte"
454
+
455
+ #: ../modules/forms/mod.php:87 ../modules/supsystic_promo/mod.php:243
456
+ msgid "Email"
457
+ msgstr "Courriel"
458
+
459
+ #: ../modules/forms/mod.php:88
460
+ msgid "Select Box"
461
+ msgstr "Boîte de sélection"
462
+
463
+ #: ../modules/forms/mod.php:89
464
+ msgid "Select List"
465
+ msgstr "Sélectionner une liste"
466
+
467
+ #: ../modules/forms/mod.php:90
468
+ msgid "Textarea"
469
+ msgstr "Zone de texte"
470
+
471
+ #: ../modules/forms/mod.php:91
472
+ #, fuzzy
473
+ #| msgid "WordPress"
474
+ msgid "WordPress Editor"
475
+ msgstr "WordPress"
476
+
477
+ #: ../modules/forms/mod.php:92
478
+ #, fuzzy
479
+ #| msgid "Categories"
480
+ msgid "WordPress Categories"
481
+ msgstr "Catégories"
482
+
483
+ #: ../modules/forms/mod.php:93
484
+ msgid "Woo Product Attribute"
485
+ msgstr ""
486
+
487
+ #: ../modules/forms/mod.php:94
488
+ msgid "Radiobutton"
489
+ msgstr "Bouton radio"
490
+
491
+ #: ../modules/forms/mod.php:95
492
+ msgid "Radiobuttons List"
493
+ msgstr "Liste boutons radio"
494
+
495
+ #: ../modules/forms/mod.php:96
496
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:314
497
+ msgid "Checkbox"
498
+ msgstr "Boîte de sélection"
499
+
500
+ #: ../modules/forms/mod.php:97
501
+ msgid "Checkbox List"
502
+ msgstr "Liste de cases à cocher"
503
+
504
+ #: ../modules/forms/mod.php:98
505
+ msgid "Subscribe Checkbox"
506
+ msgstr "Cases à cocher pour abonnement"
507
+
508
+ #: ../modules/forms/mod.php:99
509
+ msgid "Country List"
510
+ msgstr "Liste des pays"
511
+
512
+ #: ../modules/forms/mod.php:100
513
+ msgid "Country List Multiple"
514
+ msgstr "Liste multiple des pays"
515
+
516
+ #: ../modules/forms/mod.php:102
517
+ msgid "Number"
518
+ msgstr "Nombre"
519
+
520
+ #: ../modules/forms/mod.php:104 ../modules/statistics/controller.php:42
521
+ msgid "Date"
522
+ msgstr "Date "
523
+
524
+ #: ../modules/forms/mod.php:105
525
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:35
526
+ msgid "Month"
527
+ msgstr "Mois"
528
+
529
+ #: ../modules/forms/mod.php:106
530
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:34
531
+ msgid "Week"
532
+ msgstr "Semaine"
533
+
534
+ #: ../modules/forms/mod.php:107
535
+ msgid "Time"
536
+ msgstr "Temps"
537
+
538
+ #: ../modules/forms/mod.php:109 ../modules/forms/views/forms.php:102
539
+ msgid "Color"
540
+ msgstr "Couleur "
541
+
542
+ #: ../modules/forms/mod.php:110
543
+ msgid "Range"
544
+ msgstr "Rang"
545
+
546
+ #: ../modules/forms/mod.php:113
547
+ msgid "File Upload"
548
+ msgstr "Chargement de fichier"
549
+
550
+ #: ../modules/forms/mod.php:114
551
+ #, fuzzy
552
+ #| msgid "Testing"
553
+ msgid "Rating"
554
+ msgstr "Essai"
555
+
556
+ #: ../modules/forms/mod.php:115
557
+ msgid "reCaptcha"
558
+ msgstr "reCaptcha"
559
+
560
+ #: ../modules/forms/mod.php:117
561
+ msgid "Hidden Field"
562
+ msgstr "Champ caché"
563
+
564
+ #: ../modules/forms/mod.php:118
565
+ msgid "Submit Button"
566
+ msgstr "Bouton d'envoi"
567
+
568
+ #: ../modules/forms/mod.php:119
569
+ msgid "Reset Button"
570
+ msgstr "Bouton remise à zéro"
571
+
572
+ #: ../modules/forms/mod.php:121
573
+ msgid "HTML / Text Delimiter"
574
+ msgstr "HTML / Séparateur de texte"
575
+
576
+ #: ../modules/forms/mod.php:123
577
+ msgid "Google Map"
578
+ msgstr ""
579
+
580
+ #: ../modules/forms/mod.php:124
581
+ #, fuzzy
582
+ #| msgid "Address"
583
+ msgid "Address Search"
584
+ msgstr "Adresse"
585
+
586
+ #: ../modules/forms/models/forms.php:66
587
+ msgid "Can't find form"
588
+ msgstr "Impossible de trouver le formulaire"
589
+
590
+ #: ../modules/forms/models/forms.php:68
591
+ msgid "Empty Form ID"
592
+ msgstr "ID de formulaire vide"
593
+
594
+ #: ../modules/forms/models/forms.php:112
595
+ msgid "reCaptcha: The secret parameter is missing."
596
+ msgstr "reCaptcha : Le paramètre secret est manquant."
597
+
598
+ #: ../modules/forms/models/forms.php:113
599
+ msgid "reCaptcha: The secret parameter is invalid or malformed."
600
+ msgstr "reCaptcha: Le paramètre secret est invalide ou malformé."
601
+
602
+ #: ../modules/forms/models/forms.php:114
603
+ msgid "Please prove that you are not a robot - check reCaptcha."
604
+ msgstr "SVP prouvez que vous n'êtes pas un robot - vérifier reCaptcha."
605
+
606
+ #: ../modules/forms/models/forms.php:115
607
+ msgid "reCaptcha: The response parameter is invalid or malformed."
608
+ msgstr "reCaptcha : Le paramètre de réponse est invalide ou malformé."
609
+
610
+ #: ../modules/forms/models/forms.php:126
611
+ msgid ""
612
+ "There was a problem with sending request to Google reCaptcha validation "
613
+ "server. Please make sure that your server have possibility to send server-"
614
+ "server requests. Ask your hosting provider about this."
615
+ msgstr ""
616
+ "Il y avait un problème avec l'envoi de la demande pour la validation sur le "
617
+ "serveur de Google reCaptcha. SVP faites que votre serveur ait la "
618
+ "possibilité d'envoyer des requêtes à ce serveur. Questionner votre "
619
+ "hébergeur à ce sujet."
620
+
621
+ #: ../modules/forms/models/forms.php:164
622
+ #, php-format
623
+ msgid "Please check %s"
624
+ msgstr "Veuillez vérifier %s"
625
+
626
+ #: ../modules/forms/models/forms.php:179
627
+ #, fuzzy, php-format
628
+ #| msgid "Invalid numeric value for %s"
629
+ msgid "Minimum value for %s is %d"
630
+ msgstr "Valeur numérique non valide pour %s"
631
+
632
+ #: ../modules/forms/models/forms.php:192
633
+ #, fuzzy, php-format
634
+ #| msgid "Invalid numeric value for %s"
635
+ msgid "Maximum value for %s is %d"
636
+ msgstr "Valeur numérique non valide pour %s"
637
+
638
+ #: ../modules/forms/models/forms.php:197
639
+ #, fuzzy, php-format
640
+ #| msgid "Invalid numeric value for %s"
641
+ msgid "Invalid value for %s"
642
+ msgstr "Valeur numérique non valide pour %s"
643
+
644
+ #: ../modules/forms/models/forms.php:210
645
+ #, php-format
646
+ msgid "%s does not match %s"
647
+ msgstr ""
648
+
649
+ #: ../modules/forms/models/forms.php:547
650
+ msgid "img/preview/"
651
+ msgstr "img/aperçu /"
652
+
653
+ #: ../modules/forms/models/forms.php:577
654
+ msgid "Please select Form template from list below"
655
+ msgstr "Sélectionnez un modèle de formulaire dans la liste ci-dessous"
656
+
657
+ #: ../modules/forms/models/forms.php:579 ../modules/forms/models/forms.php:803
658
+ msgid "Please enter Name"
659
+ msgstr "Veuillez saisir Nom"
660
+
661
+ #: ../modules/forms/models/forms.php:690
662
+ msgid "Provided data was corrupted"
663
+ msgstr "Données corrompues"
664
+
665
+ #: ../modules/forms/models/forms.php:829
666
+ msgid "Name can not be empty"
667
+ msgstr "Nom ne peut pas être vide"
668
+
669
+ #: ../modules/forms/models/forms.php:844 ../modules/forms/models/forms.php:850
670
+ #: ../modules/forms/models/forms.php:856 ../modules/forms/models/forms.php:860
671
+ #: ../modules/forms/models/forms.php:866 ../modules/forms/models/forms.php:872
672
+ #: ../modules/forms/models/forms.php:878 ../modules/forms/models/forms.php:887
673
+ #: ../modules/forms/models/forms.php:890 ../modules/forms/models/forms.php:900
674
+ msgid "Form background"
675
+ msgstr "Arrière plan du formulaire"
676
+
677
+ #: ../modules/forms/models/forms.php:845 ../modules/forms/models/forms.php:857
678
+ #: ../modules/forms/models/forms.php:861 ../modules/forms/models/forms.php:873
679
+ msgid "Inputs and Buttons background"
680
+ msgstr "Entrées et boutons de fond"
681
+
682
+ #: ../modules/forms/models/forms.php:846 ../modules/forms/models/forms.php:852
683
+ #: ../modules/forms/models/forms.php:862 ../modules/forms/models/forms.php:868
684
+ #: ../modules/forms/models/forms.php:874 ../modules/forms/models/forms.php:880
685
+ #: ../modules/forms/models/forms.php:886
686
+ #, fuzzy
687
+ #| msgid "Submit Button"
688
+ msgid "Submit buttons style"
689
+ msgstr "Bouton d'envoi"
690
+
691
+ #: ../modules/forms/models/forms.php:847 ../modules/forms/models/forms.php:853
692
+ #: ../modules/forms/models/forms.php:863 ../modules/forms/models/forms.php:869
693
+ #: ../modules/forms/models/forms.php:875 ../modules/forms/models/forms.php:881
694
+ #, fuzzy
695
+ #| msgid "Reset Button"
696
+ msgid "Reset buttons style"
697
+ msgstr "Bouton remise à zéro"
698
+
699
+ #: ../modules/forms/models/forms.php:851
700
+ #, fuzzy
701
+ #| msgid "Inputs and Buttons background"
702
+ msgid "Inputs and Buttons shadow"
703
+ msgstr "Entrées et boutons de fond"
704
+
705
+ #: ../modules/forms/models/forms.php:867
706
+ #, fuzzy
707
+ #| msgid "Form background"
708
+ msgid "Form background blackout"
709
+ msgstr "Arrière plan du formulaire"
710
+
711
+ #: ../modules/forms/models/forms.php:879 ../modules/forms/models/forms.php:884
712
+ #: ../modules/forms/models/forms.php:891 ../modules/forms/models/forms.php:901
713
+ msgid "Inputs background"
714
+ msgstr "Entrées du fond"
715
+
716
+ #: ../modules/forms/models/forms.php:885
717
+ msgid "Text color"
718
+ msgstr ""
719
+
720
+ #: ../modules/forms/models/forms.php:892 ../modules/forms/models/forms.php:902
721
+ #, fuzzy
722
+ #| msgid "Submit buttons background"
723
+ msgid "Submit button background"
724
+ msgstr "Soumettre les boutons de fond"
725
+
726
+ #: ../modules/forms/models/forms.php:893 ../modules/forms/models/forms.php:903
727
+ #, fuzzy
728
+ #| msgid "Reset buttons background"
729
+ msgid "Reset button background"
730
+ msgstr "Réinitialiser les boutons de fond"
731
+
732
+ #: ../modules/forms/models/forms.php:894
733
+ #, fuzzy
734
+ #| msgid "Form background"
735
+ msgid "Top image background"
736
+ msgstr "Arrière plan du formulaire"
737
+
738
+ #: ../modules/forms/models/forms.php:895
739
+ #, fuzzy
740
+ #| msgid "Form background"
741
+ msgid "Top overlap background"
742
+ msgstr "Arrière plan du formulaire"
743
+
744
+ #: ../modules/forms/models/forms.php:896 ../modules/forms/models/forms.php:904
745
+ #, fuzzy
746
+ #| msgid "Image"
747
+ msgid "Image 1"
748
+ msgstr "Image"
749
+
750
+ #: ../modules/forms/models/forms.php:897 ../modules/forms/models/forms.php:905
751
+ #, fuzzy
752
+ #| msgid "Image"
753
+ msgid "Image 2"
754
+ msgstr "Image"
755
+
756
+ #: ../modules/forms/views/forms.php:42
757
+ msgid "Modify Form Template"
758
+ msgstr "Modifier le modèle de formulaire"
759
+
760
+ #: ../modules/forms/views/forms.php:51
761
+ msgid "Cannot find required Form"
762
+ msgstr "Impossible de trouver le formulaire requis"
763
+
764
+ #: ../modules/forms/views/forms.php:100
765
+ msgid "None"
766
+ msgstr "Aucun"
767
+
768
+ #: ../modules/forms/views/forms.php:101
769
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:446
770
+ msgid "Image"
771
+ msgstr "Image"
772
+
773
+ #: ../modules/forms/views/forms.php:122
774
+ msgid "Design"
775
+ msgstr "Design"
776
+
777
+ #: ../modules/forms/views/forms.php:127
778
+ msgid "Fields"
779
+ msgstr "Champs"
780
+
781
+ #: ../modules/forms/views/forms.php:132
782
+ msgid "Submit Options"
783
+ msgstr "Soumettre les options"
784
+
785
+ #: ../modules/forms/views/forms.php:137
786
+ msgid "Statistics"
787
+ msgstr "Statistiques"
788
+
789
+ #: ../modules/forms/views/forms.php:143
790
+ msgid "CSS / HTML Code"
791
+ msgstr "Code CSS / HTML "
792
+
793
+ #: ../modules/forms/views/forms.php:209
794
+ msgid "Publish Content"
795
+ msgstr ""
796
+
797
+ #: ../modules/forms/views/forms.php:216
798
+ #, fuzzy
799
+ #| msgid "Registration confirmed"
800
+ msgid "Registration"
801
+ msgstr "Inscription confirmée"
802
+
803
+ #: ../modules/forms/views/forms.php:508
804
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:566
805
+ #, php-format
806
+ msgid ""
807
+ "To use this field type you need to have installed and activated <a href=\"%s"
808
+ "\" target=\"_blank\">Google Maps Easy</a> plugin - it's Free! Just install "
809
+ "it <a class=\"button\" target=\"_blank\" href=\"%s\">here.</a>"
810
+ msgstr ""
811
+
812
+ #: ../modules/forms/views/forms.php:749
813
+ msgid "All"
814
+ msgstr ""
815
+
816
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:20
817
+ #, php-format
818
+ msgid ""
819
+ "Change Template to any other from the list below or <a class=\"button\" href="
820
+ "\"%s\">return to Form edit</a>"
821
+ msgstr ""
822
+ "Changer de modèle à un autre dans la liste ci-dessous ou <a class=\"button\" "
823
+ "href=\"%s\">retour à l'édition du formulaire</a>"
824
+
825
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:22
826
+ msgid "Choose Form Template. You can change it later."
827
+ msgstr "Choisissez le modèle de formulaire. Vous pourrez le changer plus tard."
828
+
829
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:31
830
+ msgid "Form Name"
831
+ msgstr "Nom du formulaire "
832
+
833
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:36
834
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:54
835
+ #: ../modules/mail/views/tpl/mailAdmin.php:69
836
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:6
837
+ msgid "Save"
838
+ msgstr "Valider"
839
+
840
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:57
841
+ msgid "Get in PRO"
842
+ msgstr "Obtenez en PRO"
843
+
844
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:68
845
+ msgid "Change Template"
846
+ msgstr "Changer de modèle"
847
+
848
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:70
849
+ msgid "Are you sure you want to change your current template - to "
850
+ msgstr "Êtes-vous sûr de que vouloir modifier votre modèle actuel - vers"
851
+
852
+ #: ../modules/forms/views/tpl/formsAdmin.php:5
853
+ #: ../modules/forms/views/tpl/formsAdmin.php:8
854
+ #: ../modules/forms/views/tpl/formsContacts.php:5
855
+ #: ../modules/forms/views/tpl/formsContacts.php:8
856
+ msgid "Delete selected"
857
+ msgstr "Effacer la sélection"
858
+
859
+ #: ../modules/forms/views/tpl/formsAdmin.php:11
860
+ #: ../modules/forms/views/tpl/formsAdmin.php:12
861
+ #: ../modules/forms/views/tpl/formsContacts.php:11
862
+ #: ../modules/forms/views/tpl/formsContacts.php:12
863
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:371
864
+ msgid "Search"
865
+ msgstr "Rechercher !"
866
+
867
+ #: ../modules/forms/views/tpl/formsAdmin.php:21
868
+ #, php-format
869
+ msgid ""
870
+ "You have no Forms for now. <a href=\"%s\" style=\"font-style: italic;"
871
+ "\">Create</a> your Form!"
872
+ msgstr ""
873
+ "Vous n’avez aucun formulaire pour l’instant. <a href=\"%s\" style=\"font-"
874
+ "style: italic;\">Créer</a> votre formulaire !"
875
+
876
+ #: ../modules/forms/views/tpl/formsContacts.php:14
877
+ #, fuzzy
878
+ #| msgid "Form to display"
879
+ msgid "Forms to display contacts from"
880
+ msgstr "Affichage du formulaire"
881
+
882
+ #: ../modules/forms/views/tpl/formsContacts.php:16
883
+ #, fuzzy
884
+ #| msgid "Create your firs Form"
885
+ msgid "Create your first Form!"
886
+ msgstr "Créer votre premier formulaire"
887
+
888
+ #: ../modules/forms/views/tpl/formsContacts.php:32
889
+ msgid ""
890
+ "You have no Contacts for now. When your visitors start submit your created "
891
+ "Contact Fomrs, and if you enabled \"Save contacts data\" for them - their "
892
+ "contacts will be displayed here."
893
+ msgstr ""
894
+
895
+ #: ../modules/forms/views/tpl/formsContacts.php:38
896
+ #, fuzzy
897
+ #| msgid "iContact"
898
+ msgid "Contact Details"
899
+ msgstr "iContact"
900
+
901
+ #: ../modules/forms/views/tpl/formsEditAdmin.php:99
902
+ msgid "Loading preview..."
903
+ msgstr "Chargement de l’aperçu..."
904
+
905
+ #: ../modules/forms/views/tpl/formsEditAdmin.php:104
906
+ msgid "Back to top"
907
+ msgstr "Haut de page"
908
+
909
+ #: ../modules/forms/views/tpl/formsEditAdmin.php:115
910
+ msgid ""
911
+ "You have no submit fields in your Form - this make it's submission "
912
+ "impossible. Please add one submit field in Fields tab - and then save your "
913
+ "form."
914
+ msgstr ""
915
+ "Vous n’avez aucuns champs à soumettre pour votre formulaire - cela rend sa "
916
+ "communication impossible.. SVP ajoutez un champ dans l’onglet 'champ ' - et "
917
+ "puis enregistrez votre formulaire."
918
+
919
+ #: ../modules/forms/views/tpl/formsEditAdmin.php:118
920
+ msgid ""
921
+ "You have no data to submit to in your form - in this case all form data will "
922
+ "not be send anywhere. Go to Submit Options tab - and add there at least one "
923
+ "data submit block - and then save your form."
924
+ msgstr ""
925
+ "Vous n’avez aucunes données a soumettre dans votre formulaire - dans ce cas "
926
+ "toutes les données du formulaire ne seront pas envoyées n’importe où. Allez "
927
+ "dans l’onglet Options d’envoi - et y ajouter au moins un bloc de données à "
928
+ "soumettre - et puis enregistrez votre formulaire."
929
+
930
+ #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:3
931
+ msgid "Edit this ONLY if you know basics of HTML and CSS"
932
+ msgstr "Modifier ceci seulement si vous connaissez les bases du HTML et CSS"
933
+
934
+ #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:6
935
+ msgid "Field Wrapper"
936
+ msgstr "Contenant du champ"
937
+
938
+ #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:10
939
+ msgid "CSS code"
940
+ msgstr "Code CSS"
941
+
942
+ #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:14
943
+ msgid "HTML code"
944
+ msgstr "Code HTML"
945
+
946
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:3
947
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:3
948
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:364
949
+ #, fuzzy, php-format
950
+ #| msgid ""
951
+ #| "You can create it <a href=\"%s\" target=\"_blank\">here</a>. More info "
952
+ #| "can be found <a href=\"%s\" target=\"_blank\">here</a>"
953
+ msgid ""
954
+ "This is PRO option. You can <a class=\"button\" href=\"%s\" target=\"_blank"
955
+ "\">Get PRO</a> with this and many other options <a href=\"%s\" target="
956
+ "\"_blank\">here</a>."
957
+ msgstr ""
958
+ "Vous pouvez le créer <a href=\"%s\" target=\"_blank\">ici</a>. Plus "
959
+ "d'informations peuvent être trouvées <a href=\"%s\" target=\"_blank\">ici </"
960
+ "a>"
961
+
962
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:6
963
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:22
964
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:38
965
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:58
966
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:78
967
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:6
968
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:23
969
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:38
970
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:58
971
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:90
972
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:367
973
+ #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
974
+ msgid "PRO"
975
+ msgstr "PRO"
976
+
977
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:17
978
+ msgid "Enable Publish Content"
979
+ msgstr ""
980
+
981
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:18
982
+ #, php-format
983
+ msgid ""
984
+ "Publish Content feature allows your site visitors to post content through "
985
+ "your Contact Form. <a href=\"%s\" target=\"_blank\">https://supsystic.com/"
986
+ "documentation/contact-form-publish-content/</a>"
987
+ msgstr ""
988
+
989
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:34
990
+ #, fuzzy
991
+ #| msgid "Create WP user"
992
+ msgid "Created Post Type"
993
+ msgstr "Créer un utilisateur WP"
994
+
995
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:35
996
+ msgid "Post Type for created content."
997
+ msgstr ""
998
+
999
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:54
1000
+ msgid "Post Status"
1001
+ msgstr ""
1002
+
1003
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:55
1004
+ msgid ""
1005
+ "You can make it published right after user will publish it here, or make it "
1006
+ "Pending Review - to be able approve it by Yourself."
1007
+ msgstr ""
1008
+
1009
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:74
1010
+ #, fuzzy
1011
+ #| msgid "Categories"
1012
+ msgid "Post Category"
1013
+ msgstr "Catégories"
1014
+
1015
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:75
1016
+ #, fuzzy
1017
+ #| msgid "You have no categories"
1018
+ msgid "Push posts to categories."
1019
+ msgstr "Vous n'avez pas de catégories"
1020
+
1021
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:17
1022
+ #, fuzzy
1023
+ #| msgid "Registration Confirmation"
1024
+ msgid "Enable Registration from Form"
1025
+ msgstr "Confirmation d’inscription"
1026
+
1027
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:18
1028
+ #, php-format
1029
+ msgid ""
1030
+ "Registration form option allows you to create user registration forms and "
1031
+ "combine it with any kind of content.\n"
1032
+ "You can add any field to get info and allow users to select username, "
1033
+ "password, fill out their bio, add custom user information to build a nice "
1034
+ "user profile. Also, you can select the role of the new user and set "
1035
+ "registration without confirmation. <a href=\"%s\" target=\"_blank\">https://"
1036
+ "supsystic.com/documentation/contact-form-registration/</a>"
1037
+ msgstr ""
1038
+
1039
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:34
1040
+ msgid "User Role"
1041
+ msgstr ""
1042
+
1043
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:35
1044
+ msgid "New user role."
1045
+ msgstr ""
1046
+
1047
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:54
1048
+ #, fuzzy
1049
+ #| msgid "Subscribe Confirmation"
1050
+ msgid "Ignore confirmation"
1051
+ msgstr "Confirmation d'abonnement"
1052
+
1053
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:55
1054
+ #, fuzzy
1055
+ #| msgid "Create user with the chosen role after subscribing"
1056
+ msgid "Create new user without confirm - right after form submit."
1057
+ msgstr "Créer l’utilisateur avec le rôle choisi après inscription"
1058
+
1059
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:2
1060
+ msgid "Change Form Template"
1061
+ msgstr "Changer le modèle du formulaire"
1062
+
1063
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:12
1064
+ msgid "Width"
1065
+ msgstr "Largeur"
1066
+
1067
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:18
1068
+ msgid "Max width for percentage - is 100"
1069
+ msgstr "Largeur max. de pourcentage - est 100"
1070
+
1071
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:20
1072
+ msgid "Percents"
1073
+ msgstr "Pourcentage"
1074
+
1075
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:24
1076
+ msgid "Pixels"
1077
+ msgstr "Pixels"
1078
+
1079
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:32
1080
+ msgid "Background"
1081
+ msgstr "Arrière Plan"
1082
+
1083
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:32
1084
+ #, php-format
1085
+ msgid "Background %d"
1086
+ msgstr "Arrière-plan %d"
1087
+
1088
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:1
1089
+ msgid "Click to Edit"
1090
+ msgstr "Cliquez pour éditer"
1091
+
1092
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:10
1093
+ msgid "Shortcode"
1094
+ msgstr "Raccourci"
1095
+
1096
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:11
1097
+ msgid "PHP code"
1098
+ msgstr "Code PHP"
1099
+
1100
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:12
1101
+ msgid "Widget"
1102
+ msgstr "Widget"
1103
+
1104
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:13
1105
+ msgid "PopUp"
1106
+ msgstr ""
1107
+
1108
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:14
1109
+ msgid "Membership"
1110
+ msgstr ""
1111
+
1112
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:28
1113
+ msgid "Add Contact Form Widget"
1114
+ msgstr "Ajouter le Widget du formulaire de Contact"
1115
+
1116
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:32
1117
+ #, php-format
1118
+ msgid ""
1119
+ "<a href=\"%s\" target=\"_blank\" class=\"button\">Select your Form</a> in "
1120
+ "any PopUp"
1121
+ msgstr ""
1122
+
1123
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:34
1124
+ #, php-format
1125
+ msgid ""
1126
+ "You need to have <a href=\"%s\" target=\"_blank\" class=\"button\">installed "
1127
+ "PopUp plugin</a> to use this feature"
1128
+ msgstr ""
1129
+
1130
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:46
1131
+ #, fuzzy, php-format
1132
+ #| msgid ""
1133
+ #| "You have no subscribe lists, <a target=\"_blank\" href=\"%s\">create "
1134
+ #| "lists</a> at first, then - select them here."
1135
+ msgid ""
1136
+ "You need to install <a target=\"_blank\" href=\"%s\">Membership by "
1137
+ "Supsystic</a> to use this feature."
1138
+ msgstr ""
1139
+ "Vous avez pas de listes d'abonnés, <a target=\"_blank\" href=\"%s\">créer "
1140
+ "des listes </a> d'abord, puis - sélectionnez-les ici."
1141
+
1142
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:52
1143
+ msgid "Save all changes"
1144
+ msgstr "Enregistrer les changements"
1145
+
1146
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:56
1147
+ msgid "Clone to New Form"
1148
+ msgstr "Dupliquer le nouveau formulaire"
1149
+
1150
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:58
1151
+ msgid "Clone"
1152
+ msgstr "Dupliquer"
1153
+
1154
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:62
1155
+ msgid "Preview"
1156
+ msgstr "Previsualisation"
1157
+
1158
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:71
1159
+ msgid "Delete"
1160
+ msgstr "Supprimer "
1161
+
1162
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:78
1163
+ msgid "New Name"
1164
+ msgstr "Nouveau nom"
1165
+
1166
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:79
1167
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:208
1168
+ msgid "Copy"
1169
+ msgstr "Copie"
1170
+
1171
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:4
1172
+ msgid "Field invalid error message"
1173
+ msgstr "Message d'erreur pour champ invalide"
1174
+
1175
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:5
1176
+ msgid ""
1177
+ "By default our plugin will show standard browser error messages about "
1178
+ "invalid or empty fields values. But if you need - you can replace it here. "
1179
+ "Use [label] - to set field name in your error message. For example \"Please "
1180
+ "fill out [label] field\". You can just leave this field empty - to use "
1181
+ "standard browser messages."
1182
+ msgstr ""
1183
+ "Par défaut notre plugin affichera les messages standard d'erreurs du "
1184
+ "navigateur sur les valeurs des champs non valides ou vides. Mais si vous "
1185
+ "avez besoin - vous pouvez le remplacer ici. Utilisez [label] - pour définir "
1186
+ "le nom de champ dans votre message d'erreur. Par exemple, \"SVP remplir "
1187
+ "[label] champ\". Vous pouvez laisser ce champ vide - utilisez les messages "
1188
+ "standard du navigateur."
1189
+
1190
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:17
1191
+ msgid "Add New Field"
1192
+ msgstr "Ajouter un nouveau champ"
1193
+
1194
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:23
1195
+ msgid "Move Up / Down"
1196
+ msgstr "Déplacer haut / bas"
1197
+
1198
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:29
1199
+ msgid "Move Left / Right"
1200
+ msgstr "Déplacer gauche / droite"
1201
+
1202
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:32
1203
+ msgid "Add New Field at the Top"
1204
+ msgstr "Ajouter le nouveau champ en haut"
1205
+
1206
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:36
1207
+ msgid "Add New Field at the Right"
1208
+ msgstr "Ajouter le nouveau champ à droite"
1209
+
1210
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:40
1211
+ msgid "Add New Field at the Bottom"
1212
+ msgstr "Ajouter un nouveau champ en bas"
1213
+
1214
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:44
1215
+ msgid "Add New Field at the Left"
1216
+ msgstr "Ajouter un nouveau champ à gauche"
1217
+
1218
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:48
1219
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:247
1220
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:174
1221
+ msgid "Remove"
1222
+ msgstr "Supprimer "
1223
+
1224
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:76
1225
+ msgid "Click on required elements from list bellow"
1226
+ msgstr "Cliquez sur les éléments requis à partir de la liste ci-dessous"
1227
+
1228
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:97
1229
+ msgid "Edit field settings"
1230
+ msgstr "Modifier les paramètres de champ"
1231
+
1232
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:101
1233
+ msgid "Basic Settings"
1234
+ msgstr "Paramètres de base"
1235
+
1236
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:105
1237
+ msgid "Icon"
1238
+ msgstr ""
1239
+
1240
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:109
1241
+ msgid "Advanced"
1242
+ msgstr "Avancé"
1243
+
1244
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:113
1245
+ msgid "Field Validation"
1246
+ msgstr "Validation du champ"
1247
+
1248
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:120
1249
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:240
1250
+ #: ../modules/supsystic_promo/mod.php:242
1251
+ msgid "Name"
1252
+ msgstr "Nom"
1253
+
1254
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:121
1255
+ msgid ""
1256
+ "Name attribute for your field. You can use here latin letters, numbers or "
1257
+ "symdols \"-\", \"_\"."
1258
+ msgstr ""
1259
+ "Entrez un nom unique pour le champ. Vous pouvez utiliser ici des lettres "
1260
+ "latines, des chiffres ou des symboles \"-\", \"_\"."
1261
+
1262
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:129
1263
+ msgid ""
1264
+ "Please fill-in Name for your field, and make sure that it contains only "
1265
+ "latin letters, numbers or symdols \"-\", \"_\"."
1266
+ msgstr ""
1267
+ "SVP donnez un nom à votre champ, et assurez-vous qu'il ne contient que des "
1268
+ "lettres latines, des chiffres ou des symboles \"-\", \"_\"."
1269
+
1270
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:135
1271
+ msgid ""
1272
+ "Field label - that your users will see on your Form right near your field."
1273
+ msgstr ""
1274
+ "Libellé du champ - que vos utilisateurs verront sur votre formulaire juste à "
1275
+ "côté de votre champ."
1276
+
1277
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:143
1278
+ msgid "Placeholder"
1279
+ msgstr "Filigramme"
1280
+
1281
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:144
1282
+ msgid "Field placeholder - will be printed in your field as a tip."
1283
+ msgstr "Filigramme du champ sera inscrit sur votre champ en fond."
1284
+
1285
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:152
1286
+ msgid "Rate Stars Count"
1287
+ msgstr ""
1288
+
1289
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:153
1290
+ msgid "Number of icons for rating."
1291
+ msgstr ""
1292
+
1293
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:163
1294
+ #, fuzzy
1295
+ #| msgid "Test Form Name"
1296
+ msgid "Time Format"
1297
+ msgstr "Nom du formulaire test"
1298
+
1299
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:164
1300
+ msgid "Format for your Time input."
1301
+ msgstr ""
1302
+
1303
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:170
1304
+ #, fuzzy
1305
+ #| msgid "Hour"
1306
+ msgid "24 Hours"
1307
+ msgstr "Heure "
1308
+
1309
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:178
1310
+ msgid ""
1311
+ "Please fill-in Label or Placeholder for your field - it's required for users "
1312
+ "to know - what field in Form that are filling-in."
1313
+ msgstr ""
1314
+ "SVP remplissez le libellé ou l'espace réservé dans le champ- il est "
1315
+ "nécessaire que les utilisateurs sachent - quel champ dans le formulaire est "
1316
+ "rempli"
1317
+
1318
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:183
1319
+ msgid "Default Value"
1320
+ msgstr "Valeur par defaut"
1321
+
1322
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:184
1323
+ msgid ""
1324
+ "You can set default value for your field, and one it appear on your site - "
1325
+ "field will be pre-filled with this value."
1326
+ msgstr ""
1327
+ "Vous pouvez définir la valeur par défaut pour votre champ, et celle-ci "
1328
+ "apparaîtra sur votre site - le champ sera pré-rempli avec cette valeur."
1329
+
1330
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:190
1331
+ #, fuzzy
1332
+ #| msgid "Not selected"
1333
+ msgid "or select preset"
1334
+ msgstr "Non sélectionné"
1335
+
1336
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:191
1337
+ msgid "User IP"
1338
+ msgstr ""
1339
+
1340
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:192
1341
+ msgid "User Country code"
1342
+ msgstr ""
1343
+
1344
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:193
1345
+ #, fuzzy
1346
+ #| msgid "Username"
1347
+ msgid "User Country name"
1348
+ msgstr "Nom d'Identifiant"
1349
+
1350
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:194
1351
+ #, fuzzy
1352
+ #| msgid "Title"
1353
+ msgid "Page Title"
1354
+ msgstr " Titre"
1355
+
1356
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:195
1357
+ #, fuzzy
1358
+ #| msgid "API URL"
1359
+ msgid "Page URL"
1360
+ msgstr "URL de l'API"
1361
+
1362
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:198
1363
+ msgid ""
1364
+ "Allow to insert some pre-defined values, like current user IP addres, or his "
1365
+ "country - to send you this data."
1366
+ msgstr ""
1367
+
1368
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:200
1369
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:136
1370
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:56
1371
+ msgid "PRO option"
1372
+ msgstr "Option PRO"
1373
+
1374
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:206
1375
+ #, fuzzy
1376
+ #| msgid "HTML / Text Delimiter"
1377
+ msgid "Label Delimiter"
1378
+ msgstr "HTML / Séparateur de texte"
1379
+
1380
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:207
1381
+ msgid ""
1382
+ "Those fields will have possibility to add some delimiter after field label "
1383
+ "if required, for example - \":\" symbol."
1384
+ msgstr ""
1385
+
1386
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:214
1387
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:307
1388
+ msgid "Display as"
1389
+ msgstr "Afficher comme"
1390
+
1391
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:217
1392
+ msgid "In row"
1393
+ msgstr "En ligne"
1394
+
1395
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:218
1396
+ msgid "In column"
1397
+ msgstr "En Colonne"
1398
+
1399
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:225
1400
+ msgid "Select Options"
1401
+ msgstr "Sélectionner les options"
1402
+
1403
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:230
1404
+ #, fuzzy
1405
+ #| msgid "PRO option"
1406
+ msgid "Add Option"
1407
+ msgstr "Option PRO"
1408
+
1409
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:255
1410
+ msgid "Checked by Default"
1411
+ msgstr "Coché par défaut"
1412
+
1413
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:264
1414
+ #, fuzzy
1415
+ #| msgid "Attributes"
1416
+ msgid "Select Attribute"
1417
+ msgstr "Attribut"
1418
+
1419
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:265
1420
+ msgid "Select attribute from Woo for link this field to."
1421
+ msgstr ""
1422
+
1423
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:274
1424
+ msgid "Multiple"
1425
+ msgstr ""
1426
+
1427
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:275
1428
+ #, fuzzy
1429
+ #| msgid "Possibility to bound field minimum length."
1430
+ msgid "Possibility to select multiple items."
1431
+ msgstr "Possibilité de limiter la longueur minimum du champ."
1432
+
1433
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:285
1434
+ msgid "Select Category Type"
1435
+ msgstr ""
1436
+
1437
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:286
1438
+ msgid ""
1439
+ "Categories can be different - depends on what Post Type you need to use."
1440
+ msgstr ""
1441
+
1442
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:296
1443
+ msgid "And select required categories for Form."
1444
+ msgstr ""
1445
+
1446
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:300
1447
+ #, fuzzy
1448
+ #| msgid "Select File"
1449
+ msgid "Select available list"
1450
+ msgstr "Sélectionnez un fichier"
1451
+
1452
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:308
1453
+ msgid "How user will be able to select category."
1454
+ msgstr ""
1455
+
1456
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:313
1457
+ #, fuzzy
1458
+ #| msgid "Select Box"
1459
+ msgid "Selectbox"
1460
+ msgstr "Boîte de sélection"
1461
+
1462
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:322
1463
+ #, fuzzy
1464
+ #| msgid "Mailrelay API Key"
1465
+ msgid "Google Maps API Key"
1466
+ msgstr "Clé API Mailrelay"
1467
+
1468
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:323
1469
+ msgid ""
1470
+ "You can use your own Google API key, check the <a href=\"//supsystic.com/"
1471
+ "google-maps-api-key/\" target=\"_blank\">instruction</a> how to create it. "
1472
+ "To use plugin's default API key leave this field blank."
1473
+ msgstr ""
1474
+
1475
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:331
1476
+ msgid "Required"
1477
+ msgstr "Requis "
1478
+
1479
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:340
1480
+ msgid "Site Key"
1481
+ msgstr "Clé du site"
1482
+
1483
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:341
1484
+ #, fuzzy, php-format
1485
+ #| msgid ""
1486
+ #| "You can create it <a href=\"%s\" target=\"_blank\">here</a>. More info "
1487
+ #| "can be found <a href=\"%s\" target=\"_blank\">here</a>"
1488
+ msgid ""
1489
+ "Your site key, generated on <a href=\"%s\" target=\"_blank\">%s</a>. To get "
1490
+ "more info - check <a href=\"%s\" target=\"_blank\">our tutorial.</a>"
1491
+ msgstr ""
1492
+ "Vous pouvez le créer <a href=\"%s\" target=\"_blank\">ici</a>. Plus "
1493
+ "d'informations peuvent être trouvées <a href=\"%s\" target=\"_blank\">ici </"
1494
+ "a>"
1495
+
1496
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:349
1497
+ msgid "Secret Key"
1498
+ msgstr "Clé secrète "
1499
+
1500
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:350
1501
+ #, fuzzy, php-format
1502
+ #| msgid ""
1503
+ #| "You can create it <a href=\"%s\" target=\"_blank\">here</a>. More info "
1504
+ #| "can be found <a href=\"%s\" target=\"_blank\">here</a>"
1505
+ msgid ""
1506
+ "Your secret key, generated on <a href=\"%s\" target=\"_blank\">%s</a>. To "
1507
+ "get more info - check <a href=\"%s\" target=\"_blank\">our tutorial.</a>"
1508
+ msgstr ""
1509
+ "Vous pouvez le créer <a href=\"%s\" target=\"_blank\">ici</a>. Plus "
1510
+ "d'informations peuvent être trouvées <a href=\"%s\" target=\"_blank\">ici </"
1511
+ "a>"
1512
+
1513
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:383
1514
+ msgid "Icon Size"
1515
+ msgstr ""
1516
+
1517
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:384
1518
+ msgid "Set size for icon, default is size like all other text."
1519
+ msgstr ""
1520
+
1521
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:389
1522
+ #, fuzzy
1523
+ #| msgid "Default Value"
1524
+ msgid "Default"
1525
+ msgstr "Valeur par defaut"
1526
+
1527
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:390
1528
+ msgid "33% increase"
1529
+ msgstr ""
1530
+
1531
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:391
1532
+ msgid "2x"
1533
+ msgstr ""
1534
+
1535
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:392
1536
+ msgid "3x"
1537
+ msgstr ""
1538
+
1539
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:393
1540
+ msgid "4x"
1541
+ msgstr ""
1542
+
1543
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:394
1544
+ msgid "5x"
1545
+ msgstr ""
1546
+
1547
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:402
1548
+ #, fuzzy
1549
+ #| msgid "Color"
1550
+ msgid "Icon Color"
1551
+ msgstr "Couleur "
1552
+
1553
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:403
1554
+ msgid "Custom color for your icon."
1555
+ msgstr ""
1556
+
1557
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:413
1558
+ #, fuzzy
1559
+ #| msgid "Select Box"
1560
+ msgid "Selected Color"
1561
+ msgstr "Boîte de sélection"
1562
+
1563
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:414
1564
+ msgid "Color for selected rating stars."
1565
+ msgstr ""
1566
+
1567
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:429
1568
+ msgid "reCaptcha Theme"
1569
+ msgstr "Thème du reCaptcha"
1570
+
1571
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:430
1572
+ #, fuzzy, php-format
1573
+ #| msgid ""
1574
+ #| "The color theme. You can select from themes, provided by Google, for your "
1575
+ #| "reCaptcha."
1576
+ msgid ""
1577
+ "The color theme. You can select from themes, provided by Google, for your "
1578
+ "reCaptcha. To get more info - check <a href=\"%s\" target=\"_blank\">our "
1579
+ "tutorial.</a>"
1580
+ msgstr ""
1581
+ "Couleur du thème. Vous pouvez choisir parmi les thèmes, fourni par Google "
1582
+ "pour votre reCaptcha."
1583
+
1584
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:434
1585
+ msgid "Light"
1586
+ msgstr "Clair"
1587
+
1588
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:434
1589
+ msgid "Dark"
1590
+ msgstr "Foncé"
1591
+
1592
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:441
1593
+ msgid "reCaptcha Type"
1594
+ msgstr "Type de reCaptcha"
1595
+
1596
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:442
1597
+ msgid "The type of CAPTCHA to serve."
1598
+ msgstr "Type de CAPTCHA à utiliser"
1599
+
1600
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:446
1601
+ msgid "Audio"
1602
+ msgstr "Audio"
1603
+
1604
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:453
1605
+ msgid "reCaptcha Size"
1606
+ msgstr "Taille du reCaptcha"
1607
+
1608
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:454
1609
+ msgid "The size of the CAPTCHA widget."
1610
+ msgstr "La taille du widget CAPTCHA."
1611
+
1612
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:458
1613
+ msgid "Compact"
1614
+ msgstr "Compact"
1615
+
1616
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:458
1617
+ msgid "Normal"
1618
+ msgstr "Normale"
1619
+
1620
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:465
1621
+ msgid "Additional classes"
1622
+ msgstr "Class additionnelles"
1623
+
1624
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:466
1625
+ msgid "You can specify here additinal CSS classes for your field."
1626
+ msgstr ""
1627
+ "Vous pouvez spécifier ici les class CSS supplémentaires pour votre champ."
1628
+
1629
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:474
1630
+ msgid "Additional styles"
1631
+ msgstr "Styles supplémentaires"
1632
+
1633
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:475
1634
+ msgid ""
1635
+ "You can specify here additinal CSS styles, that will be included in \"style"
1636
+ "\" tag, for your field."
1637
+ msgstr ""
1638
+ "Vous pouvez spécifier ici les styles CSS supplémentaires, qui seront inclus "
1639
+ "dans la balise \"style\", pour votre champ."
1640
+
1641
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:483
1642
+ msgid "Additional HTML attributes"
1643
+ msgstr "Attributs HTML supplémentaires"
1644
+
1645
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:484
1646
+ msgid ""
1647
+ "You can specify here additinal HTML attributes, such as \"id\", or other, "
1648
+ "for your field."
1649
+ msgstr ""
1650
+ "Vous pouvez spécifier ici des attributs HTML supplémentaires, telles que "
1651
+ "« id », ou autre, pour votre champ."
1652
+
1653
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:496
1654
+ msgid "Minimum length"
1655
+ msgstr "Longueur minimale"
1656
+
1657
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:497
1658
+ #, fuzzy
1659
+ #| msgid ""
1660
+ #| "Possibility to bound field maximum length. For Files fields types - this "
1661
+ #| "is restriction for file size, in Mb."
1662
+ msgid ""
1663
+ "Possibility to bound minimum length for field value. For text fields - it is "
1664
+ "the text length. For Files fields types - this is restriction for file size, "
1665
+ "in Mb."
1666
+ msgstr ""
1667
+ "Possibilité de limite de longueur maximale du champ. Types de champs des "
1668
+ "fichiers - ceci est une restriction pour la taille du fichier, en Mb."
1669
+
1670
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:505
1671
+ msgid "Maximum length"
1672
+ msgstr "Longueur maximale"
1673
+
1674
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:506
1675
+ #, fuzzy
1676
+ #| msgid ""
1677
+ #| "Possibility to bound field maximum length. For Files fields types - this "
1678
+ #| "is restriction for file size, in Mb."
1679
+ msgid ""
1680
+ "Possibility to bound maximum length for field value. For text fields - it is "
1681
+ "the text length. For Files fields types - this is restriction for file size, "
1682
+ "in Mb."
1683
+ msgstr ""
1684
+ "Possibilité de limite de longueur maximale du champ. Types de champs des "
1685
+ "fichiers - ceci est une restriction pour la taille du fichier, en Mb."
1686
+
1687
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:514
1688
+ msgid "Only numbers"
1689
+ msgstr "Chiffres seulement"
1690
+
1691
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:515
1692
+ msgid "Allow users to enter in this field - only numeric values."
1693
+ msgstr ""
1694
+ "Permettre aux utilisateurs d’entrer dans ce champ - uniquement des valeurs "
1695
+ "numériques."
1696
+
1697
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:523
1698
+ msgid "Only letters"
1699
+ msgstr "Lettres seulement"
1700
+
1701
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:524
1702
+ msgid "Only letters will be allowed."
1703
+ msgstr "Seules les lettres seront autorisées."
1704
+
1705
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:532
1706
+ msgid "Validation Pattern"
1707
+ msgstr "Modèle de Validation "
1708
+
1709
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:533
1710
+ msgid ""
1711
+ "You can modify or set here your custom patters. Edit this ONLY if you know "
1712
+ "how to modify regular expression patterns! For Files fields types you can "
1713
+ "set here file extensions, separated by comma - \",\"."
1714
+ msgstr ""
1715
+ "Vous pouvez modifier ou définir ici vos modèles personnalisés. Modifier "
1716
+ "SEULEMENT si vous savez comment modifier les modèles ! Pour les types de "
1717
+ "champs des dossiers vous pouvez placer ici des extensions du fichier, "
1718
+ "séparés par des virgules - \",\"."
1719
+
1720
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:541
1721
+ msgid "Equal to"
1722
+ msgstr ""
1723
+
1724
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:542
1725
+ msgid ""
1726
+ "Will require this field to be equal to other field from form. For example - "
1727
+ "use this is you want to create Email confirm fields."
1728
+ msgstr ""
1729
+
1730
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:552
1731
+ msgid "HTML / Text / Images / etc."
1732
+ msgstr ""
1733
+
1734
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:555
1735
+ #, fuzzy
1736
+ #| msgid "Select File"
1737
+ msgid "Select desired Map"
1738
+ msgstr "Sélectionnez un fichier"
1739
+
1740
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:558
1741
+ #, fuzzy
1742
+ #| msgid "Select"
1743
+ msgid "Select Map"
1744
+ msgstr "Sélection"
1745
+
1746
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:563
1747
+ #, php-format
1748
+ msgid ""
1749
+ "You have no Google Maps for now. <a href=\"%s\" target=\"_blank\" class="
1750
+ "\"button\">Create Maps</a> at first, then you will be able to select it here "
1751
+ "and past into your form"
1752
+ msgstr ""
1753
+
1754
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:4
1755
+ msgid "Total Statistics"
1756
+ msgstr "Total pour les statistiques"
1757
+
1758
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:6
1759
+ msgid "Clear selection"
1760
+ msgstr "Vider la sélection"
1761
+
1762
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:8
1763
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:197
1764
+ msgid "From"
1765
+ msgstr "Depuis"
1766
+
1767
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:11
1768
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:186
1769
+ msgid "To"
1770
+ msgstr "Vers"
1771
+
1772
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:26
1773
+ msgid "Reset Zoom"
1774
+ msgstr "Réinitialiser le Zoom"
1775
+
1776
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:31
1777
+ msgid "Group by"
1778
+ msgstr "Groupé par"
1779
+
1780
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:32
1781
+ msgid "Hour"
1782
+ msgstr "Heure "
1783
+
1784
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:33
1785
+ msgid "Day"
1786
+ msgstr "Jour"
1787
+
1788
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:37
1789
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:109
1790
+ msgid "Export to CSV"
1791
+ msgstr "Exporter au format CSV"
1792
+
1793
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:42
1794
+ msgid "Clear data"
1795
+ msgstr "Effacer les données"
1796
+
1797
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:50
1798
+ msgid "Total Statistics is empty for now."
1799
+ msgstr "Le total des statistiques est vide pour l’instant."
1800
+
1801
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:51
1802
+ msgid ""
1803
+ "Once your site visitors begin to use your form - all form statistics usage "
1804
+ "will be here."
1805
+ msgstr ""
1806
+ "Une fois que vos visiteurs du site commencent à utiliser votre formulaire - "
1807
+ "toutes les statistiques des formulaires seront ici."
1808
+
1809
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:60
1810
+ #, fuzzy
1811
+ #| msgid "Total Statistics is empty for now."
1812
+ msgid "Rating Statistics is empty for now."
1813
+ msgstr "Le total des statistiques est vide pour l’instant."
1814
+
1815
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:61
1816
+ msgid ""
1817
+ "Add a Rating field into your Contact Form, and after users start to submit "
1818
+ "it - you will see stats here."
1819
+ msgstr ""
1820
+
1821
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:5
1822
+ #: ../modules/options/mod.php:122
1823
+ msgid "General"
1824
+ msgstr "Général "
1825
+
1826
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:18
1827
+ msgid "Form sent message"
1828
+ msgstr "Message d'envoi du formulaire"
1829
+
1830
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:19
1831
+ msgid "Message, that your users will see after success form submition."
1832
+ msgstr "Message que vos utilisateurs verront après la réussite de l'envoi."
1833
+
1834
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:27
1835
+ #, fuzzy
1836
+ #| msgid "Form sent message"
1837
+ msgid "Form sent message color"
1838
+ msgstr "Message d'envoi du formulaire"
1839
+
1840
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:28
1841
+ msgid "Text color for your Success message."
1842
+ msgstr ""
1843
+
1844
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:38
1845
+ #, fuzzy
1846
+ #| msgid "Redirect after submit"
1847
+ msgid "Hide form after submit"
1848
+ msgstr "Redirection après envoi"
1849
+
1850
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:39
1851
+ msgid ""
1852
+ "By default form will be hidden after successful submit, but you can disable "
1853
+ "this here - and after submit form will be just cleared."
1854
+ msgstr ""
1855
+
1856
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:49
1857
+ msgid "Redirect after submit"
1858
+ msgstr "Redirection après envoi"
1859
+
1860
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:50
1861
+ msgid ""
1862
+ "If you want - you can redirect user after Form was submitted. Just enter "
1863
+ "required Redirect URL here - and each time after Form will be submitted - "
1864
+ "user will be redirected to that URL. Just leave this field empty - if you "
1865
+ "don't need this functionality in your Form."
1866
+ msgstr ""
1867
+ "Si vous voulez, vous pouvez rediriger l’utilisateur après l'envoi du "
1868
+ "formulaire. Saisissez simplement l’URL de redirection requis ici et chaque "
1869
+ "fois que le formulaire sera envoyé - l’utilisateur sera redirigé vers cette "
1870
+ "URL. Il suffit de laisser ce champ vide - si vous n’avez pas besoin cette "
1871
+ "fonctionnalité dans votre formulaire."
1872
+
1873
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:60
1874
+ msgid "Open in a new window (tab)"
1875
+ msgstr "Ouvrir dans une nouvelle fenêtre (onglet)"
1876
+
1877
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:62
1878
+ #, php-format
1879
+ msgid ""
1880
+ "After user will enter all data in contact form, and form will be submitted - "
1881
+ "he will be redirected to page with his submitted data. Enter in the text "
1882
+ "field above - link to page, where you inserted shortcode [%s] - and check "
1883
+ "results. Don't forget to enable \"Save contacts data\" option too."
1884
+ msgstr ""
1885
+
1886
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:65
1887
+ #, fuzzy
1888
+ #| msgid "Submitted Fail"
1889
+ msgid "Show submitted data"
1890
+ msgstr "Erreur d'envoi"
1891
+
1892
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:71
1893
+ #, fuzzy
1894
+ #| msgid "Back to Main Form"
1895
+ msgid "Email data as in Form"
1896
+ msgstr "Retour au formulaire principal"
1897
+
1898
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:72
1899
+ msgid ""
1900
+ "By default email data from form will be listed in one column. But you can "
1901
+ "enable this option - and all data will be listed as they are in form: if in "
1902
+ "row there are 2 fields - 2 fields will be in email, etc."
1903
+ msgstr ""
1904
+
1905
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:82
1906
+ msgid "Test Email Function"
1907
+ msgstr "Fonction test email"
1908
+
1909
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:83
1910
+ msgid ""
1911
+ "Email delivery depends from your server configuration. For some cases - you "
1912
+ "and your subscribers can not receive emails just because email on your "
1913
+ "server is not working correctly. You can easy test it here - by sending test "
1914
+ "email. If you receive it - then it means that email functionality on your "
1915
+ "server works well. If not - this means that it is not working correctly and "
1916
+ "you should contact your hosting provider with this issue and ask them to "
1917
+ "setup email functionality for you on your server."
1918
+ msgstr ""
1919
+ "L'email de livraison dépend de la configuration de votre serveur. Pour "
1920
+ "certains cas, vous et vos abonnés, ne peuvent pas recevoir des e-mails tout "
1921
+ "simplement parce que l’email sur votre serveur ne fonctionne pas "
1922
+ "correctement. Vous pouvez facilement le tester ici, en envoyant l’email de "
1923
+ "test. Si vous ne le recevez pas, alors ça signifie que la fonctionnalité sur "
1924
+ "votre serveur fonctionne bien. Si ce n’est pas le cas-cela signifie qu’il ne "
1925
+ "fonctionne pas correctement et vous devrez communiquer avec votre hébergeur "
1926
+ "avec cette question : quelles sont les fonctionnalités de messagerie pour "
1927
+ "vous sur votre serveur."
1928
+
1929
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:91
1930
+ msgid "Send Test Email"
1931
+ msgstr "Envoyer un courriel test"
1932
+
1933
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:94
1934
+ msgid ""
1935
+ "Email was sent. Now check your email inbox / spam folders for test mail. If "
1936
+ "you don’t find it - it means that your server can't send emails - and you "
1937
+ "need to contact your hosting provider with this issue."
1938
+ msgstr ""
1939
+ "Le courriel a été envoyé. Maintenant, vérifiez votre boîte de réception ou "
1940
+ "le dossier anti-spam pour le mail test. Si vous ne le trouvez pas, cela "
1941
+ "signifie que votre serveur ne peut pas envoyer des emails - et vous devez "
1942
+ "contacter votre hébergeur pour ce problème."
1943
+
1944
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:100
1945
+ msgid "Save contacts data"
1946
+ msgstr "Enregistrer les contacts"
1947
+
1948
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:101
1949
+ msgid ""
1950
+ "Store each contact form submission - into database, so you will be able to "
1951
+ "check all your form submit data."
1952
+ msgstr ""
1953
+ "Stocker chaque soumission de formulaire de contact dans la base de données, "
1954
+ "donc vous serez en mesure de vérifier toutes vos données sur les formulaires "
1955
+ "soumis."
1956
+
1957
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:107
1958
+ #, fuzzy
1959
+ #| msgid "Show All Forms"
1960
+ msgid "Show all contacts"
1961
+ msgstr "Afficher tous les formulaires"
1962
+
1963
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:111
1964
+ msgid "Delimiter for CSV file columns"
1965
+ msgstr ""
1966
+
1967
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:112
1968
+ #, fuzzy
1969
+ #| msgid "HTML / Text Delimiter"
1970
+ msgid "Delimiter"
1971
+ msgstr "HTML / Séparateur de texte"
1972
+
1973
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:123
1974
+ msgid "Send only Field values"
1975
+ msgstr ""
1976
+
1977
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:124
1978
+ msgid ""
1979
+ "By default - we will send field labels + values like:<br /><b>Field Label</"
1980
+ "b>: Field Value<br />But if you need to receive only values - you can "
1981
+ "disable sending Field Values here - just check this checkbox and it will "
1982
+ "done."
1983
+ msgstr ""
1984
+
1985
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:133
1986
+ #, fuzzy
1987
+ #| msgid "Conversion"
1988
+ msgid "Facebook Conversion"
1989
+ msgstr "Conversion"
1990
+
1991
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:134
1992
+ #, php-format
1993
+ msgid ""
1994
+ "Enable Facebook Pixel and Custom conversion. More about this feature and "
1995
+ "it's integration - <a href=\"%s\" target=\"_blank\">here</a>."
1996
+ msgstr ""
1997
+
1998
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:148
1999
+ msgid "Fb Pixel base code"
2000
+ msgstr ""
2001
+
2002
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:149
2003
+ msgid "Insert here your pixel base code from your Facebook Pixel account."
2004
+ msgstr ""
2005
+
2006
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:161
2007
+ msgid "Add additional data for submit"
2008
+ msgstr "Ajouter des données supplémentaires pour envoi"
2009
+
2010
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:168
2011
+ msgid "Add Copy"
2012
+ msgstr "Ajouter copie"
2013
+
2014
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:169
2015
+ msgid "Remove Copy"
2016
+ msgstr "Supprimer la copie"
2017
+
2018
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:179
2019
+ msgid ""
2020
+ "You can use next variables in any field bellow: [sitename] - name of your "
2021
+ "site, [siteurl] - URL address of your site, [user_FIELD_NAME] - any user "
2022
+ "field, entered by user, where FIELD_NAME - is name of required field, for "
2023
+ "example insert in subject [user_email] - and there will be user email field "
2024
+ "data, or [user_first_name] - and there will be inserted user First Name - if "
2025
+ "such field exists in your form fields list, and variable [form_data] - only "
2026
+ "for Message field - it will contans full generated input form data."
2027
+ msgstr ""
2028
+ "Vous pouvez utiliser des variables suivantes dans tous les domaines ci-"
2029
+ "dessous: [sitename] - nom de votre site, [siteurl] - adresse URL de votre "
2030
+ "site, [user_FIELD_NAME] - tous les champs de l'utilisateur, sont entrés par "
2031
+ "l'utilisateur, où FIELD_NAME - est le nom du champ obligatoire, par exemple "
2032
+ "insérer dans le thème [user_email] - et il y aura des données sur la zone de "
2033
+ "messagerie de l'utilisateur, ou [USER_FIRST_NAME] - et il sera inséré le "
2034
+ "prénom de l'utilisateur - si ce champ existe dans votre liste de champs de "
2035
+ "formulaire et variables [form_data] - uniquement pour champ du message - il "
2036
+ "contient les données complètes du formulaire d'entrée ainsi générées."
2037
+
2038
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:187
2039
+ msgid ""
2040
+ "Email where we need to send contact form info. Can enter several email "
2041
+ "addresses, separated by comma \",\"."
2042
+ msgstr ""
2043
+ "Courriel où nous devons envoyer les infos du formulaire de contact. Vous "
2044
+ "pouvez saisir plusieurs adresses, séparées par une virgule \",\"."
2045
+
2046
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:198
2047
+ msgid ""
2048
+ "\"From\" parameter in your emails. Usually - this is your main admin WP "
2049
+ "email address."
2050
+ msgstr ""
2051
+
2052
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:209
2053
+ msgid ""
2054
+ "Add recipients to copy email addresses. Can enter several email addresses, "
2055
+ "separated by comma \",\"."
2056
+ msgstr ""
2057
+ "Ajouter des destinataires vers la copie des adresses e-mail. vous pouvez "
2058
+ "saisir plusieurs adresses, séparées par une virgule \" , \"."
2059
+
2060
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:217
2061
+ msgid "Reply To"
2062
+ msgstr "Répondre à"
2063
+
2064
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:218
2065
+ msgid "Reply To parameter in your email"
2066
+ msgstr "Réponse au paramètre dans votre email"
2067
+
2068
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:226
2069
+ #: ../modules/supsystic_promo/mod.php:245
2070
+ msgid "Subject"
2071
+ msgstr "Objet "
2072
+
2073
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:227
2074
+ msgid "Email subject"
2075
+ msgstr "Objet de l'email"
2076
+
2077
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:235
2078
+ #: ../modules/supsystic_promo/mod.php:252
2079
+ msgid "Message"
2080
+ msgstr "Message"
2081
+
2082
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:236
2083
+ msgid "Email message content"
2084
+ msgstr "Contenu du message."
2085
+
2086
+ #: ../modules/forms_widget/mod.php:18
2087
+ msgid "Display Contact Form"
2088
+ msgstr "Afficher le formulaire de contact"
2089
+
2090
+ #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:2
2091
+ msgid "Title"
2092
+ msgstr " Titre"
2093
+
2094
+ #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:9
2095
+ msgid "Form to display"
2096
+ msgstr "Affichage du formulaire"
2097
+
2098
+ #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:19
2099
+ msgid ""
2100
+ "You have no Forms for now. Create your first form - and you will be able to "
2101
+ "select it for widget here."
2102
+ msgstr ""
2103
+ "Vous n’avez aucun formulaires pour l’instant. Créer votre premier formulaire "
2104
+ "et vous serez en mesure de le sélectionner pour le widget ici."
2105
+
2106
+ #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:23
2107
+ msgid "Create Form"
2108
+ msgstr "Créer un formulaire"
2109
+
2110
+ #: ../modules/mail/controller.php:7
2111
+ msgid "Now check your email inbox / spam folders for test mail."
2112
+ msgstr ""
2113
+ "Maintenant, vérifiez votre boîte de réception / dossier anti-spam pour le "
2114
+ "mail test."
2115
+
2116
+ #: ../modules/mail/mod.php:195
2117
+ msgid "Cannot send email - problem with send server"
2118
+ msgstr "Impossible d’envoyer email - problème avec le serveur"
2119
+
2120
+ #: ../modules/mail/mod.php:209
2121
+ msgid "Mail"
2122
+ msgstr "E-Mail"
2123
+
2124
+ #: ../modules/mail/mod.php:211
2125
+ msgid "Mail function tested and work"
2126
+ msgstr "Fonction email testée et fonctionnelle"
2127
+
2128
+ #: ../modules/mail/mod.php:212
2129
+ msgid "Notify Email"
2130
+ msgstr "Notifier par courriel"
2131
+
2132
+ #: ../modules/mail/mod.php:212
2133
+ msgid "Email address used for all email notifications from plugin"
2134
+ msgstr ""
2135
+ "Adresse email utilisée pour toutes les notifications par courrier "
2136
+ "électronique du plugin"
2137
+
2138
+ #: ../modules/mail/models/mail.php:7
2139
+ msgid "Test email functionality"
2140
+ msgstr "Fonctionnalité de courriel"
2141
+
2142
+ #: ../modules/mail/models/mail.php:8
2143
+ #, php-format
2144
+ msgid "This is a test email for testing email functionality on your site, %s."
2145
+ msgstr ""
2146
+ "Il s’agit d’un e-mail test pour les fonctionnalités de messagerie sur votre "
2147
+ "site, %s."
2148
+
2149
+ #: ../modules/mail/models/mail.php:15
2150
+ msgid "Empty email address"
2151
+ msgstr "Adresse e-mail vide"
2152
+
2153
+ #: ../modules/mail/views/tpl/mailAdmin.php:3
2154
+ msgid "Send test email to"
2155
+ msgstr "Envoyer un email test vers"
2156
+
2157
+ #: ../modules/mail/views/tpl/mailAdmin.php:10
2158
+ msgid "Send test"
2159
+ msgstr "Envoyer essai"
2160
+
2161
+ #: ../modules/mail/views/tpl/mailAdmin.php:12
2162
+ msgid "This option allows you to check your server mail functionality"
2163
+ msgstr ""
2164
+ "Cette option vous permet de vérifier la fonctionnalité de votre messagerie"
2165
+
2166
+ #: ../modules/mail/views/tpl/mailAdmin.php:15
2167
+ msgid "Did you receive test email?"
2168
+ msgstr "Avez-vous reçu le mail test ?"
2169
+
2170
+ #: ../modules/mail/views/tpl/mailAdmin.php:18
2171
+ msgid "Yes! It works!"
2172
+ msgstr "Oui ! Ça marche !"
2173
+
2174
+ #: ../modules/mail/views/tpl/mailAdmin.php:22
2175
+ msgid "No, I need to contact my hosting provider with mail function issue."
2176
+ msgstr ""
2177
+ "Non, je dois contacter mon hébergeur pour le problème de fonctionnement de "
2178
+ "la messagerie."
2179
+
2180
+ #: ../modules/mail/views/tpl/mailAdmin.php:26
2181
+ msgid "Great! Mail function was tested and is working fine."
2182
+ msgstr "Formidable ! La fonction mail a été testée et fonctionne très bien."
2183
+
2184
+ #: ../modules/mail/views/tpl/mailAdmin.php:29
2185
+ msgid ""
2186
+ "Bad, please contact your hosting provider and ask them to setup mail "
2187
+ "functionality on your server."
2188
+ msgstr ""
2189
+ "Désolé, SVP contactez votre hébergeur et demandez-lui de vérifier la "
2190
+ "fonctionnalité de messagerie sur votre serveur."
2191
+
2192
+ #: ../modules/mail/views/tpl/mailAdmin.php:47
2193
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:48
2194
+ #, php-format
2195
+ msgid "Turned On %s"
2196
+ msgstr "Activée sur %s"
2197
+
2198
+ #: ../modules/mail/views/tpl/mailAdmin.php:48
2199
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:49
2200
+ #, php-format
2201
+ msgid "Turned Off %s"
2202
+ msgstr "Éteinte sur %s"
2203
+
2204
+ #: ../modules/options/mod.php:124
2205
+ msgid "Send usage statistics"
2206
+ msgstr "Envoyer les statistiques d'utilisation"
2207
+
2208
+ #: ../modules/options/mod.php:124
2209
+ msgid ""
2210
+ "Send information about what plugin options you prefer to use, this will help "
2211
+ "us make our solution better for You."
2212
+ msgstr ""
2213
+ "Envoyer-nous des informations sur les options de ce plugin que vous préférez "
2214
+ "utiliser, cela nous aidera à l'améliorer."
2215
+
2216
+ #: ../modules/options/mod.php:125
2217
+ msgid "Enable blocking Contact from same IP"
2218
+ msgstr "Activer le blocage de contact de la même adresse IP"
2219
+
2220
+ #: ../modules/options/mod.php:125
2221
+ msgid ""
2222
+ "Our plugin have feature to block form submission from same IP more then one "
2223
+ "time per hour - to avoid spam. You can enable this feature here."
2224
+ msgstr ""
2225
+ "Notre plugin a la fonction de bloquer l’envoi d’un formulaire de même IP "
2226
+ "plus d’une fois par heure, ceci pour éviter le spam. Vous pouvez activer "
2227
+ "cette fonction ici."
2228
+
2229
+ #: ../modules/options/mod.php:126
2230
+ msgid "Disable autosave on Form Edit"
2231
+ msgstr "Désactiver la fonction auto-enregistrer sur l'édition du formulaire"
2232
+
2233
+ #: ../modules/options/mod.php:126
2234
+ msgid ""
2235
+ "By default our plugin will make autosave all your changes that you do in "
2236
+ "Form edit screen, but you can disable this feature here. Just don't forget "
2237
+ "to save your Form each time you make any changes in it."
2238
+ msgstr ""
2239
+ "Par défaut notre plugin fera une sauvegarde de toutes vos modifications que "
2240
+ "vous faites sur l’écran quand vous modifiez le formulaire, mais vous pouvez "
2241
+ "désactiver cette fonctionnalité ici. Mais n’oubliez pas d’enregistrer votre "
2242
+ "formulaire chaque fois que vous y apportez des modifications."
2243
+
2244
+ #: ../modules/options/mod.php:127
2245
+ msgid "Enable promo link"
2246
+ msgstr "Activez le lien promo"
2247
+
2248
+ #: ../modules/options/mod.php:127
2249
+ msgid ""
2250
+ "We are trying to make our plugin better for you, and you can help us with "
2251
+ "this. Just check this option - and small promotion link will be added in the "
2252
+ "bottom of your Form. This is easy for you - but very helpful for us!"
2253
+ msgstr ""
2254
+ "Nous essayons de créer notre plugin du mieux possible, et vous pouvez nous "
2255
+ "aider avec ceci. Il suffit de cocher cette option et le petit lien sera "
2256
+ "ajouté en bas de votre formulaire. C’est facile pour vous - mais très utile "
2257
+ "pour nous !"
2258
+
2259
+ #: ../modules/options/mod.php:128
2260
+ msgid "User role can use plugin"
2261
+ msgstr "Rôle de l’utilisateur pour utiliser le plugin"
2262
+
2263
+ #: ../modules/options/mod.php:128
2264
+ msgid "User with next roles will have access to whole plugin from admin area."
2265
+ msgstr ""
2266
+ "L'utilisateur avec les rôles suivants auront accès à l'ensemble du plugin "
2267
+ "dans la zone d’administration."
2268
+
2269
+ #: ../modules/options/mod.php:129
2270
+ msgid "Load Assets in Footer"
2271
+ msgstr "Charger les scripts dans le bas de page"
2272
+
2273
+ #: ../modules/options/mod.php:129
2274
+ msgid ""
2275
+ "Force load all plugin CSS and JavaScript files in footer - to increase page "
2276
+ "load speed. Please make sure that you have correct footer.php file in your "
2277
+ "WordPress theme with wp_footer() function call in it."
2278
+ msgstr ""
2279
+ "Chargement du css et du javascript du plugin en pied de page - pour "
2280
+ "augmenter la vitesse de chargement de page. SVP assurez-vous que vous avez "
2281
+ "bon fichier footer.php de votre thème WordPress avec la fonction wp_footer() "
2282
+ "appelée dedans."
2283
+
2284
+ #: ../modules/options/mod.php:130
2285
+ msgid "Disable HTML Emails content type"
2286
+ msgstr "Désactiver le type de contenu HTML des Emails"
2287
+
2288
+ #: ../modules/options/mod.php:130
2289
+ msgid ""
2290
+ "Some servers fail send emails with HTML content type: content-type = \"text/"
2291
+ "html\", so if you have problems with sending emails from our plugn - try to "
2292
+ "disable this feature here."
2293
+ msgstr ""
2294
+ "Certains serveurs ne parviennent pas à envoyer des emails avec le type de "
2295
+ "contenu HTML : content-type = « text/html », donc si vous avez des problèmes "
2296
+ "avec l’envoi d’emails à l'aide de notre plugin - essayez de désactiver cette "
2297
+ "fonction ici."
2298
+
2299
+ #: ../modules/options/mod.php:132
2300
+ #, fuzzy
2301
+ #| msgid "Send test"
2302
+ msgid "Send With"
2303
+ msgstr "Envoyer essai"
2304
+
2305
+ #: ../modules/options/mod.php:132
2306
+ msgid "You can send your emails with different email sendng engines."
2307
+ msgstr ""
2308
+
2309
+ #: ../modules/options/mod.php:133
2310
+ #, fuzzy
2311
+ #| msgid "WordPress"
2312
+ msgid "WordPress PHP Mail"
2313
+ msgstr "WordPress"
2314
+
2315
+ #: ../modules/options/mod.php:133
2316
+ msgid "Third party providers (SMTP)"
2317
+ msgstr ""
2318
+
2319
+ #: ../modules/options/mod.php:133
2320
+ #, fuzzy
2321
+ #| msgid "Send email"
2322
+ msgid "Sendmail"
2323
+ msgstr "Envoyer un mail"
2324
+
2325
+ #: ../modules/options/mod.php:135
2326
+ msgid "SMTP Hostname"
2327
+ msgstr ""
2328
+
2329
+ #: ../modules/options/mod.php:135
2330
+ msgid "e.g. smtp.mydomain.com"
2331
+ msgstr ""
2332
+
2333
+ #: ../modules/options/mod.php:136
2334
+ msgid "SMTP Login"
2335
+ msgstr ""
2336
+
2337
+ #: ../modules/options/mod.php:136
2338
+ msgid "Your email login"
2339
+ msgstr ""
2340
+
2341
+ #: ../modules/options/mod.php:137
2342
+ #, fuzzy
2343
+ #| msgid "API Password"
2344
+ msgid "SMTP Password"
2345
+ msgstr "Mot de passe API"
2346
+
2347
+ #: ../modules/options/mod.php:137
2348
+ #, fuzzy
2349
+ #| msgid "Your SendGrid password"
2350
+ msgid "Your email password"
2351
+ msgstr "Votre mot de passe SendGrid"
2352
+
2353
+ #: ../modules/options/mod.php:138
2354
+ msgid "SMTP Port"
2355
+ msgstr ""
2356
+
2357
+ #: ../modules/options/mod.php:138
2358
+ msgid "Port for your SMTP provider"
2359
+ msgstr ""
2360
+
2361
+ #: ../modules/options/mod.php:139
2362
+ msgid "SMTP Secure"
2363
+ msgstr ""
2364
+
2365
+ #: ../modules/options/mod.php:139
2366
+ msgid ""
2367
+ "Use secure SMTP connection. If you enable this option - make sure that your "
2368
+ "server support such secure connections."
2369
+ msgstr ""
2370
+
2371
+ #: ../modules/options/mod.php:142
2372
+ #, fuzzy
2373
+ #| msgid "Send email"
2374
+ msgid "Sendmail Path"
2375
+ msgstr "Envoyer un mail"
2376
+
2377
+ #: ../modules/options/mod.php:142
2378
+ msgid ""
2379
+ "You can check it on your server, or ask about it - in your hosting provider."
2380
+ msgstr ""
2381
+
2382
+ #: ../modules/options/mod.php:144
2383
+ msgid "Remove Contact Forms data after days passed"
2384
+ msgstr ""
2385
+
2386
+ #: ../modules/options/mod.php:144
2387
+ msgid ""
2388
+ "CAUTION: Do Not use this feature if you do not exactly know hat it is doing! "
2389
+ "It can delete contact form data!<br />You may want not to store all of your "
2390
+ "contact form data in your database - to make it cleaner, or for example due "
2391
+ "to some laws (in some countries you can't store users data all time, only "
2392
+ "few days). For this reason you can set here number of days to store users "
2393
+ "contact forms data. After those days passed (starting from user submit form) "
2394
+ "- his \\ her data will be removed. Leave this field with zero value to "
2395
+ "disable this functionality."
2396
+ msgstr ""
2397
+
2398
+ #: ../modules/options/models/modules.php:35
2399
+ msgid "Module Updated"
2400
+ msgstr "Mise à jour des modules"
2401
+
2402
+ #: ../modules/options/models/modules.php:50
2403
+ msgid "Module Update Failed"
2404
+ msgstr "Échec mise à jour du module"
2405
+
2406
+ #: ../modules/options/models/modules.php:53
2407
+ msgid "Error module ID"
2408
+ msgstr "Erreur ID module"
2409
+
2410
+ #: ../modules/options/models/options.php:64
2411
+ msgid "Empty data to save option"
2412
+ msgstr "Données vides pour sauvegarde option"
2413
+
2414
+ #: ../modules/options/views/tpl/optionsAdminMain.php:18
2415
+ msgid "Main page Go here!!!!"
2416
+ msgstr "Page d’accueil Allez-y !!!"
2417
+
2418
+ #: ../modules/options/views/tpl/optionsAdminPage.php:36
2419
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:75
2420
+ msgid "Improve Free version"
2421
+ msgstr "Améliorer la version gratuite"
2422
+
2423
+ #: ../modules/options/views/tpl/optionsAdminPage.php:38
2424
+ #, php-format
2425
+ msgid ""
2426
+ "Please be advised that this template with all other options and PRO "
2427
+ "templates is available only in <a target=\"_blank\" href=\"%s\">PRO version</"
2428
+ "a>. You can <a target=\"_blank\" href=\"%s\" class=\"button\">Get PRO</a> "
2429
+ "today and get this and other PRO templates and features for your Forms!"
2430
+ msgstr ""
2431
+ "Veuillez noter que ce modèle avec toutes les autres options et modèles PRO "
2432
+ "sont disponibles uniquement en <a target=\"_blank\" href=\"%s\">version PRO</"
2433
+ "a>. Vous pouvez <a target=\"_blank\" href=\"%s\" class=\"button\">Obtenir "
2434
+ "PRO</a> aujourd'hui et obtenez ce modèle PRO et autres fonctionnalités pour "
2435
+ "vos formulaires !"
2436
+
2437
+ #: ../modules/options/views/tpl/optionsAdminPage.php:41
2438
+ #, php-format
2439
+ msgid ""
2440
+ "Please be advised that this option is available only in <a target=\"_blank\" "
2441
+ "href=\"%s\">PRO version</a>. You can <a target=\"_blank\" href=\"%s\" class="
2442
+ "\"button\">Get PRO</a> today and get this and other PRO option for your "
2443
+ "Forms!"
2444
+ msgstr ""
2445
+ "Prière de noter que cette option est disponible uniquement en <a target="
2446
+ "\"_blank\" href=\"%s\">version PRO</a>. Vous pouvez <a target=\"_blank\" "
2447
+ "href=\"%s\" class=\"button\">Obtenir PRO</a> aujourd'hui et obtenir cette et "
2448
+ "autre option PRO pour vos formulaires !"
2449
+
2450
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:3
2451
+ msgid "Save all options"
2452
+ msgstr "Sauvegarder les Options"
2453
+
2454
+ #: ../modules/pages/views/tpl/deactivatePage.php:33
2455
+ msgid "Delete Plugin Data (options, setup data, database tables, etc.)"
2456
+ msgstr ""
2457
+ "Supprimer les données de Plugin (options, données de configuration, tables "
2458
+ "de base de données, etc...)."
2459
+
2460
+ #: ../modules/statistics/controller.php:40
2461
+ #, php-format
2462
+ msgid "Statistics for %s"
2463
+ msgstr "Statistiques pour %s"
2464
+
2465
+ #: ../modules/statistics/controller.php:43
2466
+ msgid "Views"
2467
+ msgstr " Vues"
2468
+
2469
+ #: ../modules/statistics/controller.php:44
2470
+ msgid "Unique Views"
2471
+ msgstr "Vues uniques"
2472
+
2473
+ #: ../modules/statistics/controller.php:45
2474
+ msgid "Actions"
2475
+ msgstr "Actions"
2476
+
2477
+ #: ../modules/statistics/controller.php:46
2478
+ msgid "Conversion"
2479
+ msgstr "Conversion"
2480
+
2481
+ #: ../modules/statistics/mod.php:7
2482
+ msgid "Displayed"
2483
+ msgstr "Affiché"
2484
+
2485
+ #: ../modules/statistics/mod.php:8
2486
+ msgid "Submitted"
2487
+ msgstr "Soumis"
2488
+
2489
+ #: ../modules/statistics/mod.php:9
2490
+ msgid "Submitted Success"
2491
+ msgstr "Soumis avec succès"
2492
+
2493
+ #: ../modules/statistics/mod.php:10
2494
+ msgid "Submitted Fail"
2495
+ msgstr "Erreur d'envoi"
2496
+
2497
+ #: ../modules/statistics/models/statistics.php:32
2498
+ msgid "Send me some info, pls"
2499
+ msgstr "Envoyez-moi des infos, SVP"
2500
+
2501
+ #: ../modules/statistics/models/statistics.php:181
2502
+ msgid "No data found"
2503
+ msgstr "Aucune donnée trouvée !"
2504
+
2505
+ #: ../modules/supsystic_promo/controller.php:7
2506
+ #: ../modules/supsystic_promo/controller.php:100
2507
+ #: ../modules/supsystic_promo/controller.php:108
2508
+ #: ../modules/supsystic_promo/controller.php:116
2509
+ msgid "Information was saved. Thank you!"
2510
+ msgstr "Les informations ont été sauvegardées. Merci !"
2511
+
2512
+ #: ../modules/supsystic_promo/controller.php:23
2513
+ msgid ""
2514
+ "Please don't send contact requests so often - wait for response for your "
2515
+ "previous requests."
2516
+ msgstr ""
2517
+ "S’VP ne pas envoyer de demandes de contact trop souvent, attendez la réponse "
2518
+ "à vos demandes précédentes."
2519
+
2520
+ #: ../modules/supsystic_promo/controller.php:45
2521
+ msgid "Please enter valid email address"
2522
+ msgstr "Veuillez entrer un Email valide."
2523
+
2524
+ #: ../modules/supsystic_promo/mod.php:31
2525
+ msgid "Conditional Logic"
2526
+ msgstr ""
2527
+
2528
+ #: ../modules/supsystic_promo/mod.php:53
2529
+ #, php-format
2530
+ msgid ""
2531
+ "<h3>Hey, I noticed you just use %s over a week – that’s awesome!</"
2532
+ "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
2533
+ "WordPress? Just to help us spread the word and boost our motivation.</p>"
2534
+ msgstr ""
2535
+ "<h3>Hey, j’ai remarqué que vous utilisiez %s depuis plus d’une semaine – "
2536
+ "c’est génial !</h3><p>Pourriez-vous, s’il vous plaît, me faire une grande "
2537
+ "faveur et lui donner une note de 5 étoiles sur WordPress ? Juste pour nous "
2538
+ "aider en nous motivant !!.</p>"
2539
+
2540
+ #: ../modules/supsystic_promo/mod.php:54 ../modules/supsystic_promo/mod.php:60
2541
+ msgid "Ok, you deserve it"
2542
+ msgstr "Vous le méritez bien"
2543
+
2544
+ #: ../modules/supsystic_promo/mod.php:55 ../modules/supsystic_promo/mod.php:61
2545
+ msgid "Nope, maybe later"
2546
+ msgstr "Peut-être plus tard"
2547
+
2548
+ #: ../modules/supsystic_promo/mod.php:56
2549
+ msgid "I already did"
2550
+ msgstr "Je l’ai déjà fait !"
2551
+
2552
+ #: ../modules/supsystic_promo/mod.php:57
2553
+ #, php-format
2554
+ msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
2555
+ msgstr "<h3>Plus de onze jours avec notre plugin %s - félicitations !</h3>"
2556
+
2557
+ #: ../modules/supsystic_promo/mod.php:58
2558
+ msgid ""
2559
+ "<p>On behalf of the entire <a href=\"https://supsystic.com/\" target=\"_blank"
2560
+ "\">supsystic.com</a> company I would like to thank you for been with us, and "
2561
+ "I really hope that our software helped you.</p>"
2562
+ msgstr ""
2563
+ "<p>Au nom de la société <a href=\"https://supsystic.com/\" target=\"_blank"
2564
+ "\">supsystic.com</a> , je tiens à vous remercier pour avoir été avec nous, "
2565
+ "et j’espère vraiment que notre logiciel vous a aidé.</p>"
2566
+
2567
+ #: ../modules/supsystic_promo/mod.php:59
2568
+ msgid ""
2569
+ "<p>And today, if you want, - you can help us. This is really simple - you "
2570
+ "can just add small promo link to our site under your Forms. This is small "
2571
+ "step for you, but a big help for us! Sure, if you don't want - just skip "
2572
+ "this and continue enjoy our software!</p>"
2573
+ msgstr ""
2574
+ "<p>Et aujourd'hui, si vous voulez, - vous pouvez nous aider. C’est très "
2575
+ "simple - vous pouvez simplement ajouter un petit lien promo vers notre site "
2576
+ "dans vos formulaires. Il s’agit d'un petit pas pour vous, mais une grande "
2577
+ "aide pour nous ! Bien sûr, si vous ne le voulez pas, vous pouvez juste "
2578
+ "ignorer cela et continuer à profiter de notre logiciel !</p>"
2579
+
2580
+ #: ../modules/supsystic_promo/mod.php:62
2581
+ msgid "Skip"
2582
+ msgstr "Ignorer"
2583
+
2584
+ #: ../modules/supsystic_promo/mod.php:64
2585
+ #, php-format
2586
+ msgid ""
2587
+ "Check out <a href=\"%s\" target=\"_blank\" class=\"button button-primary\" "
2588
+ "data-statistic-code=\"hide\">our other Plugins</a>! Years of experience in "
2589
+ "WordPress plugins developers made those list unbreakable!"
2590
+ msgstr ""
2591
+
2592
+ #: ../modules/supsystic_promo/mod.php:113
2593
+ msgid "Overview"
2594
+ msgstr "Résumé"
2595
+
2596
+ #: ../modules/supsystic_promo/mod.php:116
2597
+ msgid "Featured Plugins"
2598
+ msgstr ""
2599
+
2600
+ #: ../modules/supsystic_promo/mod.php:123
2601
+ msgid "Constant Contact - PRO"
2602
+ msgstr "Constant Contact - PRO"
2603
+
2604
+ #: ../modules/supsystic_promo/mod.php:124
2605
+ msgid "Campaign Monitor - PRO"
2606
+ msgstr "Campaign Monitor - PRO"
2607
+
2608
+ #: ../modules/supsystic_promo/mod.php:125
2609
+ msgid "Vertical Response - PRO"
2610
+ msgstr "Vertical Response - PRO"
2611
+
2612
+ #: ../modules/supsystic_promo/mod.php:126
2613
+ msgid "SendGrid - PRO"
2614
+ msgstr "SendGrid - PRO"
2615
+
2616
+ #: ../modules/supsystic_promo/mod.php:127
2617
+ msgid "GetResponse - PRO"
2618
+ msgstr "GetResponse - PRO"
2619
+
2620
+ #: ../modules/supsystic_promo/mod.php:128
2621
+ msgid "iContact - PRO"
2622
+ msgstr "iContact - PRO"
2623
+
2624
+ #: ../modules/supsystic_promo/mod.php:129
2625
+ msgid "Active Campaign - PRO"
2626
+ msgstr "Active Campaign - PRO"
2627
+
2628
+ #: ../modules/supsystic_promo/mod.php:130
2629
+ msgid "Mailrelay - PRO"
2630
+ msgstr "Mailrelay - PRO"
2631
+
2632
+ #: ../modules/supsystic_promo/mod.php:131
2633
+ msgid "arpReach - PRO"
2634
+ msgstr "arpReach - PRO"
2635
+
2636
+ #: ../modules/supsystic_promo/mod.php:132
2637
+ msgid "SG Autorepondeur - PRO"
2638
+ msgstr "SG Autorepondeur - PRO"
2639
+
2640
+ #: ../modules/supsystic_promo/mod.php:133
2641
+ msgid "Benchmark - PRO"
2642
+ msgstr "Benchmark - PRO"
2643
+
2644
+ #: ../modules/supsystic_promo/mod.php:134
2645
+ msgid "InfusionSoft - PRO"
2646
+ msgstr "InfusionSoft - PRO"
2647
+
2648
+ #: ../modules/supsystic_promo/mod.php:135
2649
+ msgid "SalesForce - Web-to-Lead - PRO"
2650
+ msgstr "SalesForce - Web-to-Lead - PRO"
2651
+
2652
+ #: ../modules/supsystic_promo/mod.php:136
2653
+ msgid "ConvertKit - PRO"
2654
+ msgstr "ConvertKit - PRO"
2655
+
2656
+ #: ../modules/supsystic_promo/mod.php:137
2657
+ msgid "Emma - PRO"
2658
+ msgstr "Emma - PRO"
2659
+
2660
+ #: ../modules/supsystic_promo/mod.php:170
2661
+ msgid "Testing"
2662
+ msgstr "Essai"
2663
+
2664
+ #: ../modules/supsystic_promo/mod.php:172
2665
+ #: ../modules/supsystic_promo/mod.php:184
2666
+ msgid "Get PRO"
2667
+ msgstr "Obtenir PRO"
2668
+
2669
+ #: ../modules/supsystic_promo/mod.php:182
2670
+ msgid "Subscribe"
2671
+ msgstr "S'abonner"
2672
+
2673
+ #: ../modules/supsystic_promo/mod.php:195
2674
+ msgid "Form Location"
2675
+ msgstr "Emplacement du formulaire"
2676
+
2677
+ #: ../modules/supsystic_promo/mod.php:244
2678
+ msgid "Website"
2679
+ msgstr "Site internet "
2680
+
2681
+ #: ../modules/supsystic_promo/mod.php:246
2682
+ msgid "Topic"
2683
+ msgstr "Thème"
2684
+
2685
+ #: ../modules/supsystic_promo/mod.php:247
2686
+ msgid "Plugin options"
2687
+ msgstr "Options de l’extension"
2688
+
2689
+ #: ../modules/supsystic_promo/mod.php:248
2690
+ msgid "Report a bug"
2691
+ msgstr "Rapporter un bug"
2692
+
2693
+ #: ../modules/supsystic_promo/mod.php:249
2694
+ msgid "Require a new functionality"
2695
+ msgstr "Besoin d’une nouvelle fonctionnalité"
2696
+
2697
+ #: ../modules/supsystic_promo/mod.php:250
2698
+ msgid "Other"
2699
+ msgstr "Autre"
2700
+
2701
+ #: ../modules/supsystic_promo/mod.php:252
2702
+ msgid "Hello Supsystic Team!"
2703
+ msgstr "Bonjour l'équipe Supsystic!"
2704
+
2705
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:25
2706
+ msgid "Why Form by Supsystic is \"must have\" for your website?"
2707
+ msgstr ""
2708
+ "Pourquoi le formulaire par Supsystic est \"le top du top\" pour votre site "
2709
+ "web ?"
2710
+
2711
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:26
2712
+ #, php-format
2713
+ msgid ""
2714
+ "Increase your sales by 500%% using Form by Supsystic! More subscribers = "
2715
+ "more sales! It's that simple!<br />More info you can find here <a target="
2716
+ "\"_blank\" href=\"%s\">Form by Supsystic is \"must have\" for your website</"
2717
+ "a>"
2718
+ msgstr ""
2719
+ "Augmentez vos ventes de 500 %% en utilisant le formulaire de Supsystic ! "
2720
+ "Plus d’abonnés = plus de ventes ! C’est aussi simple que cela !<br />Pour "
2721
+ "plus d’informations, vous pouvez trouver tout ici <a target=\"_blank\" href="
2722
+ "\"%s\">formulaire par Supsystic est le \"le top du top\" pour votre site "
2723
+ "Web</a>"
2724
+
2725
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:27
2726
+ msgid "What is A/B testing?"
2727
+ msgstr "Ce qui est A / B testing ?"
2728
+
2729
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:28
2730
+ #, php-format
2731
+ msgid ""
2732
+ "A/B testing is one of the easiest ways to increase conversion rates and "
2733
+ "learn more about your audience!<br />A/B test in Form plugin involves "
2734
+ "testing two or more versions of a forms window - an A version (original) and "
2735
+ "a B versions (the variation) - with live traffic and measuring the effect "
2736
+ "each version has on your conversion rate.<br />To know more detail – click "
2737
+ "<a target=\"_blank\" href=\"%s\">here</a>"
2738
+ msgstr ""
2739
+ "Le test A / B est l'un des moyens les plus faciles pour augmenter les taux "
2740
+ "de conversion et d'en apprendre plus sur votre public <br />Le test A / B "
2741
+ "dans le plugin formulaire consiste à tester deux ou plusieurs versions d’une "
2742
+ "fenêtre du formulaire - une versions de B (la variation) et une version A "
2743
+ "(originale) - avec trafic en direct et mesurer l’effet sur votre taux de "
2744
+ "conversion de chaque version.<br />Pour connaître plus en détail – cliquez "
2745
+ "<a target=\"_blank\" href=\"%s\">ici</a>"
2746
+
2747
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:29
2748
+ msgid "How to enable subscription to Aweber?"
2749
+ msgstr "Comment activer l’abonnement à Aweber ?"
2750
+
2751
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:30
2752
+ #, php-format
2753
+ msgid ""
2754
+ "In order to subscribe to Aweber you need to know unique list id of your "
2755
+ "aweber account - check this <a target=\"_blank\" href=\"%s\">page</a> for "
2756
+ "more details."
2757
+ msgstr ""
2758
+ "Pour vous abonner à Aweber vous devez connaître l’id de la liste unique de "
2759
+ "votre compte aweber - consultez cette <a target=\"_blank\" href=\"%s\">page</"
2760
+ "a> pour plus de détails."
2761
+
2762
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:31
2763
+ msgid "How to subscribe to MailChimp?"
2764
+ msgstr "Comment s’abonner à MailChimp ?"
2765
+
2766
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:32
2767
+ msgid ""
2768
+ "To subscribe to MailChimp you need enter your MailChimp API key and name of "
2769
+ "list for subscription. To find your MailChimp API key - follow the "
2770
+ "instructions below:<br />\n"
2771
+ "\t\t\t\t1. Login to your mailchimp account at http://mailchimp.com<br />\n"
2772
+ "\t\t\t\t2. From the left main menu, click on your Username, then select "
2773
+ "\"Account\" in the flyout menu.<br />\n"
2774
+ "\t\t\t\t3. From the account page select \"Extras\" -> \"API Keys\".<br />\n"
2775
+ "\t\t\t\t4. Your API Key will be listed in the table labeled \"Your API Keys"
2776
+ "\".<br />\n"
2777
+ "\t\t\t\t5. Copy / Paste your API key into \"MailChimp API key\" field in "
2778
+ "Form edit screen -> Subscribe section."
2779
+ msgstr ""
2780
+ "Pour vous abonner à MailChimp vous devez entrer votre clé API MailChimp et "
2781
+ "le nom de la liste de souscription. Pour trouver votre clé API MailChimp - "
2782
+ "suivez les instructions ci-dessous: <br />\n"
2783
+ "\t\t\t\t1.Connectez-vous à votre compte MailChimp à http://mailchimp.com "
2784
+ "<br />\n"
2785
+ "\t\t\t\t2. Dans le menu principal de gauche, cliquez sur votre nom "
2786
+ "d'utilisateur, puis sélectionnez «Compte» dans le menu déroulant. <br />\n"
2787
+ "\t\t\t\t3. Sur la page de compte sélectionnez \"Extras\" -> \"API Keys\" "
2788
+ "<br />.\n"
2789
+ "\t\t\t\t4. Votre clé API sera répertorié dans le tableau intitulé \"Your API "
2790
+ "Keys\". <br />\n"
2791
+ "\t\t\t\t5. Copier / Coller votre clé API dans le champ \"MailChimp API key\" "
2792
+ "de l'affichage de votre formulaire -> Section inscription."
2793
+
2794
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:38
2795
+ msgid "Where to find css code for the pop-up window?"
2796
+ msgstr "Où trouver le code css pour la fenêtre pop-up ?"
2797
+
2798
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:39
2799
+ msgid ""
2800
+ "With Form by Supsystic you can edit CSS style directly from the plugin. <br /"
2801
+ ">\n"
2802
+ "\t\t\t\tIn WordPress admin area - \n"
2803
+ "go to Form by Supsystic -> choose a forms, what you need -> click Code tab. "
2804
+ "<br />\n"
2805
+ "Here you can edit css style of the pop-up window."
2806
+ msgstr ""
2807
+ "Avec le plugin formulaire de Supsystic vous pouvez modifier le style CSS "
2808
+ "directement depuis le plugin.<br />\n"
2809
+ "\t\t\t\tDans la zone de l'administration de WordPress - \n"
2810
+ "allez au formulaire de Supsystic-> choisir un formulaire, ce que vous avez "
2811
+ "besoin-> cliquez sur Code tab.<br />\n"
2812
+ "Ici vous pouvez modifier le style css de la fenêtre popup."
2813
+
2814
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:43
2815
+ msgid "How to get PRO version of plugin for FREE?"
2816
+ msgstr "Comment obtenir la version PRO de plugin gratuitement ?"
2817
+
2818
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:44
2819
+ #, php-format
2820
+ msgid ""
2821
+ "You have an incredible opportunity to get PRO version for free. Make "
2822
+ "Translation of the plugin! It will be amazing if you take advantage of this "
2823
+ "offer!<br />\n"
2824
+ "\t\t\t\t\tMore info you can find here <a target=\"_blank\" href=\"%s\">“Get "
2825
+ "PRO version of any plugin for FREE”</a>"
2826
+ msgstr ""
2827
+ "Vous avez une opportunité incroyable pour obtenir la version PRO gratuite. "
2828
+ "Faire la traduction du plugin ! Il sera étonnant si vous ne profitez pas de "
2829
+ "cette offre !<br />\n"
2830
+ "\t\t\t\t\tPlus d’informations vous pouvez trouver ici <a target=\"_blank\" "
2831
+ "href=\"%s\">\"Obtenir la version PRO de n’importe quel plugin gratuitement"
2832
+ "\"</a>"
2833
+
2834
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:46
2835
+ msgid "Translation"
2836
+ msgstr "Traduction "
2837
+
2838
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:47
2839
+ #, php-format
2840
+ msgid ""
2841
+ "All available languages are provided with the Supsystic Form plugin. If your "
2842
+ "language isn’t available, your plugin will be in English by default.<br />\n"
2843
+ "\t\t\t\t\tAvailable Translations: English, French, German, Spanish, "
2844
+ "Russian<br />\n"
2845
+ "\t\t\t\t\tTranslate or update a translation Form WordPress plugin in your "
2846
+ "language and get a Premium license for FREE. <a target=\"_blank\" href=\"%s"
2847
+ "\">Contact us.</a>"
2848
+ msgstr ""
2849
+ "Toutes les langues disponibles sont fournis avec le plugin Supsystic forme. "
2850
+ "Si votre langue n’est pas disponible, votre plugin sera en anglais par "
2851
+ "défaut.<br />\n"
2852
+ "\t\t\t\t\tTraductions : Anglais, Français, allemand, espagnol, russe<br />\n"
2853
+ "\t\t\t\t\tTraduire ou mettre à jour la traduction du plugin formulaire "
2854
+ "WordPress dans votre langue et obtenez une licence Premium gratuitement. <a "
2855
+ "target=\"_blank\" href=\"%s\">Contactez-nous.</a>"
2856
+
2857
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:54
2858
+ msgid "Where's my subscribers?"
2859
+ msgstr "Où sont mes abonnés ?"
2860
+
2861
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:55
2862
+ #, php-format
2863
+ msgid ""
2864
+ "By default all subscribers add to the WordPress. \n"
2865
+ "\t\t\t\t\tTo find your subscribers go to Users tab on the left navigation "
2866
+ "menu of WordPress admin area. \n"
2867
+ "\t\t\t\t\tAlso available subscription to the Aweber, MailChimp, MailPoet <a "
2868
+ "href='%s' target='_blank'>and other</a>. \n"
2869
+ "\t\t\t\t\tIf you want to add another subscription service - just <a "
2870
+ "href='%s' target='_blank'>contact us</a> and provide URL of the subscription "
2871
+ "service."
2872
+ msgstr ""
2873
+ "Par défaut, tous les abonnés ajouts à votre blog WordPress. \n"
2874
+ "\t\t\t\t\tPour trouver vos abonnés allez à l'onglet utilisateurs dans le "
2875
+ "menu de navigation à gauche de la zone d’administration de WordPress. \n"
2876
+ "\t\t\t\t\tAussi disponible : abonnement à Aweber, MailChimp, MailPoet <a "
2877
+ "href='%s' target='_blank'>et autres</a>. \n"
2878
+ "\t\t\t\t\tSi vous souhaitez ajouter un autre abonnement service ou juste <a "
2879
+ "href='%s' target='_blank'>nous contacter</a> et indiquer l’URL du service "
2880
+ "abonnement."
2881
+
2882
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:59
2883
+ msgid "Form doesn't appear on the website"
2884
+ msgstr "Le formulaire n’apparaît pas sur le site Web"
2885
+
2886
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:60
2887
+ #, php-format
2888
+ msgid ""
2889
+ "If you setup you're Form properly, and it still doesn't show on the page - "
2890
+ "there are can be conflict with your WordPress theme or other plugins. <a "
2891
+ "href='%s' target='_blank'>Contact us</a> with the URL of the webpage you add "
2892
+ "forms and screenshots / text of the error messages, if you have one - and we "
2893
+ "will help you resolve your issue."
2894
+ msgstr ""
2895
+ "Si vous configurez votre formulaire correctement, et qu'il ne s'affiche "
2896
+ "toujours pas sur la page - il y a peut être en conflit avec votre thème "
2897
+ "WordPress ou d'autres plugins. <a href='%s' target='_blank'>Contactez-nous</"
2898
+ "a> avec l'URL de la page Web où vous installé votre formulaire avec des "
2899
+ "captures d' écran / le texte des messages d'erreur, si vous en avez un - et "
2900
+ "nous vous aiderons à résoudre votre problème."
2901
+
2902
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:76
2903
+ #, php-format
2904
+ msgid ""
2905
+ "There were some problems while trying to retrieve our news, but you can "
2906
+ "always check all list <a target=\"_blank\" href=\"%s\">here</a>."
2907
+ msgstr ""
2908
+ "Il y a quelques soucis quand vous essayez de récupérer nos nouveautés, mais "
2909
+ "vous pouvez toujours vérifier toutes les listes <a target=\"_blank\" href="
2910
+ "\"%s\">ici</a>."
2911
+
2912
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:134
2913
+ msgid "Popup Plugin"
2914
+ msgstr ""
2915
+
2916
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:134
2917
+ msgid ""
2918
+ "The Best WordPress PopUp option plugin to help you gain more subscribers, "
2919
+ "social followers or advertisement. Responsive pop-ups with friendly options."
2920
+ msgstr ""
2921
+
2922
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:135
2923
+ msgid "Photo Gallery Plugin"
2924
+ msgstr ""
2925
+
2926
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:135
2927
+ msgid ""
2928
+ "Photo Gallery Plugin with a great number of layouts will help you to create "
2929
+ "quality respectable portfolios and image galleries."
2930
+ msgstr ""
2931
+
2932
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:136
2933
+ #, fuzzy
2934
+ #| msgid "Contact form"
2935
+ msgid "Contact Form Plugin"
2936
+ msgstr "Formulaire de contact"
2937
+
2938
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:136
2939
+ msgid ""
2940
+ "One of the best plugin for creating Contact Forms on your WordPress site. "
2941
+ "Changeable fonts, backgrounds, an option for adding fields etc."
2942
+ msgstr ""
2943
+
2944
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:137
2945
+ msgid "Newsletter Plugin"
2946
+ msgstr ""
2947
+
2948
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:137
2949
+ msgid ""
2950
+ "Supsystic Newsletter plugin for automatic mailing of your letters. You will "
2951
+ "have no need to control it or send them manually. No coding, hard skills or "
2952
+ "long hours of customizing are required."
2953
+ msgstr ""
2954
+
2955
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:138
2956
+ msgid "Membership by Supsystic"
2957
+ msgstr ""
2958
+
2959
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:138
2960
+ msgid ""
2961
+ "Create online membership community with custom user profiles, roles, "
2962
+ "FrontEnd registration and login. Members Directory, activity, groups, "
2963
+ "messages."
2964
+ msgstr ""
2965
+
2966
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:139
2967
+ msgid "Data Tables Generator"
2968
+ msgstr ""
2969
+
2970
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:139
2971
+ msgid ""
2972
+ "Create and manage beautiful data tables with custom design. No HTML "
2973
+ "knowledge is required."
2974
+ msgstr ""
2975
+
2976
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:140
2977
+ msgid "Social Share Buttons"
2978
+ msgstr ""
2979
+
2980
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:140
2981
+ msgid ""
2982
+ "Social share buttons to increase social traffic and popularity. Social "
2983
+ "sharing to Facebook, Twitter and other social networks."
2984
+ msgstr ""
2985
+
2986
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:141
2987
+ msgid "Live Chat Plugin"
2988
+ msgstr ""
2989
+
2990
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:141
2991
+ msgid ""
2992
+ "Be closer to your visitors and customers with Live Chat Support by "
2993
+ "Supsystic. Help you visitors, support them in real-time with exceptional "
2994
+ "Live Chat WordPress plugin by Supsystic."
2995
+ msgstr ""
2996
+
2997
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:142
2998
+ msgid "Pricing Table"
2999
+ msgstr ""
3000
+
3001
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:142
3002
+ msgid ""
3003
+ "It’s never been so easy to create and manage pricing and comparison tables "
3004
+ "with table builder. Any element of the table can be customise with mouse "
3005
+ "click."
3006
+ msgstr ""
3007
+
3008
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:143
3009
+ msgid "Coming Soon Plugin"
3010
+ msgstr ""
3011
+
3012
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:143
3013
+ msgid ""
3014
+ "Coming soon page with drag-and-drop builder or under construction | "
3015
+ "maintenance mode to notify visitors and collects emails."
3016
+ msgstr ""
3017
+
3018
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:144
3019
+ msgid "Backup Plugin"
3020
+ msgstr ""
3021
+
3022
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:144
3023
+ msgid ""
3024
+ "Backup and Restore WordPress Plugin by Supsystic provides quick and "
3025
+ "unhitched DropBox, FTP, Amazon S3, Google Drive backup for your WordPress "
3026
+ "website."
3027
+ msgstr ""
3028
+
3029
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:145
3030
+ msgid "Google Maps Easy"
3031
+ msgstr ""
3032
+
3033
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:145
3034
+ msgid ""
3035
+ "Display custom Google Maps. Set markers and locations with text, images, "
3036
+ "categories and links. Customize google map in a simple and intuitive way."
3037
+ msgstr ""
3038
+
3039
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:146
3040
+ msgid "Digital Publication Plugin"
3041
+ msgstr ""
3042
+
3043
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:146
3044
+ msgid ""
3045
+ "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, "
3046
+ "Portfolios. Convert images, posts, PDF to the page flip book."
3047
+ msgstr ""
3048
+
3049
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:147
3050
+ msgid "Slider Plugin"
3051
+ msgstr ""
3052
+
3053
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:147
3054
+ msgid ""
3055
+ "Creating slideshows with Slider plugin is fast and easy. Simply select "
3056
+ "images from your WordPress Media Library, Flickr, Instagram or Facebook, set "
3057
+ "slide captions, links and SEO fields all from one page."
3058
+ msgstr ""
3059
+
3060
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:148
3061
+ msgid "Kinsta Hosting"
3062
+ msgstr ""
3063
+
3064
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:148
3065
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:31
3066
+ msgid ""
3067
+ "If you want to host a business site or a blog, Kinsta managed WordPress "
3068
+ "hosting is the best place to stop on. Without any hesitation, we can say "
3069
+ "Kinsta is incredible when it comes to uptime and speed."
3070
+ msgstr ""
3071
+
3072
+ #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:1
3073
+ #, php-format
3074
+ msgid ""
3075
+ "Show when user tries to exit from your site. <a target=\"_blank\" href=\"%s"
3076
+ "\">Check example.</a>"
3077
+ msgstr ""
3078
+ "Afficher lorsque l' utilisateur tente de quitter votre site. <a target="
3079
+ "\"_blank\" href=\"%s\">Vérifiez exemple.</a>"
3080
+
3081
+ #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:7
3082
+ msgid "On Exit from Site"
3083
+ msgstr "Sortie du site"
3084
+
3085
+ #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:9
3086
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:10
3087
+ msgid "Available in PRO"
3088
+ msgstr "Disponible en PRO"
3089
+
3090
+ #: ../modules/supsystic_promo/views/tpl/adminFooter.php:4
3091
+ msgid "Version"
3092
+ msgstr "Version"
3093
+
3094
+ #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
3095
+ msgid "Go"
3096
+ msgstr "Allez"
3097
+
3098
+ #: ../modules/supsystic_promo/views/tpl/adminFooter.php:15
3099
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:28
3100
+ msgid "Support"
3101
+ msgstr "Support"
3102
+
3103
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:4
3104
+ #, php-format
3105
+ msgid "Welcome to %s plugin!"
3106
+ msgstr "Bienvenue sur le plugin %s !"
3107
+
3108
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:5
3109
+ #, php-format
3110
+ msgid ""
3111
+ "Thank you for choosing our %s plugin. Just click here to start using it - "
3112
+ "and we will show you it's possibilities and powerfull features."
3113
+ msgstr ""
3114
+ "Merci d'avoir choisi le plugin de notre %s. Il suffit de cliquer ici pour "
3115
+ "commencer à l'utiliser et nous allons vous montrer ses possibilités et "
3116
+ "fonctionnalités."
3117
+
3118
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:8
3119
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:18
3120
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:28
3121
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:38
3122
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:48
3123
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:58
3124
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:68
3125
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:78
3126
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:88
3127
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:98
3128
+ msgid "Close"
3129
+ msgstr "Fermer"
3130
+
3131
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:9
3132
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:19
3133
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:29
3134
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:39
3135
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:49
3136
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:59
3137
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:69
3138
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:79
3139
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:89
3140
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:99
3141
+ msgid "Next"
3142
+ msgstr "Suivant "
3143
+
3144
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:14
3145
+ msgid "Create your firs Form"
3146
+ msgstr "Créer votre premier formulaire"
3147
+
3148
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:15
3149
+ msgid ""
3150
+ "Click on \"Add New Form\" button to create your firs Form. Just try - this "
3151
+ "is really simple!"
3152
+ msgstr ""
3153
+ "Cliquez sur le bouton \"Ajouter un nouveau formulaire\" pour créer votre "
3154
+ "premier formulaire. Essayer - c'est vraiment simple!"
3155
+
3156
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:24
3157
+ msgid "Enter name for your Form"
3158
+ msgstr "Entrez le nom de votre formulaire"
3159
+
3160
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:25
3161
+ msgid "This will be name of your Form. You can change it latter."
3162
+ msgstr ""
3163
+ "Ce sera le nom de votre formulaire. Vous pouvez le modifier ultérieurement."
3164
+
3165
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:34
3166
+ msgid "Selecte template for your Form"
3167
+ msgstr "Sélectionner le modèle de votre formulaire"
3168
+
3169
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:35
3170
+ msgid ""
3171
+ "Choose any templates from this list. You will be able to customize it after "
3172
+ "creation, and also - you will be able to change it latter if you will need "
3173
+ "this."
3174
+ msgstr ""
3175
+ "Choisissez vos modèles à partir de cette liste. Vous serez en mesure de les "
3176
+ "personnaliser après la création, et aussi - vous serez en mesure de changer "
3177
+ "celui-ci si vous le désirez."
3178
+
3179
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:44
3180
+ msgid "Save first Form"
3181
+ msgstr "Sauvegarder votre premier formulaire"
3182
+
3183
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:45
3184
+ msgid ""
3185
+ "After you entered name of your Form and selected it's template - just save "
3186
+ "it, and you will be redirected to Form edit screen - where you will be able "
3187
+ "to customize your Form."
3188
+ msgstr ""
3189
+ "Après avoir entré le nom de votre formulaire et sélectionné le modèle - il "
3190
+ "faut simplement l'enregistrer, et vous serez redirigé vers son affichage - "
3191
+ "où vous serez en mesure de personnaliser votre formulaire."
3192
+
3193
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:54
3194
+ msgid "Main Settings"
3195
+ msgstr "Réglages principaux"
3196
+
3197
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:55
3198
+ msgid ""
3199
+ "Here you can setup main display settings for your Form - when it should be "
3200
+ "visible for your user, when it need to be closed, if required - select "
3201
+ "specific pages/posts where you need to show your Form."
3202
+ msgstr ""
3203
+ "Ici vous pouvez configurer les paramètres d'affichage principal pour votre "
3204
+ "formulaire - quand il doit être visible pour l'utilisateur, quand il a "
3205
+ "besoin d'être fermé, si nécessaire - sélectionner les pages spécifiques ou "
3206
+ "articles où vous avez besoin de montrer votre formulaire."
3207
+
3208
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:64
3209
+ msgid "Design Settings"
3210
+ msgstr "Paramètres du design"
3211
+
3212
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:65
3213
+ msgid ""
3214
+ "One of our most powerfull features - possibility to <strong>customize</"
3215
+ "strong> design for each Form window for your needs. In this section you can "
3216
+ "select your Form colors and images, enter required texts that will describe "
3217
+ "your neds for your visitors, setup social settings (if required), select "
3218
+ "Form location, and in the end - select Animation style for your Form from "
3219
+ "list of more then 20 different animation styles!"
3220
+ msgstr ""
3221
+ "L'une des fonctionnalités les plus puissantes - possibilité de "
3222
+ "<strong>personnaliser</strong> la conception pour chaque fenêtre de "
3223
+ "formulaire pour vos besoins. Dans cette section, vous pouvez sélectionner "
3224
+ "les couleurs de votre formulaire et des images, entrez les textes "
3225
+ "nécessaires qui décrivent vos besoins pour vos visiteurs, les paramètres "
3226
+ "sociaux de configuration (si nécessaire), sélectionnez l'emplacement de "
3227
+ "formulaire, et à la fin - sélectionnez le style d'animation pour votre "
3228
+ "formulaire de la liste des plus de 20 styles d'animation présentés !"
3229
+
3230
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:74
3231
+ msgid "Subscribe Settings"
3232
+ msgstr "Paramètres d’abonnement"
3233
+
3234
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:75
3235
+ msgid ""
3236
+ "Setup your Subscription settings here - select Subscribers destination in "
3237
+ "\"Subscribe to\" option - it allow to flow your subscribers not only to "
3238
+ "WordPress Users, but to other popular subscribe services. With other "
3239
+ "subscription options you will be able to easily customize your subscribe "
3240
+ "form in Form window."
3241
+ msgstr ""
3242
+ "Configuration de vos paramètres d'abonnement ici - sélectionnez la "
3243
+ "destination des abonnés dans l'option \"Abonnez-vous à\" - il permet de "
3244
+ "diriger vos abonnés non seulement vers les utilisateurs de WordPress, mais "
3245
+ "vers d'autres services . Avec d'autres options d'abonnement, vous serez en "
3246
+ "mesure de personnaliser facilement votre formulaire d'abonnement dans la "
3247
+ "fenêtre du formulaire."
3248
+
3249
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:84
3250
+ msgid "Form Statistics"
3251
+ msgstr "Statistiques du formulaire"
3252
+
3253
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:85
3254
+ msgid ""
3255
+ "After you will setup your Form - it will start displaying to your site "
3256
+ "visitors. And now - you need to check it's displaying statistics. Here, in "
3257
+ "Statistics tab, you will be able to see how many times Form was shown to "
3258
+ "your visitors, how many times visitors subscribed to it (if subscription is "
3259
+ "enabled), how many times visitors shared your site using Social Share Form "
3260
+ "functionality and what social networks for share is most popular (if it was "
3261
+ "enabled). If you will use AB Testing feature to increase your site "
3262
+ "popularity - you will see here all your main and tested Forms statistics - "
3263
+ "in one graph or diagramm, - and this will provide you with all required "
3264
+ "information about your Form popularity!"
3265
+ msgstr ""
3266
+ "Une fois que vous voulez configurer votre formulaire - il commencera a "
3267
+ "s'afficher sur votre site à vos visiteurs. Et maintenant - vous devez "
3268
+ "vérifier qu'il 'affiche les statistiques. Ici, dans l'onglet Statistiques, "
3269
+ "vous serez en mesure de voir combien de fois le formulaire a été montré à "
3270
+ "vos visiteurs, combien de fois les visiteurs se sont inscrits (si "
3271
+ "l'abonnement est activé), combien de fois les visiteurs ont partagé votre "
3272
+ "site en utilisant la fonctionnalité des réseaux sociaux de votre formulaire "
3273
+ "et lequel des réseaux sociaux pour le partage est le plus populaire (si elle "
3274
+ "a été activée). Si vous allez utiliser AB Testing fonction pour augmenter la "
3275
+ "popularité de votre site - vous verrez ici toutes vos statistiques "
3276
+ "principales et testées des formulaires - dans un seul graphique ou "
3277
+ "diagramme, - et cela va vous fournir toutes les informations nécessaires sur "
3278
+ "la popularité de votre formulaire !"
3279
+
3280
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:94
3281
+ msgid "Form CSS / HTML Code"
3282
+ msgstr "Code CSS / HTML du formulaire"
3283
+
3284
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:95
3285
+ #, php-format
3286
+ msgid ""
3287
+ "In case you will need modify source CSS / HTML code of your Form - you can "
3288
+ "easily do this here. Just make sure that you know what you are doing - don't "
3289
+ "break Form. You can also find additional information about editing source "
3290
+ "code <a href=\"%s\" target=\"_blank\">here</a>."
3291
+ msgstr ""
3292
+ "Dans le cas où vous auriez besoin de modifier le code source CSS / HTML de "
3293
+ "votre formulaire - vous pouvez facilement le faire ici. Assurez-vous que "
3294
+ "vous savez ce que vous faites - pour ne pas bloquer le formulaire. Vous "
3295
+ "pouvez également trouver des informations supplémentaires sur la "
3296
+ "modification du code source <a href=\"%s\" target=\"_blank\">ici</a> ."
3297
+
3298
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:104
3299
+ msgid "Well Done!"
3300
+ msgstr "Bien joué!"
3301
+
3302
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:105
3303
+ #, php-format
3304
+ msgid ""
3305
+ "That's it! Now you know how to use our %s. Just save your Form after you "
3306
+ "will setup it - and you will see results. You can also check our site - <a "
3307
+ "href=\"%s\" target=\"_blank\">supsystic.com</a> to find out more about our "
3308
+ "%s plugin. If you will have any questions - you can always contact us on <a "
3309
+ "href=\"%s\" target=\"_blank\">WordPress plugin forum</a> or in <a href=\"%s"
3310
+ "\" target=\"_blank\">our support system</a>. We really hope that our "
3311
+ "solution will be helpful for you. Good luck!"
3312
+ msgstr ""
3313
+ "C'est tout ! Maintenant, vous savez comment utiliser notre %s. Il suffit "
3314
+ "d'enregistrer votre formulaire après configuration - et vous verrez les "
3315
+ "résultats. Vous pouvez également consulter notre site - <a href=\"%s\" "
3316
+ "target=\"_blank\">supsystic.com</a> pour en savoir plus sur le plugin de "
3317
+ "notre %s. Si vous avez des questions - vous pouvez toujours nous contacter "
3318
+ "sur le<a href=\"%s\" target=\"_blank\">forum des plugins Wordpress</a> ou "
3319
+ "dans <a href=\"%s\" target=\"_blank\">notre système de soutien</a> . Nous "
3320
+ "espérons vraiment que notre solution vous sera utile. Bonne chance !"
3321
+
3322
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:108
3323
+ msgid "Finish"
3324
+ msgstr "Fini"
3325
+
3326
+ #: ../modules/supsystic_promo/views/tpl/discountMsg.php:37
3327
+ #, php-format
3328
+ msgid ""
3329
+ "Upgrade to bundle and get an access to <a href=\"%s\" target=\"_blank\">all "
3330
+ "14 plugins</a> more than 80%% off!"
3331
+ msgstr ""
3332
+
3333
+ #: ../modules/supsystic_promo/views/tpl/discountMsg.php:38
3334
+ msgid "Buy Now"
3335
+ msgstr ""
3336
+
3337
+ #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:3
3338
+ msgid "Get plugins bundle today and save over 80%"
3339
+ msgstr ""
3340
+
3341
+ #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:6
3342
+ #, fuzzy
3343
+ #| msgid "Checkbox"
3344
+ msgid "Check It out"
3345
+ msgstr "Boîte de sélection"
3346
+
3347
+ #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:31
3348
+ msgid "More info"
3349
+ msgstr ""
3350
+
3351
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:8
3352
+ msgid "Enable Layered Form Style"
3353
+ msgstr "Activer les différents styles du formulaire"
3354
+
3355
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:12
3356
+ msgid ""
3357
+ "By default all Forms have modal style: it appears on user screen over the "
3358
+ "whole site. Layered style allows you to show your Form - on selected "
3359
+ "position: top, bottom, etc. and not over your site - but right near your "
3360
+ "content."
3361
+ msgstr ""
3362
+ "Par défaut, tous les formulaires ont un style modal : il apparaît sur "
3363
+ "l'écran d'utilisateur au-dessus de tout le site. Les différents types de "
3364
+ "style vous permettent d’afficher votre formulaire - sur la position "
3365
+ "sélectionnée: haut, bas, etc. et non pas sur votre site - mais juste sur le "
3366
+ "côté droit de votre contenu."
3367
+
3368
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:16
3369
+ msgid "Select position for your Form"
3370
+ msgstr "Sélectionner la position de votre formulaire"
3371
+
3372
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:19
3373
+ msgid "Top Left"
3374
+ msgstr "En haut à gauche"
3375
+
3376
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:20
3377
+ msgid "Top"
3378
+ msgstr "En haut"
3379
+
3380
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:21
3381
+ msgid "Top Right"
3382
+ msgstr "En haut à droite"
3383
+
3384
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:23
3385
+ msgid "Center Left"
3386
+ msgstr "AU centre à gauche"
3387
+
3388
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:24
3389
+ msgid "Center"
3390
+ msgstr "Au centre"
3391
+
3392
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:25
3393
+ msgid "Center Right"
3394
+ msgstr "Au centre à droite"
3395
+
3396
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:27
3397
+ msgid "Bottom Left"
3398
+ msgstr "En bas à gauche"
3399
+
3400
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:28
3401
+ msgid "Bottom"
3402
+ msgstr "En bas"
3403
+
3404
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:29
3405
+ msgid "Bottom Right"
3406
+ msgstr "En bas à droite"
3407
+
3408
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:77
3409
+ #, php-format
3410
+ msgid ""
3411
+ "This functionality and more - is available in PRO version. <a class=\"button "
3412
+ "button-primary\" target=\"_blank\" href=\"%s\">Get it</a> today for 29$"
3413
+ msgstr ""
3414
+ "Cette fonctionnalité et plus - est disponible dans la version PRO. <a target="
3415
+ "\"_blank\" class=\"button button-primary\" href=\"%s\">L'obtenir</a> "
3416
+ "aujourd'hui pour 29 $"
3417
+
3418
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:37
3419
+ msgid "Server Settings"
3420
+ msgstr "Paramètres du serveur"
3421
+
3422
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:50
3423
+ msgid "News"
3424
+ msgstr "Actualités"
3425
+
3426
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:56
3427
+ msgid "All news and info"
3428
+ msgstr "Toutes les actualités et infos"
3429
+
3430
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:61
3431
+ msgid "Contact form"
3432
+ msgstr "Formulaire de contact"
3433
+
3434
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:93
3435
+ msgid "Send email"
3436
+ msgstr "Envoyer un mail"
3437
+
3438
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:102
3439
+ msgid ""
3440
+ "Your email was sent, we will try to respond to your as soon as possible. "
3441
+ "Thank you for support!"
3442
+ msgstr ""
3443
+ "Votre courriel a été envoyé, nous allons essayer d'y répondre le plus tôt "
3444
+ "possible. Merci pour le soutien !"
3445
+
3446
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:7
3447
+ #, php-format
3448
+ msgid "Welcome to the %s v %s"
3449
+ msgstr "Bienvenue à %s contre %s"
3450
+
3451
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:8
3452
+ msgid "Skip tutorial"
3453
+ msgstr "Tutoriel"
3454
+
3455
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:11
3456
+ msgid ""
3457
+ "The best way to collect subscribers and show notifications.<br />We are "
3458
+ "trying to make our plugin work in most comfortable way for you. Here is some "
3459
+ "base information about it."
3460
+ msgstr ""
3461
+ "La meilleure façon de recueillir des abonnés et afficher des notifications. "
3462
+ "<br /> Nous essayons de faire que notre plugin fonctionne de manière la plus "
3463
+ "confortable pour vous. Voici quelques informations de base à ce sujet."
3464
+
3465
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:19
3466
+ msgid "Step-by-step tutorial"
3467
+ msgstr "Tutoriel étape par étape"
3468
+
3469
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:21
3470
+ msgid ""
3471
+ "There're really many options of forms customization. So as soon as you close "
3472
+ "that page, I'll show you step-by-step tutorial of how to use plugin. Hope it "
3473
+ "will be usefull for you :)"
3474
+ msgstr ""
3475
+ "Il y a vraiment beaucoup d’options de personnalisation des formulaires. Donc "
3476
+ "dès que vous fermerez cette page, je vais vous montrer un tutoriel étape par "
3477
+ "étape comment utiliser le plugin. Espérons qu’il sera utile pour vous  :)"
3478
+
3479
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:24
3480
+ msgid "As an option we can install and setup plugin for you."
3481
+ msgstr "En option, nous pouvons installer et configurer le plugin pour vous."
3482
+
3483
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:30
3484
+ #, php-format
3485
+ msgid ""
3486
+ "We love our plugin and do the best to improve all features for You. But "
3487
+ "sometimes issues happened, or you can't find required feature that you need. "
3488
+ "Don't worry, just <a href='%s' target='_blank'>contact us</a> and we will "
3489
+ "help you!"
3490
+ msgstr ""
3491
+ "Nous aimons notre plugin et faisons de notre mieux pour améliorer toutes les "
3492
+ "fonctionnalités pour vous. Mais parfois, des problèmes apparissent, ou vous "
3493
+ "ne pouvez pas trouver la fonctionnalité nécessaire dont vous avez besoin. Ne "
3494
+ "vous inquiétez pas, il suffit de <a href='%s' target='_blank'>nous contacter "
3495
+ "</a> et nous vous aiderons !"
3496
+
3497
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:36
3498
+ msgid "Video Tutorial"
3499
+ msgstr "Tutoriel vidéo"
3500
+
3501
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:48
3502
+ msgid "Frequently Asked Questions"
3503
+ msgstr "Questions fréquemment posées"
3504
+
3505
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:51
3506
+ msgid "Check all FAQs"
3507
+ msgstr "Consultez toutes les FAQ"
3508
+
3509
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:59
3510
+ msgid "Let's Start!"
3511
+ msgstr "C'est parti !!"
3512
+
3513
+ #~ msgid ""
3514
+ #~ "An Unexpected HTTP Error occurred during the API request.</p> <p><a href="
3515
+ #~ "\"?\" onclick=\"document.location.reload(); return false;\">Try again</a>"
3516
+ #~ msgstr ""
3517
+ #~ "Une erreur HTTP inattendue est survenue lors de la demande de l'API. </ "
3518
+ #~ "p> <p> <a href = \"?\" onclick = \"document.location.reload (); return "
3519
+ #~ "false;\"> Essayer encore</a>"
3520
+
3521
+ #~ msgid "An unknown error occurred"
3522
+ #~ msgstr "Une erreur inconnue s’est produite"
3523
+
3524
+ #~ msgid "Enter Name"
3525
+ #~ msgstr "Entrez Nom"
3526
+
3527
+ #~ msgid "Empty Base ID"
3528
+ #~ msgstr "ID de la base vide"
3529
+
3530
+ #~ msgid "Add New Test"
3531
+ #~ msgstr "Ajouter un nouveau test"
3532
+
3533
+ #~ msgid "Clear"
3534
+ #~ msgstr "Effacer"
3535
+
3536
+ #~ msgid ""
3537
+ #~ "You have no Test Forms for now. <a href=\"#\" class=\"cfsAbAddNew\" style="
3538
+ #~ "\"font-style: italic;\">Create</a> your first Test!"
3539
+ #~ msgstr ""
3540
+ #~ "Vous n’avez aucun formulaire de test pour l’instant. <a href=\"#\" class="
3541
+ #~ "\"cfsAbAddNew\" style=\"font-style: italic;\">Créer</a>votre premier "
3542
+ #~ "essai !"
3543
+
3544
+ #~ msgid "Active Campaign"
3545
+ #~ msgstr "Active Campaign"
3546
+
3547
+ #~ msgid ""
3548
+ #~ "Please make sure that you created some Lists under your Active Campaign "
3549
+ #~ "account."
3550
+ #~ msgstr ""
3551
+ #~ "SVP assurez-vous que vous avez créé quelques listes sous votre compte "
3552
+ #~ "Active Campaign"
3553
+
3554
+ #~ msgid "Make sure that you entered correct API data."
3555
+ #~ msgstr "Assurez-vous que vous avez entré les données correctes de l'API."
3556
+
3557
+ #~ msgid "Please enter your API URL"
3558
+ #~ msgstr "SVP entrez l'URL de votre API"
3559
+
3560
+ #~ msgid "Please enter your API key"
3561
+ #~ msgstr "SVP entrez la clé de votre API"
3562
+
3563
+ #~ msgid "Add contact failed with error: %s"
3564
+ #~ msgstr "Ajoutez le contact érroné avec l'erreur : %s"
3565
+
3566
+ #~ msgid ""
3567
+ #~ "No lists to add selected in admin area - contact site owner to resolve "
3568
+ #~ "this issue."
3569
+ #~ msgstr ""
3570
+ #~ "Aucunes listes à ajouter sélectionnées dans l'admin - contactez le "
3571
+ #~ "propriétaire du site pour résoudre ce problème."
3572
+
3573
+ #~ msgid "Not supported by Server"
3574
+ #~ msgstr "Non pris en charge par le serveur"
3575
+
3576
+ #~ msgid "Not supported on your server"
3577
+ #~ msgstr "Non pris en charge sur votre serveur"
3578
+
3579
+ #~ msgid ""
3580
+ #~ "This module require to have cUrl library for PHP on server installed. "
3581
+ #~ "Please contact your hosting provider and ask them to enable cUrl for you, "
3582
+ #~ "this is Free library."
3583
+ #~ msgstr ""
3584
+ #~ "Ce module a besoin d'avoir la bibliothèque cUrl pour PHP installé sur le "
3585
+ #~ "serveur. SVP contactez votre hébergeur et lui demander d'autoriser cURL "
3586
+ #~ "pour vous, c'est une bibliothèque gratuite."
3587
+
3588
+ #~ msgid ""
3589
+ #~ "You can find it under your Active Campaign Account -> My Settings -> API, "
3590
+ #~ "here is <a href=\"%s\" class=\"cfsAcHelpApiKeyLink\">help screenshot</a>"
3591
+ #~ msgstr ""
3592
+ #~ "Vous pouvez la trouver sous votre compte Active Campaign -> My Settings -"
3593
+ #~ "> API, voici une <a href=\"%s\" </a> class=\"cfsAcHelpApiKeyLink"
3594
+ #~ "\">capture d'écran</a> pour vous aider"
3595
+
3596
+ #~ msgid "API Key"
3597
+ #~ msgstr "Clé de l'API"
3598
+
3599
+ #~ msgid "Campaigns for subscribe"
3600
+ #~ msgstr "Campaigns pour s'abonner"
3601
+
3602
+ #~ msgid ""
3603
+ #~ "Select Campaigns for subscribe. They are taken from your Active Campaign "
3604
+ #~ "account."
3605
+ #~ msgstr ""
3606
+ #~ "Sélectionnez Campaigns pour l'abonnement. Elles sont prises à partir de "
3607
+ #~ "votre compte Active Campaign."
3608
+
3609
+ #~ msgid "Choose Lists"
3610
+ #~ msgstr "Choisissez listes"
3611
+
3612
+ #~ msgid "File %s Uploaded"
3613
+ #~ msgstr "Fichiers %s téléchargés"
3614
+
3615
+ #~ msgid "File size is too big, maximum file size for %s is %sMb"
3616
+ #~ msgstr ""
3617
+ #~ "La taille du fichier est trop grand, la taille maximale du fichier pour "
3618
+ #~ "%s est de %sMb"
3619
+
3620
+ #~ msgid "File type is invalid, %s is supported only %s types"
3621
+ #~ msgstr ""
3622
+ #~ "Ce type de fichier est invalide, %s est supporté seulement par les types "
3623
+ #~ "%s"
3624
+
3625
+ #~ msgid "Can not find file in request"
3626
+ #~ msgstr "Fichier introuvable avec la requête"
3627
+
3628
+ #~ msgid "Empty fiels provided"
3629
+ #~ msgstr "Champ fourni vide"
3630
+
3631
+ #~ msgid "Missing Form"
3632
+ #~ msgstr "Formulaire manquant"
3633
+
3634
+ #~ msgid "Missing ID"
3635
+ #~ msgstr "ID manquant"
3636
+
3637
+ #~ msgid "arpReach"
3638
+ #~ msgstr "arpReach"
3639
+
3640
+ #~ msgid "arpReach not supported"
3641
+ #~ msgstr "arpReach non soutenu"
3642
+
3643
+ #~ msgid "This module is not supported by your server configuration."
3644
+ #~ msgstr ""
3645
+ #~ "Ce module n'est pas pris en charge par la configuration de votre serveur."
3646
+
3647
+ #~ msgid "arpReach is not supported on your server."
3648
+ #~ msgstr "arpReach n'est pas pris en charge sur votre serveur."
3649
+
3650
+ #~ msgid "arpReach intake form Action URL"
3651
+ #~ msgstr "Url pour le formulaire d'admission arpReach"
3652
+
3653
+ #~ msgid ""
3654
+ #~ "Open your script for intake form, find there form tag with form "
3655
+ #~ "method='post' action='http://yourdomain.coma/a/a.php/sub/a/xxxxxx', then "
3656
+ #~ "copy \"action\" attribute - and paste it in text field below."
3657
+ #~ msgstr ""
3658
+ #~ "Ouvrez votre script pour le formulaire d'admission, y trouver balise form "
3659
+ #~ "avec form method='post' action='http://yourdomain.coma /a/a.php/sub/a/"
3660
+ #~ "xxxxxx', puis copiez l'attribut \"action\" - et coller-le dans le champ "
3661
+ #~ "de texte ci-dessous."
3662
+
3663
+ #~ msgid "Aweber"
3664
+ #~ msgstr "Aweber"
3665
+
3666
+ #~ msgid "Can not find your Aweber lists"
3667
+ #~ msgstr "Impossible de trouvez vos listes Aweber"
3668
+
3669
+ #~ msgid "Authorize in Aweber Account"
3670
+ #~ msgstr "Autorisez dans le compte d'Aweber"
3671
+
3672
+ #~ msgid ""
3673
+ #~ "To start integration process - you need to be authorized in Aweber "
3674
+ #~ "account."
3675
+ #~ msgstr ""
3676
+ #~ "Pour commencer le procédé d'intégration - vous devez être autorisé dans "
3677
+ #~ "le compte d'Aweber."
3678
+
3679
+ #~ msgid "Authorize"
3680
+ #~ msgstr "Autorisation"
3681
+
3682
+ #~ msgid "Lists for subscribe"
3683
+ #~ msgstr "Listes pour abonnement"
3684
+
3685
+ #~ msgid ""
3686
+ #~ "Select lists for subscribe. They are taken from your Aweber account - so "
3687
+ #~ "make sure that you entered correct API key before."
3688
+ #~ msgstr ""
3689
+ #~ "Sélectionner les listes d'abonement. Elles sont prises de votre compte "
3690
+ #~ "d'Aweber - ainsi assurez-vous que vous avez correctement mis la clé API "
3691
+ #~ "avant."
3692
+
3693
+ #~ msgid "Enter API key - and your list will appear here"
3694
+ #~ msgstr "Entrez votre clé API - et votre liste apparaîtra ici"
3695
+
3696
+ #~ msgid "Benchmark"
3697
+ #~ msgstr "Benchmark"
3698
+
3699
+ #~ msgid ""
3700
+ #~ "Please make sure that you created some Lists under your Benchmark account."
3701
+ #~ msgstr ""
3702
+ #~ "Veuillez vous assurer que vous avez créé quelques listes sous votre "
3703
+ #~ "compte Benchmark."
3704
+
3705
+ #~ msgid "Please enter your Benchmark Password"
3706
+ #~ msgstr "SVP entrez votre mot de passe Benchmark"
3707
+
3708
+ #~ msgid "Please enter your Benchmark Login"
3709
+ #~ msgstr "SVP entrez votre identifiant Benchmark"
3710
+
3711
+ #~ msgid "Benchmark Login"
3712
+ #~ msgstr "Identifiant Benchmark"
3713
+
3714
+ #~ msgid "Login for your Benchmark account."
3715
+ #~ msgstr "Identifiant pour votre compte Benchmark"
3716
+
3717
+ #~ msgid "Benchmark Password"
3718
+ #~ msgstr "Mot de passe Benchmark"
3719
+
3720
+ #~ msgid "Password for your Benchmark account."
3721
+ #~ msgstr "Mot de passe pour votre compte Benchmark"
3722
+
3723
+ #~ msgid ""
3724
+ #~ "Select Campaigns for subscribe. They are taken from your Benchmark "
3725
+ #~ "account."
3726
+ #~ msgstr ""
3727
+ #~ "Sélectionnez Campaigns pour l'abonnement. Elles sont prises à partir de "
3728
+ #~ "votre compte Benchmark."
3729
+
3730
+ #~ msgid "Campaign Monitor"
3731
+ #~ msgstr "Campaign Monitor"
3732
+
3733
+ #~ msgid ""
3734
+ #~ "You have no lists for now. Go to your <a href=\"%s\" target=\"_blank"
3735
+ #~ "\">Campaign Monitor Account -> Lists & Subscribers</a> and create list at "
3736
+ #~ "first, then just reload this page"
3737
+ #~ msgstr ""
3738
+ #~ "Vous n'avez aucune liste pour l'instant. Allez sur votre <a href=\"%s\" "
3739
+ #~ "target=\"_blank\">Compte Campaign Monitor ->Lists & Subscribers</a> et "
3740
+ #~ "créez une liste en tout premier, puis recharger la page"
3741
+
3742
+ #~ msgid ""
3743
+ #~ "Something going wrong while trying to send data to mail list service. "
3744
+ #~ "Please contact site owner."
3745
+ #~ msgstr ""
3746
+ #~ "Quelque chose ne fonctionne pas quand vous tentez d'envoyer des données à "
3747
+ #~ "la messagerie. Veuillez contacter le propriétaire du site."
3748
+
3749
+ #~ msgid ""
3750
+ #~ "Can not detect authorization fo account owner. Contact site owner to "
3751
+ #~ "resolve this issue."
3752
+ #~ msgstr ""
3753
+ #~ "Impossible de détecter l'autorisation pour le compte propriétaire. "
3754
+ #~ "Contacter le propriétaire du site pour résoudre ce problème."
3755
+
3756
+ #~ msgid "Campaign Monitor not supported"
3757
+ #~ msgstr "Campaign Monitor non pris en charge"
3758
+
3759
+ #~ msgid ""
3760
+ #~ "Campaign Monitor require at least PHP version 5.3. Please contact your "
3761
+ #~ "hosting provider and ask them to switch your PHP to version 5.3. or "
3762
+ #~ "higher."
3763
+ #~ msgstr ""
3764
+ #~ "Campaign Monitor nécessitent au moins PHP version 5.3. SVP contactez "
3765
+ #~ "votre hébergeur et lui demander de passer votre PHP vers la version 5.3. "
3766
+ #~ "ou supérieur."
3767
+
3768
+ #~ msgid "Campaign Monitor Setup"
3769
+ #~ msgstr "Installation de Campaign Monitor "
3770
+
3771
+ #~ msgid "You must authorize to use Campaign Monitor features"
3772
+ #~ msgstr ""
3773
+ #~ "Vous devez autoriser pour utiliser les caractéristiques de Campaign "
3774
+ #~ "Monitor."
3775
+
3776
+ #~ msgid "Authorize in Campaign Monitor"
3777
+ #~ msgstr "Autoriser dans Campaign Monitor"
3778
+
3779
+ #~ msgid ""
3780
+ #~ "Select lists for subscribe. They are taken from your Campaign Monitor "
3781
+ #~ "account."
3782
+ #~ msgstr ""
3783
+ #~ "Listes de sélection pour s’abonner. Elles sont tirées de votre compte de "
3784
+ #~ "Campaign Monitor."
3785
+
3786
+ #~ msgid "Constant Contact"
3787
+ #~ msgstr "Constant Contact"
3788
+
3789
+ #~ msgid "You are not logged-in"
3790
+ #~ msgstr "Vous n'êtes pas ouvert une session"
3791
+
3792
+ #~ msgid "Can not get cc obj"
3793
+ #~ msgstr "Vous ne pouvez pas obtenir Constant Contact objet"
3794
+
3795
+ #~ msgid "Constant Contact not supported"
3796
+ #~ msgstr "Constant Contact non pris en charge"
3797
+
3798
+ #~ msgid ""
3799
+ #~ "Constant Contact require at least PHP version 5.3. Please contact your "
3800
+ #~ "hosting provider and ask them to switch your PHP to version 5.3. or "
3801
+ #~ "higher."
3802
+ #~ msgstr ""
3803
+ #~ "Constant Contact a besoin au minimum de la version 5.3 de PHP. Veuillez "
3804
+ #~ "contacter votre hébergeur et demandez-lui de commuter votre PHP à la "
3805
+ #~ "version 5.3. ou supérieur."
3806
+
3807
+ #~ msgid "Constant Contact Setup"
3808
+ #~ msgstr "Installation de Constant Contact"
3809
+
3810
+ #~ msgid "You must authorize to use Constant Contact features"
3811
+ #~ msgstr ""
3812
+ #~ "Vous devez autoriser pour utiliser les caractéristques de Constant "
3813
+ #~ "Contact."
3814
+
3815
+ #~ msgid "Authorize in Constant Contact"
3816
+ #~ msgstr "Autorisez pour Constant Constant"
3817
+
3818
+ #~ msgid ""
3819
+ #~ "Select lists for subscribe. They are taken from your Constant Contact "
3820
+ #~ "account."
3821
+ #~ msgstr ""
3822
+ #~ "Sélectionnez les listes pour vous abonner. Elles sont prises à partir de "
3823
+ #~ "votre compte Constant Contact."
3824
+
3825
+ #~ msgid "ConvertKit"
3826
+ #~ msgstr "ConvertKit"
3827
+
3828
+ #~ msgid "Please enter your API Key"
3829
+ #~ msgstr "SVP entrez votre clé API"
3830
+
3831
+ #~ msgid ""
3832
+ #~ "You have no forms. Please create form at first under your ConvertKit "
3833
+ #~ "account"
3834
+ #~ msgstr ""
3835
+ #~ "Vous n'avez pas de formulaires. SVP créer d'abord un formulaire avec "
3836
+ #~ "votre compte ConvertKit."
3837
+
3838
+ #~ msgid ""
3839
+ #~ "There was a problem with sending request to our authentication server. "
3840
+ #~ "Please try later."
3841
+ #~ msgstr ""
3842
+ #~ "Il y a un problème avec l'envoi de la demande vers votre serveur "
3843
+ #~ "d'authentification. Merci d'essayer ultérieurement."
3844
+
3845
+ #~ msgid ""
3846
+ #~ "Some error occured during subscription. Please make sure that you entered "
3847
+ #~ "all information correct."
3848
+ #~ msgstr ""
3849
+ #~ "Une erreur est survenue lors de l'abonnement. SVP assurez-vous que avez "
3850
+ #~ "entré toutes les informations correctement."
3851
+
3852
+ #~ msgid ""
3853
+ #~ "Please make sure that you entered your API Key and selected forms in "
3854
+ #~ "admin area"
3855
+ #~ msgstr ""
3856
+ #~ "SVP assurez-vous que vous avez entré votre clé API et sélectionné les "
3857
+ #~ "formulaires dans la zone d'administration."
3858
+
3859
+ #~ msgid "You can find your API Key in the ConvertKit Account page."
3860
+ #~ msgstr "Vous pouvez trouver votre clé API sur la page du compte ConvertKit."
3861
+
3862
+ #~ msgid "Forms to Subscribe"
3863
+ #~ msgstr "Formulaires d'abonnement"
3864
+
3865
+ #~ msgid ""
3866
+ #~ "Select Forms for subscribe. They are taken from your ConvertKit account."
3867
+ #~ msgstr ""
3868
+ #~ "Sélection des formulaires pour l'abonnement. Elles sont prises à partir "
3869
+ #~ "de votre compte ConvertKit."
3870
+
3871
+ #~ msgid "Choose Forms"
3872
+ #~ msgstr "Choisissez les formulaires"
3873
+
3874
+ #~ msgid "FeedBlitz"
3875
+ #~ msgstr "FeedBlitz"
3876
+
3877
+ #~ msgid ""
3878
+ #~ "You have no lists. Login to your FeedBlitz account and create your first "
3879
+ #~ "list before start using this functionality."
3880
+ #~ msgstr ""
3881
+ #~ "Vous n'avez pas de listes. Connectez-vous à votre compte FeedBlitz et "
3882
+ #~ "créez votre première liste avant de commencer à utiliser cette "
3883
+ #~ "fonctionnalité."
3884
+
3885
+ #~ msgid "Some error occured during connection to the server"
3886
+ #~ msgstr "Une erreur est survenue lors de la connexion au serveur"
3887
+
3888
+ #~ msgid "FeedBlitz not supported"
3889
+ #~ msgstr "FeedBlitz n'est pas pris en charge"
3890
+
3891
+ #~ msgid "FeedBlitz is not supported on your server"
3892
+ #~ msgstr "FeedBlitz n'est pas pris en charge sur votre serveur"
3893
+
3894
+ #~ msgid "FeedBlitz API Key"
3895
+ #~ msgstr "Clé API FeeBlitz"
3896
+
3897
+ #~ msgid "Your FeedBlitz API Key"
3898
+ #~ msgstr "Votre clé API FeeBlitz"
3899
+
3900
+ #~ msgid ""
3901
+ #~ "Select lists for subscribe. They are taken from your FeedBlitz account."
3902
+ #~ msgstr ""
3903
+ #~ "Sélectionnez les listes pour vous abonner. Elles sont prises à partir de "
3904
+ #~ "votre compte FeedBlitz."
3905
+
3906
+ #~ msgid "GetResponse"
3907
+ #~ msgstr "GetResponse"
3908
+
3909
+ #~ msgid ""
3910
+ #~ "You can find it under your GetResponse Account -> GetResponse API, here "
3911
+ #~ "is <a href=\"%s\" class=\"cfsGrHelpApiKeyLink\" target=\"_blank\">help "
3912
+ #~ "screenshot</a>"
3913
+ #~ msgstr ""
3914
+ #~ "Vous pouvez le trouver sous votre compte GetResponse -> API GetResponse, "
3915
+ #~ "voici une <a href=\"%s\" class=\"cfsGrHelpApiKeyLink\" aide target="
3916
+ #~ "\"_blank\">capture d'écran</a> pour vous aider "
3917
+
3918
+ #~ msgid ""
3919
+ #~ "Select Campaigns for subscribe. They are taken from your GetResponse "
3920
+ #~ "account."
3921
+ #~ msgstr ""
3922
+ #~ "Sélectionnez Campaigns pour abonnement. Elles sont prises à partir de "
3923
+ #~ "votre compte GetResponse."
3924
+
3925
+ #~ msgid "Cycle Day"
3926
+ #~ msgstr "Jour de cycle"
3927
+
3928
+ #~ msgid ""
3929
+ #~ "Insert contact on a given day at the autoresponder cycle. Value of 0 "
3930
+ #~ "means the beginning of the cycle. Lack of this param means that a contact "
3931
+ #~ "will not be inserted into cycle."
3932
+ #~ msgstr ""
3933
+ #~ "Insérer un contact un jour donné au cycle du répondeur automatique. La "
3934
+ #~ "valeur 0 signifie le début du cycle. L'absence de ce paramètre signifie "
3935
+ #~ "qu'un contact ne sera pas inséré dans le cycle."
3936
+
3937
+ #~ msgid "Please enter your Application ID"
3938
+ #~ msgstr "SVP entrez votre ID d'application"
3939
+
3940
+ #~ msgid "Please enter your API Username"
3941
+ #~ msgstr "SVP entrez votre nom d'utilisateur API"
3942
+
3943
+ #~ msgid "Please enter your API Password"
3944
+ #~ msgstr "SVP entrez votre mot de passe API"
3945
+
3946
+ #~ msgid "You have no lists in your iContact account for now."
3947
+ #~ msgstr "Vous avez pas de listes dans votre compte iContact pour le moment."
3948
+
3949
+ #~ msgid "Can't add contact"
3950
+ #~ msgstr "Impossible d'ajouter un contact"
3951
+
3952
+ #~ msgid "Application ID"
3953
+ #~ msgstr "ID de l'application"
3954
+
3955
+ #~ msgid "API Username"
3956
+ #~ msgstr "Nom d'utilisateur API"
3957
+
3958
+ #~ msgid ""
3959
+ #~ "Select Lists for subscribe. They are taken from your iContact account."
3960
+ #~ msgstr ""
3961
+ #~ "Sélectionnez Listes pour abonnement. Elles sont prises à partir de votre "
3962
+ #~ "compte iContact."
3963
+
3964
+ #~ msgid "InfusionSoft"
3965
+ #~ msgstr "InfusionSoft"
3966
+
3967
+ #~ msgid ""
3968
+ #~ "Administrator of this site need to re-autentificate in InfusionSoft "
3969
+ #~ "system from admin area"
3970
+ #~ msgstr ""
3971
+ #~ "L'administrateur de ce site a besoin de ré-authentifier dans le système "
3972
+ #~ "Infusionsoft à partir de la zone d'administration."
3973
+
3974
+ #~ msgid ""
3975
+ #~ "This module require to have cUrl library for PHP on server installed and "
3976
+ #~ "PHP version to be at least 5.4. Please contact your hosting provider and "
3977
+ #~ "ask them to enable cUrl for you, this is Free library, and check your PHP "
3978
+ #~ "version."
3979
+ #~ msgstr ""
3980
+ #~ "Ce module a besoin d'avoir la bibliothèque cURL pour PHP installé sur le "
3981
+ #~ "serveur et la version PHP 5.4 minimum. SVP contactez votre hébergeur et "
3982
+ #~ "lui demandez d'activer cURL pour vous, ceci est une librairie gratuite, "
3983
+ #~ "et vérifiez votre version de PHP."
3984
+
3985
+ #~ msgid "InfusionSoft Setup"
3986
+ #~ msgstr "Installation d'InfusionSoft"
3987
+
3988
+ #~ msgid "You must authorize to use InfusionSoft features"
3989
+ #~ msgstr ""
3990
+ #~ "Vous devez avoir l'autorisation pour utiliser les fonctionnalités de "
3991
+ #~ "InfusionSoft"
3992
+
3993
+ #~ msgid "Authorize in InfusionSoft"
3994
+ #~ msgstr "Autorisez dans Infusionsoft"
3995
+
3996
+ #~ msgid "Tags for subscribe"
3997
+ #~ msgstr "Étiquettes pour vous inscrire"
3998
+
3999
+ #~ msgid ""
4000
+ #~ "Enter Tags IDs for subscribe. You can get it from your InfusionSoft "
4001
+ #~ "account -> Settings -> Tags (Id column). You can enter several tags ids "
4002
+ #~ "here, separate them by comma sign - \",\"."
4003
+ #~ msgstr ""
4004
+ #~ "Entrez tags ID pour vous inscrire. Vous pouvez l'obtenir à partir de "
4005
+ #~ "votre compte Infusionsoft -> Settings -> Tags (colonne Id). Vous pouvez "
4006
+ #~ "entrer plusieurs balises ids ici, les séparer par des virgules - \",\"."
4007
+
4008
+ #~ msgid "Jetpack"
4009
+ #~ msgstr "Jetpack"
4010
+
4011
+ #~ msgid "Not a valid email address"
4012
+ #~ msgstr "Adresse courriel invalide"
4013
+
4014
+ #~ msgid "Not a valid post ID"
4015
+ #~ msgstr "Id de l'article invalide"
4016
+
4017
+ #~ msgid "Unknown post"
4018
+ #~ msgstr "Article inconnu"
4019
+
4020
+ #~ msgid ""
4021
+ #~ "Strange error. Jetpack servers at WordPress.com could subscribe the "
4022
+ #~ "email."
4023
+ #~ msgstr ""
4024
+ #~ "Erreur bizarre. Les serveurs de Jetpack chez WordPress.com n'ont pu "
4025
+ #~ "inscrire l'email."
4026
+
4027
+ #~ msgid "Site owner has disabled subscriptions."
4028
+ #~ msgstr "Le propriétaire de site a désactivé les abonnements."
4029
+
4030
+ #~ msgid "Already subscribed."
4031
+ #~ msgstr "Déjà abonné."
4032
+
4033
+ #~ msgid ""
4034
+ #~ "Strange error. Jetpack servers at WordPress.com returned something "
4035
+ #~ "malformed."
4036
+ #~ msgstr ""
4037
+ #~ "Erreur étrange. Les serveurs de Jetpack chez WordPress.com ont renvoyé "
4038
+ #~ "quelque chose de déformé."
4039
+
4040
+ #~ msgid ""
4041
+ #~ "Strange error. Jetpack servers at WordPress.com returned something I "
4042
+ #~ "didn't understand."
4043
+ #~ msgstr ""
4044
+ #~ "Erreur bizarre. Les serveurs de Jetpack chez WordPress.com ont renvoyé "
4045
+ #~ "quelque chose que je n'ai pas compris."
4046
+
4047
+ #~ msgid "Something is going wrong"
4048
+ #~ msgstr "Quelque chose va mal"
4049
+
4050
+ #~ msgid "Empty response from Jetpack"
4051
+ #~ msgstr "Réponse vide de Jetpack"
4052
+
4053
+ #~ msgid ""
4054
+ #~ "Subscriptions module is not activated in Jetpack plugin settings. "
4055
+ #~ "Activate it before start using this subscribe method."
4056
+ #~ msgstr ""
4057
+ #~ "Le module abonnements est pas activé dans les paramètres du plugin "
4058
+ #~ "Jetpack. Activez-le avant de commencer à utiliser ce type d'abonnement."
4059
+
4060
+ #~ msgid "Can't find Jetpack plugin on this server"
4061
+ #~ msgstr "Le plugin Jetpack est introuvable sur ce serveur"
4062
+
4063
+ #~ msgid ""
4064
+ #~ "To use this subscribe engine - you must have <a target=\"_blank\" href="
4065
+ #~ "\"%s\">Jetpack plugin</a> installed on your site"
4066
+ #~ msgstr ""
4067
+ #~ "Pour utiliser ce moteur pour abonnement - vous devez avoir le <a target="
4068
+ #~ "\"_blank\" href=\"%s\">plugin Jetpack</ a> installé sur votre site"
4069
+
4070
+ #~ msgid ""
4071
+ #~ "Your license has expired. Once you extend your license - you will be able "
4072
+ #~ "to Update PRO version. To extend PRO version license - follow <a href=\"%s"
4073
+ #~ "\" target=\"_blank\">this link</a>, then - go to <a href=\"%s\">License</"
4074
+ #~ "a> tab anc click on \"Re-activate\" button to re-activate your PRO "
4075
+ #~ "version."
4076
+ #~ msgstr ""
4077
+ #~ "Votre licence a expirée. Une fois que vous aurez prolongé votre licence - "
4078
+ #~ "vous serez en mesure de mettre à jour la version PRO. Pour prolonger la "
4079
+ #~ "licence version PRO - suivez <a href=\"%s\" target=\"_blank\">ce lien </"
4080
+ #~ "a>, puis - aller à l'onglet <a href=\"%s\">licence</a> et cliquer sur "
4081
+ #~ "bouton \"réactiver\" pour réactiver votre version PRO."
4082
+
4083
+ #~ msgid ""
4084
+ #~ "Your license for PRO version of %s plugin has expired. You can <a href="
4085
+ #~ "\"%s\" target=\"_blank\">click here</a> to extend your license, then - go "
4086
+ #~ "to <a href=\"%s\">License</a> tab and click on \"Re-activate\" button to "
4087
+ #~ "re-activate your PRO version."
4088
+ #~ msgstr ""
4089
+ #~ "Votre licence pour la version PRO du plugin %s de a expirée. Vous pouvez "
4090
+ #~ "<a href=\"%s\" cliquez target=\"_blank\">cliquer ici </a> prolonger votre "
4091
+ #~ "licence, puis - allez à l'onglet <a href=\"%s\">Licence</a> et cliquez "
4092
+ #~ "sur le bouton \"Réactiver \"pour réactiver votre version PRO."
4093
+
4094
+ #~ msgid "License"
4095
+ #~ msgstr "Licence"
4096
+
4097
+ #~ msgid "Activate License"
4098
+ #~ msgstr "Activer la licence"
4099
+
4100
+ #~ msgid "Renew License"
4101
+ #~ msgstr "Renouveler la licence"
4102
+
4103
+ #~ msgid "Please enter your License Key"
4104
+ #~ msgstr "SVP entrez la clé de votre licence"
4105
+
4106
+ #~ msgid "Please enter your Email address"
4107
+ #~ msgstr "SVP entrez votre adresse courriel"
4108
+
4109
+ #~ msgid "License for plugin %s will expire today."
4110
+ #~ msgstr "La licence pour le plugin %s expire aujourd'hui."
4111
+
4112
+ #~ msgid "License for plugin %s will expire tomorrow."
4113
+ #~ msgstr "La licence pour le plugin %s expire demain."
4114
+
4115
+ #~ msgid "License for plugin %s will expire in %d days."
4116
+ #~ msgstr "La licence pour le plugin %s expirera dans %d jours."
4117
+
4118
+ #~ msgid ""
4119
+ #~ "Congratulations! PRO version of %s plugin has been activated and is "
4120
+ #~ "working fine!"
4121
+ #~ msgstr ""
4122
+ #~ "Félicitations ! La version PRO du plugin %s a été activé et fonctionne "
4123
+ #~ "parfaitement !"
4124
+
4125
+ #~ msgid ""
4126
+ #~ "Your license for PRO version of %s plugin has expired. You can <a href="
4127
+ #~ "\"%s\" target=\"_blank\">click here</a> to extend your license, then - "
4128
+ #~ "click on \"Re-activate\" button to re-activate your PRO version."
4129
+ #~ msgstr ""
4130
+ #~ "Votre licence pour la version PRO du plugin %s a expirée. Vous pouvez <a "
4131
+ #~ "href=\"%s\" target=\"_blank\">cliquer ici </a> pour prolonger votre "
4132
+ #~ "licence, puis - cliquez sur le bouton \"Re-activate\" pour réactiver "
4133
+ #~ "votre version PRO."
4134
+
4135
+ #~ msgid ""
4136
+ #~ "Congratulations! You have successfully installed PRO version of %s "
4137
+ #~ "plugin. Final step to finish Your PRO version setup - is to enter your "
4138
+ #~ "Email and License Key on this page. This will activate Your copy of "
4139
+ #~ "software on this site."
4140
+ #~ msgstr ""
4141
+ #~ "Félicitations ! Vous avez réussi à installer la version PRO du plugin %s. "
4142
+ #~ "L'étape finale pour terminer votre configuration PRO version - est de "
4143
+ #~ "saisir votre e-mail et la clé de licence sur cette page. Cela permettra "
4144
+ #~ "d'activer votre copie du logiciel sur ce site."
4145
+
4146
+ #~ msgid ""
4147
+ #~ "Your email address, used on checkout procedure on <a href=\"%s\" target="
4148
+ #~ "\"_blank\">%s</a>"
4149
+ #~ msgstr ""
4150
+ #~ "Votre adresse e-mail, utilisée pour la procédure de paiement sur <a href="
4151
+ #~ "\"%s\" target=\"_blank\">%s</a>"
4152
+
4153
+ #~ msgid "License Key"
4154
+ #~ msgstr "Clé de la licence"
4155
+
4156
+ #~ msgid ""
4157
+ #~ "Your License Key from your account on <a href=\"%s\" target=\"_blank\">"
4158
+ #~ "%s</a>"
4159
+ #~ msgstr ""
4160
+ #~ "Votre clé de licence de votre compte sur <a href=\"%s\" target=\"_blank\">"
4161
+ #~ "%s</a>"
4162
+
4163
+ #~ msgid "Re-activate"
4164
+ #~ msgstr "Re-activation"
4165
+
4166
+ #~ msgid "Activate"
4167
+ #~ msgstr "Activation"
4168
+
4169
+ #~ msgid "MailChimp"
4170
+ #~ msgstr "MailChimp"
4171
+
4172
+ #~ msgid ""
4173
+ #~ "Something going wrong while trying to send data to MailChimp. Please "
4174
+ #~ "contact site owner."
4175
+ #~ msgstr ""
4176
+ #~ "Quelque chose qui ne fonctionne pas pendant l'envoi des données à "
4177
+ #~ "MailChimp. SVP contactez le propriétaire du site."
4178
+
4179
+ #~ msgid ""
4180
+ #~ "No API key entered in admin area - contact site owner to resolve this "
4181
+ #~ "issue."
4182
+ #~ msgstr ""
4183
+ #~ "Aucune clé d'api n'est entrée dans la zone de l'administration - "
4184
+ #~ "contactez le propriétaire du site pour résoudre ce problème."
4185
+
4186
+ #~ msgid ""
4187
+ #~ "There was some problem while trying to get your lists. Make sure that "
4188
+ #~ "your API key is correct."
4189
+ #~ msgstr ""
4190
+ #~ "Il y a des problèmes quand vous tentez d'obtenir vos listes. Assurez-vous "
4191
+ #~ "que votre clé API est correcte."
4192
+
4193
+ #~ msgid "Empty API key"
4194
+ #~ msgstr "Clé de l'API vide"
4195
+
4196
+ #~ msgid "Select some Lists before"
4197
+ #~ msgstr "Sélectionnez les listes avant"
4198
+
4199
+ #~ msgid "MailChimp API key"
4200
+ #~ msgstr "Clé API MailChimp"
4201
+
4202
+ #~ msgid ""
4203
+ #~ "To find your MailChimp API Key login to your mailchimp account at <a href="
4204
+ #~ "\"%s\" target=\"_blank\">%s</a> then from the left main menu, click on "
4205
+ #~ "your Username, then select \"Account\" in the flyout menu. From the "
4206
+ #~ "account page select \"Extras\", \"API Keys\". Your API Key will be listed "
4207
+ #~ "in the table labeled \"Your API Keys\". Copy / Paste your API key into "
4208
+ #~ "\"MailChimp API key\" field here. For more detailed instruction - check "
4209
+ #~ "article <a href=\"%s\" target=\"_blank\">here</a>."
4210
+ #~ msgstr ""
4211
+ #~ "Pour trouver votre identifiant pour la clé API de MailChimp sur votre "
4212
+ #~ "compte de <a href=\"%s\" target=\"_blank\">%s</a> puis à partir du menu "
4213
+ #~ "principal de gauche, cliquez sur votre nom d'utilisateur, puis "
4214
+ #~ "sélectionnez \"Account\" dans le menu déroulant. Sur la page du compte "
4215
+ #~ "sélectionnez \"Extras\", \"API Keys\". Votre clé API sera répertoriée "
4216
+ #~ "dans le tableau intitulé \"Your API Keys\". Copier / Coller votre clé API "
4217
+ #~ "dans le champ \"MailChimp API key\". Pour des instructions plus "
4218
+ #~ "détaillées - consultez l'article <a href=\"%s\" target=\"_blank\">ici</a>."
4219
+
4220
+ #~ msgid ""
4221
+ #~ "Select lists for subscribe. They are taken from your MailChimp account - "
4222
+ #~ "so make sure that you entered correct API key before."
4223
+ #~ msgstr ""
4224
+ #~ "Sélectionnez les listes pour vous abonner. Elles sont prises à partir de "
4225
+ #~ "votre compte MailChimp - alors assurez-vous que vous avez entré "
4226
+ #~ "correctement la clé API avant."
4227
+
4228
+ #~ msgid "Disable double opt-in"
4229
+ #~ msgstr "Désactiver double opt-in"
4230
+
4231
+ #~ msgid ""
4232
+ #~ "Disable double opt-in confirmation message sending - will create "
4233
+ #~ "subscriber directly after he will sign-up to your form."
4234
+ #~ msgstr ""
4235
+ #~ "Désactiver l’envoi de confirmation du message double opt-in - il créera "
4236
+ #~ "l'abonné directement après qu’il soit inscrit à votre formulaire."
4237
+
4238
+ #~ msgid "Send MailChimp Welcome Email"
4239
+ #~ msgstr "Envoyez l'email d'accueil de MailChimp"
4240
+
4241
+ #~ msgid ""
4242
+ #~ "If double opt-in is disable - there will be no Welcome email from "
4243
+ #~ "MailChimp by default. But if you still need it - just enable this opton, "
4244
+ #~ "and Welcome email from MailChimp will be sent to your user even in this "
4245
+ #~ "case."
4246
+ #~ msgstr ""
4247
+ #~ "Si le double opt-in est désactivé - il n'y aura pas e-mail de bienvenue "
4248
+ #~ "de MailChimp par défaut. Mais si vous avez vraiment besoin - activez "
4249
+ #~ "cette option et l'email de MailChimp sera envoyé à votre utilisateur, "
4250
+ #~ "même dans ce cas."
4251
+
4252
+ #~ msgid "Group for subscribe"
4253
+ #~ msgstr "Groupe pour abonnement"
4254
+
4255
+ #~ msgid ""
4256
+ #~ "In MailChimp there are possibility to select groups for your subscribers. "
4257
+ #~ "This is not mandatory, but some times is really helpful. So, we added "
4258
+ #~ "this possibility for you in our plugin too - hope you will like it!"
4259
+ #~ msgstr ""
4260
+ #~ "Dans MailChimp, il y a la possibilité de sélectionner des groupes pour "
4261
+ #~ "vos abonnés. Ce n'est pas obligatoire, mais quelques fois, c'est vraiment "
4262
+ #~ "utile. Donc, nous avons donc ajouté cette possibilité pour vous dans "
4263
+ #~ "notre plugin - en espérant que vous aimerez !"
4264
+
4265
+ #~ msgid "Choose Groups"
4266
+ #~ msgstr "Choisissez les groupes"
4267
+
4268
+ #~ msgid "Enter API key, select List - and your groups will appear here"
4269
+ #~ msgstr ""
4270
+ #~ "Entrez la clé API, sélectionnez Liste - et vos groupes apparaîtront ici"
4271
+
4272
+ #~ msgid "MailPoet"
4273
+ #~ msgstr "MailPoet"
4274
+
4275
+ #~ msgid "Some error occured during subscription process"
4276
+ #~ msgstr "Une erreur est survenue lors du processus d'abonnement"
4277
+
4278
+ #~ msgid "Can't find MailPoet on this server"
4279
+ #~ msgstr "mailPoet est introuvable sur le serveur"
4280
+
4281
+ #~ msgid ""
4282
+ #~ "To use this subscribe engine - you must have <a target=\"_blank\" href="
4283
+ #~ "\"%s\">MailPoet plugin</a> installed on your site"
4284
+ #~ msgstr ""
4285
+ #~ "Pour utiliser ce moteur abonnement - vous devez avoir le <a target="
4286
+ #~ "\"_blank\" href=\"%s\">plugin MailPoet</ est-> installé sur votre site"
4287
+
4288
+ #~ msgid "MailPoet Subscribe Lists"
4289
+ #~ msgstr "Listes des abonnements MailPoet"
4290
+
4291
+ #~ msgid "Mailrelay"
4292
+ #~ msgstr "Mailrelay"
4293
+
4294
+ #~ msgid ""
4295
+ #~ "You have no lists. Login to your Mailrelay account and create your first "
4296
+ #~ "list before start using this functionality."
4297
+ #~ msgstr ""
4298
+ #~ "Vous avez pas de listes. Connectez-vous à votre compte Mailrelay et créez "
4299
+ #~ "votre première liste avant de commencer à utiliser cette fonctionnalité."
4300
+
4301
+ #~ msgid "Failed to create subscriber."
4302
+ #~ msgstr "Impossible de créer d'abonné."
4303
+
4304
+ #~ msgid ""
4305
+ #~ "Can not detect Host and API key. Contact site owner to resolve this issue."
4306
+ #~ msgstr ""
4307
+ #~ "Impossible de détecter l'hôte et la clé de l'API. Contacter le "
4308
+ #~ "propriétaire du site pour résoudre ce problème."
4309
+
4310
+ #~ msgid "Mailrelay not supported"
4311
+ #~ msgstr "Mailrelay non supporté"
4312
+
4313
+ #~ msgid "Mailrelay is not supported on your server"
4314
+ #~ msgstr "Mailrelay est pas pris en charge sur votre serveur"
4315
+
4316
+ #~ msgid "Mailrelay Host"
4317
+ #~ msgstr "Hôte Mailrelay"
4318
+
4319
+ #~ msgid ""
4320
+ #~ "Please enter the host that you have in your Mairelay welcome email. "
4321
+ #~ "Please enter it without the initial http:// (for example demo.ip-zone.com)"
4322
+ #~ msgstr ""
4323
+ #~ "SVP entrez l'hôte que vous avez dans votre email de bienvenue de "
4324
+ #~ "Mairelay. SVP entrez-le sans le http initial : // (par exemple demo.ip-"
4325
+ #~ "zone.com)"
4326
+
4327
+ #~ msgid ""
4328
+ #~ "Please enter your API key. You can generate your API key on your "
4329
+ #~ "Mailrelay panel, Configuration -> API access -> Generate API key"
4330
+ #~ msgstr ""
4331
+ #~ "SVP entrez votre clé API. Vous pouvez générer votre clé API sur votre "
4332
+ #~ "panneau Mailrelay, Configuration -> API access -> Generate API key"
4333
+
4334
+ #~ msgid ""
4335
+ #~ "To create new groups in Mailrelay, you must login into the control panel "
4336
+ #~ "and click into the Mail Relay > Subscribers groups. Once there you can "
4337
+ #~ "add a new group for your Wordpress users, or edit an existing one"
4338
+ #~ msgstr ""
4339
+ #~ "Pour créer de nouveaux groupes dans Mailrelay, vous devez vous connecter "
4340
+ #~ "dans le panneau de contrôle et cliquez sur les relais de messagerie > "
4341
+ #~ "groupes d'abonnés. Une fois là, vous pouvez ajouter un nouveau groupe "
4342
+ #~ "pour vos utilisateurs de Wordpress, ou modifier un existant"
4343
+
4344
+ #~ msgid "Emma"
4345
+ #~ msgstr "Emma"
4346
+
4347
+ #~ msgid "Please enter your Account ID"
4348
+ #~ msgstr "SVP entrez votre ID de compte"
4349
+
4350
+ #~ msgid "Please enter your Public API Key"
4351
+ #~ msgstr "SVP entrez votre clé API publique"
4352
+
4353
+ #~ msgid "Please enter your Private API Key"
4354
+ #~ msgstr "SVP entrez votre clé API privée"
4355
+
4356
+ #~ msgid "Emma not supported"
4357
+ #~ msgstr "Emma non supporté"
4358
+
4359
+ #~ msgid ""
4360
+ #~ "Emma is not supported on your server, please nstall cUrl PHP Library on "
4361
+ #~ "your server first - it's free."
4362
+ #~ msgstr ""
4363
+ #~ "Emma est pas pris en charge sur votre serveur, SVP installez la librairie "
4364
+ #~ "cURL PHP sur votre serveur d'abord - c'est gratuit."
4365
+
4366
+ #~ msgid "Emma Account ID"
4367
+ #~ msgstr "Id du compte Emma"
4368
+
4369
+ #~ msgid "Your account ID"
4370
+ #~ msgstr "ID de votre compte"
4371
+
4372
+ #~ msgid "Emma Public API key"
4373
+ #~ msgstr "Clé API publique Emma"
4374
+
4375
+ #~ msgid "Your Public API key"
4376
+ #~ msgstr "Votre clé API publique d'Emma"
4377
+
4378
+ #~ msgid "Emma Private API key"
4379
+ #~ msgstr "Clé API Privée d'Emma"
4380
+
4381
+ #~ msgid "Your Private API key"
4382
+ #~ msgstr "Votre clé API privée d'Emma"
4383
+
4384
+ #~ msgid "Groups for subscribe"
4385
+ #~ msgstr "Groupes pour vous inscrire"
4386
+
4387
+ #~ msgid ""
4388
+ #~ "To create new groups in Emma, you must login into the control panel and "
4389
+ #~ "click into the Emma > Subscribers groups. Once there you can add a new "
4390
+ #~ "group for your Wordpress users, or edit an existing one"
4391
+ #~ msgstr ""
4392
+ #~ "Pour créer de nouveaux groupes dans Emma, vous devez vous connecter dans "
4393
+ #~ "le panneau de contrôle et cliquez sur Emma > Subscribers groups. Une fois "
4394
+ #~ "là, vous pouvez ajouter un nouveau groupe pour vos utilisateurs de "
4395
+ #~ "Wordpress, ou modifier un existant"
4396
+
4397
+ #~ msgid "SalesForce - Web-to-Lead"
4398
+ #~ msgstr "SalesForce - Web-to-Lead"
4399
+
4400
+ #~ msgid ""
4401
+ #~ "Generate your lead form in your Salesforce account (more about generating "
4402
+ #~ "form you can read <a target=\"_blank\" href=\"%s\">here</a>), then copy "
4403
+ #~ "\"oid\" value from it (<a target=\"_blank\" href=\"%s\">like this</a>) "
4404
+ #~ "and insert it into this paramter"
4405
+ #~ msgstr ""
4406
+ #~ "Générez votre formulaire principal dans votre compte Salesforce (pour en "
4407
+ #~ "savoir plus sur la génération du formulaire, vous pouvez lire <a target="
4408
+ #~ "\"_blank\" href=\"%s\">ici</a>), puis copiez la valeur \"oid\" de celui-"
4409
+ #~ "ci (<a target=\"_blank\" href = \"%s\">comme ceci </a>) et l'insérer dans "
4410
+ #~ "ce paramètre"
4411
+
4412
+ #~ msgid "SendGrid"
4413
+ #~ msgstr "SendGrid"
4414
+
4415
+ #~ msgid ""
4416
+ #~ "You have no lists. Login to your SendGrid account and create your first "
4417
+ #~ "list before start using this functionality."
4418
+ #~ msgstr ""
4419
+ #~ "Vous avez pas de listes. Connectez-vous à votre compte SendGrid et créez "
4420
+ #~ "votre première liste avant de commencer à utiliser cette fonctionnalité."
4421
+
4422
+ #~ msgid "SendGrid not supported"
4423
+ #~ msgstr "SendGrid pas pris en charge"
4424
+
4425
+ #~ msgid "SendGrid is not supported on your server"
4426
+ #~ msgstr "SendGrid n'est pas pris en charge sur votre serveur"
4427
+
4428
+ #~ msgid "SendGrid Username"
4429
+ #~ msgstr "Num d'utilisateur SendGrid"
4430
+
4431
+ #~ msgid "Your SendGrid name"
4432
+ #~ msgstr "Votre nom SendGrid"
4433
+
4434
+ #~ msgid "SendGrid Password"
4435
+ #~ msgstr "Mot de passe SendGrid"
4436
+
4437
+ #~ msgid ""
4438
+ #~ "Select lists for subscribe. They are taken from your SendGrid account."
4439
+ #~ msgstr ""
4440
+ #~ "Sélectionnez les listes abonnement. Elles sont prises à partir de votre "
4441
+ #~ "compte SendGrid."
4442
+
4443
+ #~ msgid "SG Autorepondeur"
4444
+ #~ msgstr "SG Autorepondeur"
4445
+
4446
+ #~ msgid "Required fields are missing"
4447
+ #~ msgstr "Les champs obligatoires sont manquants"
4448
+
4449
+ #~ msgid "The email is already in the list"
4450
+ #~ msgstr "L'e-mail est déjà dans la liste"
4451
+
4452
+ #~ msgid "Registration was refused-blacklisted"
4453
+ #~ msgstr "L'enregistrement a été refusé, blacklisté"
4454
+
4455
+ #~ msgid "The country has been blocked"
4456
+ #~ msgstr "Le pays a été bloqué"
4457
+
4458
+ #~ msgid "Too many entries with the same IP address"
4459
+ #~ msgstr "Trop d'entrées avec la même adresse IP"
4460
+
4461
+ #~ msgid "Ok Register following a behavioral segmentation"
4462
+ #~ msgstr "Ok Inscription suite à une segmentation comportementale"
4463
+
4464
+ #~ msgid "The email is not the right format"
4465
+ #~ msgstr "L'email n'est pas au bon format"
4466
+
4467
+ #~ msgid ""
4468
+ #~ "Error on one of the variables - User ID or List ID or Activation Code"
4469
+ #~ msgstr ""
4470
+ #~ "Erreur sur l'une des variables - Id de l'utilisateur ou ID de liste ou "
4471
+ #~ "code d'activation"
4472
+
4473
+ #~ msgid "SG Autorepondeur not supported"
4474
+ #~ msgstr "SG Autorépondeur n'est pas pris en charge"
4475
+
4476
+ #~ msgid "SG Autorepondeur is not supported on your server"
4477
+ #~ msgstr "SG Autorépondeur n'est pas pris en charge sur votre serveur"
4478
+
4479
+ #~ msgid "SG Autorepondeur User ID"
4480
+ #~ msgstr "ID de l'utilisateur SG Autorépondeur"
4481
+
4482
+ #~ msgid "This info available on your home page in SG Autorepondeur"
4483
+ #~ msgstr ""
4484
+ #~ "Cette information est disponible sur votre page d'accueil dans SG "
4485
+ #~ "Autorépondeur"
4486
+
4487
+ #~ msgid "SG Autorepondeur List ID"
4488
+ #~ msgstr "ID de la liste SG Autorepondeur"
4489
+
4490
+ #~ msgid "SG Client Activation Code"
4491
+ #~ msgstr "Code d'activation client SG"
4492
+
4493
+ #~ msgid ""
4494
+ #~ "This info available on the member's area in the top menu \"my account"
4495
+ #~ "\" (at the bottom of the page)"
4496
+ #~ msgstr ""
4497
+ #~ "Cette information est disponible dans la zone des membres dans le menu "
4498
+ #~ "supérieur \"my account\" (en bas de la page)"
4499
+
4500
+ #~ msgid "Something goes wrong"
4501
+ #~ msgstr "Quelque chose ne va pas"
4502
+
4503
+ #~ msgid "New User notification"
4504
+ #~ msgstr "Nouvelle notification de l'utilisateur"
4505
+
4506
+ #~ msgid "New Subscriber notification"
4507
+ #~ msgstr "Nouvelle notification d'abonné"
4508
+
4509
+ #~ msgid "New Subscriber on %s"
4510
+ #~ msgstr "Nouvel abonné sur %s"
4511
+
4512
+ #~ msgid ""
4513
+ #~ "You have new user registration on your site <a href="
4514
+ #~ "\"[siteurl]\">[sitename]</a>, here us user information:<br /"
4515
+ #~ ">[subscriber_data]"
4516
+ #~ msgstr ""
4517
+ #~ "Vous avez l'enregistrement d'un nouvel utilisateur sur votre site <a href="
4518
+ #~ "\"siteurl]> [sitename] </a>, ici données de l'utilisateur : <br /> "
4519
+ #~ "[subscriber_data]"
4520
+
4521
+ #~ msgid ""
4522
+ #~ "You have new subscriber on your site <a href=\"[siteurl]\">[sitename]</"
4523
+ #~ "a>, here is subscriber information:<br />[subscriber_data]"
4524
+ #~ msgstr ""
4525
+ #~ "Vous avez un nouvel abonné sur votre site <a href=\"[siteurl]\"> "
4526
+ #~ "[sitename] </a>, voici des informations de l'abonné :<br /> "
4527
+ #~ "[subscriber_data] "
4528
+
4529
+ #~ msgid "Can't detect your IP, please don't spam"
4530
+ #~ msgstr "Impossible de détecter votre IP, SVP évitez de nous spammer"
4531
+
4532
+ #~ msgid "You just subscribed from this IP"
4533
+ #~ msgstr "Vous venez de vous abonner à partir de cette IP"
4534
+
4535
+ #~ msgid "Empty or invalid email"
4536
+ #~ msgstr "Courriel invalide ou vide"
4537
+
4538
+ #~ msgid "Enable Subscription"
4539
+ #~ msgstr "Activer l'abonnement"
4540
+
4541
+ #~ msgid "Subscribe to"
4542
+ #~ msgstr "S'abonner à"
4543
+
4544
+ #~ msgid "Destination for your Subscribers."
4545
+ #~ msgstr "Destination pour vos abonnés."
4546
+
4547
+ #~ msgid "Activate License or update PRO version plugin"
4548
+ #~ msgstr "Activer la licence ou mettre à jour la version PRO du plugin"
4549
+
4550
+ #~ msgid ""
4551
+ #~ "Apparently - you have installed PRO version, but did not activate it "
4552
+ #~ "license - then please activate it. Or you have old version of plugin - "
4553
+ #~ "then you need go to Plugins page and Update PRO version plugin, after "
4554
+ #~ "this go to License tab and re-activate license (just click one more time "
4555
+ #~ "on \"Activate\" button)."
4556
+ #~ msgstr ""
4557
+ #~ "Apparemment, - vous avez installé la version PRO, mais elle n'est pas "
4558
+ #~ "activée - alors SVP activez-la. Ou vous avez une ancienne version du "
4559
+ #~ "plugin - alors vous devez aller à la page Plugins et mise à jour du "
4560
+ #~ "plugin version PRO, après cela, allez dans l'onglet Licence et re-activez-"
4561
+ #~ "la (il suffit de cliquer une fois sur le bouton \"Activate\")."
4562
+
4563
+ #~ msgid ""
4564
+ #~ "Once user will subscribe to selected Subscription service - it will "
4565
+ #~ "create WordPress Subscriber too. PLease be carefull using this option: "
4566
+ #~ "WordPressusers will be created right after you submit your Subscribe form "
4567
+ #~ "without confirmation."
4568
+ #~ msgstr ""
4569
+ #~ "Une fois que l'utilisateur sera abonné au service d'abonnement choisi - "
4570
+ #~ "il va créer WordPress Subscriber aussi. SVP soyez prudent en utilisant "
4571
+ #~ "cette option : WordPressusers seront créés juste après que vous ayez "
4572
+ #~ "soumis votre formulaire d'abonnement sans confirmation."
4573
+
4574
+ #~ msgid "\"Confirmation sent\" message"
4575
+ #~ msgstr "Message \"Confirmation envoyé\""
4576
+
4577
+ #~ msgid ""
4578
+ #~ "This is the message that the user will see after subscription, when "
4579
+ #~ "letter with confirmation link was sent."
4580
+ #~ msgstr ""
4581
+ #~ "Tel est le message que l'utilisateur verra après l'abonnement, lorsque le "
4582
+ #~ "message avec lien de confirmation aura été envoyé."
4583
+
4584
+ #~ msgid "Confirmation link was sent to your email address. Check your email!"
4585
+ #~ msgstr ""
4586
+ #~ "Le lien de confirmation a été envoyé à votre adresse e-mail. Vérifiez "
4587
+ #~ "votre messagerie !"
4588
+
4589
+ #~ msgid "Subscribe success message"
4590
+ #~ msgstr "Message de réussite de votre abonnement"
4591
+
4592
+ #~ msgid ""
4593
+ #~ "Right after subscriber will be created and confirmed - this message will "
4594
+ #~ "be shown."
4595
+ #~ msgstr ""
4596
+ #~ "Juste après l'abonné sera créé et confirmé - ce message sera affiché."
4597
+
4598
+ #~ msgid "Thank you for subscribing!"
4599
+ #~ msgstr "Merci pour votre inscription !"
4600
+
4601
+ #~ msgid "Email error message"
4602
+ #~ msgstr "Message d'erreur Email"
4603
+
4604
+ #~ msgid ""
4605
+ #~ "If email that was entered by user is invalid, user will see this message"
4606
+ #~ msgstr ""
4607
+ #~ "Si l'email qui a été saisi par l'utilisateur est invalide, l'utilisateur "
4608
+ #~ "verra ce message"
4609
+
4610
+ #~ msgid "Email exists error message"
4611
+ #~ msgstr "L'email existe message d'erreur"
4612
+
4613
+ #~ msgid ""
4614
+ #~ "If email that was entered by user already exists - user will see this "
4615
+ #~ "message. But be careful: this can be used by hackers - to detect existing "
4616
+ #~ "email in your database, so it's better for you to leave this message same "
4617
+ #~ "as error message about invalid email above."
4618
+ #~ msgstr ""
4619
+ #~ "Si l'email qui a été saisi par l'utilisateur existe déjà - l'utilisateur "
4620
+ #~ "verra ce message. Mais attention : cela peut être utilisé par des pirates "
4621
+ #~ "- pour détecter si l'email existe dans votre base de données, il est donc "
4622
+ #~ "préférable pour vous de laisser ce message même s'il y a message d'erreur "
4623
+ #~ "à propos d'email invalide ci-dessus."
4624
+
4625
+ #~ msgid "Redirect after subscription URL"
4626
+ #~ msgstr "Redirirection après URL d'abonnement"
4627
+
4628
+ #~ msgid ""
4629
+ #~ "You can enable redirection after subscription, just enter here URL that "
4630
+ #~ "you want to redirect to after subscribe - and user will be redirected "
4631
+ #~ "there. If you don't need this feature - just leave this field empty."
4632
+ #~ msgstr ""
4633
+ #~ "Vous pouvez activer la redirection après la souscription, il suffit "
4634
+ #~ "d'entrer ici l'URL vers lequel vous souhaitez rediriger après "
4635
+ #~ "l'inscription - et l'utilisateur y sera redirigé. Si vous n'avez pas "
4636
+ #~ "besoin de cette fonction - il suffit de laisser ce champ vide."
4637
+
4638
+ #~ msgid "Confirmation email subject"
4639
+ #~ msgstr "Confirmation objet de l'email"
4640
+
4641
+ #~ msgid "Email with confirmation link subject"
4642
+ #~ msgstr "Email avec le sujet de lien de confirmation"
4643
+
4644
+ #~ msgid "Confirm subscription on [sitename]"
4645
+ #~ msgstr "Confirmez l'abonnement sur [sitename]"
4646
+
4647
+ #~ msgid "Confirmation email From field"
4648
+ #~ msgstr "Email de confirmation depuis champ"
4649
+
4650
+ #~ msgid "Email with confirmation link From field"
4651
+ #~ msgstr "Email avec le lien de confirmation depuis champ"
4652
+
4653
+ #~ msgid "Confirmation email text"
4654
+ #~ msgstr "Texte de l'email de confirmation"
4655
+
4656
+ #~ msgid "Email with confirmation link content"
4657
+ #~ msgstr "Email avec le contenu du lien de confirmation"
4658
+
4659
+ #~ msgid ""
4660
+ #~ "You can use next variables here: %s, and any other subscribe field value "
4661
+ #~ "- just place here [user_FIELD_NAME], where FIELD_NAME - is name attribute "
4662
+ #~ "of required field."
4663
+ #~ msgstr ""
4664
+ #~ "Vous pouvez employer de prochaines variables ici : %s et tout autre "
4665
+ #~ "valeur de champ de l'inscription- placez juste ici [user_FIELD_NAME], où "
4666
+ #~ "FIELD_NAME - est le nom du champ exigé."
4667
+
4668
+ #~ msgid ""
4669
+ #~ "You subscribed on site <a href=\"[siteurl]\">[sitename]</a>. Follow <a "
4670
+ #~ "href=\"[confirm_link]\">this link</a> to complete your subscription. If "
4671
+ #~ "you did not subscribe here - just ignore this message."
4672
+ #~ msgstr ""
4673
+ #~ "Vous êtes abonné sur le site <a href=\"[siteurrl]\">[sitename]</a>. "
4674
+ #~ "Suivez <a href=\"[confirm link]\">ce lien </a> pour compléter votre "
4675
+ #~ "abonnement. Si vous ne vous pas souscrivez ici - ignorer simplement ce "
4676
+ #~ "message."
4677
+
4678
+ #~ msgid "Add Attach"
4679
+ #~ msgstr "Add Attach"
4680
+
4681
+ #~ msgid "New Subscriber email subject"
4682
+ #~ msgstr "Email au sujet du nouvel abonné"
4683
+
4684
+ #~ msgid "Email to New Subscriber subject"
4685
+ #~ msgstr "Envoyer un courriel au sujet du nouvel abonné"
4686
+
4687
+ #~ msgid "[sitename] Your username and password"
4688
+ #~ msgstr "[sitename] Votre nom d’utilisateur et mot de passe"
4689
+
4690
+ #~ msgid "New Subscriber email From field"
4691
+ #~ msgstr "Courriel nouvel abonné depuis champ"
4692
+
4693
+ #~ msgid "New Subscriber email text"
4694
+ #~ msgstr "Texte du courriel nouvel abonné"
4695
+
4696
+ #~ msgid "Email to New Subscriber content"
4697
+ #~ msgstr "Envoyer un courriel au nouvel abonné"
4698
+
4699
+ #~ msgid "Username: [user_login]<br />Password: [password]<br />[login_url]"
4700
+ #~ msgstr ""
4701
+ #~ "Nom d’utilisateur : [user_login]<br />Mot de passe : [password]<br /"
4702
+ #~ ">[login_url]"
4703
+
4704
+ #~ msgid "Redirect if email already exists"
4705
+ #~ msgstr "Redirection si le courriel existe déjà"
4706
+
4707
+ #~ msgid ""
4708
+ #~ "Link to redirect to if user subscribes - but this email already exists"
4709
+ #~ msgstr ""
4710
+ #~ "Lien de redirection si l’utilisateur s’abonne - mais ce email existe déjà"
4711
+
4712
+ #~ msgid "Vertical Response"
4713
+ #~ msgstr "Vertical Response"
4714
+
4715
+ #~ msgid "Can not access to Vertical Responce server"
4716
+ #~ msgstr "Impossible d'accéder au serveur de Vertical Response"
4717
+
4718
+ #~ msgid "Empty code returned"
4719
+ #~ msgstr "Code vide retourné"
4720
+
4721
+ #~ msgid "Vertical Response Setup"
4722
+ #~ msgstr "Installation de Vertical Response"
4723
+
4724
+ #~ msgid "You must authorize to use Vertical Response features"
4725
+ #~ msgstr ""
4726
+ #~ "Vous devez autoriser l'utilisation des fonctionnalités de Vertical "
4727
+ #~ "Response"
4728
+
4729
+ #~ msgid "Authorize in Vertical Response"
4730
+ #~ msgstr "Autoriser dans Vertical Response"
4731
+
4732
+ #~ msgid ""
4733
+ #~ "Select lists for subscribe. They are taken from your Vertical Response "
4734
+ #~ "account."
4735
+ #~ msgstr ""
4736
+ #~ "Listes de sélection pour s’abonner. Ils sont tirés de votre compte "
4737
+ #~ "Vertical Response"
4738
+
4739
+ #~ msgid "Registered from %s"
4740
+ #~ msgstr "Enregistré depuis %s"
4741
+
4742
+ #~ msgid "Subscribed to %s"
4743
+ #~ msgstr "Abonné à %s"
4744
+
4745
+ #~ msgid "Activated"
4746
+ #~ msgstr "Activé"
4747
+
4748
+ #~ msgid "There are no members for now"
4749
+ #~ msgstr "Il n’y a pas de membres pour l’instant"
4750
+
4751
+ #~ msgid "There are no subscribers for now"
4752
+ #~ msgstr "Il n’y a pas d’abonnés pour l’instant"
4753
+
4754
+ #~ msgid "Can't registrate for now. Please try again later."
4755
+ #~ msgstr ""
4756
+ #~ "Impossible de s’inscrire pour l’instant. Veuillez réessayer "
4757
+ #~ "ultérieurement."
4758
+
4759
+ #~ msgid "Can't subscribe for now. Please try again later."
4760
+ #~ msgstr ""
4761
+ #~ "Impossible de s’abonner pour l’instant. Veuillez réessayer ultérieurement."
4762
+
4763
+ #~ msgid "Some errors occured while trying to registrate"
4764
+ #~ msgstr "Quelques erreurs se sont produites pendant l'inscription"
4765
+
4766
+ #~ msgid "Some errors occured while trying to subscribe"
4767
+ #~ msgstr "Quelques erreurs se sont produites pendant l'abonnement"
4768
+
4769
+ #~ msgid "Thank you for registration!"
4770
+ #~ msgstr "Merci pour l'enregistrement."
4771
+
4772
+ #~ msgid "Subscription confirmed"
4773
+ #~ msgstr "Abonnement confirmé"
4774
+
4775
+ #~ msgid ""
4776
+ #~ "<a href=\"%s\">Back to site</a> in <i id=\"cfsConfirmBackCounter\">%d</i> "
4777
+ #~ "seconds"
4778
+ #~ msgstr ""
4779
+ #~ "<a href=\"%s\">Retour au site</a> dans <i id=\"cfsConfirmBackCounter\">"
4780
+ #~ "%d</i> secondes"
4781
+
4782
+ #~ msgid ""
4783
+ #~ "Use this only if you really need it. Remember! After you change this "
4784
+ #~ "option - your new subscriber will have more privileges than usual "
4785
+ #~ "subscribers, so be careful with this option!"
4786
+ #~ msgstr ""
4787
+ #~ "Utilisez-le seulement si vous avez vraiment besoin. N’oubliez pas ! Après "
4788
+ #~ "que vous modifiez cette option - votre nouvel abonné aura plus de "
4789
+ #~ "privilèges que les abonnés habituels, alors soyez prudent avec cette "
4790
+ #~ "option !"
4791
+
4792
+ #~ msgid "Create Subscriber without confirmation"
4793
+ #~ msgstr "Créer abonné sans confirmation"
4794
+
4795
+ #~ msgid ""
4796
+ #~ "Usually, after user subscribes, we send an email with the confirmation "
4797
+ #~ "link - to confirm the email address, and only after user clicks on the "
4798
+ #~ "link from this email - we will create a new subscriber. This option "
4799
+ #~ "allows you to create a subscriber - right after subscription, without the "
4800
+ #~ "email confirmation process."
4801
+ #~ msgstr ""
4802
+ #~ "Habituellement, après l'abonnement, nous envoyons un email avec le lien "
4803
+ #~ "de confirmation - pour confirmer l'adresse e-mail, et seulement après "
4804
+ #~ "l'utilisateur clique sur le lien de cet e-mail - nous allons créer un "
4805
+ #~ "nouvel abonné. Cette option vous permet de créer un abonné - juste "
4806
+ #~ "après , inscription sans le processus de confirmation par courriel."
4807
+
4808
+ #~ msgid "Export Subscribers"
4809
+ #~ msgstr "Exporter tous les abonnés"
4810
+
4811
+ #~ msgid ""
4812
+ #~ "Export all subscribers, who subscribed using WordPress \"Subscribe to\" "
4813
+ #~ "method, as CSV file."
4814
+ #~ msgstr ""
4815
+ #~ "Exporter tous les abonnés, qui se sont inscrits en utilisant la méthode "
4816
+ #~ "\"Abonnez-vous à\" de WordPress, sous forme de fichier CSV."
4817
+
4818
+ #~ msgid "Get CSV List"
4819
+ #~ msgstr "Obtenir la liste CSV"
4820
+
4821
+ #~ msgid "Turn Off"
4822
+ #~ msgstr "Désactiver"
4823
+
4824
+ #~ msgid "Turn On"
4825
+ #~ msgstr "Activer"
4826
+
4827
+ #~ msgid "Your site key, generated on <a href=\"%s\" target=\"_blank\">%s</a>."
4828
+ #~ msgstr ""
4829
+ #~ "Votre clé de site, générée sur <a href=\"%s\" target=\"_blank\">%s</a> ."
4830
+
4831
+ #~ msgid ""
4832
+ #~ "Your secret key, generated on <a href=\"%s\" target=\"_blank\">%s</a>."
4833
+ #~ msgstr ""
4834
+ #~ "Votre clé secrète, générée sur <a href=\"%s\" target=\"_blank\">%s</a> ."
4835
+
4836
+ #~ msgid "Undefined"
4837
+ #~ msgstr "Indéfini"
lang/cfs_lng.mo → languages/contact-form-by-supsystic.mo RENAMED
Binary file
languages/contact-form-by-supsystic.po ADDED
@@ -0,0 +1,3054 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Contact Form by Supsystic\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-06-11 15:45+0300\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: supsystic.com <supsystic.team@gmail.com>\n"
8
+ "Language-Team: supsystic.com <supsystic.team@gmail.com>\n"
9
+ "Language: en_US\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.1\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: ..\n"
19
+
20
+ #: ../classes/controller.php:207 ../classes/controller.php:215
21
+ #: ../modules/forms/controller.php:9 ../modules/forms/controller.php:111
22
+ #: ../modules/forms/controller.php:119 ../modules/forms/controller.php:217
23
+ #: ../modules/forms/controller.php:329 ../modules/forms/controller.php:337
24
+ #: ../modules/mail/controller.php:23 ../modules/options/controller.php:6
25
+ #: ../modules/pages/views/tpl/deactivatePage.php:37
26
+ #: ../modules/statistics/controller.php:20
27
+ #: ../modules/statistics/controller.php:29
28
+ msgid "Done"
29
+ msgstr ""
30
+
31
+ #: ../classes/field.php:131
32
+ msgid "Select"
33
+ msgstr ""
34
+
35
+ #: ../classes/field.php:170 ../classes/field.php:179 ../classes/field.php:184
36
+ msgid "N/A"
37
+ msgstr ""
38
+
39
+ #: ../classes/field.php:277
40
+ msgid "Add Checkbox"
41
+ msgstr ""
42
+
43
+ #: ../classes/field.php:282 ../classes/field.php:287
44
+ msgid "Add Item"
45
+ msgstr ""
46
+
47
+ #: ../classes/field.php:293
48
+ msgid "Add Radio Button"
49
+ msgstr ""
50
+
51
+ #: ../classes/field.php:311
52
+ msgid "Dimensions"
53
+ msgstr ""
54
+
55
+ #: ../classes/field.php:314
56
+ msgid "width"
57
+ msgstr ""
58
+
59
+ #: ../classes/field.php:316
60
+ msgid "height"
61
+ msgstr ""
62
+
63
+ #: ../classes/field.php:323
64
+ msgid "Click to set field \"id\" and \"class\""
65
+ msgstr ""
66
+
67
+ #: ../classes/field.php:324
68
+ msgid "Attributes"
69
+ msgstr ""
70
+
71
+ #: ../classes/field.php:402
72
+ msgid "There are no configuration options for this module"
73
+ msgstr ""
74
+
75
+ #: ../classes/fieldAdapter.php:93
76
+ msgid "Apply To"
77
+ msgstr ""
78
+
79
+ #: ../classes/fieldAdapter.php:95
80
+ msgid "Address"
81
+ msgstr ""
82
+
83
+ #: ../classes/fieldAdapter.php:96
84
+ msgid "Destination"
85
+ msgstr ""
86
+
87
+ #: ../classes/fieldAdapter.php:97
88
+ msgid "Country"
89
+ msgstr ""
90
+
91
+ #: ../classes/fieldAdapter.php:100
92
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:295
93
+ msgid "Categories"
94
+ msgstr ""
95
+
96
+ #: ../classes/fieldAdapter.php:101
97
+ msgid "You have no categories"
98
+ msgstr ""
99
+
100
+ #: ../classes/fieldAdapter.php:102
101
+ msgid "Brands"
102
+ msgstr ""
103
+
104
+ #: ../classes/fieldAdapter.php:103
105
+ msgid "You have no brands"
106
+ msgstr ""
107
+
108
+ #: ../classes/fieldAdapter.php:105
109
+ msgid "Tax Rate"
110
+ msgstr ""
111
+
112
+ #: ../classes/fieldAdapter.php:106
113
+ msgid "Absolute"
114
+ msgstr ""
115
+
116
+ #: ../classes/fieldAdapter.php:132
117
+ msgid "Not selected"
118
+ msgstr ""
119
+
120
+ #: ../classes/fieldAdapter.php:183
121
+ msgid "class"
122
+ msgstr ""
123
+
124
+ #: ../classes/fieldAdapter.php:185 ../classes/tables/usage_stat.php:7
125
+ msgid "id"
126
+ msgstr ""
127
+
128
+ #: ../classes/fileuploader.php:29
129
+ msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
130
+ msgstr ""
131
+
132
+ #: ../classes/fileuploader.php:32
133
+ msgid ""
134
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
135
+ "the HTML form"
136
+ msgstr ""
137
+
138
+ #: ../classes/fileuploader.php:35
139
+ msgid "The uploaded file was only partially uploaded"
140
+ msgstr ""
141
+
142
+ #: ../classes/fileuploader.php:38
143
+ msgid "No file was uploaded."
144
+ msgstr ""
145
+
146
+ #: ../classes/fileuploader.php:41
147
+ msgid "Missing a temporary folder"
148
+ msgstr ""
149
+
150
+ #: ../classes/fileuploader.php:44
151
+ msgid "Failed to write file to disk"
152
+ msgstr ""
153
+
154
+ #: ../classes/fileuploader.php:47
155
+ msgid "File upload stopped by extension"
156
+ msgstr ""
157
+
158
+ #: ../classes/fileuploader.php:51
159
+ msgid "No error code avaiable"
160
+ msgstr ""
161
+
162
+ #: ../classes/fileuploader.php:54
163
+ msgid "No file was uploaded.."
164
+ msgstr ""
165
+
166
+ #: ../classes/frame.php:149
167
+ msgid "You have no permissions to view this page"
168
+ msgstr ""
169
+
170
+ #: ../classes/html.php:302
171
+ msgid "Upload"
172
+ msgstr ""
173
+
174
+ #: ../classes/html.php:715
175
+ msgid "ON"
176
+ msgstr ""
177
+
178
+ #: ../classes/html.php:716
179
+ msgid "OFF"
180
+ msgstr ""
181
+
182
+ #: ../classes/html.php:740
183
+ #, php-format
184
+ msgid "Select %s"
185
+ msgstr ""
186
+
187
+ #: ../classes/modInstaller.php:34
188
+ #, php-format
189
+ msgid "Move files for %s failed"
190
+ msgstr ""
191
+
192
+ #: ../classes/modInstaller.php:37
193
+ #, php-format
194
+ msgid "%s is not plugin module"
195
+ msgstr ""
196
+
197
+ #: ../classes/modInstaller.php:76
198
+ msgid "Cannot create module directory. Try to set permission to "
199
+ msgstr ""
200
+
201
+ #: ../classes/modInstaller.php:104
202
+ msgid "No modules were found in XML file"
203
+ msgstr ""
204
+
205
+ #: ../classes/modInstaller.php:108
206
+ msgid "Invalid XML file"
207
+ msgstr ""
208
+
209
+ #: ../classes/modInstaller.php:110
210
+ msgid "No XML file were found"
211
+ msgstr ""
212
+
213
+ #: ../classes/modInstaller.php:123
214
+ msgid "No modules were found in installation file"
215
+ msgstr ""
216
+
217
+ #: ../classes/modInstaller.php:127
218
+ msgid "No installation file were found"
219
+ msgstr ""
220
+
221
+ #: ../classes/modInstaller.php:149
222
+ #, php-format
223
+ msgid "Install %s failed"
224
+ msgstr ""
225
+
226
+ #: ../classes/modInstaller.php:155
227
+ msgid "Error Activate module"
228
+ msgstr ""
229
+
230
+ #: ../classes/modInstaller.php:184
231
+ msgid "Error Deactivation module"
232
+ msgstr ""
233
+
234
+ #: ../classes/modInstaller.php:201
235
+ msgid "Error Activating module"
236
+ msgstr ""
237
+
238
+ #: ../classes/model.php:176 ../classes/model.php:188
239
+ #: ../modules/forms/models/forms.php:594 ../modules/forms/models/forms.php:606
240
+ msgid "Database error detected"
241
+ msgstr ""
242
+
243
+ #: ../classes/model.php:178 ../modules/forms/models/forms.php:596
244
+ #: ../modules/forms/models/forms.php:801 ../modules/forms/models/forms.php:817
245
+ #: ../modules/forms/models/forms.php:831
246
+ #: ../modules/statistics/models/statistics.php:112
247
+ #: ../modules/statistics/models/statistics.php:143
248
+ msgid "Invalid ID"
249
+ msgstr ""
250
+
251
+ #: ../classes/model.php:211
252
+ msgid "Empty or invalid ID"
253
+ msgstr ""
254
+
255
+ #: ../classes/table.php:277
256
+ msgid "Nothing to update"
257
+ msgstr ""
258
+
259
+ #: ../classes/table.php:293
260
+ msgid "Database error. Please contact your developer."
261
+ msgstr ""
262
+
263
+ #: ../classes/tables/modules.php:7 ../classes/tables/modules_type.php:8
264
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:134
265
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:244
266
+ msgid "Label"
267
+ msgstr ""
268
+
269
+ #: ../classes/tables/modules.php:8
270
+ msgid "Type"
271
+ msgstr ""
272
+
273
+ #: ../classes/tables/modules.php:9
274
+ msgid "Active"
275
+ msgstr ""
276
+
277
+ #: ../classes/tables/modules.php:10
278
+ msgid "Params"
279
+ msgstr ""
280
+
281
+ #: ../classes/tables/modules.php:13
282
+ msgid "Code"
283
+ msgstr ""
284
+
285
+ #: ../classes/tables/modules.php:14
286
+ msgid "External plugin directory"
287
+ msgstr ""
288
+
289
+ #: ../classes/tables/modules_type.php:7
290
+ msgid "ID"
291
+ msgstr ""
292
+
293
+ #: ../classes/tables/usage_stat.php:8
294
+ msgid "code"
295
+ msgstr ""
296
+
297
+ #: ../classes/tables/usage_stat.php:9
298
+ msgid "visits"
299
+ msgstr ""
300
+
301
+ #: ../classes/tables/usage_stat.php:10
302
+ msgid "spent_time"
303
+ msgstr ""
304
+
305
+ #: ../classes/tables/usage_stat.php:11
306
+ msgid "modify_timestamp"
307
+ msgstr ""
308
+
309
+ #: ../classes/validator.php:30
310
+ #, php-format
311
+ msgid "Invalid length for %s, max length is %s"
312
+ msgstr ""
313
+
314
+ #: ../classes/validator.php:43
315
+ #, php-format
316
+ msgid "Invalid numeric value for %s"
317
+ msgstr ""
318
+
319
+ #: ../classes/validator.php:71 ../modules/forms/models/forms.php:168
320
+ #: ../modules/supsystic_promo/controller.php:39
321
+ #, php-format
322
+ msgid "Please enter %s"
323
+ msgstr ""
324
+
325
+ #: ../classes/validator.php:78 ../modules/forms/models/forms.php:160
326
+ #: ../modules/supsystic_promo/controller.php:39
327
+ #, php-format
328
+ msgid "Please select %s"
329
+ msgstr ""
330
+
331
+ #: ../classes/validator.php:85 ../classes/validator.php:101
332
+ #, php-format
333
+ msgid "Invalid %s"
334
+ msgstr ""
335
+
336
+ #: ../classes/validator.php:88
337
+ #, php-format
338
+ msgid "%s is already registered"
339
+ msgstr ""
340
+
341
+ #: ../modules/adminmenu/mod.php:13
342
+ #, php-format
343
+ msgid ""
344
+ "Cool WordPress plugins from supsystic.com developers. I tried %s - and this "
345
+ "was what I need! #supsystic.com"
346
+ msgstr ""
347
+
348
+ #: ../modules/adminmenu/mod.php:14 ../modules/options/mod.php:48
349
+ msgid "Settings"
350
+ msgstr ""
351
+
352
+ #: ../modules/adminmenu/mod.php:15
353
+ msgid "More plugins for your WordPress site here!"
354
+ msgstr ""
355
+
356
+ #: ../modules/adminmenu/mod.php:16 ../modules/adminmenu/mod.php:17
357
+ #: ../modules/adminmenu/mod.php:18
358
+ msgid "Spread the word!"
359
+ msgstr ""
360
+
361
+ #: ../modules/forms/controller.php:40
362
+ #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:35
363
+ msgid "Download"
364
+ msgstr ""
365
+
366
+ #: ../modules/forms/controller.php:63 ../modules/forms/models/forms.php:353
367
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:41
368
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:87
369
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:92
370
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:94
371
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:95
372
+ msgid "Yes"
373
+ msgstr ""
374
+
375
+ #: ../modules/forms/controller.php:63 ../modules/forms/models/forms.php:351
376
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:40
377
+ #: ../modules/options/mod.php:140
378
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:87
379
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:92
380
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:94
381
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:95
382
+ msgid "No"
383
+ msgstr ""
384
+
385
+ #: ../modules/forms/controller.php:320
386
+ msgid "Done, redirecting to new Form..."
387
+ msgstr ""
388
+
389
+ #: ../modules/forms/controller.php:376
390
+ msgid "Thank you for contacting us!"
391
+ msgstr ""
392
+
393
+ #: ../modules/forms/controller.php:412
394
+ #, php-format
395
+ msgid "Contacts from %s"
396
+ msgstr ""
397
+
398
+ #: ../modules/forms/controller.php:425
399
+ msgid "IP"
400
+ msgstr ""
401
+
402
+ #: ../modules/forms/controller.php:426 ../modules/forms/mod.php:111
403
+ msgid "URL"
404
+ msgstr ""
405
+
406
+ #: ../modules/forms/controller.php:427
407
+ msgid "Form ID"
408
+ msgstr ""
409
+
410
+ #: ../modules/forms/controller.php:428
411
+ msgid "Date Created"
412
+ msgstr ""
413
+
414
+ #: ../modules/forms/controller.php:459
415
+ msgid "There are no Contacts for now"
416
+ msgstr ""
417
+
418
+ #: ../modules/forms/mod.php:30
419
+ msgid "Add New Form"
420
+ msgstr ""
421
+
422
+ #: ../modules/forms/mod.php:33
423
+ msgid "Edit"
424
+ msgstr ""
425
+
426
+ #: ../modules/forms/mod.php:36
427
+ msgid "Show All Forms"
428
+ msgstr ""
429
+
430
+ #: ../modules/forms/mod.php:39
431
+ msgid "Contacts"
432
+ msgstr ""
433
+
434
+ #: ../modules/forms/mod.php:79
435
+ msgid "Form"
436
+ msgstr ""
437
+
438
+ #: ../modules/forms/mod.php:86
439
+ msgid "Text"
440
+ msgstr ""
441
+
442
+ #: ../modules/forms/mod.php:87 ../modules/supsystic_promo/mod.php:243
443
+ msgid "Email"
444
+ msgstr ""
445
+
446
+ #: ../modules/forms/mod.php:88
447
+ msgid "Select Box"
448
+ msgstr ""
449
+
450
+ #: ../modules/forms/mod.php:89
451
+ msgid "Select List"
452
+ msgstr ""
453
+
454
+ #: ../modules/forms/mod.php:90
455
+ msgid "Textarea"
456
+ msgstr ""
457
+
458
+ #: ../modules/forms/mod.php:91
459
+ msgid "WordPress Editor"
460
+ msgstr ""
461
+
462
+ #: ../modules/forms/mod.php:92
463
+ msgid "WordPress Categories"
464
+ msgstr ""
465
+
466
+ #: ../modules/forms/mod.php:93
467
+ msgid "Woo Product Attribute"
468
+ msgstr ""
469
+
470
+ #: ../modules/forms/mod.php:94
471
+ msgid "Radiobutton"
472
+ msgstr ""
473
+
474
+ #: ../modules/forms/mod.php:95
475
+ msgid "Radiobuttons List"
476
+ msgstr ""
477
+
478
+ #: ../modules/forms/mod.php:96
479
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:314
480
+ msgid "Checkbox"
481
+ msgstr ""
482
+
483
+ #: ../modules/forms/mod.php:97
484
+ msgid "Checkbox List"
485
+ msgstr ""
486
+
487
+ #: ../modules/forms/mod.php:98
488
+ msgid "Subscribe Checkbox"
489
+ msgstr ""
490
+
491
+ #: ../modules/forms/mod.php:99
492
+ msgid "Country List"
493
+ msgstr ""
494
+
495
+ #: ../modules/forms/mod.php:100
496
+ msgid "Country List Multiple"
497
+ msgstr ""
498
+
499
+ #: ../modules/forms/mod.php:102
500
+ msgid "Number"
501
+ msgstr ""
502
+
503
+ #: ../modules/forms/mod.php:104 ../modules/statistics/controller.php:42
504
+ msgid "Date"
505
+ msgstr ""
506
+
507
+ #: ../modules/forms/mod.php:105
508
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:35
509
+ msgid "Month"
510
+ msgstr ""
511
+
512
+ #: ../modules/forms/mod.php:106
513
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:34
514
+ msgid "Week"
515
+ msgstr ""
516
+
517
+ #: ../modules/forms/mod.php:107
518
+ msgid "Time"
519
+ msgstr ""
520
+
521
+ #: ../modules/forms/mod.php:109 ../modules/forms/views/forms.php:102
522
+ msgid "Color"
523
+ msgstr ""
524
+
525
+ #: ../modules/forms/mod.php:110
526
+ msgid "Range"
527
+ msgstr ""
528
+
529
+ #: ../modules/forms/mod.php:113
530
+ msgid "File Upload"
531
+ msgstr ""
532
+
533
+ #: ../modules/forms/mod.php:114
534
+ msgid "Rating"
535
+ msgstr ""
536
+
537
+ #: ../modules/forms/mod.php:115
538
+ msgid "reCaptcha"
539
+ msgstr ""
540
+
541
+ #: ../modules/forms/mod.php:117
542
+ msgid "Hidden Field"
543
+ msgstr ""
544
+
545
+ #: ../modules/forms/mod.php:118
546
+ msgid "Submit Button"
547
+ msgstr ""
548
+
549
+ #: ../modules/forms/mod.php:119
550
+ msgid "Reset Button"
551
+ msgstr ""
552
+
553
+ #: ../modules/forms/mod.php:121
554
+ msgid "HTML / Text Delimiter"
555
+ msgstr ""
556
+
557
+ #: ../modules/forms/mod.php:123
558
+ msgid "Google Map"
559
+ msgstr ""
560
+
561
+ #: ../modules/forms/mod.php:124
562
+ msgid "Address Search"
563
+ msgstr ""
564
+
565
+ #: ../modules/forms/models/forms.php:66
566
+ msgid "Can't find form"
567
+ msgstr ""
568
+
569
+ #: ../modules/forms/models/forms.php:68
570
+ msgid "Empty Form ID"
571
+ msgstr ""
572
+
573
+ #: ../modules/forms/models/forms.php:112
574
+ msgid "reCaptcha: The secret parameter is missing."
575
+ msgstr ""
576
+
577
+ #: ../modules/forms/models/forms.php:113
578
+ msgid "reCaptcha: The secret parameter is invalid or malformed."
579
+ msgstr ""
580
+
581
+ #: ../modules/forms/models/forms.php:114
582
+ msgid "Please prove that you are not a robot - check reCaptcha."
583
+ msgstr ""
584
+
585
+ #: ../modules/forms/models/forms.php:115
586
+ msgid "reCaptcha: The response parameter is invalid or malformed."
587
+ msgstr ""
588
+
589
+ #: ../modules/forms/models/forms.php:126
590
+ msgid ""
591
+ "There was a problem with sending request to Google reCaptcha validation "
592
+ "server. Please make sure that your server have possibility to send server-"
593
+ "server requests. Ask your hosting provider about this."
594
+ msgstr ""
595
+
596
+ #: ../modules/forms/models/forms.php:164
597
+ #, php-format
598
+ msgid "Please check %s"
599
+ msgstr ""
600
+
601
+ #: ../modules/forms/models/forms.php:179
602
+ #, php-format
603
+ msgid "Minimum value for %s is %d"
604
+ msgstr ""
605
+
606
+ #: ../modules/forms/models/forms.php:192
607
+ #, php-format
608
+ msgid "Maximum value for %s is %d"
609
+ msgstr ""
610
+
611
+ #: ../modules/forms/models/forms.php:197
612
+ #, php-format
613
+ msgid "Invalid value for %s"
614
+ msgstr ""
615
+
616
+ #: ../modules/forms/models/forms.php:210
617
+ #, php-format
618
+ msgid "%s does not match %s"
619
+ msgstr ""
620
+
621
+ #: ../modules/forms/models/forms.php:547
622
+ msgid "img/preview/"
623
+ msgstr ""
624
+
625
+ #: ../modules/forms/models/forms.php:577
626
+ msgid "Please select Form template from list below"
627
+ msgstr ""
628
+
629
+ #: ../modules/forms/models/forms.php:579 ../modules/forms/models/forms.php:803
630
+ msgid "Please enter Name"
631
+ msgstr ""
632
+
633
+ #: ../modules/forms/models/forms.php:690
634
+ msgid "Provided data was corrupted"
635
+ msgstr ""
636
+
637
+ #: ../modules/forms/models/forms.php:829
638
+ msgid "Name can not be empty"
639
+ msgstr ""
640
+
641
+ #: ../modules/forms/models/forms.php:844 ../modules/forms/models/forms.php:850
642
+ #: ../modules/forms/models/forms.php:856 ../modules/forms/models/forms.php:860
643
+ #: ../modules/forms/models/forms.php:866 ../modules/forms/models/forms.php:872
644
+ #: ../modules/forms/models/forms.php:878 ../modules/forms/models/forms.php:887
645
+ #: ../modules/forms/models/forms.php:890 ../modules/forms/models/forms.php:900
646
+ msgid "Form background"
647
+ msgstr ""
648
+
649
+ #: ../modules/forms/models/forms.php:845 ../modules/forms/models/forms.php:857
650
+ #: ../modules/forms/models/forms.php:861 ../modules/forms/models/forms.php:873
651
+ msgid "Inputs and Buttons background"
652
+ msgstr ""
653
+
654
+ #: ../modules/forms/models/forms.php:846 ../modules/forms/models/forms.php:852
655
+ #: ../modules/forms/models/forms.php:862 ../modules/forms/models/forms.php:868
656
+ #: ../modules/forms/models/forms.php:874 ../modules/forms/models/forms.php:880
657
+ #: ../modules/forms/models/forms.php:886
658
+ msgid "Submit buttons style"
659
+ msgstr ""
660
+
661
+ #: ../modules/forms/models/forms.php:847 ../modules/forms/models/forms.php:853
662
+ #: ../modules/forms/models/forms.php:863 ../modules/forms/models/forms.php:869
663
+ #: ../modules/forms/models/forms.php:875 ../modules/forms/models/forms.php:881
664
+ msgid "Reset buttons style"
665
+ msgstr ""
666
+
667
+ #: ../modules/forms/models/forms.php:851
668
+ msgid "Inputs and Buttons shadow"
669
+ msgstr ""
670
+
671
+ #: ../modules/forms/models/forms.php:867
672
+ msgid "Form background blackout"
673
+ msgstr ""
674
+
675
+ #: ../modules/forms/models/forms.php:879 ../modules/forms/models/forms.php:884
676
+ #: ../modules/forms/models/forms.php:891 ../modules/forms/models/forms.php:901
677
+ msgid "Inputs background"
678
+ msgstr ""
679
+
680
+ #: ../modules/forms/models/forms.php:885
681
+ msgid "Text color"
682
+ msgstr ""
683
+
684
+ #: ../modules/forms/models/forms.php:892 ../modules/forms/models/forms.php:902
685
+ msgid "Submit button background"
686
+ msgstr ""
687
+
688
+ #: ../modules/forms/models/forms.php:893 ../modules/forms/models/forms.php:903
689
+ msgid "Reset button background"
690
+ msgstr ""
691
+
692
+ #: ../modules/forms/models/forms.php:894
693
+ msgid "Top image background"
694
+ msgstr ""
695
+
696
+ #: ../modules/forms/models/forms.php:895
697
+ msgid "Top overlap background"
698
+ msgstr ""
699
+
700
+ #: ../modules/forms/models/forms.php:896 ../modules/forms/models/forms.php:904
701
+ msgid "Image 1"
702
+ msgstr ""
703
+
704
+ #: ../modules/forms/models/forms.php:897 ../modules/forms/models/forms.php:905
705
+ msgid "Image 2"
706
+ msgstr ""
707
+
708
+ #: ../modules/forms/views/forms.php:42
709
+ msgid "Modify Form Template"
710
+ msgstr ""
711
+
712
+ #: ../modules/forms/views/forms.php:51
713
+ msgid "Cannot find required Form"
714
+ msgstr ""
715
+
716
+ #: ../modules/forms/views/forms.php:100
717
+ msgid "None"
718
+ msgstr ""
719
+
720
+ #: ../modules/forms/views/forms.php:101
721
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:446
722
+ msgid "Image"
723
+ msgstr ""
724
+
725
+ #: ../modules/forms/views/forms.php:122
726
+ msgid "Design"
727
+ msgstr ""
728
+
729
+ #: ../modules/forms/views/forms.php:127
730
+ msgid "Fields"
731
+ msgstr ""
732
+
733
+ #: ../modules/forms/views/forms.php:132
734
+ msgid "Submit Options"
735
+ msgstr ""
736
+
737
+ #: ../modules/forms/views/forms.php:137
738
+ msgid "Statistics"
739
+ msgstr ""
740
+
741
+ #: ../modules/forms/views/forms.php:143
742
+ msgid "CSS / HTML Code"
743
+ msgstr ""
744
+
745
+ #: ../modules/forms/views/forms.php:209
746
+ msgid "Publish Content"
747
+ msgstr ""
748
+
749
+ #: ../modules/forms/views/forms.php:216
750
+ msgid "Registration"
751
+ msgstr ""
752
+
753
+ #: ../modules/forms/views/forms.php:508
754
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:566
755
+ #, php-format
756
+ msgid ""
757
+ "To use this field type you need to have installed and activated <a href=\"%s"
758
+ "\" target=\"_blank\">Google Maps Easy</a> plugin - it's Free! Just install "
759
+ "it <a class=\"button\" target=\"_blank\" href=\"%s\">here.</a>"
760
+ msgstr ""
761
+
762
+ #: ../modules/forms/views/forms.php:749
763
+ msgid "All"
764
+ msgstr ""
765
+
766
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:20
767
+ #, php-format
768
+ msgid ""
769
+ "Change Template to any other from the list below or <a class=\"button\" href="
770
+ "\"%s\">return to Form edit</a>"
771
+ msgstr ""
772
+
773
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:22
774
+ msgid "Choose Form Template. You can change it later."
775
+ msgstr ""
776
+
777
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:31
778
+ msgid "Form Name"
779
+ msgstr ""
780
+
781
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:36
782
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:54
783
+ #: ../modules/mail/views/tpl/mailAdmin.php:69
784
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:6
785
+ msgid "Save"
786
+ msgstr ""
787
+
788
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:57
789
+ msgid "Get in PRO"
790
+ msgstr ""
791
+
792
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:68
793
+ msgid "Change Template"
794
+ msgstr ""
795
+
796
+ #: ../modules/forms/views/tpl/formsAddNewAdmin.php:70
797
+ msgid "Are you sure you want to change your current template - to "
798
+ msgstr ""
799
+
800
+ #: ../modules/forms/views/tpl/formsAdmin.php:5
801
+ #: ../modules/forms/views/tpl/formsAdmin.php:8
802
+ #: ../modules/forms/views/tpl/formsContacts.php:5
803
+ #: ../modules/forms/views/tpl/formsContacts.php:8
804
+ msgid "Delete selected"
805
+ msgstr ""
806
+
807
+ #: ../modules/forms/views/tpl/formsAdmin.php:11
808
+ #: ../modules/forms/views/tpl/formsAdmin.php:12
809
+ #: ../modules/forms/views/tpl/formsContacts.php:11
810
+ #: ../modules/forms/views/tpl/formsContacts.php:12
811
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:371
812
+ msgid "Search"
813
+ msgstr ""
814
+
815
+ #: ../modules/forms/views/tpl/formsAdmin.php:21
816
+ #, php-format
817
+ msgid ""
818
+ "You have no Forms for now. <a href=\"%s\" style=\"font-style: italic;"
819
+ "\">Create</a> your Form!"
820
+ msgstr ""
821
+
822
+ #: ../modules/forms/views/tpl/formsContacts.php:14
823
+ msgid "Forms to display contacts from"
824
+ msgstr ""
825
+
826
+ #: ../modules/forms/views/tpl/formsContacts.php:16
827
+ msgid "Create your first Form!"
828
+ msgstr ""
829
+
830
+ #: ../modules/forms/views/tpl/formsContacts.php:32
831
+ msgid ""
832
+ "You have no Contacts for now. When your visitors start submit your created "
833
+ "Contact Fomrs, and if you enabled \"Save contacts data\" for them - their "
834
+ "contacts will be displayed here."
835
+ msgstr ""
836
+
837
+ #: ../modules/forms/views/tpl/formsContacts.php:38
838
+ msgid "Contact Details"
839
+ msgstr ""
840
+
841
+ #: ../modules/forms/views/tpl/formsEditAdmin.php:99
842
+ msgid "Loading preview..."
843
+ msgstr ""
844
+
845
+ #: ../modules/forms/views/tpl/formsEditAdmin.php:104
846
+ msgid "Back to top"
847
+ msgstr ""
848
+
849
+ #: ../modules/forms/views/tpl/formsEditAdmin.php:115
850
+ msgid ""
851
+ "You have no submit fields in your Form - this make it's submission "
852
+ "impossible. Please add one submit field in Fields tab - and then save your "
853
+ "form."
854
+ msgstr ""
855
+
856
+ #: ../modules/forms/views/tpl/formsEditAdmin.php:118
857
+ msgid ""
858
+ "You have no data to submit to in your form - in this case all form data will "
859
+ "not be send anywhere. Go to Submit Options tab - and add there at least one "
860
+ "data submit block - and then save your form."
861
+ msgstr ""
862
+
863
+ #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:3
864
+ msgid "Edit this ONLY if you know basics of HTML and CSS"
865
+ msgstr ""
866
+
867
+ #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:6
868
+ msgid "Field Wrapper"
869
+ msgstr ""
870
+
871
+ #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:10
872
+ msgid "CSS code"
873
+ msgstr ""
874
+
875
+ #: ../modules/forms/views/tpl/formsEditAdminCodeOpts.php:14
876
+ msgid "HTML code"
877
+ msgstr ""
878
+
879
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:3
880
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:3
881
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:364
882
+ #, php-format
883
+ msgid ""
884
+ "This is PRO option. You can <a class=\"button\" href=\"%s\" target=\"_blank"
885
+ "\">Get PRO</a> with this and many other options <a href=\"%s\" target="
886
+ "\"_blank\">here</a>."
887
+ msgstr ""
888
+
889
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:6
890
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:22
891
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:38
892
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:58
893
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:78
894
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:6
895
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:23
896
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:38
897
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:58
898
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:90
899
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:367
900
+ #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
901
+ msgid "PRO"
902
+ msgstr ""
903
+
904
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:17
905
+ msgid "Enable Publish Content"
906
+ msgstr ""
907
+
908
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:18
909
+ #, php-format
910
+ msgid ""
911
+ "Publish Content feature allows your site visitors to post content through "
912
+ "your Contact Form. <a href=\"%s\" target=\"_blank\">https://supsystic.com/"
913
+ "documentation/contact-form-publish-content/</a>"
914
+ msgstr ""
915
+
916
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:34
917
+ msgid "Created Post Type"
918
+ msgstr ""
919
+
920
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:35
921
+ msgid "Post Type for created content."
922
+ msgstr ""
923
+
924
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:54
925
+ msgid "Post Status"
926
+ msgstr ""
927
+
928
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:55
929
+ msgid ""
930
+ "You can make it published right after user will publish it here, or make it "
931
+ "Pending Review - to be able approve it by Yourself."
932
+ msgstr ""
933
+
934
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:74
935
+ msgid "Post Category"
936
+ msgstr ""
937
+
938
+ #: ../modules/forms/views/tpl/formsEditAdminPublishContentOpts.php:75
939
+ msgid "Push posts to categories."
940
+ msgstr ""
941
+
942
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:17
943
+ msgid "Enable Registration from Form"
944
+ msgstr ""
945
+
946
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:18
947
+ #, php-format
948
+ msgid ""
949
+ "Registration form option allows you to create user registration forms and "
950
+ "combine it with any kind of content.\n"
951
+ "You can add any field to get info and allow users to select username, "
952
+ "password, fill out their bio, add custom user information to build a nice "
953
+ "user profile. Also, you can select the role of the new user and set "
954
+ "registration without confirmation. <a href=\"%s\" target=\"_blank\">https://"
955
+ "supsystic.com/documentation/contact-form-registration/</a>"
956
+ msgstr ""
957
+
958
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:34
959
+ msgid "User Role"
960
+ msgstr ""
961
+
962
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:35
963
+ msgid "New user role."
964
+ msgstr ""
965
+
966
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:54
967
+ msgid "Ignore confirmation"
968
+ msgstr ""
969
+
970
+ #: ../modules/forms/views/tpl/formsEditAdminRegistrationOpts.php:55
971
+ msgid "Create new user without confirm - right after form submit."
972
+ msgstr ""
973
+
974
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:2
975
+ msgid "Change Form Template"
976
+ msgstr ""
977
+
978
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:12
979
+ msgid "Width"
980
+ msgstr ""
981
+
982
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:18
983
+ msgid "Max width for percentage - is 100"
984
+ msgstr ""
985
+
986
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:20
987
+ msgid "Percents"
988
+ msgstr ""
989
+
990
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:24
991
+ msgid "Pixels"
992
+ msgstr ""
993
+
994
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:32
995
+ msgid "Background"
996
+ msgstr ""
997
+
998
+ #: ../modules/forms/views/tpl/formsEditAdminTplOpts.php:32
999
+ #, php-format
1000
+ msgid "Background %d"
1001
+ msgstr ""
1002
+
1003
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:1
1004
+ msgid "Click to Edit"
1005
+ msgstr ""
1006
+
1007
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:10
1008
+ msgid "Shortcode"
1009
+ msgstr ""
1010
+
1011
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:11
1012
+ msgid "PHP code"
1013
+ msgstr ""
1014
+
1015
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:12
1016
+ msgid "Widget"
1017
+ msgstr ""
1018
+
1019
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:13
1020
+ msgid "PopUp"
1021
+ msgstr ""
1022
+
1023
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:14
1024
+ msgid "Membership"
1025
+ msgstr ""
1026
+
1027
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:28
1028
+ msgid "Add Contact Form Widget"
1029
+ msgstr ""
1030
+
1031
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:32
1032
+ #, php-format
1033
+ msgid ""
1034
+ "<a href=\"%s\" target=\"_blank\" class=\"button\">Select your Form</a> in "
1035
+ "any PopUp"
1036
+ msgstr ""
1037
+
1038
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:34
1039
+ #, php-format
1040
+ msgid ""
1041
+ "You need to have <a href=\"%s\" target=\"_blank\" class=\"button\">installed "
1042
+ "PopUp plugin</a> to use this feature"
1043
+ msgstr ""
1044
+
1045
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:46
1046
+ #, php-format
1047
+ msgid ""
1048
+ "You need to install <a target=\"_blank\" href=\"%s\">Membership by "
1049
+ "Supsystic</a> to use this feature."
1050
+ msgstr ""
1051
+
1052
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:52
1053
+ msgid "Save all changes"
1054
+ msgstr ""
1055
+
1056
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:56
1057
+ msgid "Clone to New Form"
1058
+ msgstr ""
1059
+
1060
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:58
1061
+ msgid "Clone"
1062
+ msgstr ""
1063
+
1064
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:62
1065
+ msgid "Preview"
1066
+ msgstr ""
1067
+
1068
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:71
1069
+ msgid "Delete"
1070
+ msgstr ""
1071
+
1072
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:78
1073
+ msgid "New Name"
1074
+ msgstr ""
1075
+
1076
+ #: ../modules/forms/views/tpl/formsEditFormControls.php:79
1077
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:208
1078
+ msgid "Copy"
1079
+ msgstr ""
1080
+
1081
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:4
1082
+ msgid "Field invalid error message"
1083
+ msgstr ""
1084
+
1085
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:5
1086
+ msgid ""
1087
+ "By default our plugin will show standard browser error messages about "
1088
+ "invalid or empty fields values. But if you need - you can replace it here. "
1089
+ "Use [label] - to set field name in your error message. For example \"Please "
1090
+ "fill out [label] field\". You can just leave this field empty - to use "
1091
+ "standard browser messages."
1092
+ msgstr ""
1093
+
1094
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:17
1095
+ msgid "Add New Field"
1096
+ msgstr ""
1097
+
1098
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:23
1099
+ msgid "Move Up / Down"
1100
+ msgstr ""
1101
+
1102
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:29
1103
+ msgid "Move Left / Right"
1104
+ msgstr ""
1105
+
1106
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:32
1107
+ msgid "Add New Field at the Top"
1108
+ msgstr ""
1109
+
1110
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:36
1111
+ msgid "Add New Field at the Right"
1112
+ msgstr ""
1113
+
1114
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:40
1115
+ msgid "Add New Field at the Bottom"
1116
+ msgstr ""
1117
+
1118
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:44
1119
+ msgid "Add New Field at the Left"
1120
+ msgstr ""
1121
+
1122
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:48
1123
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:247
1124
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:174
1125
+ msgid "Remove"
1126
+ msgstr ""
1127
+
1128
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:76
1129
+ msgid "Click on required elements from list bellow"
1130
+ msgstr ""
1131
+
1132
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:97
1133
+ msgid "Edit field settings"
1134
+ msgstr ""
1135
+
1136
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:101
1137
+ msgid "Basic Settings"
1138
+ msgstr ""
1139
+
1140
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:105
1141
+ msgid "Icon"
1142
+ msgstr ""
1143
+
1144
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:109
1145
+ msgid "Advanced"
1146
+ msgstr ""
1147
+
1148
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:113
1149
+ msgid "Field Validation"
1150
+ msgstr ""
1151
+
1152
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:120
1153
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:240
1154
+ #: ../modules/supsystic_promo/mod.php:242
1155
+ msgid "Name"
1156
+ msgstr ""
1157
+
1158
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:121
1159
+ msgid ""
1160
+ "Name attribute for your field. You can use here latin letters, numbers or "
1161
+ "symdols \"-\", \"_\"."
1162
+ msgstr ""
1163
+
1164
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:129
1165
+ msgid ""
1166
+ "Please fill-in Name for your field, and make sure that it contains only "
1167
+ "latin letters, numbers or symdols \"-\", \"_\"."
1168
+ msgstr ""
1169
+
1170
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:135
1171
+ msgid ""
1172
+ "Field label - that your users will see on your Form right near your field."
1173
+ msgstr ""
1174
+
1175
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:143
1176
+ msgid "Placeholder"
1177
+ msgstr ""
1178
+
1179
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:144
1180
+ msgid "Field placeholder - will be printed in your field as a tip."
1181
+ msgstr ""
1182
+
1183
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:152
1184
+ msgid "Rate Stars Count"
1185
+ msgstr ""
1186
+
1187
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:153
1188
+ msgid "Number of icons for rating."
1189
+ msgstr ""
1190
+
1191
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:163
1192
+ msgid "Time Format"
1193
+ msgstr ""
1194
+
1195
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:164
1196
+ msgid "Format for your Time input."
1197
+ msgstr ""
1198
+
1199
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:170
1200
+ msgid "24 Hours"
1201
+ msgstr ""
1202
+
1203
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:178
1204
+ msgid ""
1205
+ "Please fill-in Label or Placeholder for your field - it's required for users "
1206
+ "to know - what field in Form that are filling-in."
1207
+ msgstr ""
1208
+
1209
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:183
1210
+ msgid "Default Value"
1211
+ msgstr ""
1212
+
1213
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:184
1214
+ msgid ""
1215
+ "You can set default value for your field, and one it appear on your site - "
1216
+ "field will be pre-filled with this value."
1217
+ msgstr ""
1218
+
1219
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:190
1220
+ msgid "or select preset"
1221
+ msgstr ""
1222
+
1223
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:191
1224
+ msgid "User IP"
1225
+ msgstr ""
1226
+
1227
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:192
1228
+ msgid "User Country code"
1229
+ msgstr ""
1230
+
1231
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:193
1232
+ msgid "User Country name"
1233
+ msgstr ""
1234
+
1235
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:194
1236
+ msgid "Page Title"
1237
+ msgstr ""
1238
+
1239
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:195
1240
+ msgid "Page URL"
1241
+ msgstr ""
1242
+
1243
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:198
1244
+ msgid ""
1245
+ "Allow to insert some pre-defined values, like current user IP addres, or his "
1246
+ "country - to send you this data."
1247
+ msgstr ""
1248
+
1249
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:200
1250
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:136
1251
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:56
1252
+ msgid "PRO option"
1253
+ msgstr ""
1254
+
1255
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:206
1256
+ msgid "Label Delimiter"
1257
+ msgstr ""
1258
+
1259
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:207
1260
+ msgid ""
1261
+ "Those fields will have possibility to add some delimiter after field label "
1262
+ "if required, for example - \":\" symbol."
1263
+ msgstr ""
1264
+
1265
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:214
1266
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:307
1267
+ msgid "Display as"
1268
+ msgstr ""
1269
+
1270
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:217
1271
+ msgid "In row"
1272
+ msgstr ""
1273
+
1274
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:218
1275
+ msgid "In column"
1276
+ msgstr ""
1277
+
1278
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:225
1279
+ msgid "Select Options"
1280
+ msgstr ""
1281
+
1282
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:230
1283
+ msgid "Add Option"
1284
+ msgstr ""
1285
+
1286
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:255
1287
+ msgid "Checked by Default"
1288
+ msgstr ""
1289
+
1290
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:264
1291
+ msgid "Select Attribute"
1292
+ msgstr ""
1293
+
1294
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:265
1295
+ msgid "Select attribute from Woo for link this field to."
1296
+ msgstr ""
1297
+
1298
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:274
1299
+ msgid "Multiple"
1300
+ msgstr ""
1301
+
1302
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:275
1303
+ msgid "Possibility to select multiple items."
1304
+ msgstr ""
1305
+
1306
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:285
1307
+ msgid "Select Category Type"
1308
+ msgstr ""
1309
+
1310
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:286
1311
+ msgid ""
1312
+ "Categories can be different - depends on what Post Type you need to use."
1313
+ msgstr ""
1314
+
1315
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:296
1316
+ msgid "And select required categories for Form."
1317
+ msgstr ""
1318
+
1319
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:300
1320
+ msgid "Select available list"
1321
+ msgstr ""
1322
+
1323
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:308
1324
+ msgid "How user will be able to select category."
1325
+ msgstr ""
1326
+
1327
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:313
1328
+ msgid "Selectbox"
1329
+ msgstr ""
1330
+
1331
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:322
1332
+ msgid "Google Maps API Key"
1333
+ msgstr ""
1334
+
1335
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:323
1336
+ msgid ""
1337
+ "You can use your own Google API key, check the <a href=\"//supsystic.com/"
1338
+ "google-maps-api-key/\" target=\"_blank\">instruction</a> how to create it. "
1339
+ "To use plugin's default API key leave this field blank."
1340
+ msgstr ""
1341
+
1342
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:331
1343
+ msgid "Required"
1344
+ msgstr ""
1345
+
1346
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:340
1347
+ msgid "Site Key"
1348
+ msgstr ""
1349
+
1350
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:341
1351
+ #, php-format
1352
+ msgid ""
1353
+ "Your site key, generated on <a href=\"%s\" target=\"_blank\">%s</a>. To get "
1354
+ "more info - check <a href=\"%s\" target=\"_blank\">our tutorial.</a>"
1355
+ msgstr ""
1356
+
1357
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:349
1358
+ msgid "Secret Key"
1359
+ msgstr ""
1360
+
1361
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:350
1362
+ #, php-format
1363
+ msgid ""
1364
+ "Your secret key, generated on <a href=\"%s\" target=\"_blank\">%s</a>. To "
1365
+ "get more info - check <a href=\"%s\" target=\"_blank\">our tutorial.</a>"
1366
+ msgstr ""
1367
+
1368
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:383
1369
+ msgid "Icon Size"
1370
+ msgstr ""
1371
+
1372
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:384
1373
+ msgid "Set size for icon, default is size like all other text."
1374
+ msgstr ""
1375
+
1376
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:389
1377
+ msgid "Default"
1378
+ msgstr ""
1379
+
1380
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:390
1381
+ msgid "33% increase"
1382
+ msgstr ""
1383
+
1384
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:391
1385
+ msgid "2x"
1386
+ msgstr ""
1387
+
1388
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:392
1389
+ msgid "3x"
1390
+ msgstr ""
1391
+
1392
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:393
1393
+ msgid "4x"
1394
+ msgstr ""
1395
+
1396
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:394
1397
+ msgid "5x"
1398
+ msgstr ""
1399
+
1400
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:402
1401
+ msgid "Icon Color"
1402
+ msgstr ""
1403
+
1404
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:403
1405
+ msgid "Custom color for your icon."
1406
+ msgstr ""
1407
+
1408
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:413
1409
+ msgid "Selected Color"
1410
+ msgstr ""
1411
+
1412
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:414
1413
+ msgid "Color for selected rating stars."
1414
+ msgstr ""
1415
+
1416
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:429
1417
+ msgid "reCaptcha Theme"
1418
+ msgstr ""
1419
+
1420
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:430
1421
+ #, php-format
1422
+ msgid ""
1423
+ "The color theme. You can select from themes, provided by Google, for your "
1424
+ "reCaptcha. To get more info - check <a href=\"%s\" target=\"_blank\">our "
1425
+ "tutorial.</a>"
1426
+ msgstr ""
1427
+
1428
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:434
1429
+ msgid "Light"
1430
+ msgstr ""
1431
+
1432
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:434
1433
+ msgid "Dark"
1434
+ msgstr ""
1435
+
1436
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:441
1437
+ msgid "reCaptcha Type"
1438
+ msgstr ""
1439
+
1440
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:442
1441
+ msgid "The type of CAPTCHA to serve."
1442
+ msgstr ""
1443
+
1444
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:446
1445
+ msgid "Audio"
1446
+ msgstr ""
1447
+
1448
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:453
1449
+ msgid "reCaptcha Size"
1450
+ msgstr ""
1451
+
1452
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:454
1453
+ msgid "The size of the CAPTCHA widget."
1454
+ msgstr ""
1455
+
1456
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:458
1457
+ msgid "Compact"
1458
+ msgstr ""
1459
+
1460
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:458
1461
+ msgid "Normal"
1462
+ msgstr ""
1463
+
1464
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:465
1465
+ msgid "Additional classes"
1466
+ msgstr ""
1467
+
1468
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:466
1469
+ msgid "You can specify here additinal CSS classes for your field."
1470
+ msgstr ""
1471
+
1472
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:474
1473
+ msgid "Additional styles"
1474
+ msgstr ""
1475
+
1476
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:475
1477
+ msgid ""
1478
+ "You can specify here additinal CSS styles, that will be included in \"style"
1479
+ "\" tag, for your field."
1480
+ msgstr ""
1481
+
1482
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:483
1483
+ msgid "Additional HTML attributes"
1484
+ msgstr ""
1485
+
1486
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:484
1487
+ msgid ""
1488
+ "You can specify here additinal HTML attributes, such as \"id\", or other, "
1489
+ "for your field."
1490
+ msgstr ""
1491
+
1492
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:496
1493
+ msgid "Minimum length"
1494
+ msgstr ""
1495
+
1496
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:497
1497
+ msgid ""
1498
+ "Possibility to bound minimum length for field value. For text fields - it is "
1499
+ "the text length. For Files fields types - this is restriction for file size, "
1500
+ "in Mb."
1501
+ msgstr ""
1502
+
1503
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:505
1504
+ msgid "Maximum length"
1505
+ msgstr ""
1506
+
1507
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:506
1508
+ msgid ""
1509
+ "Possibility to bound maximum length for field value. For text fields - it is "
1510
+ "the text length. For Files fields types - this is restriction for file size, "
1511
+ "in Mb."
1512
+ msgstr ""
1513
+
1514
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:514
1515
+ msgid "Only numbers"
1516
+ msgstr ""
1517
+
1518
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:515
1519
+ msgid "Allow users to enter in this field - only numeric values."
1520
+ msgstr ""
1521
+
1522
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:523
1523
+ msgid "Only letters"
1524
+ msgstr ""
1525
+
1526
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:524
1527
+ msgid "Only letters will be allowed."
1528
+ msgstr ""
1529
+
1530
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:532
1531
+ msgid "Validation Pattern"
1532
+ msgstr ""
1533
+
1534
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:533
1535
+ msgid ""
1536
+ "You can modify or set here your custom patters. Edit this ONLY if you know "
1537
+ "how to modify regular expression patterns! For Files fields types you can "
1538
+ "set here file extensions, separated by comma - \",\"."
1539
+ msgstr ""
1540
+
1541
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:541
1542
+ msgid "Equal to"
1543
+ msgstr ""
1544
+
1545
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:542
1546
+ msgid ""
1547
+ "Will require this field to be equal to other field from form. For example - "
1548
+ "use this is you want to create Email confirm fields."
1549
+ msgstr ""
1550
+
1551
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:552
1552
+ msgid "HTML / Text / Images / etc."
1553
+ msgstr ""
1554
+
1555
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:555
1556
+ msgid "Select desired Map"
1557
+ msgstr ""
1558
+
1559
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:558
1560
+ msgid "Select Map"
1561
+ msgstr ""
1562
+
1563
+ #: ../modules/forms/views/tpl/formsEditFormFields.php:563
1564
+ #, php-format
1565
+ msgid ""
1566
+ "You have no Google Maps for now. <a href=\"%s\" target=\"_blank\" class="
1567
+ "\"button\">Create Maps</a> at first, then you will be able to select it here "
1568
+ "and past into your form"
1569
+ msgstr ""
1570
+
1571
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:4
1572
+ msgid "Total Statistics"
1573
+ msgstr ""
1574
+
1575
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:6
1576
+ msgid "Clear selection"
1577
+ msgstr ""
1578
+
1579
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:8
1580
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:197
1581
+ msgid "From"
1582
+ msgstr ""
1583
+
1584
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:11
1585
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:186
1586
+ msgid "To"
1587
+ msgstr ""
1588
+
1589
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:26
1590
+ msgid "Reset Zoom"
1591
+ msgstr ""
1592
+
1593
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:31
1594
+ msgid "Group by"
1595
+ msgstr ""
1596
+
1597
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:32
1598
+ msgid "Hour"
1599
+ msgstr ""
1600
+
1601
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:33
1602
+ msgid "Day"
1603
+ msgstr ""
1604
+
1605
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:37
1606
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:109
1607
+ msgid "Export to CSV"
1608
+ msgstr ""
1609
+
1610
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:42
1611
+ msgid "Clear data"
1612
+ msgstr ""
1613
+
1614
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:50
1615
+ msgid "Total Statistics is empty for now."
1616
+ msgstr ""
1617
+
1618
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:51
1619
+ msgid ""
1620
+ "Once your site visitors begin to use your form - all form statistics usage "
1621
+ "will be here."
1622
+ msgstr ""
1623
+
1624
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:60
1625
+ msgid "Rating Statistics is empty for now."
1626
+ msgstr ""
1627
+
1628
+ #: ../modules/forms/views/tpl/formsEditFormStatistics.php:61
1629
+ msgid ""
1630
+ "Add a Rating field into your Contact Form, and after users start to submit "
1631
+ "it - you will see stats here."
1632
+ msgstr ""
1633
+
1634
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:5
1635
+ #: ../modules/options/mod.php:122
1636
+ msgid "General"
1637
+ msgstr ""
1638
+
1639
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:18
1640
+ msgid "Form sent message"
1641
+ msgstr ""
1642
+
1643
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:19
1644
+ msgid "Message, that your users will see after success form submition."
1645
+ msgstr ""
1646
+
1647
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:27
1648
+ msgid "Form sent message color"
1649
+ msgstr ""
1650
+
1651
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:28
1652
+ msgid "Text color for your Success message."
1653
+ msgstr ""
1654
+
1655
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:38
1656
+ msgid "Hide form after submit"
1657
+ msgstr ""
1658
+
1659
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:39
1660
+ msgid ""
1661
+ "By default form will be hidden after successful submit, but you can disable "
1662
+ "this here - and after submit form will be just cleared."
1663
+ msgstr ""
1664
+
1665
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:49
1666
+ msgid "Redirect after submit"
1667
+ msgstr ""
1668
+
1669
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:50
1670
+ msgid ""
1671
+ "If you want - you can redirect user after Form was submitted. Just enter "
1672
+ "required Redirect URL here - and each time after Form will be submitted - "
1673
+ "user will be redirected to that URL. Just leave this field empty - if you "
1674
+ "don't need this functionality in your Form."
1675
+ msgstr ""
1676
+
1677
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:60
1678
+ msgid "Open in a new window (tab)"
1679
+ msgstr ""
1680
+
1681
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:62
1682
+ #, php-format
1683
+ msgid ""
1684
+ "After user will enter all data in contact form, and form will be submitted - "
1685
+ "he will be redirected to page with his submitted data. Enter in the text "
1686
+ "field above - link to page, where you inserted shortcode [%s] - and check "
1687
+ "results. Don't forget to enable \"Save contacts data\" option too."
1688
+ msgstr ""
1689
+
1690
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:65
1691
+ msgid "Show submitted data"
1692
+ msgstr ""
1693
+
1694
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:71
1695
+ msgid "Email data as in Form"
1696
+ msgstr ""
1697
+
1698
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:72
1699
+ msgid ""
1700
+ "By default email data from form will be listed in one column. But you can "
1701
+ "enable this option - and all data will be listed as they are in form: if in "
1702
+ "row there are 2 fields - 2 fields will be in email, etc."
1703
+ msgstr ""
1704
+
1705
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:82
1706
+ msgid "Test Email Function"
1707
+ msgstr ""
1708
+
1709
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:83
1710
+ msgid ""
1711
+ "Email delivery depends from your server configuration. For some cases - you "
1712
+ "and your subscribers can not receive emails just because email on your "
1713
+ "server is not working correctly. You can easy test it here - by sending test "
1714
+ "email. If you receive it - then it means that email functionality on your "
1715
+ "server works well. If not - this means that it is not working correctly and "
1716
+ "you should contact your hosting provider with this issue and ask them to "
1717
+ "setup email functionality for you on your server."
1718
+ msgstr ""
1719
+
1720
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:91
1721
+ msgid "Send Test Email"
1722
+ msgstr ""
1723
+
1724
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:94
1725
+ msgid ""
1726
+ "Email was sent. Now check your email inbox / spam folders for test mail. If "
1727
+ "you don’t find it - it means that your server can't send emails - and you "
1728
+ "need to contact your hosting provider with this issue."
1729
+ msgstr ""
1730
+
1731
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:100
1732
+ msgid "Save contacts data"
1733
+ msgstr ""
1734
+
1735
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:101
1736
+ msgid ""
1737
+ "Store each contact form submission - into database, so you will be able to "
1738
+ "check all your form submit data."
1739
+ msgstr ""
1740
+
1741
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:107
1742
+ msgid "Show all contacts"
1743
+ msgstr ""
1744
+
1745
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:111
1746
+ msgid "Delimiter for CSV file columns"
1747
+ msgstr ""
1748
+
1749
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:112
1750
+ msgid "Delimiter"
1751
+ msgstr ""
1752
+
1753
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:123
1754
+ msgid "Send only Field values"
1755
+ msgstr ""
1756
+
1757
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:124
1758
+ msgid ""
1759
+ "By default - we will send field labels + values like:<br /><b>Field Label</"
1760
+ "b>: Field Value<br />But if you need to receive only values - you can "
1761
+ "disable sending Field Values here - just check this checkbox and it will "
1762
+ "done."
1763
+ msgstr ""
1764
+
1765
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:133
1766
+ msgid "Facebook Conversion"
1767
+ msgstr ""
1768
+
1769
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:134
1770
+ #, php-format
1771
+ msgid ""
1772
+ "Enable Facebook Pixel and Custom conversion. More about this feature and "
1773
+ "it's integration - <a href=\"%s\" target=\"_blank\">here</a>."
1774
+ msgstr ""
1775
+
1776
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:148
1777
+ msgid "Fb Pixel base code"
1778
+ msgstr ""
1779
+
1780
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:149
1781
+ msgid "Insert here your pixel base code from your Facebook Pixel account."
1782
+ msgstr ""
1783
+
1784
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:161
1785
+ msgid "Add additional data for submit"
1786
+ msgstr ""
1787
+
1788
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:168
1789
+ msgid "Add Copy"
1790
+ msgstr ""
1791
+
1792
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:169
1793
+ msgid "Remove Copy"
1794
+ msgstr ""
1795
+
1796
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:179
1797
+ msgid ""
1798
+ "You can use next variables in any field bellow: [sitename] - name of your "
1799
+ "site, [siteurl] - URL address of your site, [user_FIELD_NAME] - any user "
1800
+ "field, entered by user, where FIELD_NAME - is name of required field, for "
1801
+ "example insert in subject [user_email] - and there will be user email field "
1802
+ "data, or [user_first_name] - and there will be inserted user First Name - if "
1803
+ "such field exists in your form fields list, and variable [form_data] - only "
1804
+ "for Message field - it will contans full generated input form data."
1805
+ msgstr ""
1806
+
1807
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:187
1808
+ msgid ""
1809
+ "Email where we need to send contact form info. Can enter several email "
1810
+ "addresses, separated by comma \",\"."
1811
+ msgstr ""
1812
+
1813
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:198
1814
+ msgid ""
1815
+ "\"From\" parameter in your emails. Usually - this is your main admin WP "
1816
+ "email address."
1817
+ msgstr ""
1818
+
1819
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:209
1820
+ msgid ""
1821
+ "Add recipients to copy email addresses. Can enter several email addresses, "
1822
+ "separated by comma \",\"."
1823
+ msgstr ""
1824
+
1825
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:217
1826
+ msgid "Reply To"
1827
+ msgstr ""
1828
+
1829
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:218
1830
+ msgid "Reply To parameter in your email"
1831
+ msgstr ""
1832
+
1833
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:226
1834
+ #: ../modules/supsystic_promo/mod.php:245
1835
+ msgid "Subject"
1836
+ msgstr ""
1837
+
1838
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:227
1839
+ msgid "Email subject"
1840
+ msgstr ""
1841
+
1842
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:235
1843
+ #: ../modules/supsystic_promo/mod.php:252
1844
+ msgid "Message"
1845
+ msgstr ""
1846
+
1847
+ #: ../modules/forms/views/tpl/formsEditFormSubmitOpts.php:236
1848
+ msgid "Email message content"
1849
+ msgstr ""
1850
+
1851
+ #: ../modules/forms_widget/mod.php:18
1852
+ msgid "Display Contact Form"
1853
+ msgstr ""
1854
+
1855
+ #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:2
1856
+ msgid "Title"
1857
+ msgstr ""
1858
+
1859
+ #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:9
1860
+ msgid "Form to display"
1861
+ msgstr ""
1862
+
1863
+ #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:19
1864
+ msgid ""
1865
+ "You have no Forms for now. Create your first form - and you will be able to "
1866
+ "select it for widget here."
1867
+ msgstr ""
1868
+
1869
+ #: ../modules/forms_widget/views/tpl/formsWidgetForm.php:23
1870
+ msgid "Create Form"
1871
+ msgstr ""
1872
+
1873
+ #: ../modules/mail/controller.php:7
1874
+ msgid "Now check your email inbox / spam folders for test mail."
1875
+ msgstr ""
1876
+
1877
+ #: ../modules/mail/mod.php:195
1878
+ msgid "Cannot send email - problem with send server"
1879
+ msgstr ""
1880
+
1881
+ #: ../modules/mail/mod.php:209
1882
+ msgid "Mail"
1883
+ msgstr ""
1884
+
1885
+ #: ../modules/mail/mod.php:211
1886
+ msgid "Mail function tested and work"
1887
+ msgstr ""
1888
+
1889
+ #: ../modules/mail/mod.php:212
1890
+ msgid "Notify Email"
1891
+ msgstr ""
1892
+
1893
+ #: ../modules/mail/mod.php:212
1894
+ msgid "Email address used for all email notifications from plugin"
1895
+ msgstr ""
1896
+
1897
+ #: ../modules/mail/models/mail.php:7
1898
+ msgid "Test email functionality"
1899
+ msgstr ""
1900
+
1901
+ #: ../modules/mail/models/mail.php:8
1902
+ #, php-format
1903
+ msgid "This is a test email for testing email functionality on your site, %s."
1904
+ msgstr ""
1905
+
1906
+ #: ../modules/mail/models/mail.php:15
1907
+ msgid "Empty email address"
1908
+ msgstr ""
1909
+
1910
+ #: ../modules/mail/views/tpl/mailAdmin.php:3
1911
+ msgid "Send test email to"
1912
+ msgstr ""
1913
+
1914
+ #: ../modules/mail/views/tpl/mailAdmin.php:10
1915
+ msgid "Send test"
1916
+ msgstr ""
1917
+
1918
+ #: ../modules/mail/views/tpl/mailAdmin.php:12
1919
+ msgid "This option allows you to check your server mail functionality"
1920
+ msgstr ""
1921
+
1922
+ #: ../modules/mail/views/tpl/mailAdmin.php:15
1923
+ msgid "Did you receive test email?"
1924
+ msgstr ""
1925
+
1926
+ #: ../modules/mail/views/tpl/mailAdmin.php:18
1927
+ msgid "Yes! It works!"
1928
+ msgstr ""
1929
+
1930
+ #: ../modules/mail/views/tpl/mailAdmin.php:22
1931
+ msgid "No, I need to contact my hosting provider with mail function issue."
1932
+ msgstr ""
1933
+
1934
+ #: ../modules/mail/views/tpl/mailAdmin.php:26
1935
+ msgid "Great! Mail function was tested and is working fine."
1936
+ msgstr ""
1937
+
1938
+ #: ../modules/mail/views/tpl/mailAdmin.php:29
1939
+ msgid ""
1940
+ "Bad, please contact your hosting provider and ask them to setup mail "
1941
+ "functionality on your server."
1942
+ msgstr ""
1943
+
1944
+ #: ../modules/mail/views/tpl/mailAdmin.php:47
1945
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:48
1946
+ #, php-format
1947
+ msgid "Turned On %s"
1948
+ msgstr ""
1949
+
1950
+ #: ../modules/mail/views/tpl/mailAdmin.php:48
1951
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:49
1952
+ #, php-format
1953
+ msgid "Turned Off %s"
1954
+ msgstr ""
1955
+
1956
+ #: ../modules/options/mod.php:124
1957
+ msgid "Send usage statistics"
1958
+ msgstr ""
1959
+
1960
+ #: ../modules/options/mod.php:124
1961
+ msgid ""
1962
+ "Send information about what plugin options you prefer to use, this will help "
1963
+ "us make our solution better for You."
1964
+ msgstr ""
1965
+
1966
+ #: ../modules/options/mod.php:125
1967
+ msgid "Enable blocking Contact from same IP"
1968
+ msgstr ""
1969
+
1970
+ #: ../modules/options/mod.php:125
1971
+ msgid ""
1972
+ "Our plugin have feature to block form submission from same IP more then one "
1973
+ "time per hour - to avoid spam. You can enable this feature here."
1974
+ msgstr ""
1975
+
1976
+ #: ../modules/options/mod.php:126
1977
+ msgid "Disable autosave on Form Edit"
1978
+ msgstr ""
1979
+
1980
+ #: ../modules/options/mod.php:126
1981
+ msgid ""
1982
+ "By default our plugin will make autosave all your changes that you do in "
1983
+ "Form edit screen, but you can disable this feature here. Just don't forget "
1984
+ "to save your Form each time you make any changes in it."
1985
+ msgstr ""
1986
+
1987
+ #: ../modules/options/mod.php:127
1988
+ msgid "Enable promo link"
1989
+ msgstr ""
1990
+
1991
+ #: ../modules/options/mod.php:127
1992
+ msgid ""
1993
+ "We are trying to make our plugin better for you, and you can help us with "
1994
+ "this. Just check this option - and small promotion link will be added in the "
1995
+ "bottom of your Form. This is easy for you - but very helpful for us!"
1996
+ msgstr ""
1997
+
1998
+ #: ../modules/options/mod.php:128
1999
+ msgid "User role can use plugin"
2000
+ msgstr ""
2001
+
2002
+ #: ../modules/options/mod.php:128
2003
+ msgid "User with next roles will have access to whole plugin from admin area."
2004
+ msgstr ""
2005
+
2006
+ #: ../modules/options/mod.php:129
2007
+ msgid "Load Assets in Footer"
2008
+ msgstr ""
2009
+
2010
+ #: ../modules/options/mod.php:129
2011
+ msgid ""
2012
+ "Force load all plugin CSS and JavaScript files in footer - to increase page "
2013
+ "load speed. Please make sure that you have correct footer.php file in your "
2014
+ "WordPress theme with wp_footer() function call in it."
2015
+ msgstr ""
2016
+
2017
+ #: ../modules/options/mod.php:130
2018
+ msgid "Disable HTML Emails content type"
2019
+ msgstr ""
2020
+
2021
+ #: ../modules/options/mod.php:130
2022
+ msgid ""
2023
+ "Some servers fail send emails with HTML content type: content-type = \"text/"
2024
+ "html\", so if you have problems with sending emails from our plugn - try to "
2025
+ "disable this feature here."
2026
+ msgstr ""
2027
+
2028
+ #: ../modules/options/mod.php:132
2029
+ msgid "Send With"
2030
+ msgstr ""
2031
+
2032
+ #: ../modules/options/mod.php:132
2033
+ msgid "You can send your emails with different email sendng engines."
2034
+ msgstr ""
2035
+
2036
+ #: ../modules/options/mod.php:133
2037
+ msgid "WordPress PHP Mail"
2038
+ msgstr ""
2039
+
2040
+ #: ../modules/options/mod.php:133
2041
+ msgid "Third party providers (SMTP)"
2042
+ msgstr ""
2043
+
2044
+ #: ../modules/options/mod.php:133
2045
+ msgid "Sendmail"
2046
+ msgstr ""
2047
+
2048
+ #: ../modules/options/mod.php:135
2049
+ msgid "SMTP Hostname"
2050
+ msgstr ""
2051
+
2052
+ #: ../modules/options/mod.php:135
2053
+ msgid "e.g. smtp.mydomain.com"
2054
+ msgstr ""
2055
+
2056
+ #: ../modules/options/mod.php:136
2057
+ msgid "SMTP Login"
2058
+ msgstr ""
2059
+
2060
+ #: ../modules/options/mod.php:136
2061
+ msgid "Your email login"
2062
+ msgstr ""
2063
+
2064
+ #: ../modules/options/mod.php:137
2065
+ msgid "SMTP Password"
2066
+ msgstr ""
2067
+
2068
+ #: ../modules/options/mod.php:137
2069
+ msgid "Your email password"
2070
+ msgstr ""
2071
+
2072
+ #: ../modules/options/mod.php:138
2073
+ msgid "SMTP Port"
2074
+ msgstr ""
2075
+
2076
+ #: ../modules/options/mod.php:138
2077
+ msgid "Port for your SMTP provider"
2078
+ msgstr ""
2079
+
2080
+ #: ../modules/options/mod.php:139
2081
+ msgid "SMTP Secure"
2082
+ msgstr ""
2083
+
2084
+ #: ../modules/options/mod.php:139
2085
+ msgid ""
2086
+ "Use secure SMTP connection. If you enable this option - make sure that your "
2087
+ "server support such secure connections."
2088
+ msgstr ""
2089
+
2090
+ #: ../modules/options/mod.php:142
2091
+ msgid "Sendmail Path"
2092
+ msgstr ""
2093
+
2094
+ #: ../modules/options/mod.php:142
2095
+ msgid ""
2096
+ "You can check it on your server, or ask about it - in your hosting provider."
2097
+ msgstr ""
2098
+
2099
+ #: ../modules/options/mod.php:144
2100
+ msgid "Remove Contact Forms data after days passed"
2101
+ msgstr ""
2102
+
2103
+ #: ../modules/options/mod.php:144
2104
+ msgid ""
2105
+ "CAUTION: Do Not use this feature if you do not exactly know hat it is doing! "
2106
+ "It can delete contact form data!<br />You may want not to store all of your "
2107
+ "contact form data in your database - to make it cleaner, or for example due "
2108
+ "to some laws (in some countries you can't store users data all time, only "
2109
+ "few days). For this reason you can set here number of days to store users "
2110
+ "contact forms data. After those days passed (starting from user submit form) "
2111
+ "- his \\ her data will be removed. Leave this field with zero value to "
2112
+ "disable this functionality."
2113
+ msgstr ""
2114
+
2115
+ #: ../modules/options/models/modules.php:35
2116
+ msgid "Module Updated"
2117
+ msgstr ""
2118
+
2119
+ #: ../modules/options/models/modules.php:50
2120
+ msgid "Module Update Failed"
2121
+ msgstr ""
2122
+
2123
+ #: ../modules/options/models/modules.php:53
2124
+ msgid "Error module ID"
2125
+ msgstr ""
2126
+
2127
+ #: ../modules/options/models/options.php:64
2128
+ msgid "Empty data to save option"
2129
+ msgstr ""
2130
+
2131
+ #: ../modules/options/views/tpl/optionsAdminMain.php:18
2132
+ msgid "Main page Go here!!!!"
2133
+ msgstr ""
2134
+
2135
+ #: ../modules/options/views/tpl/optionsAdminPage.php:36
2136
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:75
2137
+ msgid "Improve Free version"
2138
+ msgstr ""
2139
+
2140
+ #: ../modules/options/views/tpl/optionsAdminPage.php:38
2141
+ #, php-format
2142
+ msgid ""
2143
+ "Please be advised that this template with all other options and PRO "
2144
+ "templates is available only in <a target=\"_blank\" href=\"%s\">PRO version</"
2145
+ "a>. You can <a target=\"_blank\" href=\"%s\" class=\"button\">Get PRO</a> "
2146
+ "today and get this and other PRO templates and features for your Forms!"
2147
+ msgstr ""
2148
+
2149
+ #: ../modules/options/views/tpl/optionsAdminPage.php:41
2150
+ #, php-format
2151
+ msgid ""
2152
+ "Please be advised that this option is available only in <a target=\"_blank\" "
2153
+ "href=\"%s\">PRO version</a>. You can <a target=\"_blank\" href=\"%s\" class="
2154
+ "\"button\">Get PRO</a> today and get this and other PRO option for your "
2155
+ "Forms!"
2156
+ msgstr ""
2157
+
2158
+ #: ../modules/options/views/tpl/optionsSettingsTabContent.php:3
2159
+ msgid "Save all options"
2160
+ msgstr ""
2161
+
2162
+ #: ../modules/pages/views/tpl/deactivatePage.php:33
2163
+ msgid "Delete Plugin Data (options, setup data, database tables, etc.)"
2164
+ msgstr ""
2165
+
2166
+ #: ../modules/statistics/controller.php:40
2167
+ #, php-format
2168
+ msgid "Statistics for %s"
2169
+ msgstr ""
2170
+
2171
+ #: ../modules/statistics/controller.php:43
2172
+ msgid "Views"
2173
+ msgstr ""
2174
+
2175
+ #: ../modules/statistics/controller.php:44
2176
+ msgid "Unique Views"
2177
+ msgstr ""
2178
+
2179
+ #: ../modules/statistics/controller.php:45
2180
+ msgid "Actions"
2181
+ msgstr ""
2182
+
2183
+ #: ../modules/statistics/controller.php:46
2184
+ msgid "Conversion"
2185
+ msgstr ""
2186
+
2187
+ #: ../modules/statistics/mod.php:7
2188
+ msgid "Displayed"
2189
+ msgstr ""
2190
+
2191
+ #: ../modules/statistics/mod.php:8
2192
+ msgid "Submitted"
2193
+ msgstr ""
2194
+
2195
+ #: ../modules/statistics/mod.php:9
2196
+ msgid "Submitted Success"
2197
+ msgstr ""
2198
+
2199
+ #: ../modules/statistics/mod.php:10
2200
+ msgid "Submitted Fail"
2201
+ msgstr ""
2202
+
2203
+ #: ../modules/statistics/models/statistics.php:32
2204
+ msgid "Send me some info, pls"
2205
+ msgstr ""
2206
+
2207
+ #: ../modules/statistics/models/statistics.php:181
2208
+ msgid "No data found"
2209
+ msgstr ""
2210
+
2211
+ #: ../modules/supsystic_promo/controller.php:7
2212
+ #: ../modules/supsystic_promo/controller.php:100
2213
+ #: ../modules/supsystic_promo/controller.php:108
2214
+ #: ../modules/supsystic_promo/controller.php:116
2215
+ msgid "Information was saved. Thank you!"
2216
+ msgstr ""
2217
+
2218
+ #: ../modules/supsystic_promo/controller.php:23
2219
+ msgid ""
2220
+ "Please don't send contact requests so often - wait for response for your "
2221
+ "previous requests."
2222
+ msgstr ""
2223
+
2224
+ #: ../modules/supsystic_promo/controller.php:45
2225
+ msgid "Please enter valid email address"
2226
+ msgstr ""
2227
+
2228
+ #: ../modules/supsystic_promo/mod.php:31
2229
+ msgid "Conditional Logic"
2230
+ msgstr ""
2231
+
2232
+ #: ../modules/supsystic_promo/mod.php:53
2233
+ #, php-format
2234
+ msgid ""
2235
+ "<h3>Hey, I noticed you just use %s over a week – that’s awesome!</"
2236
+ "h3><p>Could you please do me a BIG favor and give it a 5-star rating on "
2237
+ "WordPress? Just to help us spread the word and boost our motivation.</p>"
2238
+ msgstr ""
2239
+
2240
+ #: ../modules/supsystic_promo/mod.php:54 ../modules/supsystic_promo/mod.php:60
2241
+ msgid "Ok, you deserve it"
2242
+ msgstr ""
2243
+
2244
+ #: ../modules/supsystic_promo/mod.php:55 ../modules/supsystic_promo/mod.php:61
2245
+ msgid "Nope, maybe later"
2246
+ msgstr ""
2247
+
2248
+ #: ../modules/supsystic_promo/mod.php:56
2249
+ msgid "I already did"
2250
+ msgstr ""
2251
+
2252
+ #: ../modules/supsystic_promo/mod.php:57
2253
+ #, php-format
2254
+ msgid "<h3>More then eleven days with our %s plugin - Congratulations!</h3>"
2255
+ msgstr ""
2256
+
2257
+ #: ../modules/supsystic_promo/mod.php:58
2258
+ msgid ""
2259
+ "<p>On behalf of the entire <a href=\"https://supsystic.com/\" target=\"_blank"
2260
+ "\">supsystic.com</a> company I would like to thank you for been with us, and "
2261
+ "I really hope that our software helped you.</p>"
2262
+ msgstr ""
2263
+
2264
+ #: ../modules/supsystic_promo/mod.php:59
2265
+ msgid ""
2266
+ "<p>And today, if you want, - you can help us. This is really simple - you "
2267
+ "can just add small promo link to our site under your Forms. This is small "
2268
+ "step for you, but a big help for us! Sure, if you don't want - just skip "
2269
+ "this and continue enjoy our software!</p>"
2270
+ msgstr ""
2271
+
2272
+ #: ../modules/supsystic_promo/mod.php:62
2273
+ msgid "Skip"
2274
+ msgstr ""
2275
+
2276
+ #: ../modules/supsystic_promo/mod.php:64
2277
+ #, php-format
2278
+ msgid ""
2279
+ "Check out <a href=\"%s\" target=\"_blank\" class=\"button button-primary\" "
2280
+ "data-statistic-code=\"hide\">our other Plugins</a>! Years of experience in "
2281
+ "WordPress plugins developers made those list unbreakable!"
2282
+ msgstr ""
2283
+
2284
+ #: ../modules/supsystic_promo/mod.php:113
2285
+ msgid "Overview"
2286
+ msgstr ""
2287
+
2288
+ #: ../modules/supsystic_promo/mod.php:116
2289
+ msgid "Featured Plugins"
2290
+ msgstr ""
2291
+
2292
+ #: ../modules/supsystic_promo/mod.php:123
2293
+ msgid "Constant Contact - PRO"
2294
+ msgstr ""
2295
+
2296
+ #: ../modules/supsystic_promo/mod.php:124
2297
+ msgid "Campaign Monitor - PRO"
2298
+ msgstr ""
2299
+
2300
+ #: ../modules/supsystic_promo/mod.php:125
2301
+ msgid "Vertical Response - PRO"
2302
+ msgstr ""
2303
+
2304
+ #: ../modules/supsystic_promo/mod.php:126
2305
+ msgid "SendGrid - PRO"
2306
+ msgstr ""
2307
+
2308
+ #: ../modules/supsystic_promo/mod.php:127
2309
+ msgid "GetResponse - PRO"
2310
+ msgstr ""
2311
+
2312
+ #: ../modules/supsystic_promo/mod.php:128
2313
+ msgid "iContact - PRO"
2314
+ msgstr ""
2315
+
2316
+ #: ../modules/supsystic_promo/mod.php:129
2317
+ msgid "Active Campaign - PRO"
2318
+ msgstr ""
2319
+
2320
+ #: ../modules/supsystic_promo/mod.php:130
2321
+ msgid "Mailrelay - PRO"
2322
+ msgstr ""
2323
+
2324
+ #: ../modules/supsystic_promo/mod.php:131
2325
+ msgid "arpReach - PRO"
2326
+ msgstr ""
2327
+
2328
+ #: ../modules/supsystic_promo/mod.php:132
2329
+ msgid "SG Autorepondeur - PRO"
2330
+ msgstr ""
2331
+
2332
+ #: ../modules/supsystic_promo/mod.php:133
2333
+ msgid "Benchmark - PRO"
2334
+ msgstr ""
2335
+
2336
+ #: ../modules/supsystic_promo/mod.php:134
2337
+ msgid "InfusionSoft - PRO"
2338
+ msgstr ""
2339
+
2340
+ #: ../modules/supsystic_promo/mod.php:135
2341
+ msgid "SalesForce - Web-to-Lead - PRO"
2342
+ msgstr ""
2343
+
2344
+ #: ../modules/supsystic_promo/mod.php:136
2345
+ msgid "ConvertKit - PRO"
2346
+ msgstr ""
2347
+
2348
+ #: ../modules/supsystic_promo/mod.php:137
2349
+ msgid "Emma - PRO"
2350
+ msgstr ""
2351
+
2352
+ #: ../modules/supsystic_promo/mod.php:170
2353
+ msgid "Testing"
2354
+ msgstr ""
2355
+
2356
+ #: ../modules/supsystic_promo/mod.php:172
2357
+ #: ../modules/supsystic_promo/mod.php:184
2358
+ msgid "Get PRO"
2359
+ msgstr ""
2360
+
2361
+ #: ../modules/supsystic_promo/mod.php:182
2362
+ msgid "Subscribe"
2363
+ msgstr ""
2364
+
2365
+ #: ../modules/supsystic_promo/mod.php:195
2366
+ msgid "Form Location"
2367
+ msgstr ""
2368
+
2369
+ #: ../modules/supsystic_promo/mod.php:244
2370
+ msgid "Website"
2371
+ msgstr ""
2372
+
2373
+ #: ../modules/supsystic_promo/mod.php:246
2374
+ msgid "Topic"
2375
+ msgstr ""
2376
+
2377
+ #: ../modules/supsystic_promo/mod.php:247
2378
+ msgid "Plugin options"
2379
+ msgstr ""
2380
+
2381
+ #: ../modules/supsystic_promo/mod.php:248
2382
+ msgid "Report a bug"
2383
+ msgstr ""
2384
+
2385
+ #: ../modules/supsystic_promo/mod.php:249
2386
+ msgid "Require a new functionality"
2387
+ msgstr ""
2388
+
2389
+ #: ../modules/supsystic_promo/mod.php:250
2390
+ msgid "Other"
2391
+ msgstr ""
2392
+
2393
+ #: ../modules/supsystic_promo/mod.php:252
2394
+ msgid "Hello Supsystic Team!"
2395
+ msgstr ""
2396
+
2397
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:25
2398
+ msgid "Why Form by Supsystic is \"must have\" for your website?"
2399
+ msgstr ""
2400
+
2401
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:26
2402
+ #, php-format
2403
+ msgid ""
2404
+ "Increase your sales by 500%% using Form by Supsystic! More subscribers = "
2405
+ "more sales! It's that simple!<br />More info you can find here <a target="
2406
+ "\"_blank\" href=\"%s\">Form by Supsystic is \"must have\" for your website</"
2407
+ "a>"
2408
+ msgstr ""
2409
+
2410
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:27
2411
+ msgid "What is A/B testing?"
2412
+ msgstr ""
2413
+
2414
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:28
2415
+ #, php-format
2416
+ msgid ""
2417
+ "A/B testing is one of the easiest ways to increase conversion rates and "
2418
+ "learn more about your audience!<br />A/B test in Form plugin involves "
2419
+ "testing two or more versions of a forms window - an A version (original) and "
2420
+ "a B versions (the variation) - with live traffic and measuring the effect "
2421
+ "each version has on your conversion rate.<br />To know more detail – click "
2422
+ "<a target=\"_blank\" href=\"%s\">here</a>"
2423
+ msgstr ""
2424
+
2425
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:29
2426
+ msgid "How to enable subscription to Aweber?"
2427
+ msgstr ""
2428
+
2429
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:30
2430
+ #, php-format
2431
+ msgid ""
2432
+ "In order to subscribe to Aweber you need to know unique list id of your "
2433
+ "aweber account - check this <a target=\"_blank\" href=\"%s\">page</a> for "
2434
+ "more details."
2435
+ msgstr ""
2436
+
2437
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:31
2438
+ msgid "How to subscribe to MailChimp?"
2439
+ msgstr ""
2440
+
2441
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:32
2442
+ msgid ""
2443
+ "To subscribe to MailChimp you need enter your MailChimp API key and name of "
2444
+ "list for subscription. To find your MailChimp API key - follow the "
2445
+ "instructions below:<br />\n"
2446
+ "\t\t\t\t1. Login to your mailchimp account at http://mailchimp.com<br />\n"
2447
+ "\t\t\t\t2. From the left main menu, click on your Username, then select "
2448
+ "\"Account\" in the flyout menu.<br />\n"
2449
+ "\t\t\t\t3. From the account page select \"Extras\" -> \"API Keys\".<br />\n"
2450
+ "\t\t\t\t4. Your API Key will be listed in the table labeled \"Your API Keys"
2451
+ "\".<br />\n"
2452
+ "\t\t\t\t5. Copy / Paste your API key into \"MailChimp API key\" field in "
2453
+ "Form edit screen -> Subscribe section."
2454
+ msgstr ""
2455
+
2456
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:38
2457
+ msgid "Where to find css code for the pop-up window?"
2458
+ msgstr ""
2459
+
2460
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:39
2461
+ msgid ""
2462
+ "With Form by Supsystic you can edit CSS style directly from the plugin. <br /"
2463
+ ">\n"
2464
+ "\t\t\t\tIn WordPress admin area - \n"
2465
+ "go to Form by Supsystic -> choose a forms, what you need -> click Code tab. "
2466
+ "<br />\n"
2467
+ "Here you can edit css style of the pop-up window."
2468
+ msgstr ""
2469
+
2470
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:43
2471
+ msgid "How to get PRO version of plugin for FREE?"
2472
+ msgstr ""
2473
+
2474
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:44
2475
+ #, php-format
2476
+ msgid ""
2477
+ "You have an incredible opportunity to get PRO version for free. Make "
2478
+ "Translation of the plugin! It will be amazing if you take advantage of this "
2479
+ "offer!<br />\n"
2480
+ "\t\t\t\t\tMore info you can find here <a target=\"_blank\" href=\"%s\">“Get "
2481
+ "PRO version of any plugin for FREE”</a>"
2482
+ msgstr ""
2483
+
2484
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:46
2485
+ msgid "Translation"
2486
+ msgstr ""
2487
+
2488
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:47
2489
+ #, php-format
2490
+ msgid ""
2491
+ "All available languages are provided with the Supsystic Form plugin. If your "
2492
+ "language isn’t available, your plugin will be in English by default.<br />\n"
2493
+ "\t\t\t\t\tAvailable Translations: English, French, German, Spanish, "
2494
+ "Russian<br />\n"
2495
+ "\t\t\t\t\tTranslate or update a translation Form WordPress plugin in your "
2496
+ "language and get a Premium license for FREE. <a target=\"_blank\" href=\"%s"
2497
+ "\">Contact us.</a>"
2498
+ msgstr ""
2499
+
2500
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:54
2501
+ msgid "Where's my subscribers?"
2502
+ msgstr ""
2503
+
2504
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:55
2505
+ #, php-format
2506
+ msgid ""
2507
+ "By default all subscribers add to the WordPress. \n"
2508
+ "\t\t\t\t\tTo find your subscribers go to Users tab on the left navigation "
2509
+ "menu of WordPress admin area. \n"
2510
+ "\t\t\t\t\tAlso available subscription to the Aweber, MailChimp, MailPoet <a "
2511
+ "href='%s' target='_blank'>and other</a>. \n"
2512
+ "\t\t\t\t\tIf you want to add another subscription service - just <a "
2513
+ "href='%s' target='_blank'>contact us</a> and provide URL of the subscription "
2514
+ "service."
2515
+ msgstr ""
2516
+
2517
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:59
2518
+ msgid "Form doesn't appear on the website"
2519
+ msgstr ""
2520
+
2521
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:60
2522
+ #, php-format
2523
+ msgid ""
2524
+ "If you setup you're Form properly, and it still doesn't show on the page - "
2525
+ "there are can be conflict with your WordPress theme or other plugins. <a "
2526
+ "href='%s' target='_blank'>Contact us</a> with the URL of the webpage you add "
2527
+ "forms and screenshots / text of the error messages, if you have one - and we "
2528
+ "will help you resolve your issue."
2529
+ msgstr ""
2530
+
2531
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:76
2532
+ #, php-format
2533
+ msgid ""
2534
+ "There were some problems while trying to retrieve our news, but you can "
2535
+ "always check all list <a target=\"_blank\" href=\"%s\">here</a>."
2536
+ msgstr ""
2537
+
2538
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:134
2539
+ msgid "Popup Plugin"
2540
+ msgstr ""
2541
+
2542
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:134
2543
+ msgid ""
2544
+ "The Best WordPress PopUp option plugin to help you gain more subscribers, "
2545
+ "social followers or advertisement. Responsive pop-ups with friendly options."
2546
+ msgstr ""
2547
+
2548
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:135
2549
+ msgid "Photo Gallery Plugin"
2550
+ msgstr ""
2551
+
2552
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:135
2553
+ msgid ""
2554
+ "Photo Gallery Plugin with a great number of layouts will help you to create "
2555
+ "quality respectable portfolios and image galleries."
2556
+ msgstr ""
2557
+
2558
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:136
2559
+ msgid "Contact Form Plugin"
2560
+ msgstr ""
2561
+
2562
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:136
2563
+ msgid ""
2564
+ "One of the best plugin for creating Contact Forms on your WordPress site. "
2565
+ "Changeable fonts, backgrounds, an option for adding fields etc."
2566
+ msgstr ""
2567
+
2568
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:137
2569
+ msgid "Newsletter Plugin"
2570
+ msgstr ""
2571
+
2572
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:137
2573
+ msgid ""
2574
+ "Supsystic Newsletter plugin for automatic mailing of your letters. You will "
2575
+ "have no need to control it or send them manually. No coding, hard skills or "
2576
+ "long hours of customizing are required."
2577
+ msgstr ""
2578
+
2579
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:138
2580
+ msgid "Membership by Supsystic"
2581
+ msgstr ""
2582
+
2583
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:138
2584
+ msgid ""
2585
+ "Create online membership community with custom user profiles, roles, "
2586
+ "FrontEnd registration and login. Members Directory, activity, groups, "
2587
+ "messages."
2588
+ msgstr ""
2589
+
2590
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:139
2591
+ msgid "Data Tables Generator"
2592
+ msgstr ""
2593
+
2594
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:139
2595
+ msgid ""
2596
+ "Create and manage beautiful data tables with custom design. No HTML "
2597
+ "knowledge is required."
2598
+ msgstr ""
2599
+
2600
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:140
2601
+ msgid "Social Share Buttons"
2602
+ msgstr ""
2603
+
2604
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:140
2605
+ msgid ""
2606
+ "Social share buttons to increase social traffic and popularity. Social "
2607
+ "sharing to Facebook, Twitter and other social networks."
2608
+ msgstr ""
2609
+
2610
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:141
2611
+ msgid "Live Chat Plugin"
2612
+ msgstr ""
2613
+
2614
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:141
2615
+ msgid ""
2616
+ "Be closer to your visitors and customers with Live Chat Support by "
2617
+ "Supsystic. Help you visitors, support them in real-time with exceptional "
2618
+ "Live Chat WordPress plugin by Supsystic."
2619
+ msgstr ""
2620
+
2621
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:142
2622
+ msgid "Pricing Table"
2623
+ msgstr ""
2624
+
2625
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:142
2626
+ msgid ""
2627
+ "It’s never been so easy to create and manage pricing and comparison tables "
2628
+ "with table builder. Any element of the table can be customise with mouse "
2629
+ "click."
2630
+ msgstr ""
2631
+
2632
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:143
2633
+ msgid "Coming Soon Plugin"
2634
+ msgstr ""
2635
+
2636
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:143
2637
+ msgid ""
2638
+ "Coming soon page with drag-and-drop builder or under construction | "
2639
+ "maintenance mode to notify visitors and collects emails."
2640
+ msgstr ""
2641
+
2642
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:144
2643
+ msgid "Backup Plugin"
2644
+ msgstr ""
2645
+
2646
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:144
2647
+ msgid ""
2648
+ "Backup and Restore WordPress Plugin by Supsystic provides quick and "
2649
+ "unhitched DropBox, FTP, Amazon S3, Google Drive backup for your WordPress "
2650
+ "website."
2651
+ msgstr ""
2652
+
2653
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:145
2654
+ msgid "Google Maps Easy"
2655
+ msgstr ""
2656
+
2657
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:145
2658
+ msgid ""
2659
+ "Display custom Google Maps. Set markers and locations with text, images, "
2660
+ "categories and links. Customize google map in a simple and intuitive way."
2661
+ msgstr ""
2662
+
2663
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:146
2664
+ msgid "Digital Publication Plugin"
2665
+ msgstr ""
2666
+
2667
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:146
2668
+ msgid ""
2669
+ "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, "
2670
+ "Portfolios. Convert images, posts, PDF to the page flip book."
2671
+ msgstr ""
2672
+
2673
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:147
2674
+ msgid "Slider Plugin"
2675
+ msgstr ""
2676
+
2677
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:147
2678
+ msgid ""
2679
+ "Creating slideshows with Slider plugin is fast and easy. Simply select "
2680
+ "images from your WordPress Media Library, Flickr, Instagram or Facebook, set "
2681
+ "slide captions, links and SEO fields all from one page."
2682
+ msgstr ""
2683
+
2684
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:148
2685
+ msgid "Kinsta Hosting"
2686
+ msgstr ""
2687
+
2688
+ #: ../modules/supsystic_promo/views/supsystic_promo.php:148
2689
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:31
2690
+ msgid ""
2691
+ "If you want to host a business site or a blog, Kinsta managed WordPress "
2692
+ "hosting is the best place to stop on. Without any hesitation, we can say "
2693
+ "Kinsta is incredible when it comes to uptime and speed."
2694
+ msgstr ""
2695
+
2696
+ #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:1
2697
+ #, php-format
2698
+ msgid ""
2699
+ "Show when user tries to exit from your site. <a target=\"_blank\" href=\"%s"
2700
+ "\">Check example.</a>"
2701
+ msgstr ""
2702
+
2703
+ #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:7
2704
+ msgid "On Exit from Site"
2705
+ msgstr ""
2706
+
2707
+ #: ../modules/supsystic_promo/views/tpl/additionalmainAdminShowOnOptions.php:9
2708
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:10
2709
+ msgid "Available in PRO"
2710
+ msgstr ""
2711
+
2712
+ #: ../modules/supsystic_promo/views/tpl/adminFooter.php:4
2713
+ msgid "Version"
2714
+ msgstr ""
2715
+
2716
+ #: ../modules/supsystic_promo/views/tpl/adminFooter.php:10
2717
+ msgid "Go"
2718
+ msgstr ""
2719
+
2720
+ #: ../modules/supsystic_promo/views/tpl/adminFooter.php:15
2721
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:28
2722
+ msgid "Support"
2723
+ msgstr ""
2724
+
2725
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:4
2726
+ #, php-format
2727
+ msgid "Welcome to %s plugin!"
2728
+ msgstr ""
2729
+
2730
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:5
2731
+ #, php-format
2732
+ msgid ""
2733
+ "Thank you for choosing our %s plugin. Just click here to start using it - "
2734
+ "and we will show you it's possibilities and powerfull features."
2735
+ msgstr ""
2736
+
2737
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:8
2738
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:18
2739
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:28
2740
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:38
2741
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:48
2742
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:58
2743
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:68
2744
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:78
2745
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:88
2746
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:98
2747
+ msgid "Close"
2748
+ msgstr ""
2749
+
2750
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:9
2751
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:19
2752
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:29
2753
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:39
2754
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:49
2755
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:59
2756
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:69
2757
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:79
2758
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:89
2759
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:99
2760
+ msgid "Next"
2761
+ msgstr ""
2762
+
2763
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:14
2764
+ msgid "Create your firs Form"
2765
+ msgstr ""
2766
+
2767
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:15
2768
+ msgid ""
2769
+ "Click on \"Add New Form\" button to create your firs Form. Just try - this "
2770
+ "is really simple!"
2771
+ msgstr ""
2772
+
2773
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:24
2774
+ msgid "Enter name for your Form"
2775
+ msgstr ""
2776
+
2777
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:25
2778
+ msgid "This will be name of your Form. You can change it latter."
2779
+ msgstr ""
2780
+
2781
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:34
2782
+ msgid "Selecte template for your Form"
2783
+ msgstr ""
2784
+
2785
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:35
2786
+ msgid ""
2787
+ "Choose any templates from this list. You will be able to customize it after "
2788
+ "creation, and also - you will be able to change it latter if you will need "
2789
+ "this."
2790
+ msgstr ""
2791
+
2792
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:44
2793
+ msgid "Save first Form"
2794
+ msgstr ""
2795
+
2796
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:45
2797
+ msgid ""
2798
+ "After you entered name of your Form and selected it's template - just save "
2799
+ "it, and you will be redirected to Form edit screen - where you will be able "
2800
+ "to customize your Form."
2801
+ msgstr ""
2802
+
2803
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:54
2804
+ msgid "Main Settings"
2805
+ msgstr ""
2806
+
2807
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:55
2808
+ msgid ""
2809
+ "Here you can setup main display settings for your Form - when it should be "
2810
+ "visible for your user, when it need to be closed, if required - select "
2811
+ "specific pages/posts where you need to show your Form."
2812
+ msgstr ""
2813
+
2814
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:64
2815
+ msgid "Design Settings"
2816
+ msgstr ""
2817
+
2818
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:65
2819
+ msgid ""
2820
+ "One of our most powerfull features - possibility to <strong>customize</"
2821
+ "strong> design for each Form window for your needs. In this section you can "
2822
+ "select your Form colors and images, enter required texts that will describe "
2823
+ "your neds for your visitors, setup social settings (if required), select "
2824
+ "Form location, and in the end - select Animation style for your Form from "
2825
+ "list of more then 20 different animation styles!"
2826
+ msgstr ""
2827
+
2828
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:74
2829
+ msgid "Subscribe Settings"
2830
+ msgstr ""
2831
+
2832
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:75
2833
+ msgid ""
2834
+ "Setup your Subscription settings here - select Subscribers destination in "
2835
+ "\"Subscribe to\" option - it allow to flow your subscribers not only to "
2836
+ "WordPress Users, but to other popular subscribe services. With other "
2837
+ "subscription options you will be able to easily customize your subscribe "
2838
+ "form in Form window."
2839
+ msgstr ""
2840
+
2841
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:84
2842
+ msgid "Form Statistics"
2843
+ msgstr ""
2844
+
2845
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:85
2846
+ msgid ""
2847
+ "After you will setup your Form - it will start displaying to your site "
2848
+ "visitors. And now - you need to check it's displaying statistics. Here, in "
2849
+ "Statistics tab, you will be able to see how many times Form was shown to "
2850
+ "your visitors, how many times visitors subscribed to it (if subscription is "
2851
+ "enabled), how many times visitors shared your site using Social Share Form "
2852
+ "functionality and what social networks for share is most popular (if it was "
2853
+ "enabled). If you will use AB Testing feature to increase your site "
2854
+ "popularity - you will see here all your main and tested Forms statistics - "
2855
+ "in one graph or diagramm, - and this will provide you with all required "
2856
+ "information about your Form popularity!"
2857
+ msgstr ""
2858
+
2859
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:94
2860
+ msgid "Form CSS / HTML Code"
2861
+ msgstr ""
2862
+
2863
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:95
2864
+ #, php-format
2865
+ msgid ""
2866
+ "In case you will need modify source CSS / HTML code of your Form - you can "
2867
+ "easily do this here. Just make sure that you know what you are doing - don't "
2868
+ "break Form. You can also find additional information about editing source "
2869
+ "code <a href=\"%s\" target=\"_blank\">here</a>."
2870
+ msgstr ""
2871
+
2872
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:104
2873
+ msgid "Well Done!"
2874
+ msgstr ""
2875
+
2876
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:105
2877
+ #, php-format
2878
+ msgid ""
2879
+ "That's it! Now you know how to use our %s. Just save your Form after you "
2880
+ "will setup it - and you will see results. You can also check our site - <a "
2881
+ "href=\"%s\" target=\"_blank\">supsystic.com</a> to find out more about our "
2882
+ "%s plugin. If you will have any questions - you can always contact us on <a "
2883
+ "href=\"%s\" target=\"_blank\">WordPress plugin forum</a> or in <a href=\"%s"
2884
+ "\" target=\"_blank\">our support system</a>. We really hope that our "
2885
+ "solution will be helpful for you. Good luck!"
2886
+ msgstr ""
2887
+
2888
+ #: ../modules/supsystic_promo/views/tpl/adminTour.php:108
2889
+ msgid "Finish"
2890
+ msgstr ""
2891
+
2892
+ #: ../modules/supsystic_promo/views/tpl/discountMsg.php:37
2893
+ #, php-format
2894
+ msgid ""
2895
+ "Upgrade to bundle and get an access to <a href=\"%s\" target=\"_blank\">all "
2896
+ "14 plugins</a> more than 80%% off!"
2897
+ msgstr ""
2898
+
2899
+ #: ../modules/supsystic_promo/views/tpl/discountMsg.php:38
2900
+ msgid "Buy Now"
2901
+ msgstr ""
2902
+
2903
+ #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:3
2904
+ msgid "Get plugins bundle today and save over 80%"
2905
+ msgstr ""
2906
+
2907
+ #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:6
2908
+ msgid "Check It out"
2909
+ msgstr ""
2910
+
2911
+ #: ../modules/supsystic_promo/views/tpl/featuredPlugins.php:31
2912
+ msgid "More info"
2913
+ msgstr ""
2914
+
2915
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:8
2916
+ msgid "Enable Layered Form Style"
2917
+ msgstr ""
2918
+
2919
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:12
2920
+ msgid ""
2921
+ "By default all Forms have modal style: it appears on user screen over the "
2922
+ "whole site. Layered style allows you to show your Form - on selected "
2923
+ "position: top, bottom, etc. and not over your site - but right near your "
2924
+ "content."
2925
+ msgstr ""
2926
+
2927
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:16
2928
+ msgid "Select position for your Form"
2929
+ msgstr ""
2930
+
2931
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:19
2932
+ msgid "Top Left"
2933
+ msgstr ""
2934
+
2935
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:20
2936
+ msgid "Top"
2937
+ msgstr ""
2938
+
2939
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:21
2940
+ msgid "Top Right"
2941
+ msgstr ""
2942
+
2943
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:23
2944
+ msgid "Center Left"
2945
+ msgstr ""
2946
+
2947
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:24
2948
+ msgid "Center"
2949
+ msgstr ""
2950
+
2951
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:25
2952
+ msgid "Center Right"
2953
+ msgstr ""
2954
+
2955
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:27
2956
+ msgid "Bottom Left"
2957
+ msgstr ""
2958
+
2959
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:28
2960
+ msgid "Bottom"
2961
+ msgstr ""
2962
+
2963
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:29
2964
+ msgid "Bottom Right"
2965
+ msgstr ""
2966
+
2967
+ #: ../modules/supsystic_promo/views/tpl/layeredStylePromo.php:77
2968
+ #, php-format
2969
+ msgid ""
2970
+ "This functionality and more - is available in PRO version. <a class=\"button "
2971
+ "button-primary\" target=\"_blank\" href=\"%s\">Get it</a> today for 29$"
2972
+ msgstr ""
2973
+
2974
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:37
2975
+ msgid "Server Settings"
2976
+ msgstr ""
2977
+
2978
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:50
2979
+ msgid "News"
2980
+ msgstr ""
2981
+
2982
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:56
2983
+ msgid "All news and info"
2984
+ msgstr ""
2985
+
2986
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:61
2987
+ msgid "Contact form"
2988
+ msgstr ""
2989
+
2990
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:93
2991
+ msgid "Send email"
2992
+ msgstr ""
2993
+
2994
+ #: ../modules/supsystic_promo/views/tpl/overviewTabContent.php:102
2995
+ msgid ""
2996
+ "Your email was sent, we will try to respond to your as soon as possible. "
2997
+ "Thank you for support!"
2998
+ msgstr ""
2999
+
3000
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:7
3001
+ #, php-format
3002
+ msgid "Welcome to the %s v %s"
3003
+ msgstr ""
3004
+
3005
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:8
3006
+ msgid "Skip tutorial"
3007
+ msgstr ""
3008
+
3009
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:11
3010
+ msgid ""
3011
+ "The best way to collect subscribers and show notifications.<br />We are "
3012
+ "trying to make our plugin work in most comfortable way for you. Here is some "
3013
+ "base information about it."
3014
+ msgstr ""
3015
+
3016
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:19
3017
+ msgid "Step-by-step tutorial"
3018
+ msgstr ""
3019
+
3020
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:21
3021
+ msgid ""
3022
+ "There're really many options of forms customization. So as soon as you close "
3023
+ "that page, I'll show you step-by-step tutorial of how to use plugin. Hope it "
3024
+ "will be usefull for you :)"
3025
+ msgstr ""
3026
+
3027
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:24
3028
+ msgid "As an option we can install and setup plugin for you."
3029
+ msgstr ""
3030
+
3031
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:30
3032
+ #, php-format
3033
+ msgid ""
3034
+ "We love our plugin and do the best to improve all features for You. But "
3035
+ "sometimes issues happened, or you can't find required feature that you need. "
3036
+ "Don't worry, just <a href='%s' target='_blank'>contact us</a> and we will "
3037
+ "help you!"
3038
+ msgstr ""
3039
+
3040
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:36
3041
+ msgid "Video Tutorial"
3042
+ msgstr ""
3043
+
3044
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:48
3045
+ msgid "Frequently Asked Questions"
3046
+ msgstr ""
3047
+
3048
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:51
3049
+ msgid "Check all FAQs"
3050
+ msgstr ""
3051
+
3052
+ #: ../modules/supsystic_promo/views/tpl/welcomePage.php:59
3053
+ msgid "Let's Start!"
3054
+ msgstr ""
modules/admin_nav/views/tpl/adminNavBreadcrumbs.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  $countBreadcrumbs = count($this->breadcrumbsList);
3
  ?>
4
- <nav id="supsystic-breadcrumbs" class="supsystic-breadcrumbs <?php dispatcherCfs::doAction('adminBreadcrumbsClassAdd')?>">
5
  <?php dispatcherCfs::doAction('beforeAdminBreadcrumbs')?>
6
  <?php foreach($this->breadcrumbsList as $i => $crumb) { ?>
7
  <a class="supsystic-breadcrumb-el" href="<?php echo $crumb['url']?>"><?php echo $crumb['label']?></a>
1
  <?php
2
  $countBreadcrumbs = count($this->breadcrumbsList);
3
  ?>
4
+ <nav id="supsystic-breadcrumbs" class="supsystic-breadcrumbs <?php dispatcherCfs::doAction('adminBreadcrumbsClassAdd')?>" style="z-index:100">
5
  <?php dispatcherCfs::doAction('beforeAdminBreadcrumbs')?>
6
  <?php foreach($this->breadcrumbsList as $i => $crumb) { ?>
7
  <a class="supsystic-breadcrumb-el" href="<?php echo $crumb['url']?>"><?php echo $crumb['label']?></a>
modules/forms/controller.php CHANGED
@@ -137,7 +137,7 @@ class formsControllerCfs extends controllerCfs {
137
  //. '<link rel="stylesheet" href="'. get_stylesheet_uri(). '" type="text/css" media="all" />'
138
  . $this->_generateRecaptchaAssetsForPrev( $form )
139
  . $this->_generateGoogleMapsAssetsForPrev( $form )
140
- . $this->getModule()->getAssetsforPrevStr()
141
  . '<style type="text/css">
142
  html { overflow: visible !important; }
143
  .cfsFormShell {
@@ -146,7 +146,7 @@ class formsControllerCfs extends controllerCfs {
146
  }
147
  </style>'
148
  . '</head>';
149
- echo '<body>';
150
  echo $formContent;
151
  echo '<body></html>';
152
  }
137
  //. '<link rel="stylesheet" href="'. get_stylesheet_uri(). '" type="text/css" media="all" />'
138
  . $this->_generateRecaptchaAssetsForPrev( $form )
139
  . $this->_generateGoogleMapsAssetsForPrev( $form )
140
+ . $this->getModule()->getAssetsforPrevStr($form)
141
  . '<style type="text/css">
142
  html { overflow: visible !important; }
143
  .cfsFormShell {
146
  }
147
  </style>'
148
  . '</head>';
149
+ echo '<body id="cfsFormPreviewBody">';
150
  echo $formContent;
151
  echo '<body></html>';
152
  }
modules/forms/js/admin.forms.statistics.js CHANGED
@@ -59,7 +59,8 @@ function cfsDrawChart( data, elmId, params ) {
59
  }
60
  }
61
  var i = 1
62
- , datesExistsSorted = [];
 
63
  for(var date in datesExists) {
64
  var currDate = new Date(cfsStrToMs(date))
65
  , currTs = currDate.getTime();
@@ -71,13 +72,13 @@ function cfsDrawChart( data, elmId, params ) {
71
  i++;
72
  }
73
  datesExistsSorted.sort( _cfsSortByDateClb );
74
-
75
  for(var i = 0; i < data.length; i++) {
76
  for(var k = 0; k < datesExistsSorted.length; k++) {
77
 
78
  var dateFound = false
79
  , date = datesExistsSorted[ k ].str
80
- , chartDate = datesExistsSorted[ k ].dateObj
81
  , pI = k + 1;
82
  for(var j = 0; j < data[ i ].points.length; j++) {
83
  if(data[ i ].points[ j ].date == date) {
@@ -102,16 +103,25 @@ function cfsDrawChart( data, elmId, params ) {
102
  legend: { position: 'right' }
103
  , height: 350
104
  , chartArea: {top: 10, left: 30}
105
- , explorer: {
106
- actions: ['dragToZoom', 'rightClickToReset']
107
- , axis: 'horizontal'
108
- }
109
  , animation:{
110
  duration: 1000
111
  , easing: 'out'
112
  }
113
  , isStacked: true
114
  };
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  switch(chartType) {
116
  case 'bar':
117
  g_cfsChart[ elmId ].chart = new google.visualization.ColumnChart(document.getElementById( elmId ));
@@ -135,6 +145,13 @@ function cfsRefreshCharts() {
135
  }
136
  }
137
  }
 
 
 
 
 
 
 
138
  function _cfsSortByDateClb(a, b) {
139
  var aTime = a.dateObj.getTime()
140
  , bTime = b.dateObj.getTime();
59
  }
60
  }
61
  var i = 1
62
+ , datesExistsSorted = [],
63
+ isPointsOnly;
64
  for(var date in datesExists) {
65
  var currDate = new Date(cfsStrToMs(date))
66
  , currTs = currDate.getTime();
72
  i++;
73
  }
74
  datesExistsSorted.sort( _cfsSortByDateClb );
75
+ isPointsOnly = datesExistsSorted.length < 2;
76
  for(var i = 0; i < data.length; i++) {
77
  for(var k = 0; k < datesExistsSorted.length; k++) {
78
 
79
  var dateFound = false
80
  , date = datesExistsSorted[ k ].str
81
+ , chartDate = isPointsOnly ? _cfsFormatDate(datesExistsSorted[ k ].dateObj) : datesExistsSorted[ k ].dateObj
82
  , pI = k + 1;
83
  for(var j = 0; j < data[ i ].points.length; j++) {
84
  if(data[ i ].points[ j ].date == date) {
103
  legend: { position: 'right' }
104
  , height: 350
105
  , chartArea: {top: 10, left: 30}
 
 
 
 
106
  , animation:{
107
  duration: 1000
108
  , easing: 'out'
109
  }
110
  , isStacked: true
111
  };
112
+ if(isPointsOnly) {
113
+ // To show points
114
+ options.pointSize = 5;
115
+ } else {
116
+ // The explorer option allows users to pan and zoom Google charts. This feature is experimental and may change in future releases.
117
+ // see https://developers.google.com/chart/interactive/docs/gallery/linechart#configuration-options
118
+ // Note: The explorer only works with continuous axes (such as numbers or dates).
119
+ // On practice: this featureis not work if there are only points on chart.
120
+ options.explorer = {
121
+ actions: ['dragToZoom', 'rightClickToReset']
122
+ , axis: 'horizontal'
123
+ };
124
+ }
125
  switch(chartType) {
126
  case 'bar':
127
  g_cfsChart[ elmId ].chart = new google.visualization.ColumnChart(document.getElementById( elmId ));
145
  }
146
  }
147
  }
148
+ function _cfsFormatDate(date) {
149
+ var monthNames = ["Jan", "Feb", "Mar","Apr", "May", "Jun", "Jul","Aug", "Sep", "Oct","Nov", "Dec"]
150
+ , day = date.getDate()
151
+ , monthIndex = date.getMonth()
152
+ , year = date.getFullYear();
153
+ return monthNames[monthIndex] + ' ' + day + ', ' + year;
154
+ }
155
  function _cfsSortByDateClb(a, b) {
156
  var aTime = a.dateObj.getTime()
157
  , bTime = b.dateObj.getTime();
modules/forms/js/admin.forms.submit.js CHANGED
@@ -25,7 +25,7 @@ var g_cfsFormsSubmit = {
25
  var $editTxt = $shell.find('textarea[name*="[msg]"]')
26
  , editTxtId = 'cfsMsgTxtEdit_'+ Math.floor(Math.random() * (99999999));
27
  $editTxt.attr('id', editTxtId);
28
- tinymce.init({
29
  selector: '#'+ editTxtId
30
  , plugins: 'directionality fullscreen image link media charmap hr lists textcolor colorpicker'
31
  , toolbar1: 'formatselect | bold italic strikethrough forecolor backcolor | link | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat'
@@ -106,13 +106,13 @@ jQuery(document).ready(function(){
106
  // Set all exampled inputs as disabled
107
  jQuery('#cfsFormSubmitToShellEx').find('input,textarea,selectbox').attr('disabled', 'disabled');
108
  g_cfsFormsSubmit.init();
109
- if(typeof(cfsForm) !== 'undefined'
110
- && cfsForm.params
111
- && cfsForm.params.submit
112
  && cfsForm.params.submit.length
113
  ) {
114
  var $shellClone = jQuery('#cfsFormSubmitToShellEx');
115
-
116
  for(var i = 0; i < cfsForm.params.submit.length; i++) {
117
  g_cfsFormsSubmit.addSubmitOpt({
118
  data: cfsForm.params.submit[ i ]
@@ -145,4 +145,4 @@ jQuery(document).ready(function(){
145
  }
146
  $this.attr('href', originalHref+ '&delim='+ jQuery('#cfsContactsExportDelimTxt').val());
147
  });
148
- });
25
  var $editTxt = $shell.find('textarea[name*="[msg]"]')
26
  , editTxtId = 'cfsMsgTxtEdit_'+ Math.floor(Math.random() * (99999999));
27
  $editTxt.attr('id', editTxtId);
28
+ tinymce.init({
29
  selector: '#'+ editTxtId
30
  , plugins: 'directionality fullscreen image link media charmap hr lists textcolor colorpicker'
31
  , toolbar1: 'formatselect | bold italic strikethrough forecolor backcolor | link | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat'
106
  // Set all exampled inputs as disabled
107
  jQuery('#cfsFormSubmitToShellEx').find('input,textarea,selectbox').attr('disabled', 'disabled');
108
  g_cfsFormsSubmit.init();
109
+ if(typeof(cfsForm) !== 'undefined'
110
+ && cfsForm.params
111
+ && cfsForm.params.submit
112
  && cfsForm.params.submit.length
113
  ) {
114
  var $shellClone = jQuery('#cfsFormSubmitToShellEx');
115
+
116
  for(var i = 0; i < cfsForm.params.submit.length; i++) {
117
  g_cfsFormsSubmit.addSubmitOpt({
118
  data: cfsForm.params.submit[ i ]
145
  }
146
  $this.attr('href', originalHref+ '&delim='+ jQuery('#cfsContactsExportDelimTxt').val());
147
  });
148
+ });
modules/forms/js/frontend.forms.js CHANGED
@@ -47,6 +47,7 @@ cfsForm.prototype.init = function() {
47
  this._bindLove();
48
  this._checkUpdateRecaptcha();
49
  this._bindFieldsMatchValidation();
 
50
  this._bindSubmit();
51
  // Check cached pages nonce updates
52
  this._checkNonceUpdate();
@@ -300,6 +301,17 @@ cfsForm.prototype._bindSubmit = function() {
300
  return false;
301
  }).addClass('cfsSubmitBinded');
302
  };
 
 
 
 
 
 
 
 
 
 
 
303
  cfsForm.prototype._setActionDone = function( action, onlyClientSide ) {
304
  var actionsKey = 'cfs_actions_'+ this._data.id
305
  , actions = getCookieCfs( actionsKey )
@@ -426,7 +438,7 @@ function cfsCheckInitForms(selector) {
426
  formData = JSON.parse(formData);
427
  if(formData) {
428
  newFormsData.push( formData );
429
- g_cfsForms.add( formData );
430
  }
431
  }
432
  });
47
  this._bindLove();
48
  this._checkUpdateRecaptcha();
49
  this._bindFieldsMatchValidation();
50
+ this._bindReset();
51
  this._bindSubmit();
52
  // Check cached pages nonce updates
53
  this._checkNonceUpdate();
301
  return false;
302
  }).addClass('cfsSubmitBinded');
303
  };
304
+ cfsForm.prototype._bindReset = function() {
305
+ var self = this;
306
+ this._$.find('.csfForm input[type="reset"]').on('click', function(){
307
+ var ratingWrap = self._$.find('.csfForm .cfsField_rating');
308
+
309
+ if(ratingWrap.length) {
310
+ ratingWrap.find('.cfsRateBtn').removeClass('active');
311
+ ratingWrap.find('input[type="hidden"]').val('');
312
+ }
313
+ });
314
+ };
315
  cfsForm.prototype._setActionDone = function( action, onlyClientSide ) {
316
  var actionsKey = 'cfs_actions_'+ this._data.id
317
  , actions = getCookieCfs( actionsKey )
438
  formData = JSON.parse(formData);
439
  if(formData) {
440
  newFormsData.push( formData );
441
+ //g_cfsForms.add( formData );
442
  }
443
  }
444
  });
modules/forms/mod.php CHANGED
@@ -10,6 +10,20 @@ class formsCfs extends moduleCfs {
10
  // Add to admin bar new item
11
  add_action('admin_bar_menu', array($this, 'addAdminBarNewItem'), 300);
12
  add_action('wp_loaded', array($this, 'checkRemoveExpiredContacts'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  }
14
  public function addAdminTab($tabs) {
15
  $tabs[ $this->getCode(). '_add_new' ] = array(
@@ -136,7 +150,7 @@ class formsCfs extends moduleCfs {
136
  return $this->getView()->showForm( $params );
137
  }
138
  }
139
- public function getAssetsforPrevStr() {
140
  $frontendStyles = $this->getView()->getFrontendStyles();
141
  $stylesStr = '';
142
  foreach($frontendStyles as $sKey => $sUrl) {
@@ -152,6 +166,7 @@ class formsCfs extends moduleCfs {
152
  opacity: 0 !important;
153
  }
154
  </style>';
 
155
  return $stylesStr;
156
  }
157
  public function showFormSubmittedData() {
10
  // Add to admin bar new item
11
  add_action('admin_bar_menu', array($this, 'addAdminBarNewItem'), 300);
12
  add_action('wp_loaded', array($this, 'checkRemoveExpiredContacts'));
13
+ dispatcherCfs::addFilter('formCss', array($this, 'addFormCss'), 10, 2);
14
+ dispatcherCfs::addFilter('formsChangeTpl', array($this, 'formsChangeTpl'), 10, 2);
15
+ }
16
+ public function addFormCss($css, $form) {
17
+ $css = str_replace('input[type="submit"]', 'input[type="submit"]:not([type="checkbox"]):not([type="radio"])', $css);
18
+ $css = str_replace('input[type="reset"]', 'input[type="reset"]:not([type="checkbox"]):not([type="radio"])', $css);
19
+ return $css;
20
+ }
21
+ public function formsChangeTpl($newTpl, $currentForm) {
22
+ if($newTpl['unique_id'] == 'uwi23o') {
23
+ $newTpl['css'] .= '
24
+ #[SHELL_ID] .cfsFileList { color: {{adjust_brightness("[bg_color_1]", 109)}}; }';
25
+ }
26
+ return $newTpl;
27
  }
28
  public function addAdminTab($tabs) {
29
  $tabs[ $this->getCode(). '_add_new' ] = array(
150
  return $this->getView()->showForm( $params );
151
  }
152
  }
153
+ public function getAssetsforPrevStr($form) {
154
  $frontendStyles = $this->getView()->getFrontendStyles();
155
  $stylesStr = '';
156
  foreach($frontendStyles as $sKey => $sUrl) {
166
  opacity: 0 !important;
167
  }
168
  </style>';
169
+ $stylesStr = dispatcherCfs::applyFilters('assetsForPrevStr', $stylesStr, $form);
170
  return $stylesStr;
171
  }
172
  public function showFormSubmittedData() {
modules/forms/models/forms.php CHANGED
@@ -3,13 +3,16 @@ class formsModelCfs extends modelCfs {
3
  private $_linksReplacement = array();
4
  private $_lastForm = null;
5
  private $_lastSaveContactId = 0;
6
-
7
  public function __construct() {
8
  $this->_setTbl('forms');
9
  }
10
  public function getLastForm() {
11
  return $this->_lastForm;
12
  }
 
 
 
13
  public function contact( $d ) {
14
  $id = isset($d['id']) ? (int) $d['id'] : false;
15
  if($id) {
@@ -18,7 +21,7 @@ class formsModelCfs extends modelCfs {
18
  if($form) {
19
  if($this->validateFields($d['fields'], $form, $d)) {
20
  // If subscribe feature is available - it should go before sending any contact data
21
- if(isset($form['params']['tpl']['enb_subscribe'])
22
  && $form['params']['tpl']['enb_subscribe']
23
  && frameCfs::_()->getModule('subscribe')
24
  ) {
@@ -29,7 +32,7 @@ class formsModelCfs extends modelCfs {
29
  }
30
  }
31
  // Publish here
32
- if(isset($form['params']['tpl']['enb_publish'])
33
  && $form['params']['tpl']['enb_publish']
34
  && frameCfs::_()->getModule('publish')
35
  ) {
@@ -41,7 +44,7 @@ class formsModelCfs extends modelCfs {
41
  }
42
  if($this->sendContact($d['fields'], $form)) {
43
  // Registration
44
- if(isset($form['params']['tpl']['enb_reg'])
45
  && $form['params']['tpl']['enb_reg']
46
  && frameCfs::_()->getModule('publish')
47
  ) {
@@ -131,13 +134,14 @@ class formsModelCfs extends modelCfs {
131
  $error = false;
132
  foreach($form['params']['fields'] as $f) {
133
  $errorMsg = '';
134
- $k = $f['name'];
 
135
  $htmlType = $f['html'];
136
  $isDate = in_array( $htmlType, array('date', 'month', 'week', 'time') );
137
  $value = isset($fieldsData[ $k ]) ? $fieldsData[ $k ] : false;
138
- $label = isset($f['label']) && !empty($f['label']) ? $f['label'] : $f['placeholder'];
139
- $formInvalidError = isset($form['params']['tpl']['field_error_invalid']) && !empty($form['params']['tpl']['field_error_invalid'])
140
- ? trim($form['params']['tpl']['field_error_invalid'])
141
  : false;
142
  if($value) {
143
  $value = is_array($value) ? array_map('trim', $value) : trim( $value );
@@ -175,15 +179,15 @@ class formsModelCfs extends modelCfs {
175
  $errorMsg = sprintf(__('Minimum value for %s is %d', CFS_LANG_CODE), '%s', $minSize);
176
  }
177
  }
178
- if(!$isDate
179
- && isset($f['max_size'])
180
- && !empty($f['max_size'])
181
  && ($maxSize = (int) $f['max_size'])
182
  && !in_array($htmlType, array('file')) // We already checked files size when we uploaded it - in add_fieldsModel::uploadFile()
183
  ) {
184
  $isNumber = $htmlType == 'number' && $value && is_numeric($value);
185
  if(($isNumber && $value > $maxSize)
186
- || (!$isNumber && $value && strlen($value) > $maxSize)
187
  ) {
188
  $errorMsg = sprintf(__('Maximum value for %s is %d', CFS_LANG_CODE), '%s', $maxSize);
189
  }
@@ -219,7 +223,7 @@ class formsModelCfs extends modelCfs {
219
  if($fieldTypeData && isset($fieldTypeData['pro'])) {
220
  $addFieldsMod = frameCfs::_()->getModule('add_fields');
221
  if($addFieldsMod) {
222
- $invalidError = $addFieldsMod->validateField($htmlType, $f, $fieldsData[ $k ], $form);
223
  if($invalidError) {
224
  $errors[ $k ] = $invalidError;
225
  }
@@ -245,7 +249,8 @@ class formsModelCfs extends modelCfs {
245
  'siteurl' => $siteUrl,
246
  );
247
  foreach($form['params']['fields'] as $f) {
248
- $sendName = $f['name'];
 
249
  if(isset($sendFormData[ $sendName ])) {
250
  $variables[ 'user_'. $sendName ] = $sendFormData[ $sendName ];
251
  }
@@ -264,7 +269,8 @@ class formsModelCfs extends modelCfs {
264
  'siteurl' => $siteUrl,
265
  );
266
  foreach($form['params']['fields'] as $f) {
267
- $sendName = $f['name'];
 
268
  if(isset($sendFormData[ $sendName ])) {
269
  switch($f['html']) {
270
  case 'selectbox':
@@ -298,7 +304,10 @@ class formsModelCfs extends modelCfs {
298
  $to = utilsCfs::replaceVariables($to, $variablesWithSelectVals);
299
  $subject = utilsCfs::replaceVariables($s['subject'], $variables);
300
  // Let it be only for Message field
301
- $msg = nl2br(utilsCfs::replaceVariables($msg, array_merge($variables, array('form_data' => $sendFormDataStr))));
 
 
 
302
  if(!frameCfs::_()->getModule('options')->get('disable_email_html_type')) {
303
  $lang = function_exists('get_locale') ? get_locale() : false;
304
  $isRtl = function_exists('is_rtl') ? is_rtl() : false;
@@ -327,16 +336,16 @@ class formsModelCfs extends modelCfs {
327
  $res = array();
328
  foreach($form['params']['fields'] as $f) {
329
  $htmlType = $f['html'];
330
- if(in_array($htmlType, array('submit', 'reset', 'button', 'recaptcha'))) continue;
331
- $sendName = $f['name'];
332
  if(empty($sendName)) continue;
333
  $sendValue = '';
334
- $value = isset($fieldsData[$f['name']]) ? $fieldsData[$f['name']] : false;
335
  $fieldTypeData = $this->getModule()->getFieldTypeByCode( $htmlType );
336
  if($fieldTypeData && isset($fieldTypeData['pro'])) {
337
  $addFieldsMod = frameCfs::_()->getModule('add_fields');
338
  if(!$addFieldsMod) continue;
339
-
340
  $sendValue = $addFieldsMod->generateFormData($htmlType, $f, $value, $form, $fieldsData);
341
  //var_dump($f, $sendValue);
342
  } elseif(in_array($htmlType, array('checkbox', 'radiobutton'))) {
@@ -408,7 +417,8 @@ class formsModelCfs extends modelCfs {
408
  }
409
  }
410
  foreach($form['params']['fields'] as $f) {
411
- $sendName = $f['name'];
 
412
  if(isset($sendFormData[ $sendName ])) {
413
  $sendLabel = empty($f['label']) ? $f['placeholder'] : $f['label'];
414
  $fieldRow = '';
@@ -424,7 +434,8 @@ class formsModelCfs extends modelCfs {
424
  $rows = array();
425
  foreach($form['params']['fields'] as $f) {
426
  $added = false;
427
- $name = $f['name'];
 
428
  if(isset( $resNamed[ $name ] )) {
429
  $bsClassId = isset($f['bs_class_id']) && !empty($f['bs_class_id']) ? (int) $f['bs_class_id'] : 12;
430
  if($bsClassId < 12) { // Try to add it to prev. row
@@ -468,7 +479,7 @@ class formsModelCfs extends modelCfs {
468
  protected function _prepareParamsAfterDb($params) {
469
  if(is_array($params)) {
470
  foreach($params as $k => $v) {
471
- $params[ $k ] = $this->_prepareParamsAfterDb( $v );
472
  }
473
  } else
474
  $params = stripslashes ($params);
@@ -527,8 +538,8 @@ class formsModelCfs extends modelCfs {
527
  $row['params']['tpl']['test_email'] = utilsCfs::toAdminEmail ($row['params']['tpl']['test_email']);
528
  if(isset($row['params']['submit']) && !empty($row['params']['submit'])) {
529
  foreach($row['params']['submit'] as $i => $sub) {
530
- $row['params']['submit'][ $i ]['to'] = utilsCfs::toAdminEmail ($row['params']['submit'][ $i ]['to']);
531
- $row['params']['submit'][ $i ]['from'] = utilsCfs::toAdminEmail ($row['params']['submit'][ $i ]['from']);
532
  }
533
  }
534
  }
@@ -593,7 +604,7 @@ class formsModelCfs extends modelCfs {
593
  public function clear() {
594
  if(frameCfs::_()->getTable( $this->_tbl )->delete(array('additionalCondition' => 'original_id != 0'))) {
595
  return true;
596
- } else
597
  $this->pushError (__('Database error detected', CFS_LANG_CODE));
598
  return false;
599
  }
@@ -656,9 +667,9 @@ class formsModelCfs extends modelCfs {
656
  'params.tpl.enb_subscribe');
657
  foreach($diffFromOriginal as $k) {
658
  if(in_array($k, $keysForMove)
659
- || strpos($k, 'params.tpl.enb_sm_') === 0
660
- || strpos($k, 'params.tpl.sm_') === 0
661
- || strpos($k, 'params.tpl.enb_sub_') === 0
662
  || strpos($k, 'params.tpl.sub_') === 0
663
  || strpos($k, 'params.tpl.enb_txt_') === 0
664
  || strpos($k, 'params.tpl.txt_') === 0
@@ -682,7 +693,7 @@ class formsModelCfs extends modelCfs {
682
  return false;
683
  }
684
  private function _assignKeyArr($from, &$to, $key) {
685
- $subKeys = explode('.', $key);
686
  // Yeah, hardcode, I know.............
687
  switch(count($subKeys)) {
688
  case 4:
@@ -732,7 +743,7 @@ class formsModelCfs extends modelCfs {
732
  $checkAsArray = in_array( $fullKey, $checkAsArrayKeys );
733
  }
734
  if(is_array($forms) && !$checkAsArray) {
735
- $excludeKey = array('id', 'label', 'active', 'original_id', 'img_preview',
736
  'date_created', 'view_id', 'view_html_id', 'actions', 'unique_views', 'views', 'img_preview_url', 'show_on', 'show_to', 'show_pages');
737
  if(!empty($key))
738
  $keysImplode[] = $key;
@@ -831,23 +842,53 @@ class formsModelCfs extends modelCfs {
831
  */
832
  public function getBgNames() {
833
  return array(
834
- 'wefj2' => array(
835
  __('Form background', CFS_LANG_CODE),
836
- __('Inputs background', CFS_LANG_CODE),
837
- __('Submit buttons background', CFS_LANG_CODE),
838
- __('Reset buttons background', CFS_LANG_CODE),
839
  ),
840
- 'foe42k' => array(
841
  __('Form background', CFS_LANG_CODE),
842
- __('Inputs background', CFS_LANG_CODE),
843
- __('Submit buttons background', CFS_LANG_CODE),
844
- __('Reset buttons background', CFS_LANG_CODE),
 
 
 
 
845
  ),
846
- 'uwi23o' => array(
847
  __('Form background', CFS_LANG_CODE),
848
  __('Inputs and Buttons background', CFS_LANG_CODE),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
  ),
850
- 'ajl17d' => array(
851
  __('Form background', CFS_LANG_CODE),
852
  __('Inputs background', CFS_LANG_CODE),
853
  __('Submit button background', CFS_LANG_CODE),
@@ -857,7 +898,7 @@ class formsModelCfs extends modelCfs {
857
  __('Image 1', CFS_LANG_CODE),
858
  __('Image 2', CFS_LANG_CODE),
859
  ),
860
- 'cbrl7b' => array(
861
  __('Form background', CFS_LANG_CODE),
862
  __('Inputs background', CFS_LANG_CODE),
863
  __('Submit button background', CFS_LANG_CODE),
3
  private $_linksReplacement = array();
4
  private $_lastForm = null;
5
  private $_lastSaveContactId = 0;
6
+
7
  public function __construct() {
8
  $this->_setTbl('forms');
9
  }
10
  public function getLastForm() {
11
  return $this->_lastForm;
12
  }
13
+ public function getAllForms() {
14
+ return $this->addWhere('original_id != 0 AND ab_id = 0')->getFromTbl();
15
+ }
16
  public function contact( $d ) {
17
  $id = isset($d['id']) ? (int) $d['id'] : false;
18
  if($id) {
21
  if($form) {
22
  if($this->validateFields($d['fields'], $form, $d)) {
23
  // If subscribe feature is available - it should go before sending any contact data
24
+ if(isset($form['params']['tpl']['enb_subscribe'])
25
  && $form['params']['tpl']['enb_subscribe']
26
  && frameCfs::_()->getModule('subscribe')
27
  ) {
32
  }
33
  }
34
  // Publish here
35
+ if(isset($form['params']['tpl']['enb_publish'])
36
  && $form['params']['tpl']['enb_publish']
37
  && frameCfs::_()->getModule('publish')
38
  ) {
44
  }
45
  if($this->sendContact($d['fields'], $form)) {
46
  // Registration
47
+ if(isset($form['params']['tpl']['enb_reg'])
48
  && $form['params']['tpl']['enb_reg']
49
  && frameCfs::_()->getModule('publish')
50
  ) {
134
  $error = false;
135
  foreach($form['params']['fields'] as $f) {
136
  $errorMsg = '';
137
+ $k = isset($f['name']) ? $f['name'] : '';
138
+ if(empty($k)) continue;
139
  $htmlType = $f['html'];
140
  $isDate = in_array( $htmlType, array('date', 'month', 'week', 'time') );
141
  $value = isset($fieldsData[ $k ]) ? $fieldsData[ $k ] : false;
142
+ $label = isset($f['label']) && !empty($f['label']) ? $f['label'] : (isset($f['placeholder']) && !empty($f['placeholder']) ? $f['placeholder'] : '');
143
+ $formInvalidError = isset($form['params']['tpl']['field_error_invalid']) && !empty($form['params']['tpl']['field_error_invalid'])
144
+ ? trim($form['params']['tpl']['field_error_invalid'])
145
  : false;
146
  if($value) {
147
  $value = is_array($value) ? array_map('trim', $value) : trim( $value );
179
  $errorMsg = sprintf(__('Minimum value for %s is %d', CFS_LANG_CODE), '%s', $minSize);
180
  }
181
  }
182
+ if(!$isDate
183
+ && isset($f['max_size'])
184
+ && !empty($f['max_size'])
185
  && ($maxSize = (int) $f['max_size'])
186
  && !in_array($htmlType, array('file')) // We already checked files size when we uploaded it - in add_fieldsModel::uploadFile()
187
  ) {
188
  $isNumber = $htmlType == 'number' && $value && is_numeric($value);
189
  if(($isNumber && $value > $maxSize)
190
+ || (!$isNumber && $value && is_string($value) && strlen($value) > $maxSize)
191
  ) {
192
  $errorMsg = sprintf(__('Maximum value for %s is %d', CFS_LANG_CODE), '%s', $maxSize);
193
  }
223
  if($fieldTypeData && isset($fieldTypeData['pro'])) {
224
  $addFieldsMod = frameCfs::_()->getModule('add_fields');
225
  if($addFieldsMod) {
226
+ $invalidError = $addFieldsMod->validateField($htmlType, $f, $value, $form);
227
  if($invalidError) {
228
  $errors[ $k ] = $invalidError;
229
  }
249
  'siteurl' => $siteUrl,
250
  );
251
  foreach($form['params']['fields'] as $f) {
252
+ $sendName = isset($f['name']) ? $f['name'] : '';
253
+ if(empty($sendName)) continue;
254
  if(isset($sendFormData[ $sendName ])) {
255
  $variables[ 'user_'. $sendName ] = $sendFormData[ $sendName ];
256
  }
269
  'siteurl' => $siteUrl,
270
  );
271
  foreach($form['params']['fields'] as $f) {
272
+ $sendName = isset($f['name']) ? $f['name'] : '';
273
+ if(empty($sendName)) continue;
274
  if(isset($sendFormData[ $sendName ])) {
275
  switch($f['html']) {
276
  case 'selectbox':
304
  $to = utilsCfs::replaceVariables($to, $variablesWithSelectVals);
305
  $subject = utilsCfs::replaceVariables($s['subject'], $variables);
306
  // Let it be only for Message field
307
+ //$msg = nl2br(utilsCfs::replaceVariables($msg, array_merge($variables, array('form_data' => $sendFormDataStr))));
308
+ $sendFormDataStr = nl2br($sendFormDataStr);
309
+ $msg = utilsCfs::replaceVariables($msg, array_merge($variables, array('form_data' => $sendFormDataStr)));
310
+ $msg = str_replace(array('</p><br />', '</p><br/>', '</p><br>'), '</p>', $msg);
311
  if(!frameCfs::_()->getModule('options')->get('disable_email_html_type')) {
312
  $lang = function_exists('get_locale') ? get_locale() : false;
313
  $isRtl = function_exists('is_rtl') ? is_rtl() : false;
336
  $res = array();
337
  foreach($form['params']['fields'] as $f) {
338
  $htmlType = $f['html'];
339
+ if(in_array($htmlType, array('submit', 'reset', 'button', 'recaptcha', 'htmldelim'))) continue;
340
+ $sendName = isset($f['name']) ? $f['name'] : '';
341
  if(empty($sendName)) continue;
342
  $sendValue = '';
343
+ $value = isset($fieldsData[$sendName]) ? $fieldsData[$sendName] : false;
344
  $fieldTypeData = $this->getModule()->getFieldTypeByCode( $htmlType );
345
  if($fieldTypeData && isset($fieldTypeData['pro'])) {
346
  $addFieldsMod = frameCfs::_()->getModule('add_fields');
347
  if(!$addFieldsMod) continue;
348
+
349
  $sendValue = $addFieldsMod->generateFormData($htmlType, $f, $value, $form, $fieldsData);
350
  //var_dump($f, $sendValue);
351
  } elseif(in_array($htmlType, array('checkbox', 'radiobutton'))) {
417
  }
418
  }
419
  foreach($form['params']['fields'] as $f) {
420
+ $sendName = isset($f['name']) ? $f['name'] : '';
421
+ if(empty($sendName)) continue;
422
  if(isset($sendFormData[ $sendName ])) {
423
  $sendLabel = empty($f['label']) ? $f['placeholder'] : $f['label'];
424
  $fieldRow = '';
434
  $rows = array();
435
  foreach($form['params']['fields'] as $f) {
436
  $added = false;
437
+ $name = isset($f['name']) ? $f['name'] : '';
438
+ if(empty($name)) continue;
439
  if(isset( $resNamed[ $name ] )) {
440
  $bsClassId = isset($f['bs_class_id']) && !empty($f['bs_class_id']) ? (int) $f['bs_class_id'] : 12;
441
  if($bsClassId < 12) { // Try to add it to prev. row
479
  protected function _prepareParamsAfterDb($params) {
480
  if(is_array($params)) {
481
  foreach($params as $k => $v) {
482
+ $params[ $k ] = $this->_prepareParamsAfterDb( $v );
483
  }
484
  } else
485
  $params = stripslashes ($params);
538
  $row['params']['tpl']['test_email'] = utilsCfs::toAdminEmail ($row['params']['tpl']['test_email']);
539
  if(isset($row['params']['submit']) && !empty($row['params']['submit'])) {
540
  foreach($row['params']['submit'] as $i => $sub) {
541
+ $row['params']['submit'][ $i ]['to'] = isset($row['params']['submit'][ $i ]['to']) ? utilsCfs::toAdminEmail ($row['params']['submit'][ $i ]['to']) : '';
542
+ $row['params']['submit'][ $i ]['from'] = isset($row['params']['submit'][ $i ]['from']) ? utilsCfs::toAdminEmail ($row['params']['submit'][ $i ]['from']) : '';
543
  }
544
  }
545
  }
604
  public function clear() {
605
  if(frameCfs::_()->getTable( $this->_tbl )->delete(array('additionalCondition' => 'original_id != 0'))) {
606
  return true;
607
+ } else
608
  $this->pushError (__('Database error detected', CFS_LANG_CODE));
609
  return false;
610
  }
667
  'params.tpl.enb_subscribe');
668
  foreach($diffFromOriginal as $k) {
669
  if(in_array($k, $keysForMove)
670
+ || strpos($k, 'params.tpl.enb_sm_') === 0
671
+ || strpos($k, 'params.tpl.sm_') === 0
672
+ || strpos($k, 'params.tpl.enb_sub_') === 0
673
  || strpos($k, 'params.tpl.sub_') === 0
674
  || strpos($k, 'params.tpl.enb_txt_') === 0
675
  || strpos($k, 'params.tpl.txt_') === 0
693
  return false;
694
  }
695
  private function _assignKeyArr($from, &$to, $key) {
696
+ $subKeys = explode('.', $key);
697
  // Yeah, hardcode, I know.............
698
  switch(count($subKeys)) {
699
  case 4:
743
  $checkAsArray = in_array( $fullKey, $checkAsArrayKeys );
744
  }
745
  if(is_array($forms) && !$checkAsArray) {
746
+ $excludeKey = array('id', 'label', 'active', 'original_id', 'img_preview',
747
  'date_created', 'view_id', 'view_html_id', 'actions', 'unique_views', 'views', 'img_preview_url', 'show_on', 'show_to', 'show_pages');
748
  if(!empty($key))
749
  $keysImplode[] = $key;
842
  */
843
  public function getBgNames() {
844
  return array(
845
+ 'wefj2' => array( // Base Contact
846
  __('Form background', CFS_LANG_CODE),
847
+ __('Inputs and Buttons background', CFS_LANG_CODE),
848
+ __('Submit buttons style', CFS_LANG_CODE),
849
+ __('Reset buttons style', CFS_LANG_CODE),
850
  ),
851
+ 'foe42k' => array( // Neon
852
  __('Form background', CFS_LANG_CODE),
853
+ __('Inputs and Buttons shadow', CFS_LANG_CODE),
854
+ __('Submit buttons style', CFS_LANG_CODE),
855
+ __('Reset buttons style', CFS_LANG_CODE),
856
+ ),
857
+ 'uwi23o' => array( // Intransigent
858
+ __('Form background', CFS_LANG_CODE),
859
+ __('Inputs and Buttons background', CFS_LANG_CODE),
860
  ),
861
+ 'vbn23a' => array( // Simple White
862
  __('Form background', CFS_LANG_CODE),
863
  __('Inputs and Buttons background', CFS_LANG_CODE),
864
+ __('Submit buttons style', CFS_LANG_CODE),
865
+ __('Reset buttons style', CFS_LANG_CODE),
866
+ ),
867
+ 'bso15i' => array( // Time for tea
868
+ __('Form background', CFS_LANG_CODE),
869
+ __('Form background blackout', CFS_LANG_CODE),
870
+ __('Submit buttons style', CFS_LANG_CODE),
871
+ __('Reset buttons style', CFS_LANG_CODE),
872
+ ),
873
+ 'bjl17b' =>array( // Opacity Grey
874
+ __('Form background', CFS_LANG_CODE),
875
+ __('Inputs and Buttons background', CFS_LANG_CODE),
876
+ __('Submit buttons style', CFS_LANG_CODE),
877
+ __('Reset buttons style', CFS_LANG_CODE),
878
+ ),
879
+ 'bjl17a' => array( // Spearmint
880
+ __('Form background', CFS_LANG_CODE),
881
+ __('Inputs background', CFS_LANG_CODE),
882
+ __('Submit buttons style', CFS_LANG_CODE),
883
+ __('Reset buttons style', CFS_LANG_CODE),
884
+ ),
885
+ 'bjl17c' => array( // Support Service
886
+ __('Inputs background', CFS_LANG_CODE),
887
+ __('Text color', CFS_LANG_CODE),
888
+ __('Submit buttons style', CFS_LANG_CODE),
889
+ __('Form background', CFS_LANG_CODE),
890
  ),
891
+ 'ajl17d' => array( // Ho Ho Ho
892
  __('Form background', CFS_LANG_CODE),
893
  __('Inputs background', CFS_LANG_CODE),
894
  __('Submit button background', CFS_LANG_CODE),
898
  __('Image 1', CFS_LANG_CODE),
899
  __('Image 2', CFS_LANG_CODE),
900
  ),
901
+ 'cbrl7b' => array( // Merry Christmas
902
  __('Form background', CFS_LANG_CODE),
903
  __('Inputs background', CFS_LANG_CODE),
904
  __('Submit button background', CFS_LANG_CODE),
modules/forms/views/forms.php CHANGED
@@ -301,7 +301,15 @@ class formsViewCfs extends viewCfs {
301
  $form = $this->getModel()->getById( $id );
302
  if(!empty($form)) {
303
  dispatcherCfs::doAction('formBeforeShow', $form);
304
- $form['connect_hash'] = md5(date('m-d-Y'). $id. NONCE_KEY);;
 
 
 
 
 
 
 
 
305
  $frontendStyles = $this->getFrontendStyles();
306
  foreach($frontendStyles as $sKey => $sUrl) {
307
  frameCfs::_()->addStyle($sKey, $sUrl);
@@ -476,7 +484,7 @@ class formsViewCfs extends viewCfs {
476
  $htmlDelims = $googeMaps = 0;
477
  foreach($form['params']['fields'] as $f) {
478
  $htmlType = $f['html'];
479
- $name = trim($f['name']);
480
  $isHtmlDelim = $htmlType == 'htmldelim';
481
  $isGoogleMap = $htmlType == 'googlemap';
482
  $isHidden = $htmlType == 'hidden';
@@ -521,10 +529,10 @@ class formsViewCfs extends viewCfs {
521
  if($isButton) {
522
  $f['value'] = $label; // To not confuse user
523
  }
524
- if(isset($f['value']) && !empty($f['value'])) {
525
- if(isset($f['value_preset'])
526
- && $f['value_preset']
527
- && $addFieldsMod
528
  && method_exists($addFieldsMod, 'generateValuePreset')
529
  ) {
530
  $f['value'] = $addFieldsMod->generateValuePreset( $f['value_preset'] );
301
  $form = $this->getModel()->getById( $id );
302
  if(!empty($form)) {
303
  dispatcherCfs::doAction('formBeforeShow', $form);
304
+ $form['connect_hash'] = md5(date('m-d-Y'). $id. NONCE_KEY);
305
+ if(!empty($_GET['cfsPreFill']) && !empty($form['params']['fields'])) {
306
+ foreach($form['params']['fields'] as &$field) {
307
+ $fieldValue = isset($_GET['cfs_'.$field['name']]) ? $_GET['cfs_'.$field['name']] : (isset($_GET[$field['name']]) ? $_GET[$field['name']] : false);
308
+ if(isset($field['value']) && isset($field['name']) && $fieldValue !== false) {
309
+ $field['value'] = $fieldValue;
310
+ }
311
+ }
312
+ }
313
  $frontendStyles = $this->getFrontendStyles();
314
  foreach($frontendStyles as $sKey => $sUrl) {
315
  frameCfs::_()->addStyle($sKey, $sUrl);
484
  $htmlDelims = $googeMaps = 0;
485
  foreach($form['params']['fields'] as $f) {
486
  $htmlType = $f['html'];
487
+ $name = isset($f['name']) ? trim($f['name']) : '';
488
  $isHtmlDelim = $htmlType == 'htmldelim';
489
  $isGoogleMap = $htmlType == 'googlemap';
490
  $isHidden = $htmlType == 'hidden';
529
  if($isButton) {
530
  $f['value'] = $label; // To not confuse user
531
  }
532
+ if(isset($f['value']) && (!empty($f['value']) || strlen($f['value']) > 0)) {
533
+ if(isset($f['value_preset'])
534
+ && $f['value_preset']
535
+ && $addFieldsMod
536
  && method_exists($addFieldsMod, 'generateValuePreset')
537
  ) {
538
  $f['value'] = $addFieldsMod->generateValuePreset( $f['value_preset'] );
modules/forms/views/tpl/formsEditAdminPublishContentOpts.php CHANGED
@@ -8,18 +8,25 @@
8
  <?php }?>
9
  <div class="cfsFormOptRow">
10
  <label>
 
11
  <?php echo htmlCfs::checkbox('params[tpl][enb_publish]', array(
12
  'checked' => htmlCfs::checkedOpt($this->form['params']['tpl'], 'enb_publish'),
13
  'attrs' => 'data-switch-block="postPublishContentShell" class="cfsProOpt"',
14
  ))?>
 
15
  <?php _e('Enable Publish Content', CFS_LANG_CODE)?>
 
16
  </label>
17
  <?php if(!$this->isPro) { ?>
18
  <span class="cfsProOptMiniLabel">
19
  <a href="<?php echo $proLink;?>" target="_blank"><?php _e('PRO', CFS_LANG_CODE)?></a>
20
  </span>
 
 
21
  <?php }?>
22
  </div>
 
 
23
  <div data-block-to-switch="postPublishContentShell">
24
  <table class="form-table" style="width: 100%">
25
  <tr>
@@ -80,6 +87,8 @@
80
  ))?>
81
  </td>
82
  </tr>
83
-
84
  </table>
 
85
  </div>
 
8
  <?php }?>
9
  <div class="cfsFormOptRow">
10
  <label>
11
+ <?php if($this->isPro) { ?>
12
  <?php echo htmlCfs::checkbox('params[tpl][enb_publish]', array(
13
  'checked' => htmlCfs::checkedOpt($this->form['params']['tpl'], 'enb_publish'),
14
  'attrs' => 'data-switch-block="postPublishContentShell" class="cfsProOpt"',
15
  ))?>
16
+ <?php }?>
17
  <?php _e('Enable Publish Content', CFS_LANG_CODE)?>
18
+ <i class="fa fa-question supsystic-tooltip" title="<?php echo esc_html(sprintf(__('Publish Content feature allows your site visitors to post content through your Contact Form. <a href="%s" target="_blank">https://supsystic.com/documentation/contact-form-publish-content/</a>', CFS_LANG_CODE), 'https://supsystic.com/documentation/contact-form-publish-content/'))?>"></i>
19
  </label>
20
  <?php if(!$this->isPro) { ?>
21
  <span class="cfsProOptMiniLabel">
22
  <a href="<?php echo $proLink;?>" target="_blank"><?php _e('PRO', CFS_LANG_CODE)?></a>
23
  </span>
24
+ <br>
25
+ <a style="width:100%; max-width:800px;" href="<?php echo $proLink?>"><img target="_blank" src="<?php echo frameCfs::_()->getModule('templates')->getCdnUrl() ?>_assets/contact-form/img/supsystic_promo/publish.gif"></a>
26
  <?php }?>
27
  </div>
28
+
29
+ <?php if($this->isPro) { ?>
30
  <div data-block-to-switch="postPublishContentShell">
31
  <table class="form-table" style="width: 100%">
32
  <tr>
87
  ))?>
88
  </td>
89
  </tr>
90
+
91
  </table>
92
+
93
  </div>
94
+ <?php } ?>
modules/forms/views/tpl/formsEditAdminRegistrationOpts.php CHANGED
@@ -8,18 +8,25 @@
8
  <?php }?>
9
  <div class="cfsFormOptRow">
10
  <label>
 
11
  <?php echo htmlCfs::checkbox('params[tpl][enb_reg]', array(
12
  'checked' => htmlCfs::checkedOpt($this->form['params']['tpl'], 'enb_reg'),
13
  'attrs' => 'data-switch-block="regShell" class="cfsProOpt"',
14
  ))?>
 
15
  <?php _e('Enable Registration from Form', CFS_LANG_CODE)?>
 
 
16
  </label>
17
  <?php if(!$this->isPro) { ?>
18
  <span class="cfsProOptMiniLabel">
19
  <a href="<?php echo $proLink;?>" target="_blank"><?php _e('PRO', CFS_LANG_CODE)?></a>
20
  </span>
 
 
21
  <?php }?>
22
  </div>
 
23
  <div data-block-to-switch="regShell">
24
  <table class="form-table" style="width: 100%">
25
  <tr>
@@ -59,6 +66,8 @@
59
  ))?>
60
  </td>
61
  </tr>
62
-
63
  </table>
 
64
  </div>
 
8
  <?php }?>
9
  <div class="cfsFormOptRow">
10
  <label>
11
+ <?php if($this->isPro) { ?>
12
  <?php echo htmlCfs::checkbox('params[tpl][enb_reg]', array(
13
  'checked' => htmlCfs::checkedOpt($this->form['params']['tpl'], 'enb_reg'),
14
  'attrs' => 'data-switch-block="regShell" class="cfsProOpt"',
15
  ))?>
16
+ <?php }?>
17
  <?php _e('Enable Registration from Form', CFS_LANG_CODE)?>
18
+ <i class="fa fa-question supsystic-tooltip" title="<?php echo esc_html(sprintf(__('Registration form option allows you to create user registration forms and combine it with any kind of content.
19
+ You can add any field to get info and allow users to select username, password, fill out their bio, add custom user information to build a nice user profile. Also, you can select the role of the new user and set registration without confirmation. <a href="%s" target="_blank">https://supsystic.com/documentation/contact-form-registration/</a>', CFS_LANG_CODE), ' https://supsystic.com/documentation/contact-form-registration/'))?>"></i>
20
  </label>
21
  <?php if(!$this->isPro) { ?>
22
  <span class="cfsProOptMiniLabel">
23
  <a href="<?php echo $proLink;?>" target="_blank"><?php _e('PRO', CFS_LANG_CODE)?></a>
24
  </span>
25
+ <br>
26
+ <a style="width:100%; max-width:800px;" href="<?php echo $proLink?>"><img target="_blank" src="<?php echo frameCfs::_()->getModule('templates')->getCdnUrl().'_assets/contact-form/img/supsystic_promo/registration.gif' ?>"></a>
27
  <?php }?>
28
  </div>
29
+ <?php if($this->isPro) { ?>
30
  <div data-block-to-switch="regShell">
31
  <table class="form-table" style="width: 100%">
32
  <tr>
66
  ))?>
67
  </td>
68
  </tr>
69
+
70
  </table>
71
+
72
  </div>
73
+ <?php }?>
modules/forms/views/tpl/formsEditFormFields.php CHANGED
@@ -494,7 +494,7 @@
494
  <tr class="cfsFieldParamRow" data-for="text,email,textarea,number,date,month,week,time,color,range,url,file,rating">
495
  <th>
496
  <?php _e('Minimum length', CFS_LANG_CODE)?>
497
- <i class="fa fa-question supsystic-tooltip" title="<?php echo esc_html(__('Possibility to bound field minimum length.', CFS_LANG_CODE))?>"></i>
498
  </th>
499
  <td>
500
  <?php echo htmlCfs::text('min_size')?>
@@ -503,7 +503,7 @@
503
  <tr class="cfsFieldParamRow" data-for="text,email,textarea,number,date,month,week,time,color,range,url,file,rating">
504
  <th>
505
  <?php _e('Maximum length', CFS_LANG_CODE)?>
506
- <i class="fa fa-question supsystic-tooltip" title="<?php echo esc_html(__('Possibility to bound field maximum length. For Files fields types - this is restriction for file size, in Mb.', CFS_LANG_CODE))?>"></i>
507
  </th>
508
  <td>
509
  <?php echo htmlCfs::text('max_size')?>
494
  <tr class="cfsFieldParamRow" data-for="text,email,textarea,number,date,month,week,time,color,range,url,file,rating">
495
  <th>
496
  <?php _e('Minimum length', CFS_LANG_CODE)?>
497
+ <i class="fa fa-question supsystic-tooltip" title="<?php echo esc_html(__('Possibility to bound minimum length for field value. For text fields - it is the text length. For Files fields types - this is restriction for file size, in Mb.', CFS_LANG_CODE))?>"></i>
498
  </th>
499
  <td>
500
  <?php echo htmlCfs::text('min_size')?>
503
  <tr class="cfsFieldParamRow" data-for="text,email,textarea,number,date,month,week,time,color,range,url,file,rating">
504
  <th>
505
  <?php _e('Maximum length', CFS_LANG_CODE)?>
506
+ <i class="fa fa-question supsystic-tooltip" title="<?php echo esc_html(__('Possibility to bound maximum length for field value. For text fields - it is the text length. For Files fields types - this is restriction for file size, in Mb.', CFS_LANG_CODE))?>"></i>
507
  </th>
508
  <td>
509
  <?php echo htmlCfs::text('max_size')?>
modules/forms/views/tpl/formsEditFormStatistics.php CHANGED
@@ -5,10 +5,10 @@
5
  <div style="float: right;">
6
  <a href="#" class="button cfsStatClearDateBtn" data-chart="cfsMainStats" style="display: none;"><?php _e('Clear selection', CFS_LANG_CODE)?></a>
7
  <?php echo htmlCfs::text('stat_from_txt', array(
8
- 'placeholder' => __('From', CFS_LANG_CODE),
9
  'attrs' => 'style="font-weight: normal;" data-chart="cfsMainStats"'))?>
10
  <?php echo htmlCfs::text('stat_to_txt', array(
11
- 'placeholder' => __('To', CFS_LANG_CODE),
12
  'attrs' => 'style="font-weight: normal;" data-chart="cfsMainStats"'))?>
13
  </div>
14
  </span>
@@ -45,13 +45,20 @@
45
  <div style="clear: both;"></div>
46
  <div id="cfsMainStats" class="cfsChartArea"></div>
47
  </div>
 
48
  <div class="cfsNoStatsMsg" data-chart="cfsMainStats">
49
  <?php _e('Total Statistics is empty for now.', CFS_LANG_CODE)?>
50
  <p class="description"><?php _e('Once your site visitors begin to use your form - all form statistics usage will be here.', CFS_LANG_CODE)?></p>
51
  </div>
 
 
52
  <?php
53
  if(isset($this->ratingStats)) {
54
  echo $this->ratingStats;
55
  } elseif(!$this->isPro) { ?>
56
- <a target="_blank" href="<?php echo $this->mainLink. '?utm_source=plugin&utm_medium=conditional_logic&utm_campaign=forms';?>"><img src="<?php echo $this->promoModPath;?>rating-stats.png" style="width: 100%; height: auto;"/></a>
57
- <?php } ?>
 
 
 
 
5
  <div style="float: right;">
6
  <a href="#" class="button cfsStatClearDateBtn" data-chart="cfsMainStats" style="display: none;"><?php _e('Clear selection', CFS_LANG_CODE)?></a>
7
  <?php echo htmlCfs::text('stat_from_txt', array(
8
+ 'placeholder' => __('From', CFS_LANG_CODE),
9
  'attrs' => 'style="font-weight: normal;" data-chart="cfsMainStats"'))?>
10
  <?php echo htmlCfs::text('stat_to_txt', array(
11
+ 'placeholder' => __('To', CFS_LANG_CODE),
12
  'attrs' => 'style="font-weight: normal;" data-chart="cfsMainStats"'))?>
13
  </div>
14
  </span>
45
  <div style="clear: both;"></div>
46
  <div id="cfsMainStats" class="cfsChartArea"></div>
47
  </div>
48
+
49
  <div class="cfsNoStatsMsg" data-chart="cfsMainStats">
50
  <?php _e('Total Statistics is empty for now.', CFS_LANG_CODE)?>
51
  <p class="description"><?php _e('Once your site visitors begin to use your form - all form statistics usage will be here.', CFS_LANG_CODE)?></p>
52
  </div>
53
+
54
+
55
  <?php
56
  if(isset($this->ratingStats)) {
57
  echo $this->ratingStats;
58
  } elseif(!$this->isPro) { ?>
59
+ <div class="cfsNoStatsMsg" data-chart="cfsMainStats">
60
+ <?php _e('Rating Statistics is empty for now.', CFS_LANG_CODE)?>
61
+ <p class="description"><?php _e('Add a Rating field into your Contact Form, and after users start to submit it - you will see stats here.', CFS_LANG_CODE)?></p>
62
+ </div>
63
+ <a target="_blank" href="<?php echo $this->mainLink. '?utm_source=plugin&utm_medium=conditional_logic&utm_campaign=forms';?>"><img src="<?php echo $this->promoModPath;?>rating-stats.png" style="width: 100%; max-width:1100px; height: auto;"/></a>
64
+ <?php } ?>
modules/mail/mod.php CHANGED
@@ -2,7 +2,7 @@
2
  class mailCfs extends moduleCfs {
3
  private $_smtpMailer = null;
4
  private $_sendMailMailer = null;
5
-
6
  public function send($to, $subject, $message, $fromName = '', $fromEmail = '', $replyToName = '', $replyToEmail = '', $additionalHeaders = array(), $additionalParameters = array()) {
7
  $type = frameCfs::_()->getModule('options')->get('mail_send_engine');
8
  $res = false;
@@ -16,7 +16,7 @@ class mailCfs extends moduleCfs {
16
  case 'wp_mail': default:
17
  $res = $this->sendWpMail( $to, $subject, $message, $fromName, $fromEmail, $replyToName, $replyToEmail, $additionalHeaders, $additionalParameters );
18
  if(!$res) {
19
- // Sometimes it return false, but email was sent, and in such cases
20
  // - in errors array there are only one - empty string - value.
21
  // Let's count this for now as Success sending
22
  $mailErrors = array_filter( $this->getMailErrors() );
@@ -41,9 +41,14 @@ class mailCfs extends moduleCfs {
41
  $this->_smtpMailer->SMTPSecure = $smtpSecure; // secure transfer enabled REQUIRED for GMail
42
  }
43
  $this->_smtpMailer->Host = trim(frameCfs::_()->getModule('options')->get('smtp_host'));
44
- $this->_smtpMailer->Port = trim(frameCfs::_()->getModule('options')->get('smtp_port'));
45
- $this->_smtpMailer->Username = trim(frameCfs::_()->getModule('options')->get('smtp_login'));
 
 
46
  $this->_smtpMailer->Password = trim(frameCfs::_()->getModule('options')->get('smtp_pass'));
 
 
 
47
  }
48
  return $this->_smtpMailer;
49
  }
@@ -102,7 +107,7 @@ class mailCfs extends moduleCfs {
102
  $this->_smtpMailer->clearAllRecipients();
103
  $this->_smtpMailer->clearAttachments();
104
  $this->_smtpMailer->clearCustomHeaders();
105
-
106
  if($fromEmail && $fromName) {
107
  $this->_smtpMailer->setFrom($fromName, $fromName);
108
  }
@@ -113,7 +118,14 @@ class mailCfs extends moduleCfs {
113
  $this->_smtpMailer->ReturnPath = $params['return_path_email'];
114
  }*/
115
  $this->_smtpMailer->Subject = $subject;
116
- $this->_smtpMailer->addAddress($to);
 
 
 
 
 
 
 
117
  if(frameCfs::_()->getModule('options')->get('disable_email_html_type')) {
118
  $this->_smtpMailer->Body = $message;
119
  } else {
@@ -153,7 +165,7 @@ class mailCfs extends moduleCfs {
153
  if(!frameCfs::_()->getModule('options')->get('disable_email_html_type')) {
154
  add_filter('wp_mail_content_type', array($this, 'mailContentType'));
155
  }
156
-
157
  $attach = null;
158
  if(isset($additionalParameters['attach']) && !empty($additionalParameters['attach'])) {
159
  $attach = $additionalParameters['attach'];
@@ -169,7 +181,7 @@ class mailCfs extends moduleCfs {
169
 
170
  return $result;
171
  }
172
-
173
  public function getMailErrors() {
174
  global $ts_mail_errors;
175
  global $phpmailer;
@@ -209,4 +221,4 @@ class mailCfs extends moduleCfs {
209
  );
210
  return $opts;
211
  }
212
- }
2
  class mailCfs extends moduleCfs {
3
  private $_smtpMailer = null;
4
  private $_sendMailMailer = null;
5
+
6
  public function send($to, $subject, $message, $fromName = '', $fromEmail = '', $replyToName = '', $replyToEmail = '', $additionalHeaders = array(), $additionalParameters = array()) {
7
  $type = frameCfs::_()->getModule('options')->get('mail_send_engine');
8
  $res = false;
16
  case 'wp_mail': default:
17
  $res = $this->sendWpMail( $to, $subject, $message, $fromName, $fromEmail, $replyToName, $replyToEmail, $additionalHeaders, $additionalParameters );
18
  if(!$res) {
19
+ // Sometimes it return false, but email was sent, and in such cases
20
  // - in errors array there are only one - empty string - value.
21
  // Let's count this for now as Success sending
22
  $mailErrors = array_filter( $this->getMailErrors() );
41
  $this->_smtpMailer->SMTPSecure = $smtpSecure; // secure transfer enabled REQUIRED for GMail
42
  }
43
  $this->_smtpMailer->Host = trim(frameCfs::_()->getModule('options')->get('smtp_host'));
44
+ $this->_smtpMailer->Port = trim(frameCfs::_()->getModule('options')->get('smtp_port'));
45
+
46
+ $login = trim(frameCfs::_()->getModule('options')->get('smtp_login'));
47
+ $this->_smtpMailer->Username = $login;
48
  $this->_smtpMailer->Password = trim(frameCfs::_()->getModule('options')->get('smtp_pass'));
49
+ if(strpos($login, '@') > 0) {
50
+ $this->_smtpMailer->From = $login;
51
+ }
52
  }
53
  return $this->_smtpMailer;
54
  }
107
  $this->_smtpMailer->clearAllRecipients();
108
  $this->_smtpMailer->clearAttachments();
109
  $this->_smtpMailer->clearCustomHeaders();
110
+
111
  if($fromEmail && $fromName) {
112
  $this->_smtpMailer->setFrom($fromName, $fromName);
113
  }
118
  $this->_smtpMailer->ReturnPath = $params['return_path_email'];
119
  }*/
120
  $this->_smtpMailer->Subject = $subject;
121
+ $to = explode(',', $to);
122
+ if (!empty($to) && is_array($to)){
123
+ foreach ($to as $email) {
124
+ $this->_smtpMailer->addAddress($email);
125
+ }
126
+ } else {
127
+ $this->_smtpMailer->addAddress($to);
128
+ }
129
  if(frameCfs::_()->getModule('options')->get('disable_email_html_type')) {
130
  $this->_smtpMailer->Body = $message;
131
  } else {
165
  if(!frameCfs::_()->getModule('options')->get('disable_email_html_type')) {
166
  add_filter('wp_mail_content_type', array($this, 'mailContentType'));
167
  }
168
+
169
  $attach = null;
170
  if(isset($additionalParameters['attach']) && !empty($additionalParameters['attach'])) {
171
  $attach = $additionalParameters['attach'];
181
 
182
  return $result;
183
  }
184
+
185
  public function getMailErrors() {
186
  global $ts_mail_errors;
187
  global $phpmailer;
221
  );
222
  return $opts;
223
  }
224
+ }
modules/options/mod.php CHANGED
@@ -134,7 +134,7 @@ class optionsCfs extends moduleCfs {
134
 
135
  'smtp_host' => array('label' => __('SMTP Hostname', CFS_LANG_CODE), 'desc' => __('e.g. smtp.mydomain.com', CFS_LANG_CODE), 'html' => 'text', 'connect' => 'mail_send_engine:smtp'),
136
  'smtp_login' => array('label' => __('SMTP Login', CFS_LANG_CODE), 'desc' => __('Your email login', CFS_LANG_CODE), 'html' => 'text', 'connect' => 'mail_send_engine:smtp'),
137
- 'smtp_pass' => array('label' => __('SMTP Password', CFS_LANG_CODE), 'desc' => __('Your emaail password', CFS_LANG_CODE), 'html' => 'password', 'connect' => 'mail_send_engine:smtp'),
138
  'smtp_port' => array('label' => __('SMTP Port', CFS_LANG_CODE), 'desc' => __('Port for your SMTP provider', CFS_LANG_CODE), 'html' => 'text', 'connect' => 'mail_send_engine:smtp'),
139
  'smtp_secure' => array('label' => __('SMTP Secure', CFS_LANG_CODE), 'desc' => __('Use secure SMTP connection. If you enable this option - make sure that your server support such secure connections.', CFS_LANG_CODE), 'html' => 'selectbox', 'connect' => 'mail_send_engine:smtp',
140
  'options' => array('' => __('No', CFS_LANG_CODE), 'ssl' => 'SSL', 'tls' => 'TLS'), 'def' => ''),
134
 
135
  'smtp_host' => array('label' => __('SMTP Hostname', CFS_LANG_CODE), 'desc' => __('e.g. smtp.mydomain.com', CFS_LANG_CODE), 'html' => 'text', 'connect' => 'mail_send_engine:smtp'),
136
  'smtp_login' => array('label' => __('SMTP Login', CFS_LANG_CODE), 'desc' => __('Your email login', CFS_LANG_CODE), 'html' => 'text', 'connect' => 'mail_send_engine:smtp'),
137
+ 'smtp_pass' => array('label' => __('SMTP Password', CFS_LANG_CODE), 'desc' => __('Your email password', CFS_LANG_CODE), 'html' => 'password', 'connect' => 'mail_send_engine:smtp'),
138
  'smtp_port' => array('label' => __('SMTP Port', CFS_LANG_CODE), 'desc' => __('Port for your SMTP provider', CFS_LANG_CODE), 'html' => 'text', 'connect' => 'mail_send_engine:smtp'),
139
  'smtp_secure' => array('label' => __('SMTP Secure', CFS_LANG_CODE), 'desc' => __('Use secure SMTP connection. If you enable this option - make sure that your server support such secure connections.', CFS_LANG_CODE), 'html' => 'selectbox', 'connect' => 'mail_send_engine:smtp',
140
  'options' => array('' => __('No', CFS_LANG_CODE), 'ssl' => 'SSL', 'tls' => 'TLS'), 'def' => ''),
modules/options/views/tpl/optionsAdminPage.php CHANGED
@@ -25,6 +25,7 @@
25
  </ul>
26
  </nav>
27
  <div class="supsystic-container supsystic-<?php echo $this->activeTab?>">
 
28
  <?php echo $this->content?>
29
  <div class="clear"></div>
30
  </div>
25
  </ul>
26
  </nav>
27
  <div class="supsystic-container supsystic-<?php echo $this->activeTab?>">
28
+ <?php dispatcherCfs::doAction('discountMsg');?>
29
  <?php echo $this->content?>
30
  <div class="clear"></div>
31
  </div>
modules/supsystic_promo/css/admin.featured-plugins.css CHANGED
@@ -76,6 +76,10 @@
76
  font-size: 18px !important;
77
  padding: 12px 0 !important;
78
  }
 
 
 
 
79
  .catitem .download-product-item .dp-buttons a.dp-full {
80
  border-color: #e8eded!important;
81
  }
76
  font-size: 18px !important;
77
  padding: 12px 0 !important;
78
  }
79
+ .catitem .download-product-item .dp-buttons a.btn-center {
80
+ display: block;
81
+ margin: 0 auto;
82
+ }
83
  .catitem .download-product-item .dp-buttons a.dp-full {
84
  border-color: #e8eded!important;
85
  }
modules/supsystic_promo/css/admin.overview.css CHANGED
@@ -87,13 +87,16 @@
87
  margin-left: 50px;
88
  width: calc(100% - 50px);
89
  }
90
- .supsystic-overview .faq-list,
91
- .supsystic-overview .description,
92
- .supsystic-overview .video,
93
- .supsystic-overview .supsystic-overview-news {
94
  border-bottom: 1px solid rgba(164, 170, 172, 0.28);
95
  padding-bottom: 20px;
96
  }
 
 
 
 
 
 
97
  .supsystic-overview .contact-form-table th {
98
  vertical-align: top;
99
  text-align: left;
87
  margin-left: 50px;
88
  width: calc(100% - 50px);
89
  }
90
+ .supsystic-overview .supsistic-half-side-box > div {
 
 
 
91
  border-bottom: 1px solid rgba(164, 170, 172, 0.28);
92
  padding-bottom: 20px;
93
  }
94
+ .supsystic-overview .supsistic-half-side-box > div:last-child {
95
+ border-bottom: none;
96
+ }
97
+ .supsystic-overview .text-block {
98
+ margin: 10px 0;
99
+ }
100
  .supsystic-overview .contact-form-table th {
101
  vertical-align: top;
102
  text-align: left;
modules/supsystic_promo/img/kinsta_banner.png ADDED
Binary file
modules/supsystic_promo/mod.php CHANGED
@@ -19,6 +19,7 @@ class supsystic_promoCfs extends moduleCfs {
19
  dispatcherCfs::addFilter('mainAdminTabs', array($this, 'addAdminTab'));
20
  dispatcherCfs::addAction('beforeSaveOpts', array($this, 'checkSaveOpts'));
21
  dispatcherCfs::addFilter('showTplsList', array($this, 'checkProTpls'));
 
22
  add_action('admin_notices', array($this, 'checkAdminPromoNotices'));
23
  // Admin tutorial
24
  add_action('admin_enqueue_scripts', array( $this, 'loadTutorial'));
@@ -27,8 +28,13 @@ class supsystic_promoCfs extends moduleCfs {
27
  public function addEditTab( $tabs ) {
28
  if(!$this->isPro()) {
29
  $tabs['cfsFormConditionalLogic'] = array(
30
- 'title' => __('Conditional Logic', CFS_LANG_CODE),
31
- 'content' => '<a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=conditional_logic&utm_campaign=forms'). '" target="_blank"><img style="width: 100%; height: auto;" src="'. $this->getModPath(). 'img/conditional-logic.png" /></a>',
 
 
 
 
 
32
  'fa_icon' => 'fa-flask',
33
  'sort_order' => 90,
34
  );
@@ -161,7 +167,7 @@ class supsystic_promoCfs extends moduleCfs {
161
  $modPath = $this->getAssetsUrl();
162
  if(!frameCfs::_()->getModule('ab_testing')) {
163
  $tabs['cfsFormAbTesting'] = array(
164
- 'title' => __('Testing', CFS_LANG_CODE),
165
  'content' => '<a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=abtesting&utm_campaign=forms'). '" target="_blank" class="button button-primary">'
166
  . __('Get PRO', CFS_LANG_CODE). '</a><br /><a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=abtesting&utm_campaign=forms'). '" target="_blank">'
167
  . '<img style="max-width: 100%;" src="'. $modPath. 'img/AB-testing-pro.jpg" />'
@@ -173,7 +179,7 @@ class supsystic_promoCfs extends moduleCfs {
173
  }
174
  if(!frameCfs::_()->getModule('subscribe')) {
175
  $tabs['cfsFormSubscribe'] = array(
176
- 'title' => __('Subscribe', CFS_LANG_CODE),
177
  'content' => '<a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=subscribe&utm_campaign=forms'). '" target="_blank" class="button button-primary">'
178
  . __('Get PRO', CFS_LANG_CODE). '</a><br /><a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=subscribe&utm_campaign=forms'). '" target="_blank">'
179
  . '<img style="max-width: 100%;" src="'. $modPath. 'img/subscribe-pro.gif" />'
@@ -186,7 +192,7 @@ class supsystic_promoCfs extends moduleCfs {
186
  }
187
  public function addUserExpDesign($tabs) {
188
  $tabs['cfsFormLayeredForm'] = array(
189
- 'title' => __('Form Location', CFS_LANG_CODE),
190
  'content' => $this->getView()->getLayeredStylePromo(),
191
  'fa_icon' => 'fa-arrows',
192
  'sort_order' => 15,
@@ -254,7 +260,7 @@ class supsystic_promoCfs extends moduleCfs {
254
  public function isPro() {
255
  static $isPro;
256
  if(is_null($isPro)) {
257
- // license is always active with PRO - even if license key was not entered,
258
  $isPro = frameCfs::_()->getModule('license') ? true : false;
259
  }
260
  return $isPro;
@@ -324,9 +330,9 @@ class supsystic_promoCfs extends moduleCfs {
324
  // Don't run on WP < 3.3
325
  if ( get_bloginfo( 'version' ) < '3.3' )
326
  return;
327
-
328
  if ( is_admin() && current_user_can(frameCfs::_()->getModule('adminmenu')->getMainCap()) ) {
329
-
330
  $this->checkToShowTutorial();
331
  }
332
  }
@@ -335,7 +341,7 @@ class supsystic_promoCfs extends moduleCfs {
335
  $this->getModel()->clearTourHst();
336
  }
337
  $hst = $this->getModel()->getTourHst();
338
- if((isset($hst['closed']) && $hst['closed'])
339
  || (isset($hst['finished']) && $hst['finished'])
340
  ) {
341
  return;
@@ -509,15 +515,20 @@ class supsystic_promoCfs extends moduleCfs {
509
  unset($tourData['tour'][ $stepId ]['points'][ $pointId ]);
510
  continue;
511
  }
 
512
  switch($pointKey) {
513
  case 'create_first-create_bar_btn':
514
  // Pointer for Create new Form we can show only if there are no created Forms
515
  $createdFormsNum = frameCfs::_()->getModule('forms')->getModel()->addWhere('original_id != 0')->getCount();
516
  if(!empty($createdFormsNum)) {
517
  unset($tourData['tour'][ $stepId ]['points'][ $pointId ]);
518
- continue;
519
  }
520
  }
 
 
 
 
521
  }
522
  }
523
  foreach($tourData['tour'] as $stepId => $step) {
@@ -538,4 +549,38 @@ class supsystic_promoCfs extends moduleCfs {
538
  public function showFeaturedPluginsPage() {
539
  return $this->getView()->showFeaturedPluginsPage();
540
  }
541
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  dispatcherCfs::addFilter('mainAdminTabs', array($this, 'addAdminTab'));
20
  dispatcherCfs::addAction('beforeSaveOpts', array($this, 'checkSaveOpts'));
21
  dispatcherCfs::addFilter('showTplsList', array($this, 'checkProTpls'));
22
+ dispatcherCfs::addAction('discountMsg', array($this, 'getDiscountMsg'));
23
  add_action('admin_notices', array($this, 'checkAdminPromoNotices'));
24
  // Admin tutorial
25
  add_action('admin_enqueue_scripts', array( $this, 'loadTutorial'));
28
  public function addEditTab( $tabs ) {
29
  if(!$this->isPro()) {
30
  $tabs['cfsFormConditionalLogic'] = array(
31
+ 'title' => __('Conditional Logic', CFS_LANG_CODE),
32
+ 'content' => '
33
+ <label>
34
+ Conditional Logic <i title="A feature allows to show certain fields, depend on the value of some other fields. It provides a set of rules that apply to fields that dynamically change the form layout. It’s a great way to make complex forms more compact, and present the users with only the information they are interested in. <a href=\'https://supsystic.com/documentation/contact-form-publish-content/\' target=\'_blank\'>https://supsystic.com/documentation/contact-form-publish-content/</a>" class="fa fa-question supsystic-tooltip tooltipstered"></i>
35
+ </label>
36
+ <br>
37
+ <a style="margin-top:15px;" href="'. $this->generateMainLink('utm_source=plugin&utm_medium=conditional_logic&utm_campaign=forms'). '" target="_blank"><img style="max-width:800px; width: 100%; height: auto;" src="'. frameCfs::_()->getModule('templates')->getCdnUrl(). '_assets/contact-form/img/supsystic_promo/logic.gif" /></a>',
38
  'fa_icon' => 'fa-flask',
39
  'sort_order' => 90,
40
  );
167
  $modPath = $this->getAssetsUrl();
168
  if(!frameCfs::_()->getModule('ab_testing')) {
169
  $tabs['cfsFormAbTesting'] = array(
170
+ 'title' => __('Testing', CFS_LANG_CODE),
171
  'content' => '<a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=abtesting&utm_campaign=forms'). '" target="_blank" class="button button-primary">'
172
  . __('Get PRO', CFS_LANG_CODE). '</a><br /><a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=abtesting&utm_campaign=forms'). '" target="_blank">'
173
  . '<img style="max-width: 100%;" src="'. $modPath. 'img/AB-testing-pro.jpg" />'
179
  }
180
  if(!frameCfs::_()->getModule('subscribe')) {
181
  $tabs['cfsFormSubscribe'] = array(
182
+ 'title' => __('Subscribe', CFS_LANG_CODE),
183
  'content' => '<a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=subscribe&utm_campaign=forms'). '" target="_blank" class="button button-primary">'
184
  . __('Get PRO', CFS_LANG_CODE). '</a><br /><a href="'. $this->generateMainLink('utm_source=plugin&utm_medium=subscribe&utm_campaign=forms'). '" target="_blank">'
185
  . '<img style="max-width: 100%;" src="'. $modPath. 'img/subscribe-pro.gif" />'
192
  }
193
  public function addUserExpDesign($tabs) {
194
  $tabs['cfsFormLayeredForm'] = array(
195
+ 'title' => __('Form Location', CFS_LANG_CODE),
196
  'content' => $this->getView()->getLayeredStylePromo(),
197
  'fa_icon' => 'fa-arrows',
198
  'sort_order' => 15,
260
  public function isPro() {
261
  static $isPro;
262
  if(is_null($isPro)) {
263
+ // license is always active with PRO - even if license key was not entered,
264
  $isPro = frameCfs::_()->getModule('license') ? true : false;
265
  }
266
  return $isPro;
330
  // Don't run on WP < 3.3
331
  if ( get_bloginfo( 'version' ) < '3.3' )
332
  return;
333
+
334
  if ( is_admin() && current_user_can(frameCfs::_()->getModule('adminmenu')->getMainCap()) ) {
335
+
336
  $this->checkToShowTutorial();
337
  }
338
  }
341
  $this->getModel()->clearTourHst();
342
  }
343
  $hst = $this->getModel()->getTourHst();
344
+ if((isset($hst['closed']) && $hst['closed'])
345
  || (isset($hst['finished']) && $hst['finished'])
346
  ) {
347
  return;
515
  unset($tourData['tour'][ $stepId ]['points'][ $pointId ]);
516
  continue;
517
  }
518
+ $pointKeyContinue = false;
519
  switch($pointKey) {
520
  case 'create_first-create_bar_btn':
521
  // Pointer for Create new Form we can show only if there are no created Forms
522
  $createdFormsNum = frameCfs::_()->getModule('forms')->getModel()->addWhere('original_id != 0')->getCount();
523
  if(!empty($createdFormsNum)) {
524
  unset($tourData['tour'][ $stepId ]['points'][ $pointId ]);
525
+ $pointKeyContinue = true;
526
  }
527
  }
528
+ // Yeah, this is not neccesarry - but........... ;)
529
+ if($pointKeyContinue) {
530
+ continue;
531
+ }
532
  }
533
  }
534
  foreach($tourData['tour'] as $stepId => $step) {
549
  public function showFeaturedPluginsPage() {
550
  return $this->getView()->showFeaturedPluginsPage();
551
  }
552
+ public function getDiscountMsg() {
553
+ if($this->isPro()
554
+ && frameCfs::_()->getModule('options')->getActiveTab() == 'license'
555
+ && frameCfs::_()->getModule('license')
556
+ && frameCfs::_()->getModule('license')->getModel()->isActive()
557
+ ) {
558
+ $proPluginsList = array(
559
+ 'ultimate-maps-by-supsystic-pro', 'newsletters-by-supsystic-pro', 'contact-form-by-supsystic-pro', 'live-chat-pro',
560
+ 'digital-publications-supsystic-pro', 'coming-soon-supsystic-pro', 'price-table-supsystic-pro', 'tables-generator-pro',
561
+ 'social-share-pro', 'popup-by-supsystic-pro', 'supsystic_slider_pro', 'supsystic-gallery-pro', 'google-maps-easy-pro',
562
+ 'backup-supsystic-pro',
563
+ );
564
+ $activePluginsList = get_option('active_plugins', array());
565
+ $activeProPluginsCount = 0;
566
+ foreach($activePluginsList as $actPl) {
567
+ foreach($proPluginsList as $proPl) {
568
+ if(strpos($actPl, $proPl) !== false) {
569
+ $activeProPluginsCount++;
570
+ }
571
+ }
572
+ }
573
+ if($activeProPluginsCount === 1) {
574
+ $buyLink = $this->getDiscountBuyUrl();
575
+ $this->getView()->getDiscountMsg($buyLink);
576
+ }
577
+ }
578
+ }
579
+ public function getDiscountBuyUrl() {
580
+ $license = frameCfs::_()->getModule('license')->getModel()->getCredentials();
581
+ $license['key'] = md5($license['key']);
582
+ $license = urlencode(base64_encode(implode('|', $license)));
583
+ $plugin_code = 'contact_form_by_supsystic_pro';
584
+ return 'http://supsystic.com/?mod=manager&pl=lms&action=applyDiscountBuyUrl&plugin_code='. $plugin_code. '&lic='. $license;
585
+ }
586
+ }
modules/supsystic_promo/views/supsystic_promo.php CHANGED
@@ -128,6 +128,7 @@ Here you can edit css style of the pop-up window.', CFS_LANG_CODE),
128
  $pluginsUrl = $siteUrl. 'plugins/';
129
  $uploadsUrl = $siteUrl. 'wp-content/uploads/';
130
  $downloadsUrl = 'https://downloads.wordpress.org/plugin/';
 
131
  $promoCampaign = 'forms';
132
  $this->assign('pluginsList', array(
133
  array('label' => __('Popup Plugin', CFS_LANG_CODE), 'url' => $pluginsUrl. 'popup-plugin/', 'img' => $uploadsUrl. '2016/07/Popup_256.png', 'desc' => __('The Best WordPress PopUp option plugin to help you gain more subscribers, social followers or advertisement. Responsive pop-ups with friendly options.', CFS_LANG_CODE), 'download' => $downloadsUrl. 'popup-by-supsystic.zip'),
@@ -144,11 +145,19 @@ Here you can edit css style of the pop-up window.', CFS_LANG_CODE),
144
  array('label' => __('Google Maps Easy', CFS_LANG_CODE), 'url' => $pluginsUrl. 'google-maps-plugin/', 'img' => $uploadsUrl. '2016/07/Google_Maps_256.png', 'desc' => __('Display custom Google Maps. Set markers and locations with text, images, categories and links. Customize google map in a simple and intuitive way.', CFS_LANG_CODE), 'download' => $downloadsUrl. 'google-maps-easy.zip'),
145
  array('label' => __('Digital Publication Plugin', CFS_LANG_CODE), 'url' => $pluginsUrl. 'digital-publication-plugin/', 'img' => $uploadsUrl. '2016/07/Digital_Publication_256.png', 'desc' => __('Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, Portfolios. Convert images, posts, PDF to the page flip book.', CFS_LANG_CODE), 'download' => $downloadsUrl. 'digital-publications-by-supsystic.zip'),
146
  array('label' => __('Slider Plugin', CFS_LANG_CODE), 'url' => $pluginsUrl. 'slider/', 'img' => $uploadsUrl. '2016/07/Slider_256.png', 'desc' => __('Creating slideshows with Slider plugin is fast and easy. Simply select images from your WordPress Media Library, Flickr, Instagram or Facebook, set slide captions, links and SEO fields all from one page.', CFS_LANG_CODE), 'download' => $downloadsUrl. 'slider-by-supsystic.zip'),
 
147
  ));
148
  foreach($this->pluginsList as $i => $p) {
149
- $this->pluginsList[ $i ]['url'] = $this->pluginsList[ $i ]['url']. '?utm_source=plugin&utm_medium=featured_plugins&utm_campaign='. $promoCampaign;
 
 
150
  }
151
  $this->assign('bundleUrl', $siteUrl. 'product/plugins-bundle/'. '?utm_source=plugin&utm_medium=featured_plugins&utm_campaign='. $promoCampaign);
152
  return parent::getContent('featuredPlugins');
153
  }
 
 
 
 
 
154
  }
128
  $pluginsUrl = $siteUrl. 'plugins/';
129
  $uploadsUrl = $siteUrl. 'wp-content/uploads/';
130
  $downloadsUrl = 'https://downloads.wordpress.org/plugin/';
131
+ $imgUrl = frameCfs::_()->getModule('supsystic_promo')->getModPath(). 'img/';
132
  $promoCampaign = 'forms';
133
  $this->assign('pluginsList', array(
134
  array('label' => __('Popup Plugin', CFS_LANG_CODE), 'url' => $pluginsUrl. 'popup-plugin/', 'img' => $uploadsUrl. '2016/07/Popup_256.png', 'desc' => __('The Best WordPress PopUp option plugin to help you gain more subscribers, social followers or advertisement. Responsive pop-ups with friendly options.', CFS_LANG_CODE), 'download' => $downloadsUrl. 'popup-by-supsystic.zip'),
145
  array('label' => __('Google Maps Easy', CFS_LANG_CODE), 'url' => $pluginsUrl. 'google-maps-plugin/', 'img' => $uploadsUrl. '2016/07/Google_Maps_256.png', 'desc' => __('Display custom Google Maps. Set markers and locations with text, images, categories and links. Customize google map in a simple and intuitive way.', CFS_LANG_CODE), 'download' => $downloadsUrl. 'google-maps-easy.zip'),
146
  array('label' => __('Digital Publication Plugin', CFS_LANG_CODE), 'url' => $pluginsUrl. 'digital-publication-plugin/', 'img' => $uploadsUrl. '2016/07/Digital_Publication_256.png', 'desc' => __('Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, Portfolios. Convert images, posts, PDF to the page flip book.', CFS_LANG_CODE), 'download' => $downloadsUrl. 'digital-publications-by-supsystic.zip'),
147
  array('label' => __('Slider Plugin', CFS_LANG_CODE), 'url' => $pluginsUrl. 'slider/', 'img' => $uploadsUrl. '2016/07/Slider_256.png', 'desc' => __('Creating slideshows with Slider plugin is fast and easy. Simply select images from your WordPress Media Library, Flickr, Instagram or Facebook, set slide captions, links and SEO fields all from one page.', CFS_LANG_CODE), 'download' => $downloadsUrl. 'slider-by-supsystic.zip'),
148
+ array('label' => __('Kinsta Hosting', CFS_LANG_CODE), 'url' => 'https://kinsta.com?kaid=MNRQQASUYJRT', 'external' => true, 'img' => $imgUrl. 'kinsta_banner.png', 'desc' => __('If you want to host a business site or a blog, Kinsta managed WordPress hosting is the best place to stop on. Without any hesitation, we can say Kinsta is incredible when it comes to uptime and speed.', CFS_LANG_CODE)),
149
  ));
150
  foreach($this->pluginsList as $i => $p) {
151
+ if(empty($p['external'])) {
152
+ $this->pluginsList[ $i ]['url'] = $this->pluginsList[ $i ]['url']. '?utm_source=plugin&utm_medium=featured_plugins&utm_campaign='. $promoCampaign;
153
+ }
154
  }
155
  $this->assign('bundleUrl', $siteUrl. 'product/plugins-bundle/'. '?utm_source=plugin&utm_medium=featured_plugins&utm_campaign='. $promoCampaign);
156
  return parent::getContent('featuredPlugins');
157
  }
158
+ public function getDiscountMsg($buyLink = '#') {
159
+ $this->assign('bundlePageLink', '//supsystic.com/all-plugins/');
160
+ $this->assign('buyLink', $buyLink);
161
+ parent::display('discountMsg');
162
+ }
163
  }
modules/supsystic_promo/views/tpl/discountMsg.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ .supsystic-plugin .bundleMessageShell {
3
+ background-color: #ffffff;
4
+ padding: 10px 10px 0 10px;
5
+ }
6
+ .supsystic-plugin .bundleMessage {
7
+ border: 3px solid #52bac5;
8
+ text-align: center;
9
+ padding: 10px;
10
+ vertical-align: middle;
11
+ }
12
+ .supsystic-plugin .bundleMessage .text {
13
+ font-size: 21px;
14
+ line-height: 28px;
15
+ vertical-align: middle;
16
+ }
17
+ .supsystic-plugin .bundleMessage .text a {
18
+ color: #52bac5;
19
+ }
20
+ .supsystic-plugin .bundleMessage .button {
21
+ height: 40px !important;
22
+ line-height: 40px !important;
23
+ font-size: 17px !important;
24
+ background-color: #52bac5 !important;
25
+ border: none !important;
26
+ color: #fff !important;
27
+ padding: 0 26px !important;
28
+ margin-left: 20px;
29
+ vertical-align: middle;
30
+ }
31
+ .supsystic-plugin .bundleMessage .button:hover {
32
+ background: #4ae8ea !important;
33
+ }
34
+ </style>
35
+ <div class="bundleMessageShell">
36
+ <div class="bundleMessage">
37
+ <span class="text"><?php echo sprintf(__('Upgrade to bundle and get an access to <a href="%s" target="_blank">all 14 plugins</a> more than 80%% off!', CFS_LANG_CODE), $this->bundlePageLink);?></span>
38
+ <a href="<?php echo $this->buyLink; ?>" class="button" target="_blank"><?php _e('Buy Now', CFS_LANG_CODE)?></a>
39
+ </div>
40
+ </div>
modules/supsystic_promo/views/tpl/featuredPlugins.php CHANGED
@@ -23,16 +23,18 @@
23
  </div>
24
  <div class="dp-excerpt">
25
  <div class="dp-excerpt-wrapper">
26
- <?php echo $p['desc']?>
27
  </div>
28
  </div>
29
  <div class="dp-buttons">
30
- <a href="<?php echo $p['url']?>" target="_blank" class="btn btn-full hvr-shutter-out-horizontal">
31
  <?php _e('More info', CFS_LANG_CODE)?>
32
  </a>
33
- <a href="<?php echo $p['download']?>" target="_blank" class="btn btn-full btn-info hvr-shutter-out-horizontal">
34
- <?php _e('Download', CFS_LANG_CODE)?>
35
- </a>
 
 
36
  </div>
37
  </div>
38
  </div>
23
  </div>
24
  <div class="dp-excerpt">
25
  <div class="dp-excerpt-wrapper">
26
+ <?php echo !empty($p['desc']) ? $p['desc'] : ''?>
27
  </div>
28
  </div>
29
  <div class="dp-buttons">
30
+ <a href="<?php echo $p['url']?>" target="_blank" class="btn btn-full hvr-shutter-out-horizontal <?php echo empty($p['download']) ? 'btn-center' : ''?>">
31
  <?php _e('More info', CFS_LANG_CODE)?>
32
  </a>
33
+ <?php if(!empty($p['download'])) {?>
34
+ <a href="<?php echo $p['download']?>" target="_blank" class="btn btn-full btn-info hvr-shutter-out-horizontal">
35
+ <?php _e('Download', CFS_LANG_CODE)?>
36
+ </a>
37
+ <?php }?>
38
  </div>
39
  </div>
40
  </div>
modules/supsystic_promo/views/tpl/overviewTabContent.php CHANGED
@@ -27,6 +27,12 @@
27
  frameborder="0">
28
  </iframe>
29
  </div><?php */?>
 
 
 
 
 
 
30
  <div class="server-settings">
31
  <h3><?php _e('Server Settings', CFS_LANG_CODE)?></h3>
32
  <ul class="settings-list">
27
  frameborder="0">
28
  </iframe>
29
  </div><?php */?>
30
+ <div class="banner">
31
+ <div class="text-block"><?php _e('If you want to host a business site or a blog, Kinsta managed WordPress hosting is the best place to stop on. Without any hesitation, we can say Kinsta is incredible when it comes to uptime and speed.', CFS_LANG_CODE)?></div>
32
+ <a href="https://kinsta.com?kaid=MNRQQASUYJRT">
33
+ <img src="<?php echo frameCfs::_()->getModule('supsystic_promo')->getModPath()?>img/kinsta_banner.png" style="width: 300px;height: 250px;" />
34
+ </a>
35
+ </div>
36
  <div class="server-settings">
37
  <h3><?php _e('Server Settings', CFS_LANG_CODE)?></h3>
38
  <ul class="settings-list">
readme.txt CHANGED
@@ -1,48 +1,52 @@
1
  === Contact Form by Supsystic ===
2
  Contributors: supsystic.com
3
  Tags: captcha, contact, contact form, contact form builder, contact form maker, contact form manager, contact form plugin, contact forms, contact us, custom form, feedback form, form, forms, forms creator, forms plugin, survey, quiz, subscription form, popup form
4
- Tested up to: 4.9.5
5
- Stable tag: 1.4.6
6
 
7
  Contact Form Builder with drag-and-drop editor to create responsive, mobile ready contact forms in a second. Custom fields and contact form templates
8
 
9
  == Description ==
10
-
11
  Simple and powerful Contact Form Builder by Supsystic with drag-and-drop editor. No coding knowledge is required.
12
  Main [Contact Form plugin](http://supsystic.com/plugins/contact-form-plugin/ "Contact Form WordPress Plugin") features are:
13
 
14
- * [Drag-and-Drop Contact Form Builder](http://supsystic.com/contact-form-fields/ "Contact Form Builder")
15
- * Professional responsive built-in [Form templates design](http://supsystic.com/contact-form-examples/ "Form Templates")
16
- * [Google reCaptcha](http://supsystic.com/create-recaptcha-field/ "Google reCaptcha")
17
  * Unlimited Fields and Forms
18
- * Embed [Popup Forms](http://supsystic.com/contact-form-popup/ "Popup Forms")
19
- * Subscription Forms
20
- * [Survey / Quiz Forms](http://supsystic.com/survey-form-step-step/ "Survey / Quiz Forms")
21
- * Conditional Logic
22
- * Contact Form [A/B Testing](http://supsystic.com/ab-testing-contact-form "Form A/B Testing")
 
 
 
23
  * Multi language support
24
- * Integaration with [Popup](https://wordpress.org/plugins/popup-by-supsystic/ "PopUp"), [Membership](https://wordpress.org/plugins/membership-by-supsystic/ "Membership") and [Google Maps](https://wordpress.org/plugins/google-maps-easy/ "Google Maps") by Supsystic
 
25
 
26
  [youtube https://www.youtube.com/watch?v=8qi7NZiHjGc]
27
 
28
- Contact Form by Supsystic is an ultimate form builder WordPress plugin that lets you to create contact forms in seconds with ease. Build beautiful custom forms and manage submissions the WordPress way. View live previews of your forms while you build them. Capture more business opportunities on your website and get real time mobile notifications for new leads. Drag and Drop Contact Form Builder was made to create responsive, mobile ready contact forms in a second. Custom fields and contact form templates exists in our versoin. Simple and powerful Contact Form Builder by Supsystic with Drag-and-Drop editor does not require coding knowledges.
29
 
30
  = Google reCaptcha =
31
 
32
- Every site admin and owner want to become better and be sure in quality of site life, statistics and income. Thus to avoid mistakes in Contact Form filling reCaptcha field was installed in the latest version of Contact Form. [Use reCaptcha feature](https://supsystic.com/create-recaptcha-field/ "Create reCaptcha field") in Contact Form to grow percentage of real users of your site contacts.
33
 
34
  = Conditional Logic =
35
 
36
  A really useful new feature for those who get accustomed to gain more.
37
- [Condition Logic](https://supsystic.com/documentation/conditional-logic/ "Condition Logic") brings new variants of Contact form applications. Just imagine, how it will be easy to order a cup of coffee with your favorite pie online in 30 seconds! Or Book Hotel correctly with Contact Form even if you hurry. Or Redirect user to his/her country site of your Huge International Corporation with Condition Logic of Contact Form. Uncountable abilities appears in front of your eyes with new Conditional Logic modification of Contact Form.
38
 
39
  = Embed Popup Forms =
40
 
41
- Don’t wanna your Contact Form take place on your site? Use Supsystic team [implementation](https://supsystic.com/documentation/show-contact-form-popup-plugin/ "How to show Contact Form in PopUp plugin") of Contact Form into [Popup by Supsystic](https://wordpress.org/plugins/popup-by-supsystic/ "Popup WordPress plugin")! Thus your can attract fresh site visiters to your Subscribers lists or just collecting emails more actively by Popup addition of Contact Form.
42
 
43
  = Contact Form Plugin Support =
44
 
45
- If you have any problem or feature request for the Contact Form by Supsystic, please [let us know](http://supsystic.com/contact-us/ "Contact Us")!
46
 
47
  = Translations in Your Language Contact Form Plugin =
48
 
@@ -63,67 +67,96 @@ Available Translations:
63
 
64
  == Frequently Asked Questions ==
65
 
66
- = Plugin Configurations =
67
- Go [here](https://supsystic.com/docs/plugin-configurations/ "Plugin Configurations") to read about plugin configurations
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
 
69
- = Form Settings =
70
- Complete tutorial [How to configure Contact Form](https://supsystic.com/docs/form-settings/ "Form settings")
 
 
 
 
 
 
 
 
 
71
 
72
  = Problems with sending messages via Contact Form =
73
- The Supsystic team has noticed there is sometimes a big trouble with our Contact Form plugin for WordPress sites. No matter that our plugin is effective in sending and receiving more then 1 million emails every day, when you personally didn’t get it or didn’t send it.
74
- [The main causes, which can make you problem with plugin Contact Form by Supsystic](https://supsystic.com/contact-form-doesnt-send-messages/ "Problems with sending messages via Contact Form")
75
 
76
- = Can I add more fields or change fields in the Contact Form? =
77
- The Contact Form by Supsystic allows you to add as much fields in the contact form as you need and have several types of them. E.g.
78
  * Text – there you can create fields like Name or Subject, so any, where the user need to enter usual text in contact form
79
- * Email – a special form field fo emails only
80
  * Select Box and Select List – for any options you want to be chosen in the contact form
81
  * TextArea – where can be a free content of the contact form
82
- * Radiobutton/Radiobutton List – a multiple variants list with a circle type of contact form check mark
83
  * Checkbox/Checkbox List – a list of contact form options, where the user should confirm something or click the check mark
84
  * Country List/Country List Multiple – if you want your user to specify their country or several ones
85
- * Submit Button – by clicking it your user send you a contact form
86
  * Reset Button – if you want to give your user and ability to clear all the field by one click
87
 
88
  = Do you have any limitation in the number of forms, which can be filled in? =
89
- No, there is no such a number limit of contact form. You can receive as much cobtat forms as your customers fill in. Increase the level of your purchasing and be in touch with your customers.
90
 
91
  = Is the Contact Form accessible on the cell phones? =
92
- Yes, the Contact form is fully responsive and you can fill it from the frontend on any device: cell phone, tablet, laptop etc.
93
 
94
  = Does your Contact Form plugin provide any statistics? =
95
- For those, who are very attentive to their business we provide the statistics insert. See the number of filled forms in a day, month, year etc. In addition, you can export your statistics in CSV file and open it without internet. Contact Form submitted Failed, Submitted Success, Displayed etc. - each type of forms has own line of the graphic so that it would be easy for you to look through it and analyze your growth.
96
-
97
- = How to install PRO version of plugin? =
98
- To install Contact form by Supsystic PRO follow this [instruction](https://supsystic.com/documentation/contact-form-installation-pro-version/ "Installation of PRO version")
99
 
100
  == Other Notes ==
101
-
102
  Contact Form WordPress plugin helps you easily to create contact forms with your customers, gather your own client data and make it maximum elegant, beautiful and quickly. Simple and flexible plugin with user-friendly interface and light theme. Eye-catching contact form design and minimalistic functional variety – everything for your comfort!
103
 
104
  = The Contact Form has its merits, as in =
105
 
106
- * Immediate operation after activation, no need for adding fields, boxes and lists configurations or shortcoding
107
- * Wide range of settings to configure the optin plugin and make it work for an iternal number of clients.
108
-
109
- How to create/edit your Contact form?
110
- * Install the plugin by downloading the archive from supsystic.com, uploading it into your site and activating it.
111
- * Navigate to the insert “Add New form” and choose the Design option (e.g. Background color, width etc), Fields – all the fields you need for a full info from your client (including different kinds of lists, emails, texts fields etc), Submit options – customize the messages your clients get, after submitting forms, links etc.
112
-
113
- After all copy and paste the shortcode into your post or page and Contact Form will automatically creates on your page using the settings you chose above. Form the small line to a whole form in several seconds!
114
 
115
- What are the benefits of Contact Form plugin by Supsystic?
116
 
117
  Mostly the plugin is very light, easy and simple, which is appropriate almost for every site/online store/ WordPress gallery etc. Including these features at the same time, Contact form plugin produces maximum responsive products and looks cool on every device you need.
118
 
119
- But the main benefit in comparing with other plugins is that you have full statistics about all the period using the plugin. Check how many forms were submitted, which were successful or failed on different very easy graphics. Bright colors and minimalistic design allow you to check it as quickly as possible and understand the picture of your growth in two seconds. In addition, you can export your graphics in CSV file and check it on your device without internet access. Clear all the data by one click if you want to start everything from the very beginning or change your form!
120
 
121
- You are a professional in programming and IT? Want to use the knowledge and skills in CSS and HTML and see the result? Our plugin allows you to customize it with the help of codes! Change it, rewrite or sert into the code some other shortcodes. Only be sure what you are doing. But the Contact Form has a beautiful feature Preview. Use this button before saving the changes you did.
122
 
123
- Don’t forget that contact form plugin also offers options like: Load Assets in footer or change the User role, Enable Promo link and a lot of others. The contact form plugin was created by the Supsystic team for the maximum comfort and ease of our clients, for everybody who wants to keep in touch with their guests, be modern and have all the info in one place.
124
-
125
- Using Contact Form plugin on your WordPress site you start a really responsive business with great analyzer. Contact form by Supsystic plugin is one of the best way to understand your growth, to analyze the target audience of your business, its location, average age, gender etc. The responsive business is better!
126
-
127
 
128
  *Check other WordPress plugins:*
129
 
@@ -144,13 +177,141 @@ Using Contact Form plugin on your WordPress site you start a really responsive b
144
 
145
  == Screenshots ==
146
 
147
- 1. [Contact Form examples](http://supsystic.com/contact-form-examples/ "Contact Form WordPress Plugin Examples")
148
 
149
- 2. Contact Form admin interface
150
 
151
- 3. Survey / Quiz Form
152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
 
155
  = 1.4.6 / 07.05.2018 =
156
  * Fixed plugin activating for multisite
1
  === Contact Form by Supsystic ===
2
  Contributors: supsystic.com
3
  Tags: captcha, contact, contact form, contact form builder, contact form maker, contact form manager, contact form plugin, contact forms, contact us, custom form, feedback form, form, forms, forms creator, forms plugin, survey, quiz, subscription form, popup form
4
+ Tested up to: 5.3
5
+ Stable tag: 1.7.3
6
 
7
  Contact Form Builder with drag-and-drop editor to create responsive, mobile ready contact forms in a second. Custom fields and contact form templates
8
 
9
  == Description ==
10
+
11
  Simple and powerful Contact Form Builder by Supsystic with drag-and-drop editor. No coding knowledge is required.
12
  Main [Contact Form plugin](http://supsystic.com/plugins/contact-form-plugin/ "Contact Form WordPress Plugin") features are:
13
 
14
+ * [Drag-and-Drop Contact Form Builder](https://supsystic.com/feature/form-builder?utm_source=wordpress&utm_medium=builder&utm_campaign=contactform "Contact Form Builder")
15
+ * Professional, responsive built-in [Form templates design](http://supsystic.com/contact-form-examples?utm_source=wordpress&utm_medium=templates&utm_campaign=contactform "Form Templates")
16
+ * [Google reCaptcha](https://supsystic.com/feature/recaptcha-integration/?utm_source=wordpress&utm_medium=recaptcha&utm_campaign=contactform "Google reCaptcha")
17
  * Unlimited Fields and Forms
18
+ * [Publish Content](https://supsystic.com/feature/content-creation?utm_source=wordpress&utm_medium=publishcontent&utm_campaign=contactform "Publish Content")
19
+ * Embed [Popup Forms](http://supsystic.com/contact-form-popup?utm_source=wordpress&utm_medium=descriptionforms&utm_campaign=contactform "Popup Forms")
20
+ * [Quiz, Registration, Subscription form](https://supsystic.com/feature/quiz-registration-subscription?utm_source=wordpress&utm_medium=QuizRegistration&utm_campaign=contactform "Quiz, Registration, Subscription")
21
+ * [File Upload Form](https://supsystic.com/feature/file-upload?utm_source=wordpress&utm_medium=fileupload&utm_campaign=contactform "File Upload Form")
22
+ * [Conditional Logic](https://supsystic.com/feature/conditional-logic/?utm_source=wordpress&utm_medium=abtesting&utm_campaign=contactform "Conditional Logic")
23
+ * Contact Form [A/B Testing](https://supsystic.com/feature/conditional-logic/?utm_source=wordpress&utm_medium=abtesting&utm_campaign=contactform "Form A/B Testing")
24
+ * [Statistics](https://supsystic.com/documentation/statistics?utm_source=wordpress&utm_medium=statisticsg&utm_campaign=contactform "Statistics")
25
+ * [Contact Form widget](https://supsystic.com/documentation/contact-form-widget?utm_source=wordpress&utm_medium=widgetg&utm_campaign=contactform "Contact Form widget")
26
  * Multi language support
27
+ * [Fully responsive and mobile-friendly](https://supsystic.com/feature/fully-responsive-contact-form?utm_source=wordpress&utm_medium=responsiveg&utm_campaign=contactform "Fully responsive")
28
+ * Integration with [Popup](https://wordpress.org/plugins/popup-by-supsystic/ "PopUp"), [Membership](https://wordpress.org/plugins/membership-by-supsystic/ "Membership") and [Google Maps](https://wordpress.org/plugins/google-maps-easy/ "Google Maps") by Supsystic
29
 
30
  [youtube https://www.youtube.com/watch?v=8qi7NZiHjGc]
31
 
32
+ Contact Form by Supsystic is an ultimate form builder WordPress plugin that lets you create contact forms in seconds with ease. Build beautiful custom forms and manage submissions the WordPress way. View live previews of your forms while you build them. Capture more business opportunities on your website and get real time mobile notifications for new leads. Drag and Drop Contact Form Builder was made to create responsive, mobile ready contact forms in a second. Simple and powerful Contact Form Builder by Supsystic with Drag-and-Drop editor does not require coding knowledge.
33
 
34
  = Google reCaptcha =
35
 
36
+ Every site admin and owner want to become better and be sure in quality of site life, statistics and income. Thus to avoid mistakes in Contact Form filling reCaptcha field was installed in the latest version of Contact Form. [Use reCaptcha feature](https://supsystic.com/feature/recaptcha-integration/?utm_source=wordpress&utm_medium=recaptcha&utm_campaign=contactform "Create reCaptcha field") in the Contact Form to grow the percentage of real users of your site contacts.
37
 
38
  = Conditional Logic =
39
 
40
  A really useful new feature for those who get accustomed to gain more.
41
+ [Condition Logic](https://supsystic.com/documentation/conditional-logic?utm_source=wordpress&utm_medium=conditionallogic&utm_campaign=contactform "Condition Logic") brings new variants of Contact form applications. Just imagine, how it will be easy to order a cup of coffee with your favorite pie online in 30 seconds! Or Book Hotel correctly with Contact Form even if you hurry. Or Redirect user to his/her country site of your Huge International Corporation with Condition Logic of Contact Form. Uncountable abilities appears in front of your eyes with new Conditional Logic modification in the Contact Form.
42
 
43
  = Embed Popup Forms =
44
 
45
+ Don’t want your Contact Form takes place on your site? Use Supsystic team [implementation](https://supsystic.com/documentation/show-contact-form-popup-plugin?utm_source=wordpress&utm_medium=descriptionforms&utm_campaign=contactform "How to show Contact Form in PopUp plugin")of Contact Form into [Popup by Supsystic](https://wordpress.org/plugins/popup-by-supsystic/ "Popup WordPress plugin")! Thus, you can attract fresh site visits to your Subscribers' lists or just collecting emails more actively by the Popup addition of Contact Form.
46
 
47
  = Contact Form Plugin Support =
48
 
49
+ If you have any problem or feature request for the Contact Form by Supsystic, please [let us know](http://supsystic.com/contact-us?utm_source=wordpress&utm_medium=contactus&utm_campaign=contactform "Contact Us")!
50
 
51
  = Translations in Your Language Contact Form Plugin =
52
 
67
 
68
  == Frequently Asked Questions ==
69
 
70
+ = How to create a Contact form? =
71
+
72
+ 1. Install the plugin by downloading the archive from supsystic.com, uploading it into your site and activating it.
73
+ 2. Navigate to the insert “Add New form” and choose the Design option (e.g. Background color, width etc), Fields – all the fields you need for a full info from your client (including different kinds of lists, emails, text fields, etc.), Submit options – customize the messages your clients get, after submitting forms, links etc.
74
+ 3. After all copy and paste the shortcode into your post or page and Contact Form will automatically create on your page using the settings you chose above. Read more info in full tutorial [Getting Started](https://supsystic.com/documentation/contact-form-getting-started?utm_source=wordpress&utm_medium=gettingstarted&utm_campaign=contactform "Getting Started")
75
+
76
+ = What is A/B testing? =
77
+ You can test different versions of a contact form to find out which form gives the best results and improve website’s conversion. By split testing your contact forms, it’s easy to understand what works best with your audience, and optimize them any time.
78
+ [A/B testing feature](https://supsystic.com/feature/conditional-logic/?utm_source=wordpress&utm_medium=abtesting&utm_campaign=contactform "A/B testing"):
79
+ * Helps improve marketing campaigns
80
+ * Improves website design and function
81
+ * Increases conversions and revenue
82
+
83
+ = How to set different conditions for contact form fields?
84
+ With Conditional Logic option you have an ability to show certain fields, depending on the value of some other fields. It’s a great way to make complex forms more compact, and present the user with only the information he is interested in. You can set different conditions for several or even all your fields. Look at more details and [Logic feature example](https://supsystic.com/documentation/conditional-logic?utm_source=wordpress&utm_medium=conditionallogic&utm_campaign=contactform "Conditional Logic").
85
+
86
+ = How to check information about submitting contacts? =
87
+
88
+ Contact Form by Supsystic allows you to check and monitor information about your submitted contacts.
89
+
90
+ This data is stored on the Contacts tab (on the left navigation menu of the Contact Form Plugin). Here you will find a list of your contacts. Contacts tab will display several fields with some information from your contact form (if you have more than one form – it will show common fields information from all your contact forms).
91
+ Read more about [Contact Details](https://supsystic.com/documentation/contact-form-contacts?utm_source=wordpress&utm_medium=contacts&utm_campaign=contactform "Contact Details") here.
92
+
93
+ = How to set the design of Contact Form? =
94
+ The plugin comes with a [big variety options to customize your design](https://supsystic.com/documentation/design-customization?utm_source=wordpress&utm_medium=design&utm_campaign=contactform "Design").
95
+ While you start to create your Contact Form you can see a choice of Template. You have 8 different templates, different in their styles, sizes, properties – like Simple White theme, Neon template and etc. You should understand, if you choose one or another template – you chose the general style. Of course, you change any detail you do not like in it.
96
+ Also, you can make additional settings as:
97
+ * Width – set the width of the Contact Form in percents or pixels
98
+ * Form background – pleasant thing – you can change it to any image from your WP Media Library or device, or set the full color
99
+ * Inputs background – the same thing – it can be set in two ways: color or image
100
+ * Submit/Reset buttons background – definitely, you will get these two buttons on your for. Set their proper design and change the appearance on some picture or color you like too
101
+ Do not forget that below all these options you have the preview of your Contact Form, so there is no need to set it each time to the page – to see how it looks like.
102
+
103
+ = How to add additional fields to a Contact Form? =
104
 
105
+ Contact Form in its standard view comes with 6 fields by default. You have two different ways to customize it.
106
+ 1. You can add any other fields type – by pressing the button Add New Field.
107
+ There is a long list of options/types, you can add. Choose the one/or several you like.
108
+ 2. You can edit the fields you already have.
109
+
110
+ Follow a complete tutorial [Fields Settings](https://supsystic.com/documentation/fields-settings?utm_source=wordpress&utm_medium=design&utm_campaign=fieldssettings "Fields Settings").
111
+
112
+ = How to set Subscription for Contact Form? =
113
+
114
+ If you want not only gather the data, but have new subscribers to your site, you can easily use the Contact Form plugin by Supsystic for any WordPress site. These subscribers will automatically get your news, letters, updates for blogs and etc. To check, how your Contact Form does work with subscribers look at the tab Subscribe.
115
+ Start your acquaintance from clicking the box Enable Subscription and after this, you will get a [full range of settings for your customizing](https://supsystic.com/documentation/subscription?utm_source=wordpress&utm_medium=subscription&utm_campaign=fieldssettings "Subscription").
116
 
117
  = Problems with sending messages via Contact Form =
118
+ The Supsystic team has noticed there is sometimes a big trouble with our Contact Form plugin for WordPress sites. No matter that our plugin is effective in sending and receiving more than 1 million emails every day, when you personally didn’t get it or didn’t send it.
119
+ [The main causes, which can make your problem with plugin Contact Form by Supsystic](https://supsystic.com/contact-form-doesnt-send-messages?utm_source=wordpress&utm_medium=problemwithplugin&utm_campaign=fieldssettings "Problems with sending messages via Contact Form")
120
 
121
+ = How many fields I can add into the Contact Form? =
122
+ The Contact Form by Supsystic allows you to add as many fields in the contact form as you need and have several types of them. E.g.
123
  * Text – there you can create fields like Name or Subject, so any, where the user need to enter usual text in contact form
124
+ * Email – a special form field for emails only
125
  * Select Box and Select List – for any options you want to be chosen in the contact form
126
  * TextArea – where can be a free content of the contact form
127
+ * Radiobutton/Radiobutton List – a multiple variant list with a circular type of contact form check mark
128
  * Checkbox/Checkbox List – a list of contact form options, where the user should confirm something or click the check mark
129
  * Country List/Country List Multiple – if you want your user to specify their country or several ones
130
+ * Submit Button – by clicking it your user sends you a contact form
131
  * Reset Button – if you want to give your user and ability to clear all the field by one click
132
 
133
  = Do you have any limitation in the number of forms, which can be filled in? =
134
+ No, there is no such a number limit of a contact form. You can receive as many contact forms as your customers fill in. Increase the level of your purchasing and be in touch with your customers.
135
 
136
  = Is the Contact Form accessible on the cell phones? =
137
+ Yes, the Contact form is [fully responsive](https://supsystic.com/feature/fully-responsive-contact-form?utm_source=wordpress&utm_medium=responsiveg&utm_campaign=contactform "Fully responsive") and you can fill it from the frontend on any device: cell phone, tablet, laptop etc.
138
 
139
  = Does your Contact Form plugin provide any statistics? =
140
+ For those, who are very attentive to their business, we provide the [statistics insert](https://supsystic.com/documentation/statistics?utm_source=wordpress&utm_medium=statisticsg&utm_campaign=contactform "Statistics"). See the number of filling forms in a day, month, year etc. In addition, you can export your statistics in CSV file and open it without the internet. Contact Form submitted Failed, Submitted Success, Displayed etc. Each type of forms has an own line of the graphic so that it would be easy for you to look through it and analyze your growth.
 
 
 
141
 
142
  == Other Notes ==
143
+
144
  Contact Form WordPress plugin helps you easily to create contact forms with your customers, gather your own client data and make it maximum elegant, beautiful and quickly. Simple and flexible plugin with user-friendly interface and light theme. Eye-catching contact form design and minimalistic functional variety – everything for your comfort!
145
 
146
  = The Contact Form has its merits, as in =
147
 
148
+ * Immediate operation after activation, no need for adding boxes, fields, and lists configurations or short coding
149
+ * Wide range of settings to configure the option plugin and make it work for an eternal number of clients.
 
 
 
 
 
 
150
 
151
+ = What are the benefits of Contact Form plugin by Supsystic? =
152
 
153
  Mostly the plugin is very light, easy and simple, which is appropriate almost for every site/online store/ WordPress gallery etc. Including these features at the same time, Contact form plugin produces maximum responsive products and looks cool on every device you need.
154
 
155
+ But the main benefit in comparing with other plugins is that you have full statistics about all the period using the plugin. Check how many forms were submitted, which were successful or failed on different very easy graphics. Bright colors and minimalist design allow you to check it as quickly as possible and understand the picture of your growth in two seconds. In addition, you can export your graphics in CSV file and check it on your device without internet access. Clear all the data by one click if you want to start everything from the very beginning or change your form!
156
 
157
+ Don’t forget that contact form plugin also offers options like: Load Assets in the footer or change the User role, Enable Promo link and a lot of others. The contact form plugin was created by the Supsystic team for the maximum comfort and ease of our clients, for everybody who wants to keep in touch with their guests, be modern and have all the info in one place.
158
 
159
+ Using Contact Form plugin on your WordPress site, you start a really responsive business with great analyzer. Contact form by Supsystic plugin is one of the best ways to understand your growth, to analyze the target audience of your business, its location, average age, gender etc. The responsive business is better!
 
 
 
160
 
161
  *Check other WordPress plugins:*
162
 
177
 
178
  == Screenshots ==
179
 
180
+ 1. [Contact Form demo](http://supsystic.com/contact-form-examples/ "Contact Form WordPress Plugin Examples")
181
 
182
+ 2. Conditional logic, Delivery form, Booking and Subscription
183
 
184
+ 3. Quiz Form, Order form
185
 
186
+ 4. Survey & Registration form
187
+
188
+ 5. More examples of the Contact Form plugin
189
+
190
+ 6. Contact Form templates in admin panel
191
+
192
+ 7. Admin panel, Design settings
193
+
194
+ 8. Admin panel, Fields
195
+
196
+ 9. Admin panel, Submit options settings, Publish content & Registration
197
+
198
+ 10. Admin panel, Subscriptions customizing
199
+
200
+ 11. Admin panel, Statistic data
201
+
202
+
203
+ Contact Form admin interface
204
  == Changelog ==
205
+ = 1.7.3 / 23.01.2020 =
206
+ * Broken images on open
207
+
208
+ = 1.7.2 / 27.11.2019 =
209
+ * Minor fixes
210
+
211
+ = 1.7.1 / 27.11.2019 =
212
+ * Add support WP 5.3
213
+ * Minor fixes
214
+
215
+ = 1.7.0 / 21.11.2019 =
216
+ * Add feature condition_logic_v2
217
+ * Minor fixes
218
+
219
+ = 1.6.9 / 29.10.2019 =
220
+ * Minor fixes
221
+
222
+ = 1.6.8 / 15.10.2019 =
223
+ * Minor fixes
224
+
225
+ = 1.6.7 / 02.10.2019 =
226
+ * Fix multiple emails for Mailer
227
+ * Fix inline contact form email response
228
+
229
+ = 1.6.6 / 18.09.2019 =
230
+ * Add defer to recaptcha
231
+ * Fix adding <br> to <ul>, <ol>, end lines in sended email.
232
+ * Minor issues fixed
233
+
234
+ = 1.6.5 / 03.09.2019 =
235
+ * Minor issues fixed
236
+
237
+ = 1.6.4 / 06.08.2019 =
238
+ * Fixes for new wp translations
239
+ * Change lng names
240
+ * Hotfix in connectLang function
241
+ * Fixed bd size in installer for column params
242
+
243
+ = 1.6.3 / 05.06.2019 =
244
+ * Fix download files issue
245
+ * Minor issues fixed
246
+
247
+ = 1.6.2 / 15.05.2019 =
248
+ * Add fix notice for Forms
249
+ * Minor PHP 7.3 compatibility improvement
250
+ * Minor issues fixed
251
+
252
+ = 1.6.1 / 02.04.2019 =
253
+ * Core code improvements
254
+ * Minor issues fixed
255
+
256
+ = 1.6.0 / 26.02.2019 =
257
+ * Minor issues fixed
258
+
259
+ = 1.5.9 / 22.01.2019 =
260
+ * Screenshots update
261
+ * Switched MailChimp to API V3 version
262
+ * Small wording fix
263
+ * Fix conflict with WP Deferred Javascripts
264
+
265
+ = 1.5.8 / 18.12.2018 =
266
+ * Fix of displaying of contact form's statictic
267
+ * Fix of ability to preset contact form from $_GET parameters if $_GET['cfsPreFill'] is set
268
+ * Minor issues fixed
269
+
270
+ = 1.5.7 / 04.12.2018 =
271
+ * Add of ability to preset contact form from $_GET parameters if $_GET['cfsPreFill'] is set
272
+ * Fix of validation of contact form fields. Small code fix
273
+ * fix redirect for InfusionSoft
274
+ * Code fix and improvements
275
+ * Minor issues fixed
276
+
277
+ = 1.5.6 / 18.10.2018 =
278
+ * Minor issues fixed
279
+ * Fix issue with double new string after tag "p"
280
+
281
+ = 1.5.5 / 18.09.2018 =
282
+ * Minor issues fixed
283
+ * Fix issues with Conditional Logic
284
+
285
+ = 1.5.4 / 04.09.2018 =
286
+ * Core code improvements
287
+ * Minor issues fixed
288
+
289
+ = 1.5.3 / 21.08.2018 =
290
+ * Minor issues fixed
291
+
292
+ = 1.5.2 / 08.08.2018 =
293
+ * Core code improvements
294
+ * Minor issues fixed
295
+
296
+ = 1.5.1 / 25.07.2018 =
297
+ * Fixed Problems with InfusionSoft Integration
298
+ * Minor issues fixed
299
+
300
+ = 1.5.0 / 10.07.2018 =
301
+ * Minor issues fixed
302
+ * Tooltips fix
303
+
304
+ = 1.4.9 / 26.06.2018 =
305
+ * Core code improvements
306
+ * Minor issues fixed
307
+
308
+ = 1.4.8 / 20.06.2018 =
309
+ * Code review
310
+ * Minor issues fixed
311
+
312
+ = 1.4.7 / 11.06.2018 =
313
+ * Minor issues fixed
314
+ * Core code improvements
315
 
316
  = 1.4.6 / 07.05.2018 =
317
  * Fixed plugin activating for multisite